From bb0c55693df3b5368370df288cfa3cbd4308a322 Mon Sep 17 00:00:00 2001 From: Martin Donadieu Date: Sun, 10 May 2026 20:03:07 +0200 Subject: [PATCH] docs: fix native navigation package docs --- .../native-navigation/getting-started.mdx | 108 ++++++++++++- .../docs/plugins/native-navigation/index.mdx | 6 +- apps/web/src/config/plugins.ts | 4 +- .../en/capacitor-native-navigation.md | 108 ++++++++++++- apps/web/src/data/github-stars.json | 148 +++++++++--------- apps/web/src/data/npm-downloads.json | 2 +- 6 files changed, 286 insertions(+), 90 deletions(-) diff --git a/apps/docs/src/content/docs/docs/plugins/native-navigation/getting-started.mdx b/apps/docs/src/content/docs/docs/plugins/native-navigation/getting-started.mdx index c04b1965f..b1522422d 100644 --- a/apps/docs/src/content/docs/docs/plugins/native-navigation/getting-started.mdx +++ b/apps/docs/src/content/docs/docs/plugins/native-navigation/getting-started.mdx @@ -1,6 +1,6 @@ --- title: Getting Started -description: Install @capgo/native-navigation and render native navigation chrome over a Capacitor WebView. +description: Install @capgo/capacitor-native-navigation and render native navigation chrome over a Capacitor WebView. sidebar: order: 2 --- @@ -10,15 +10,15 @@ import { PackageManagers } from 'starlight-package-managers' 1. **Install the package** - + 2. **Sync native projects** - + 3. **Configure native chrome** ```ts - import { NativeNavigation } from '@capgo/native-navigation'; + import { NativeNavigation } from '@capgo/capacitor-native-navigation'; await NativeNavigation.configure({ contentInsetMode: 'css', @@ -55,8 +55,13 @@ import { PackageManagers } from 'starlight-package-managers' ```ts await NativeNavigation.setTabbar({ selectedId: 'home', - labels: true, + labelVisibilityMode: 'selected', icons: true, + colors: { + dynamic: true, + tint: '#0f172a', + inactiveTint: '#64748b', + }, tabs: [ { id: 'home', @@ -117,6 +122,97 @@ await NativeNavigation.finishTransition({ }); ``` +## Zoom transition + +Use the zoom helpers for card-to-detail or media-preview flows. Pass the tapped element before your router changes content, then finish after the detail page is ready. + +```ts +import { beginZoomTransition, finishZoomTransition } from '@capgo/capacitor-native-navigation'; + +const card = document.querySelector('[data-message-card]'); +if (card) { + const transition = await beginZoomTransition(card, { cornerRadius: 18 }); + + router.push('/message/42'); + await router.ready?.(); + + await NativeNavigation.setNavbar({ + title: 'Message', + backButton: { visible: true, title: 'Inbox' }, + }); + + await finishZoomTransition(undefined, { + id: transition.id, + cornerRadius: 18, + }); +} +``` + +## Use with @capgo/capacitor-transitions + +Use Native Navigation for the native navbar, tabbar, safe-area insets, and native intent events. Use `@capgo/capacitor-transitions` for the WebView page stack underneath the native chrome. + +```bash +npm install @capgo/capacitor-native-navigation @capgo/capacitor-transitions +npx cap sync +``` + +Initialize both packages once: + +```ts +import { NativeNavigation } from '@capgo/capacitor-native-navigation'; +import '@capgo/capacitor-transitions'; +import { initTransitions, setupRouterOutlet, setDirection } from '@capgo/capacitor-transitions/react'; + +initTransitions({ platform: 'auto' }); + +const outlet = document.querySelector('cap-router-outlet'); +if (outlet) { + setupRouterOutlet(outlet, { platform: 'auto', swipeGesture: 'auto' }); +} + +await NativeNavigation.configure({ + contentInsetMode: 'css', +}); +``` + +Keep `cap-router-outlet` focused on pages, not duplicate web bars: + +```html + + + +
Inbox content
+
+
+
+``` + +Drive both packages from the same router actions: + +```ts +async function openMessage(id: string) { + setDirection('forward'); + await router.push(`/messages/${id}`); + await NativeNavigation.setNavbar({ + title: 'Message', + backButton: { visible: true, title: 'Inbox' }, + }); +} + +await NativeNavigation.addListener('navbarBack', () => { + setDirection('back'); + router.back(); +}); + +await NativeNavigation.addListener('tabSelect', ({ id }) => { + setDirection('root'); + router.push(`/${id}`); +}); +``` + +Pick one animation layer per route change. Let `@capgo/capacitor-transitions` animate normal page pushes, and use Native Navigation's zoom helpers only for shared-element or zoom routes. + ## CSS insets With `contentInsetMode: 'css'`, the plugin writes native bar dimensions to `document.documentElement`. @@ -168,7 +264,7 @@ Inline SVG supports the icon-focused subset used by common icon sets such as Luc The package can register custom elements for framework-agnostic declarative setup: ```ts -import { defineNativeNavigationElements } from '@capgo/native-navigation'; +import { defineNativeNavigationElements } from '@capgo/capacitor-native-navigation'; defineNativeNavigationElements(); ``` diff --git a/apps/docs/src/content/docs/docs/plugins/native-navigation/index.mdx b/apps/docs/src/content/docs/docs/plugins/native-navigation/index.mdx index 9d0809a7c..8e030c4b6 100644 --- a/apps/docs/src/content/docs/docs/plugins/native-navigation/index.mdx +++ b/apps/docs/src/content/docs/docs/plugins/native-navigation/index.mdx @@ -1,5 +1,5 @@ --- -title: "@capgo/native-navigation" +title: "@capgo/capacitor-native-navigation" description: Native navbar, tabbar, and transition shell chrome for Capacitor apps that keep content in one WebView. tableOfContents: false next: false @@ -35,6 +35,9 @@ import { Card, CardGrid } from '@astrojs/starlight/components'; Capture the current WebView, update content in JavaScript, then finish with a native snapshot-to-WebView animation. + + Open card, grid, and media-detail routes with shared-element-style native zoom geometry. + ## Core API @@ -44,6 +47,7 @@ import { Card, CardGrid } from '@astrojs/starlight/components'; - `setTabbar(options)` updates tabs, selected tab, badges, labels, icons, colors, and visibility. - `beginTransition(options?)` captures the outgoing WebView before the JavaScript route change. - `finishTransition(options?)` animates from the captured snapshot to the live WebView after route content is ready. +- `beginZoomTransition(target, options?)` and `finishZoomTransition(target?, options?)` are JavaScript helpers for zoom transitions from elements or rectangles. - `getPluginVersion()` returns the native implementation version marker. ## Events diff --git a/apps/web/src/config/plugins.ts b/apps/web/src/config/plugins.ts index 6b07ee82b..875927513 100644 --- a/apps/web/src/config/plugins.ts +++ b/apps/web/src/config/plugins.ts @@ -21,7 +21,7 @@ export interface Plugin extends Action { const actionDefinitionRows = String.raw`@capgo/native-market|github.com/Cap-go|Deep link users directly to your app page on Google Play Store or Apple App Store|https://github.com/Cap-go/capacitor-native-market/|Native Market -@capgo/native-navigation|github.com/Cap-go|Render native navbars, tabbars, and transition shells over a full-screen Capacitor WebView|https://github.com/Cap-go/capacitor-native-navigation/|Native Navigation +@capgo/capacitor-native-navigation|github.com/Cap-go|Render native navbars, tabbars, and transition shells over a full-screen Capacitor WebView|https://github.com/Cap-go/capacitor-native-navigation/|Native Navigation @capgo/capacitor-transitions|github.com/Cap-go|Add Ionic-style page transitions and iOS edge swipe-back gestures without Ionic UI|https://github.com/Cap-go/capacitor-transitions/|Transitions @capgo/capacitor-native-biometric|github.com/Cap-go|Secure authentication using Face ID, Touch ID, and Android biometric APIs|https://github.com/Cap-go/capacitor-native-biometric/|Native Biometric @capgo/camera-preview|github.com/Cap-go|Display live camera feed as overlay with customizable controls and capture capabilities|https://github.com/Cap-go/capacitor-camera-preview/|Camera Preview @@ -153,7 +153,7 @@ const actionDefinitionRows = const pluginIconsByName: Record = { '@capgo/native-market': 'ArchiveBoxArrowDown', - '@capgo/native-navigation': 'DevicePhoneMobile', + '@capgo/capacitor-native-navigation': 'DevicePhoneMobile', '@capgo/capacitor-transitions': 'ArrowsRightLeft', '@capgo/capacitor-native-biometric': 'FingerPrint', '@capgo/camera-preview': 'Camera', diff --git a/apps/web/src/content/plugins-tutorials/en/capacitor-native-navigation.md b/apps/web/src/content/plugins-tutorials/en/capacitor-native-navigation.md index 85a64dfa7..96cc00c4b 100644 --- a/apps/web/src/content/plugins-tutorials/en/capacitor-native-navigation.md +++ b/apps/web/src/content/plugins-tutorials/en/capacitor-native-navigation.md @@ -2,21 +2,21 @@ locale: en published: true --- -# Using @capgo/native-navigation +# Using @capgo/capacitor-native-navigation -`@capgo/native-navigation` renders native top navigation, bottom tab chrome, and route transition shells over a single full-screen Capacitor WebView. Your web framework still owns routes and content, while native owns the app frame. +`@capgo/capacitor-native-navigation` renders native top navigation, bottom tab chrome, and route transition shells over a single full-screen Capacitor WebView. Your web framework still owns routes and content, while native owns the app frame. ## Install and sync ```bash -bun add @capgo/native-navigation -bunx cap sync +npm install @capgo/capacitor-native-navigation +npx cap sync ``` ## Configure the native frame ```ts -import { NativeNavigation } from '@capgo/native-navigation'; +import { NativeNavigation } from '@capgo/capacitor-native-navigation'; await NativeNavigation.configure({ contentInsetMode: 'css', @@ -53,8 +53,13 @@ await NativeNavigation.setNavbar({ ```ts await NativeNavigation.setTabbar({ selectedId: 'inbox', - labels: true, + labelVisibilityMode: 'selected', icons: true, + colors: { + dynamic: true, + tint: '#0f172a', + inactiveTint: '#64748b', + }, tabs: [ { id: 'inbox', @@ -115,6 +120,32 @@ await NativeNavigation.finishTransition({ }); ``` +## Add a zoom transition + +Use the zoom helpers for routes that open from a card, grid item, or media preview. + +```ts +import { beginZoomTransition, finishZoomTransition } from '@capgo/capacitor-native-navigation'; + +const card = document.querySelector('[data-message-card]'); +if (card) { + const transition = await beginZoomTransition(card, { cornerRadius: 18 }); + + router.push('/message/42'); + await router.ready?.(); + + await NativeNavigation.setNavbar({ + title: 'Message', + backButton: { visible: true, title: 'Inbox' }, + }); + + await finishZoomTransition(undefined, { + id: transition.id, + cornerRadius: 18, + }); +} +``` + ## Pad content with native insets When `contentInsetMode` is `css`, the plugin writes CSS variables for the native bars: @@ -141,6 +172,71 @@ const icon = { Inline SVG supports `path`, `line`, `polyline`, `polygon`, `circle`, and `rect`, which covers common icon sets such as Lucide and Feather. +## Combine with @capgo/capacitor-transitions + +Use Native Navigation for the native navbar, tabbar, safe-area insets, and native intent events. Use `@capgo/capacitor-transitions` for the WebView page stack underneath that native chrome. + +```bash +npm install @capgo/capacitor-native-navigation @capgo/capacitor-transitions +npx cap sync +``` + +Initialize both packages once: + +```ts +import { NativeNavigation } from '@capgo/capacitor-native-navigation'; +import '@capgo/capacitor-transitions'; +import { initTransitions, setupRouterOutlet, setDirection } from '@capgo/capacitor-transitions/react'; + +initTransitions({ platform: 'auto' }); + +const outlet = document.querySelector('cap-router-outlet'); +if (outlet) { + setupRouterOutlet(outlet, { platform: 'auto', swipeGesture: 'auto' }); +} + +await NativeNavigation.configure({ + contentInsetMode: 'css', +}); +``` + +Keep the transition outlet focused on pages, not duplicate web bars: + +```html + + + +
Inbox content
+
+
+
+``` + +Drive both packages from the same router actions: + +```ts +async function openMessage(id: string) { + setDirection('forward'); + await router.push(`/messages/${id}`); + await NativeNavigation.setNavbar({ + title: 'Message', + backButton: { visible: true, title: 'Inbox' }, + }); +} + +await NativeNavigation.addListener('navbarBack', () => { + setDirection('back'); + router.back(); +}); + +await NativeNavigation.addListener('tabSelect', ({ id }) => { + setDirection('root'); + router.push(`/${id}`); +}); +``` + +Pick one animation layer per route change. Let `@capgo/capacitor-transitions` animate normal page pushes, and use Native Navigation's zoom helpers only for shared-element or zoom routes. + ## Full Reference - GitHub: https://github.com/Cap-go/capacitor-native-navigation/ diff --git a/apps/web/src/data/github-stars.json b/apps/web/src/data/github-stars.json index 431a2b76a..49210aa12 100644 --- a/apps/web/src/data/github-stars.json +++ b/apps/web/src/data/github-stars.json @@ -1,91 +1,92 @@ { - "https://github.com/Cap-go/capacitor-native-market/": 12, - "https://github.com/Cap-go/capacitor-native-biometric/": 71, - "https://github.com/Cap-go/capacitor-camera-preview/": 40, - "https://github.com/Cap-go/capacitor-updater/": 753, + "https://github.com/Cap-go/capacitor-native-market/": 13, + "https://github.com/Cap-go/capacitor-native-navigation/": 2, + "https://github.com/Cap-go/capacitor-transitions/": 2, + "https://github.com/Cap-go/capacitor-native-biometric/": 72, + "https://github.com/Cap-go/capacitor-camera-preview/": 41, + "https://github.com/Cap-go/capacitor-updater/": 757, "https://github.com/Cap-go/electron-updater/": 3, - "https://github.com/Cap-go/capacitor-uploader/": 22, - "https://github.com/RevenueCat/purchases-capacitor/": 230, - "https://github.com/Cap-go/capacitor-flash/": 20, - "https://github.com/Cap-go/capacitor-screen-recorder/": 22, - "https://github.com/Cap-go/capacitor-crisp/": 14, + "https://github.com/Cap-go/capacitor-uploader/": 23, + "https://github.com/RevenueCat/purchases-capacitor/": 231, + "https://github.com/Cap-go/capacitor-flash/": 21, + "https://github.com/Cap-go/capacitor-screen-recorder/": 23, + "https://github.com/Cap-go/capacitor-crisp/": 15, "https://github.com/Cap-go/capacitor-intercom/": 2, "https://github.com/Cap-go/capacitor-appsflyer/": 2, "https://github.com/Cap-go/capacitor-contentsquare/": 3, - "https://github.com/Cap-go/capacitor-nativegeocoder/": 38, - "https://github.com/Cap-go/capacitor-inappbrowser/": 122, + "https://github.com/Cap-go/capacitor-facebook-analytics/": 1, + "https://github.com/Cap-go/capacitor-nativegeocoder/": 39, + "https://github.com/Cap-go/capacitor-inappbrowser/": 123, "https://github.com/Cap-go/capacitor-mqtt/": 2, - "https://github.com/Cap-go/capacitor-mute/": 11, - "https://github.com/Cap-go/capacitor-native-audio/": 69, - "https://github.com/Cap-go/capacitor-shake/": 17, - "https://github.com/Cap-go/capacitor-navigation-bar/": 22, - "https://github.com/Cap-go/capacitor-ivs-player/": 7, - "https://github.com/Cap-go/capacitor-home-indicator/": 6, - "https://github.com/Cap-go/capacitor-native-purchases/": 42, - "https://github.com/Cap-go/capacitor-data-storage-sqlite/": 99, - "https://github.com/Cap-go/capacitor-android-usagestatsmanager/": 5, - "https://github.com/Cap-go/capacitor-streamcall/": 10, - "https://github.com/Cap-go/capacitor-autofill-save-password/": 11, - "https://github.com/Cap-go/capacitor-social-login/": 203, + "https://github.com/Cap-go/capacitor-mute/": 12, + "https://github.com/Cap-go/capacitor-native-audio/": 70, + "https://github.com/Cap-go/capacitor-shake/": 18, + "https://github.com/Cap-go/capacitor-navigation-bar/": 23, + "https://github.com/Cap-go/capacitor-ivs-player/": 8, + "https://github.com/Cap-go/capacitor-home-indicator/": 7, + "https://github.com/Cap-go/capacitor-native-purchases/": 43, + "https://github.com/Cap-go/capacitor-data-storage-sqlite/": 100, + "https://github.com/Cap-go/capacitor-android-usagestatsmanager/": 6, + "https://github.com/Cap-go/capacitor-streamcall/": 11, + "https://github.com/Cap-go/capacitor-autofill-save-password/": 12, + "https://github.com/Cap-go/capacitor-social-login/": 205, "https://github.com/Cap-go/capacitor-passkey/": 2, - "https://github.com/Cap-go/capacitor-jw-player/": 6, - "https://github.com/Cap-go/capacitor-ricoh360-camera-plugin/": 4, - "https://github.com/Cap-go/capacitor-admob/": 9, - "https://github.com/Cap-go/capacitor-alarm/": 8, - "https://github.com/Cap-go/capacitor-android-inline-install/": 5, - "https://github.com/Cap-go/capacitor-android-kiosk/": 8, + "https://github.com/Cap-go/capacitor-jw-player/": 7, + "https://github.com/Cap-go/capacitor-ricoh360-camera-plugin/": 5, + "https://github.com/Cap-go/capacitor-admob/": 10, + "https://github.com/Cap-go/capacitor-alarm/": 9, + "https://github.com/Cap-go/capacitor-android-inline-install/": 6, + "https://github.com/Cap-go/capacitor-android-kiosk/": 9, "https://github.com/Cap-go/capacitor-android-sms-retriever/": 1, - "https://github.com/Cap-go/capacitor-appinsights/": 4, + "https://github.com/Cap-go/capacitor-appinsights/": 5, "https://github.com/Cap-go/capacitor-app-attest/": 3, - "https://github.com/Cap-go/capacitor-audiosession/": 5, - "https://github.com/Cap-go/capacitor-background-geolocation/": 15, - "https://github.com/Cap-go/capacitor-document-scanner/": 18, - "https://github.com/Cap-go/capacitor-downloader/": 7, - "https://github.com/Cap-go/capacitor-env/": 5, - "https://github.com/Cap-go/capacitor-ffmpeg/": 6, - "https://github.com/Cap-go/capacitor-gtm/": 7, + "https://github.com/Cap-go/capacitor-audiosession/": 6, + "https://github.com/Cap-go/capacitor-background-geolocation/": 16, + "https://github.com/Cap-go/capacitor-document-scanner/": 19, + "https://github.com/Cap-go/capacitor-downloader/": 8, + "https://github.com/Cap-go/capacitor-env/": 6, + "https://github.com/Cap-go/capacitor-ffmpeg/": 7, + "https://github.com/Cap-go/capacitor-gtm/": 8, "https://github.com/Cap-go/capacitor-rudderstack/": 1, "https://github.com/Cap-go/capacitor-health/": 18, - "https://github.com/Cap-go/capacitor-is-root/": 8, + "https://github.com/Cap-go/capacitor-is-root/": 9, "https://github.com/Cap-go/capacitor-app-tracking-transparency/": 2, - "https://github.com/Cap-go/capacitor-launch-navigator/": 6, - "https://github.com/Cap-go/capacitor-live-activities/": 1, - "https://github.com/Cap-go/capacitor-live-reload/": 6, - "https://github.com/Cap-go/capacitor-llm/": 23, - "https://github.com/Cap-go/capacitor-media-session/": 5, - "https://github.com/Cap-go/capacitor-mux-player/": 6, - "https://github.com/Cap-go/capacitor-pay/": 8, + "https://github.com/Cap-go/capacitor-launch-navigator/": 7, + "https://github.com/Cap-go/capacitor-live-reload/": 7, + "https://github.com/Cap-go/capacitor-llm/": 24, + "https://github.com/Cap-go/capacitor-media-session/": 6, + "https://github.com/Cap-go/capacitor-mux-player/": 7, + "https://github.com/Cap-go/capacitor-pay/": 9, "https://github.com/Cap-go/capacitor-privacy-screen/": 2, - "https://github.com/Cap-go/capacitor-proximity/": 1, - "https://github.com/Cap-go/capacitor-pdf-generator/": 6, - "https://github.com/Cap-go/capacitor-persistent-account/": 7, - "https://github.com/Cap-go/capacitor-photo-library/": 6, - "https://github.com/Cap-go/capacitor-sim/": 7, + "https://github.com/Cap-go/capacitor-proximity/": 2, + "https://github.com/Cap-go/capacitor-pdf-generator/": 7, + "https://github.com/Cap-go/capacitor-persistent-account/": 8, + "https://github.com/Cap-go/capacitor-photo-library/": 7, + "https://github.com/Cap-go/capacitor-sim/": 8, "https://github.com/Cap-go/capacitor-speech-recognition/": 11, - "https://github.com/Cap-go/capacitor-textinteraction/": 5, - "https://github.com/Cap-go/capacitor-twilio-video/": 0, - "https://github.com/Cap-go/capacitor-twilio-voice/": 6, - "https://github.com/Cap-go/capacitor-video-player/": 7, - "https://github.com/Cap-go/capacitor-volume-buttons/": 4, - "https://github.com/Cap-go/capacitor-youtube-player/": 4, - "https://github.com/Cap-go/capacitor-wechat/": 10, - "https://github.com/Cap-go/capacitor-ibeacon/": 7, - "https://github.com/Cap-go/capacitor-nfc/": 20, + "https://github.com/Cap-go/capacitor-textinteraction/": 6, + "https://github.com/Cap-go/capacitor-twilio-voice/": 7, + "https://github.com/Cap-go/capacitor-video-player/": 8, + "https://github.com/Cap-go/capacitor-volume-buttons/": 5, + "https://github.com/Cap-go/capacitor-youtube-player/": 5, + "https://github.com/Cap-go/capacitor-wechat/": 11, + "https://github.com/Cap-go/capacitor-ibeacon/": 8, + "https://github.com/Cap-go/capacitor-nfc/": 21, "https://github.com/Cap-go/capacitor-age-range/": 2, "https://github.com/Cap-go/capacitor-persona/": 2, "https://github.com/Cap-go/capacitor-intune/": 1, "https://github.com/Cap-go/capacitor-incoming-call-kit/": 2, - "https://github.com/Cap-go/capacitor-install-referrer/": 0, - "https://github.com/Cap-go/capacitor-android-age-signals/": 5, - "https://github.com/Cap-go/capacitor-barometer/": 5, - "https://github.com/Cap-go/capacitor-accelerometer/": 5, - "https://github.com/Cap-go/capacitor-contacts/": 5, - "https://github.com/Cap-go/capacitor-audio-recorder/": 8, - "https://github.com/Cap-go/capacitor-share-target/": 14, - "https://github.com/Cap-go/capacitor-realtimekit/": 7, - "https://github.com/Cap-go/capacitor-pedometer/": 8, - "https://github.com/Cap-go/capacitor-fast-sql/": 12, - "https://github.com/Cap-go/capacitor-file-compressor/": 4, + "https://github.com/Cap-go/capacitor-install-referrer/": 3, + "https://github.com/Cap-go/capacitor-android-age-signals/": 6, + "https://github.com/Cap-go/capacitor-barometer/": 6, + "https://github.com/Cap-go/capacitor-accelerometer/": 6, + "https://github.com/Cap-go/capacitor-contacts/": 6, + "https://github.com/Cap-go/capacitor-audio-recorder/": 9, + "https://github.com/Cap-go/capacitor-share-target/": 15, + "https://github.com/Cap-go/capacitor-realtimekit/": 8, + "https://github.com/Cap-go/capacitor-pedometer/": 9, + "https://github.com/Cap-go/capacitor-fast-sql/": 13, + "https://github.com/Cap-go/capacitor-file-compressor/": 6, "https://github.com/Cap-go/capacitor-speech-synthesis/": 5, "https://github.com/Cap-go/capacitor-ssl-pinning/": 2, "https://github.com/Cap-go/capacitor-printer/": 6, @@ -107,10 +108,10 @@ "https://github.com/Cap-go/capacitor-firebase/tree/main/packages/performance": 5, "https://github.com/Cap-go/capacitor-firebase/tree/main/packages/remote-config": 5, "https://github.com/Cap-go/capacitor-firebase/tree/main/packages/storage": 5, - "https://github.com/Cap-go/capacitor-plus/": 13, + "https://github.com/Cap-go/capacitor-plus/": 14, "https://github.com/Cap-go/capacitor-compass/": 5, "https://github.com/Cap-go/capacitor-file/": 4, - "https://github.com/Cap-go/capacitor-file-sharer/": 0, + "https://github.com/Cap-go/capacitor-file-sharer/": 1, "https://github.com/Cap-go/capacitor-bluetooth-low-energy/": 6, "https://github.com/Cap-go/capacitor-keep-awake/": 5, "https://github.com/Cap-go/capacitor-in-app-review/": 5, @@ -120,6 +121,5 @@ "https://github.com/Cap-go/capacitor-brightness/": 4, "https://github.com/Cap-go/capacitor-light-sensor/": 4, "https://github.com/Cap-go/capacitor-video-thumbnails/": 4, - "https://github.com/Cap-go/capacitor-intent-launcher/": 6, - "https://github.com/Cap-go/capacitor-facebook-analytics/": 0 + "https://github.com/Cap-go/capacitor-intent-launcher/": 6 } diff --git a/apps/web/src/data/npm-downloads.json b/apps/web/src/data/npm-downloads.json index e352b323e..3eff7fc32 100644 --- a/apps/web/src/data/npm-downloads.json +++ b/apps/web/src/data/npm-downloads.json @@ -1,6 +1,6 @@ { "@capgo/native-market": 19517, - "@capgo/native-navigation": 0, + "@capgo/capacitor-native-navigation": 0, "@capgo/capacitor-transitions": 0, "@capgo/capacitor-native-biometric": 603625, "@capgo/camera-preview": 46030,