@elurjs/ionic 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +272 -0
- package/MIGRATION.md +221 -0
- package/README.md +695 -0
- package/dist/lib/IonRouterOutlet.d.ts +134 -0
- package/dist/lib/__tests__/IonRouterOutlet.test.d.ts +1 -0
- package/dist/lib/__tests__/bundles.test.d.ts +1 -0
- package/dist/lib/__tests__/cache-policy.test.d.ts +1 -0
- package/dist/lib/__tests__/capacitor.test.d.ts +1 -0
- package/dist/lib/__tests__/components.test.d.ts +1 -0
- package/dist/lib/__tests__/lifecycle.test.d.ts +1 -0
- package/dist/lib/__tests__/mocks/ionic.d.ts +61 -0
- package/dist/lib/__tests__/navigation.test.d.ts +1 -0
- package/dist/lib/__tests__/overlays.test.d.ts +1 -0
- package/dist/lib/__tests__/page-state.test.d.ts +1 -0
- package/dist/lib/__tests__/phase0-bugs.test.d.ts +1 -0
- package/dist/lib/__tests__/setup.d.ts +1 -0
- package/dist/lib/__tests__/setup.test.d.ts +1 -0
- package/dist/lib/__tests__/tabs.test.d.ts +1 -0
- package/dist/lib/__tests__/vite-plugin.test.d.ts +1 -0
- package/dist/lib/bundles/all.cjs +2 -0
- package/dist/lib/bundles/all.cjs.map +1 -0
- package/dist/lib/bundles/all.d.ts +16 -0
- package/dist/lib/bundles/all.js +21 -0
- package/dist/lib/bundles/all.js.map +1 -0
- package/dist/lib/bundles/buttons.cjs +2 -0
- package/dist/lib/bundles/buttons.cjs.map +1 -0
- package/dist/lib/bundles/buttons.d.ts +7 -0
- package/dist/lib/bundles/buttons.js +17 -0
- package/dist/lib/bundles/buttons.js.map +1 -0
- package/dist/lib/bundles/feedback.cjs +2 -0
- package/dist/lib/bundles/feedback.cjs.map +1 -0
- package/dist/lib/bundles/feedback.d.ts +8 -0
- package/dist/lib/bundles/feedback.js +19 -0
- package/dist/lib/bundles/feedback.js.map +1 -0
- package/dist/lib/bundles/forms.cjs +2 -0
- package/dist/lib/bundles/forms.cjs.map +1 -0
- package/dist/lib/bundles/forms.d.ts +11 -0
- package/dist/lib/bundles/forms.js +47 -0
- package/dist/lib/bundles/forms.js.map +1 -0
- package/dist/lib/bundles/layout.cjs +2 -0
- package/dist/lib/bundles/layout.cjs.map +1 -0
- package/dist/lib/bundles/layout.d.ts +9 -0
- package/dist/lib/bundles/layout.js +33 -0
- package/dist/lib/bundles/layout.js.map +1 -0
- package/dist/lib/bundles/lists.cjs +2 -0
- package/dist/lib/bundles/lists.cjs.map +1 -0
- package/dist/lib/bundles/lists.d.ts +15 -0
- package/dist/lib/bundles/lists.js +65 -0
- package/dist/lib/bundles/lists.js.map +1 -0
- package/dist/lib/bundles/navigation.cjs +2 -0
- package/dist/lib/bundles/navigation.cjs.map +1 -0
- package/dist/lib/bundles/navigation.d.ts +9 -0
- package/dist/lib/bundles/navigation.js +29 -0
- package/dist/lib/bundles/navigation.js.map +1 -0
- package/dist/lib/bundles/overlays.cjs +2 -0
- package/dist/lib/bundles/overlays.cjs.map +1 -0
- package/dist/lib/bundles/overlays.d.ts +9 -0
- package/dist/lib/bundles/overlays.js +25 -0
- package/dist/lib/bundles/overlays.js.map +1 -0
- package/dist/lib/capacitor.cjs +2 -0
- package/dist/lib/capacitor.cjs.map +1 -0
- package/dist/lib/capacitor.d.ts +217 -0
- package/dist/lib/capacitor.js +223 -0
- package/dist/lib/capacitor.js.map +1 -0
- package/dist/lib/components/accordion-group.cjs +1 -0
- package/dist/lib/components/accordion-group.d.ts +11 -0
- package/dist/lib/components/accordion-group.js +2 -0
- package/dist/lib/components/accordion.cjs +1 -0
- package/dist/lib/components/accordion.d.ts +11 -0
- package/dist/lib/components/accordion.js +2 -0
- package/dist/lib/components/action-sheet.cjs +1 -0
- package/dist/lib/components/action-sheet.d.ts +11 -0
- package/dist/lib/components/action-sheet.js +2 -0
- package/dist/lib/components/alert.cjs +1 -0
- package/dist/lib/components/alert.d.ts +11 -0
- package/dist/lib/components/alert.js +2 -0
- package/dist/lib/components/avatar.cjs +1 -0
- package/dist/lib/components/avatar.d.ts +11 -0
- package/dist/lib/components/avatar.js +2 -0
- package/dist/lib/components/backdrop.cjs +1 -0
- package/dist/lib/components/backdrop.d.ts +11 -0
- package/dist/lib/components/backdrop.js +2 -0
- package/dist/lib/components/badge.cjs +1 -0
- package/dist/lib/components/badge.d.ts +11 -0
- package/dist/lib/components/badge.js +2 -0
- package/dist/lib/components/breadcrumb.cjs +1 -0
- package/dist/lib/components/breadcrumb.d.ts +11 -0
- package/dist/lib/components/breadcrumb.js +2 -0
- package/dist/lib/components/breadcrumbs.cjs +1 -0
- package/dist/lib/components/breadcrumbs.d.ts +11 -0
- package/dist/lib/components/breadcrumbs.js +2 -0
- package/dist/lib/components/button.cjs +1 -0
- package/dist/lib/components/button.d.ts +11 -0
- package/dist/lib/components/button.js +2 -0
- package/dist/lib/components/buttons.cjs +1 -0
- package/dist/lib/components/buttons.d.ts +11 -0
- package/dist/lib/components/buttons.js +2 -0
- package/dist/lib/components/card-content.cjs +1 -0
- package/dist/lib/components/card-content.d.ts +11 -0
- package/dist/lib/components/card-content.js +2 -0
- package/dist/lib/components/card-header.cjs +1 -0
- package/dist/lib/components/card-header.d.ts +11 -0
- package/dist/lib/components/card-header.js +2 -0
- package/dist/lib/components/card-subtitle.cjs +1 -0
- package/dist/lib/components/card-subtitle.d.ts +11 -0
- package/dist/lib/components/card-subtitle.js +2 -0
- package/dist/lib/components/card-title.cjs +1 -0
- package/dist/lib/components/card-title.d.ts +11 -0
- package/dist/lib/components/card-title.js +2 -0
- package/dist/lib/components/card.cjs +1 -0
- package/dist/lib/components/card.d.ts +11 -0
- package/dist/lib/components/card.js +2 -0
- package/dist/lib/components/checkbox.cjs +1 -0
- package/dist/lib/components/checkbox.d.ts +11 -0
- package/dist/lib/components/checkbox.js +2 -0
- package/dist/lib/components/chip.cjs +1 -0
- package/dist/lib/components/chip.d.ts +11 -0
- package/dist/lib/components/chip.js +2 -0
- package/dist/lib/components/col.cjs +1 -0
- package/dist/lib/components/col.d.ts +11 -0
- package/dist/lib/components/col.js +2 -0
- package/dist/lib/components/content.cjs +1 -0
- package/dist/lib/components/content.d.ts +11 -0
- package/dist/lib/components/content.js +2 -0
- package/dist/lib/components/datetime-button.cjs +1 -0
- package/dist/lib/components/datetime-button.d.ts +11 -0
- package/dist/lib/components/datetime-button.js +2 -0
- package/dist/lib/components/datetime.cjs +1 -0
- package/dist/lib/components/datetime.d.ts +11 -0
- package/dist/lib/components/datetime.js +2 -0
- package/dist/lib/components/fab-button.cjs +1 -0
- package/dist/lib/components/fab-button.d.ts +11 -0
- package/dist/lib/components/fab-button.js +2 -0
- package/dist/lib/components/fab-list.cjs +1 -0
- package/dist/lib/components/fab-list.d.ts +11 -0
- package/dist/lib/components/fab-list.js +2 -0
- package/dist/lib/components/fab.cjs +1 -0
- package/dist/lib/components/fab.d.ts +11 -0
- package/dist/lib/components/fab.js +2 -0
- package/dist/lib/components/footer.cjs +1 -0
- package/dist/lib/components/footer.d.ts +11 -0
- package/dist/lib/components/footer.js +2 -0
- package/dist/lib/components/grid.cjs +1 -0
- package/dist/lib/components/grid.d.ts +11 -0
- package/dist/lib/components/grid.js +2 -0
- package/dist/lib/components/header.cjs +1 -0
- package/dist/lib/components/header.d.ts +11 -0
- package/dist/lib/components/header.js +2 -0
- package/dist/lib/components/img.cjs +1 -0
- package/dist/lib/components/img.d.ts +11 -0
- package/dist/lib/components/img.js +2 -0
- package/dist/lib/components/infinite-scroll-content.cjs +1 -0
- package/dist/lib/components/infinite-scroll-content.d.ts +11 -0
- package/dist/lib/components/infinite-scroll-content.js +2 -0
- package/dist/lib/components/infinite-scroll.cjs +1 -0
- package/dist/lib/components/infinite-scroll.d.ts +11 -0
- package/dist/lib/components/infinite-scroll.js +2 -0
- package/dist/lib/components/input-otp.cjs +1 -0
- package/dist/lib/components/input-otp.d.ts +11 -0
- package/dist/lib/components/input-otp.js +2 -0
- package/dist/lib/components/input-password-toggle.cjs +1 -0
- package/dist/lib/components/input-password-toggle.d.ts +11 -0
- package/dist/lib/components/input-password-toggle.js +2 -0
- package/dist/lib/components/input.cjs +1 -0
- package/dist/lib/components/input.d.ts +11 -0
- package/dist/lib/components/input.js +2 -0
- package/dist/lib/components/item-divider.cjs +1 -0
- package/dist/lib/components/item-divider.d.ts +11 -0
- package/dist/lib/components/item-divider.js +2 -0
- package/dist/lib/components/item-group.cjs +1 -0
- package/dist/lib/components/item-group.d.ts +11 -0
- package/dist/lib/components/item-group.js +2 -0
- package/dist/lib/components/item-option.cjs +1 -0
- package/dist/lib/components/item-option.d.ts +11 -0
- package/dist/lib/components/item-option.js +2 -0
- package/dist/lib/components/item-options.cjs +1 -0
- package/dist/lib/components/item-options.d.ts +11 -0
- package/dist/lib/components/item-options.js +2 -0
- package/dist/lib/components/item-sliding.cjs +1 -0
- package/dist/lib/components/item-sliding.d.ts +11 -0
- package/dist/lib/components/item-sliding.js +2 -0
- package/dist/lib/components/item.cjs +1 -0
- package/dist/lib/components/item.d.ts +11 -0
- package/dist/lib/components/item.js +2 -0
- package/dist/lib/components/label.cjs +1 -0
- package/dist/lib/components/label.d.ts +11 -0
- package/dist/lib/components/label.js +2 -0
- package/dist/lib/components/list-header.cjs +1 -0
- package/dist/lib/components/list-header.d.ts +11 -0
- package/dist/lib/components/list-header.js +2 -0
- package/dist/lib/components/list.cjs +1 -0
- package/dist/lib/components/list.d.ts +11 -0
- package/dist/lib/components/list.js +2 -0
- package/dist/lib/components/loading.cjs +1 -0
- package/dist/lib/components/loading.d.ts +11 -0
- package/dist/lib/components/loading.js +2 -0
- package/dist/lib/components/manifest.cjs +2 -0
- package/dist/lib/components/manifest.cjs.map +1 -0
- package/dist/lib/components/manifest.d.ts +43 -0
- package/dist/lib/components/manifest.js +647 -0
- package/dist/lib/components/manifest.js.map +1 -0
- package/dist/lib/components/menu-button.cjs +1 -0
- package/dist/lib/components/menu-button.d.ts +11 -0
- package/dist/lib/components/menu-button.js +2 -0
- package/dist/lib/components/menu-toggle.cjs +1 -0
- package/dist/lib/components/menu-toggle.d.ts +11 -0
- package/dist/lib/components/menu-toggle.js +2 -0
- package/dist/lib/components/menu.cjs +1 -0
- package/dist/lib/components/menu.d.ts +11 -0
- package/dist/lib/components/menu.js +2 -0
- package/dist/lib/components/modal.cjs +1 -0
- package/dist/lib/components/modal.d.ts +11 -0
- package/dist/lib/components/modal.js +2 -0
- package/dist/lib/components/nav-link.cjs +1 -0
- package/dist/lib/components/nav-link.d.ts +11 -0
- package/dist/lib/components/nav-link.js +2 -0
- package/dist/lib/components/nav.cjs +1 -0
- package/dist/lib/components/nav.d.ts +11 -0
- package/dist/lib/components/nav.js +2 -0
- package/dist/lib/components/note.cjs +1 -0
- package/dist/lib/components/note.d.ts +11 -0
- package/dist/lib/components/note.js +2 -0
- package/dist/lib/components/picker-column-option.cjs +1 -0
- package/dist/lib/components/picker-column-option.d.ts +11 -0
- package/dist/lib/components/picker-column-option.js +2 -0
- package/dist/lib/components/picker-column.cjs +1 -0
- package/dist/lib/components/picker-column.d.ts +11 -0
- package/dist/lib/components/picker-column.js +2 -0
- package/dist/lib/components/picker.cjs +1 -0
- package/dist/lib/components/picker.d.ts +11 -0
- package/dist/lib/components/picker.js +2 -0
- package/dist/lib/components/popover.cjs +1 -0
- package/dist/lib/components/popover.d.ts +11 -0
- package/dist/lib/components/popover.js +2 -0
- package/dist/lib/components/progress-bar.cjs +1 -0
- package/dist/lib/components/progress-bar.d.ts +11 -0
- package/dist/lib/components/progress-bar.js +2 -0
- package/dist/lib/components/radio-group.cjs +1 -0
- package/dist/lib/components/radio-group.d.ts +11 -0
- package/dist/lib/components/radio-group.js +2 -0
- package/dist/lib/components/radio.cjs +1 -0
- package/dist/lib/components/radio.d.ts +11 -0
- package/dist/lib/components/radio.js +2 -0
- package/dist/lib/components/range.cjs +1 -0
- package/dist/lib/components/range.d.ts +11 -0
- package/dist/lib/components/range.js +2 -0
- package/dist/lib/components/refresher-content.cjs +1 -0
- package/dist/lib/components/refresher-content.d.ts +11 -0
- package/dist/lib/components/refresher-content.js +2 -0
- package/dist/lib/components/refresher.cjs +1 -0
- package/dist/lib/components/refresher.d.ts +11 -0
- package/dist/lib/components/refresher.js +2 -0
- package/dist/lib/components/reorder-group.cjs +1 -0
- package/dist/lib/components/reorder-group.d.ts +11 -0
- package/dist/lib/components/reorder-group.js +2 -0
- package/dist/lib/components/reorder.cjs +1 -0
- package/dist/lib/components/reorder.d.ts +11 -0
- package/dist/lib/components/reorder.js +2 -0
- package/dist/lib/components/ripple-effect.cjs +1 -0
- package/dist/lib/components/ripple-effect.d.ts +11 -0
- package/dist/lib/components/ripple-effect.js +2 -0
- package/dist/lib/components/router-link.cjs +1 -0
- package/dist/lib/components/router-link.d.ts +11 -0
- package/dist/lib/components/router-link.js +2 -0
- package/dist/lib/components/row.cjs +1 -0
- package/dist/lib/components/row.d.ts +11 -0
- package/dist/lib/components/row.js +2 -0
- package/dist/lib/components/searchbar.cjs +1 -0
- package/dist/lib/components/searchbar.d.ts +11 -0
- package/dist/lib/components/searchbar.js +2 -0
- package/dist/lib/components/segment-button.cjs +1 -0
- package/dist/lib/components/segment-button.d.ts +11 -0
- package/dist/lib/components/segment-button.js +2 -0
- package/dist/lib/components/segment-content.cjs +1 -0
- package/dist/lib/components/segment-content.d.ts +11 -0
- package/dist/lib/components/segment-content.js +2 -0
- package/dist/lib/components/segment-view.cjs +1 -0
- package/dist/lib/components/segment-view.d.ts +11 -0
- package/dist/lib/components/segment-view.js +2 -0
- package/dist/lib/components/segment.cjs +1 -0
- package/dist/lib/components/segment.d.ts +11 -0
- package/dist/lib/components/segment.js +2 -0
- package/dist/lib/components/select-modal.cjs +1 -0
- package/dist/lib/components/select-modal.d.ts +11 -0
- package/dist/lib/components/select-modal.js +2 -0
- package/dist/lib/components/select-option.cjs +1 -0
- package/dist/lib/components/select-option.d.ts +11 -0
- package/dist/lib/components/select-option.js +2 -0
- package/dist/lib/components/select-popover.cjs +1 -0
- package/dist/lib/components/select-popover.d.ts +11 -0
- package/dist/lib/components/select-popover.js +2 -0
- package/dist/lib/components/select.cjs +1 -0
- package/dist/lib/components/select.d.ts +11 -0
- package/dist/lib/components/select.js +2 -0
- package/dist/lib/components/skeleton-text.cjs +1 -0
- package/dist/lib/components/skeleton-text.d.ts +11 -0
- package/dist/lib/components/skeleton-text.js +2 -0
- package/dist/lib/components/spinner.cjs +1 -0
- package/dist/lib/components/spinner.d.ts +11 -0
- package/dist/lib/components/spinner.js +2 -0
- package/dist/lib/components/split-pane.cjs +1 -0
- package/dist/lib/components/split-pane.d.ts +11 -0
- package/dist/lib/components/split-pane.js +2 -0
- package/dist/lib/components/tab-bar.cjs +1 -0
- package/dist/lib/components/tab-bar.d.ts +11 -0
- package/dist/lib/components/tab-bar.js +2 -0
- package/dist/lib/components/tab-button.cjs +1 -0
- package/dist/lib/components/tab-button.d.ts +11 -0
- package/dist/lib/components/tab-button.js +2 -0
- package/dist/lib/components/tab.cjs +1 -0
- package/dist/lib/components/tab.d.ts +11 -0
- package/dist/lib/components/tab.js +2 -0
- package/dist/lib/components/tabs.cjs +1 -0
- package/dist/lib/components/tabs.d.ts +11 -0
- package/dist/lib/components/tabs.js +2 -0
- package/dist/lib/components/text.cjs +1 -0
- package/dist/lib/components/text.d.ts +11 -0
- package/dist/lib/components/text.js +2 -0
- package/dist/lib/components/textarea.cjs +1 -0
- package/dist/lib/components/textarea.d.ts +11 -0
- package/dist/lib/components/textarea.js +2 -0
- package/dist/lib/components/thumbnail.cjs +1 -0
- package/dist/lib/components/thumbnail.d.ts +11 -0
- package/dist/lib/components/thumbnail.js +2 -0
- package/dist/lib/components/title.cjs +1 -0
- package/dist/lib/components/title.d.ts +11 -0
- package/dist/lib/components/title.js +2 -0
- package/dist/lib/components/toast.cjs +1 -0
- package/dist/lib/components/toast.d.ts +11 -0
- package/dist/lib/components/toast.js +2 -0
- package/dist/lib/components/toggle.cjs +1 -0
- package/dist/lib/components/toggle.d.ts +11 -0
- package/dist/lib/components/toggle.js +2 -0
- package/dist/lib/components/toolbar.cjs +1 -0
- package/dist/lib/components/toolbar.d.ts +11 -0
- package/dist/lib/components/toolbar.js +2 -0
- package/dist/lib/components.cjs +1 -0
- package/dist/lib/components.d.ts +110 -0
- package/dist/lib/components.js +94 -0
- package/dist/lib/definitions-DZ-6I7Fj.js +282 -0
- package/dist/lib/definitions-DZ-6I7Fj.js.map +1 -0
- package/dist/lib/definitions-Lm2GaF-Z.cjs +2 -0
- package/dist/lib/definitions-Lm2GaF-Z.cjs.map +1 -0
- package/dist/lib/elur-ionic.cjs +1 -0
- package/dist/lib/elur-ionic.cjs.map +1 -0
- package/dist/lib/elur-ionic.js +1 -0
- package/dist/lib/elur-ionic.js.map +1 -0
- package/dist/lib/index.d.ts +47 -0
- package/dist/lib/lifecycle.d.ts +62 -0
- package/dist/lib/navigation.cjs +2 -0
- package/dist/lib/navigation.cjs.map +1 -0
- package/dist/lib/navigation.d.ts +214 -0
- package/dist/lib/navigation.js +193 -0
- package/dist/lib/navigation.js.map +1 -0
- package/dist/lib/overlays.cjs +2 -0
- package/dist/lib/overlays.cjs.map +1 -0
- package/dist/lib/overlays.d.ts +400 -0
- package/dist/lib/overlays.js +161 -0
- package/dist/lib/overlays.js.map +1 -0
- package/dist/lib/page-state.cjs +2 -0
- package/dist/lib/page-state.cjs.map +1 -0
- package/dist/lib/page-state.d.ts +160 -0
- package/dist/lib/page-state.js +91 -0
- package/dist/lib/page-state.js.map +1 -0
- package/dist/lib/setup.d.ts +105 -0
- package/dist/lib/tabs-ByPLrzax.cjs +50 -0
- package/dist/lib/tabs-ByPLrzax.cjs.map +1 -0
- package/dist/lib/tabs-DjD1_PTM.js +178 -0
- package/dist/lib/tabs-DjD1_PTM.js.map +1 -0
- package/dist/lib/tabs.cjs +1 -0
- package/dist/lib/tabs.d.ts +83 -0
- package/dist/lib/tabs.js +2 -0
- package/dist/lib/vite-plugin.cjs +39 -0
- package/dist/lib/vite-plugin.cjs.map +1 -0
- package/dist/lib/vite-plugin.d.ts +61 -0
- package/dist/lib/vite-plugin.js +26703 -0
- package/dist/lib/vite-plugin.js.map +1 -0
- package/dist/lib/web-C-maW8Tl.cjs +2 -0
- package/dist/lib/web-C-maW8Tl.cjs.map +1 -0
- package/dist/lib/web-jkqBWgLD.js +56 -0
- package/dist/lib/web-jkqBWgLD.js.map +1 -0
- package/package.json +204 -0
|
@@ -0,0 +1,647 @@
|
|
|
1
|
+
//#region src/components/manifest.ts
|
|
2
|
+
var e = [
|
|
3
|
+
{
|
|
4
|
+
tag: "ion-app",
|
|
5
|
+
importPath: "ion-app.js",
|
|
6
|
+
category: "layout",
|
|
7
|
+
minIonicMajor: 8
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
tag: "ion-header",
|
|
11
|
+
importPath: "ion-header.js",
|
|
12
|
+
category: "layout",
|
|
13
|
+
minIonicMajor: 8
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
tag: "ion-toolbar",
|
|
17
|
+
importPath: "ion-toolbar.js",
|
|
18
|
+
category: "layout",
|
|
19
|
+
minIonicMajor: 8
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
tag: "ion-title",
|
|
23
|
+
importPath: "ion-title.js",
|
|
24
|
+
category: "layout",
|
|
25
|
+
minIonicMajor: 8
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
tag: "ion-content",
|
|
29
|
+
importPath: "ion-content.js",
|
|
30
|
+
category: "layout",
|
|
31
|
+
minIonicMajor: 8
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
tag: "ion-footer",
|
|
35
|
+
importPath: "ion-footer.js",
|
|
36
|
+
category: "layout",
|
|
37
|
+
minIonicMajor: 8
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
tag: "ion-grid",
|
|
41
|
+
importPath: "ion-grid.js",
|
|
42
|
+
category: "layout",
|
|
43
|
+
minIonicMajor: 8
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
tag: "ion-row",
|
|
47
|
+
importPath: "ion-row.js",
|
|
48
|
+
category: "layout",
|
|
49
|
+
minIonicMajor: 8,
|
|
50
|
+
dependencies: ["ion-grid"]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
tag: "ion-col",
|
|
54
|
+
importPath: "ion-col.js",
|
|
55
|
+
category: "layout",
|
|
56
|
+
minIonicMajor: 8,
|
|
57
|
+
dependencies: ["ion-grid", "ion-row"]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
tag: "ion-split-pane",
|
|
61
|
+
importPath: "ion-split-pane.js",
|
|
62
|
+
category: "layout",
|
|
63
|
+
minIonicMajor: 8
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
tag: "ion-text",
|
|
67
|
+
importPath: "ion-text.js",
|
|
68
|
+
category: "layout",
|
|
69
|
+
minIonicMajor: 8
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
tag: "ion-img",
|
|
73
|
+
importPath: "ion-img.js",
|
|
74
|
+
category: "layout",
|
|
75
|
+
minIonicMajor: 8
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
tag: "ion-backdrop",
|
|
79
|
+
importPath: "ion-backdrop.js",
|
|
80
|
+
category: "layout",
|
|
81
|
+
minIonicMajor: 8
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
tag: "ion-buttons",
|
|
85
|
+
importPath: "ion-buttons.js",
|
|
86
|
+
category: "navigation",
|
|
87
|
+
minIonicMajor: 8
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
tag: "ion-back-button",
|
|
91
|
+
importPath: "ion-back-button.js",
|
|
92
|
+
category: "navigation",
|
|
93
|
+
minIonicMajor: 8
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
tag: "ion-menu",
|
|
97
|
+
importPath: "ion-menu.js",
|
|
98
|
+
category: "navigation",
|
|
99
|
+
minIonicMajor: 8
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
tag: "ion-menu-button",
|
|
103
|
+
importPath: "ion-menu-button.js",
|
|
104
|
+
category: "navigation",
|
|
105
|
+
minIonicMajor: 8
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
tag: "ion-menu-toggle",
|
|
109
|
+
importPath: "ion-menu-toggle.js",
|
|
110
|
+
category: "navigation",
|
|
111
|
+
minIonicMajor: 8
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
tag: "ion-tabs",
|
|
115
|
+
importPath: "ion-tabs.js",
|
|
116
|
+
category: "navigation",
|
|
117
|
+
minIonicMajor: 8
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
tag: "ion-tab",
|
|
121
|
+
importPath: "ion-tab.js",
|
|
122
|
+
category: "navigation",
|
|
123
|
+
minIonicMajor: 8
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
tag: "ion-tab-bar",
|
|
127
|
+
importPath: "ion-tab-bar.js",
|
|
128
|
+
category: "navigation",
|
|
129
|
+
minIonicMajor: 8
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
tag: "ion-tab-button",
|
|
133
|
+
importPath: "ion-tab-button.js",
|
|
134
|
+
category: "navigation",
|
|
135
|
+
minIonicMajor: 8
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
tag: "ion-nav",
|
|
139
|
+
importPath: "ion-nav.js",
|
|
140
|
+
category: "navigation",
|
|
141
|
+
minIonicMajor: 8
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
tag: "ion-nav-link",
|
|
145
|
+
importPath: "ion-nav-link.js",
|
|
146
|
+
category: "navigation",
|
|
147
|
+
minIonicMajor: 8
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
tag: "ion-router-link",
|
|
151
|
+
importPath: "ion-router-link.js",
|
|
152
|
+
category: "navigation",
|
|
153
|
+
minIonicMajor: 8
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
tag: "ion-input",
|
|
157
|
+
importPath: "ion-input.js",
|
|
158
|
+
category: "forms",
|
|
159
|
+
minIonicMajor: 8
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
tag: "ion-input-otp",
|
|
163
|
+
importPath: "ion-input-otp.js",
|
|
164
|
+
category: "forms",
|
|
165
|
+
minIonicMajor: 8
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
tag: "ion-input-password-toggle",
|
|
169
|
+
importPath: "ion-input-password-toggle.js",
|
|
170
|
+
category: "forms",
|
|
171
|
+
minIonicMajor: 8
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
tag: "ion-textarea",
|
|
175
|
+
importPath: "ion-textarea.js",
|
|
176
|
+
category: "forms",
|
|
177
|
+
minIonicMajor: 8
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
tag: "ion-checkbox",
|
|
181
|
+
importPath: "ion-checkbox.js",
|
|
182
|
+
category: "forms",
|
|
183
|
+
minIonicMajor: 8
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
tag: "ion-toggle",
|
|
187
|
+
importPath: "ion-toggle.js",
|
|
188
|
+
category: "forms",
|
|
189
|
+
minIonicMajor: 8
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
tag: "ion-select",
|
|
193
|
+
importPath: "ion-select.js",
|
|
194
|
+
category: "forms",
|
|
195
|
+
minIonicMajor: 8
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
tag: "ion-select-option",
|
|
199
|
+
importPath: "ion-select-option.js",
|
|
200
|
+
category: "forms",
|
|
201
|
+
minIonicMajor: 8,
|
|
202
|
+
dependencies: ["ion-select"]
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
tag: "ion-select-modal",
|
|
206
|
+
importPath: "ion-select-modal.js",
|
|
207
|
+
category: "forms",
|
|
208
|
+
minIonicMajor: 8
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
tag: "ion-select-popover",
|
|
212
|
+
importPath: "ion-select-popover.js",
|
|
213
|
+
category: "forms",
|
|
214
|
+
minIonicMajor: 8
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
tag: "ion-radio",
|
|
218
|
+
importPath: "ion-radio.js",
|
|
219
|
+
category: "forms",
|
|
220
|
+
minIonicMajor: 8
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
tag: "ion-radio-group",
|
|
224
|
+
importPath: "ion-radio-group.js",
|
|
225
|
+
category: "forms",
|
|
226
|
+
minIonicMajor: 8,
|
|
227
|
+
dependencies: ["ion-radio"]
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
tag: "ion-range",
|
|
231
|
+
importPath: "ion-range.js",
|
|
232
|
+
category: "forms",
|
|
233
|
+
minIonicMajor: 8
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
tag: "ion-searchbar",
|
|
237
|
+
importPath: "ion-searchbar.js",
|
|
238
|
+
category: "forms",
|
|
239
|
+
minIonicMajor: 8
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
tag: "ion-datetime",
|
|
243
|
+
importPath: "ion-datetime.js",
|
|
244
|
+
category: "forms",
|
|
245
|
+
minIonicMajor: 8
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
tag: "ion-datetime-button",
|
|
249
|
+
importPath: "ion-datetime-button.js",
|
|
250
|
+
category: "forms",
|
|
251
|
+
minIonicMajor: 8,
|
|
252
|
+
dependencies: ["ion-datetime"]
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
tag: "ion-segment",
|
|
256
|
+
importPath: "ion-segment.js",
|
|
257
|
+
category: "forms",
|
|
258
|
+
minIonicMajor: 8
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
tag: "ion-segment-button",
|
|
262
|
+
importPath: "ion-segment-button.js",
|
|
263
|
+
category: "forms",
|
|
264
|
+
minIonicMajor: 8,
|
|
265
|
+
dependencies: ["ion-segment"]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
tag: "ion-segment-view",
|
|
269
|
+
importPath: "ion-segment-view.js",
|
|
270
|
+
category: "forms",
|
|
271
|
+
minIonicMajor: 8
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
tag: "ion-segment-content",
|
|
275
|
+
importPath: "ion-segment-content.js",
|
|
276
|
+
category: "forms",
|
|
277
|
+
minIonicMajor: 8,
|
|
278
|
+
dependencies: ["ion-segment-view"]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
tag: "ion-list",
|
|
282
|
+
importPath: "ion-list.js",
|
|
283
|
+
category: "lists",
|
|
284
|
+
minIonicMajor: 8
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
tag: "ion-list-header",
|
|
288
|
+
importPath: "ion-list-header.js",
|
|
289
|
+
category: "lists",
|
|
290
|
+
minIonicMajor: 8
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
tag: "ion-item",
|
|
294
|
+
importPath: "ion-item.js",
|
|
295
|
+
category: "lists",
|
|
296
|
+
minIonicMajor: 8
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
tag: "ion-item-divider",
|
|
300
|
+
importPath: "ion-item-divider.js",
|
|
301
|
+
category: "lists",
|
|
302
|
+
minIonicMajor: 8
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
tag: "ion-item-group",
|
|
306
|
+
importPath: "ion-item-group.js",
|
|
307
|
+
category: "lists",
|
|
308
|
+
minIonicMajor: 8
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
tag: "ion-item-sliding",
|
|
312
|
+
importPath: "ion-item-sliding.js",
|
|
313
|
+
category: "lists",
|
|
314
|
+
minIonicMajor: 8
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
tag: "ion-item-options",
|
|
318
|
+
importPath: "ion-item-options.js",
|
|
319
|
+
category: "lists",
|
|
320
|
+
minIonicMajor: 8,
|
|
321
|
+
dependencies: ["ion-item-sliding"]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
tag: "ion-item-option",
|
|
325
|
+
importPath: "ion-item-option.js",
|
|
326
|
+
category: "lists",
|
|
327
|
+
minIonicMajor: 8,
|
|
328
|
+
dependencies: ["ion-item-sliding"]
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
tag: "ion-label",
|
|
332
|
+
importPath: "ion-label.js",
|
|
333
|
+
category: "lists",
|
|
334
|
+
minIonicMajor: 8
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
tag: "ion-note",
|
|
338
|
+
importPath: "ion-note.js",
|
|
339
|
+
category: "lists",
|
|
340
|
+
minIonicMajor: 8
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
tag: "ion-reorder",
|
|
344
|
+
importPath: "ion-reorder.js",
|
|
345
|
+
category: "lists",
|
|
346
|
+
minIonicMajor: 8
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
tag: "ion-reorder-group",
|
|
350
|
+
importPath: "ion-reorder-group.js",
|
|
351
|
+
category: "lists",
|
|
352
|
+
minIonicMajor: 8,
|
|
353
|
+
dependencies: ["ion-reorder"]
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
tag: "ion-card",
|
|
357
|
+
importPath: "ion-card.js",
|
|
358
|
+
category: "data",
|
|
359
|
+
minIonicMajor: 8
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
tag: "ion-card-header",
|
|
363
|
+
importPath: "ion-card-header.js",
|
|
364
|
+
category: "data",
|
|
365
|
+
minIonicMajor: 8,
|
|
366
|
+
dependencies: ["ion-card"]
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
tag: "ion-card-title",
|
|
370
|
+
importPath: "ion-card-title.js",
|
|
371
|
+
category: "data",
|
|
372
|
+
minIonicMajor: 8,
|
|
373
|
+
dependencies: ["ion-card"]
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
tag: "ion-card-subtitle",
|
|
377
|
+
importPath: "ion-card-subtitle.js",
|
|
378
|
+
category: "data",
|
|
379
|
+
minIonicMajor: 8,
|
|
380
|
+
dependencies: ["ion-card"]
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
tag: "ion-card-content",
|
|
384
|
+
importPath: "ion-card-content.js",
|
|
385
|
+
category: "data",
|
|
386
|
+
minIonicMajor: 8,
|
|
387
|
+
dependencies: ["ion-card"]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
tag: "ion-chip",
|
|
391
|
+
importPath: "ion-chip.js",
|
|
392
|
+
category: "data",
|
|
393
|
+
minIonicMajor: 8
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
tag: "ion-badge",
|
|
397
|
+
importPath: "ion-badge.js",
|
|
398
|
+
category: "data",
|
|
399
|
+
minIonicMajor: 8
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
tag: "ion-avatar",
|
|
403
|
+
importPath: "ion-avatar.js",
|
|
404
|
+
category: "data",
|
|
405
|
+
minIonicMajor: 8
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
tag: "ion-thumbnail",
|
|
409
|
+
importPath: "ion-thumbnail.js",
|
|
410
|
+
category: "data",
|
|
411
|
+
minIonicMajor: 8
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
tag: "ion-accordion",
|
|
415
|
+
importPath: "ion-accordion.js",
|
|
416
|
+
category: "data",
|
|
417
|
+
minIonicMajor: 8
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
tag: "ion-accordion-group",
|
|
421
|
+
importPath: "ion-accordion-group.js",
|
|
422
|
+
category: "data",
|
|
423
|
+
minIonicMajor: 8,
|
|
424
|
+
dependencies: ["ion-accordion"]
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
tag: "ion-breadcrumb",
|
|
428
|
+
importPath: "ion-breadcrumb.js",
|
|
429
|
+
category: "data",
|
|
430
|
+
minIonicMajor: 8
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
tag: "ion-breadcrumbs",
|
|
434
|
+
importPath: "ion-breadcrumbs.js",
|
|
435
|
+
category: "data",
|
|
436
|
+
minIonicMajor: 8,
|
|
437
|
+
dependencies: ["ion-breadcrumb"]
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
tag: "ion-infinite-scroll",
|
|
441
|
+
importPath: "ion-infinite-scroll.js",
|
|
442
|
+
category: "data",
|
|
443
|
+
minIonicMajor: 8
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
tag: "ion-infinite-scroll-content",
|
|
447
|
+
importPath: "ion-infinite-scroll-content.js",
|
|
448
|
+
category: "data",
|
|
449
|
+
minIonicMajor: 8,
|
|
450
|
+
dependencies: ["ion-infinite-scroll"]
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
tag: "ion-refresher",
|
|
454
|
+
importPath: "ion-refresher.js",
|
|
455
|
+
category: "data",
|
|
456
|
+
minIonicMajor: 8
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
tag: "ion-refresher-content",
|
|
460
|
+
importPath: "ion-refresher-content.js",
|
|
461
|
+
category: "data",
|
|
462
|
+
minIonicMajor: 8,
|
|
463
|
+
dependencies: ["ion-refresher"]
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
tag: "ion-spinner",
|
|
467
|
+
importPath: "ion-spinner.js",
|
|
468
|
+
category: "feedback",
|
|
469
|
+
minIonicMajor: 8
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
tag: "ion-progress-bar",
|
|
473
|
+
importPath: "ion-progress-bar.js",
|
|
474
|
+
category: "feedback",
|
|
475
|
+
minIonicMajor: 8
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
tag: "ion-skeleton-text",
|
|
479
|
+
importPath: "ion-skeleton-text.js",
|
|
480
|
+
category: "feedback",
|
|
481
|
+
minIonicMajor: 8
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
tag: "ion-button",
|
|
485
|
+
importPath: "ion-button.js",
|
|
486
|
+
category: "buttons",
|
|
487
|
+
minIonicMajor: 8
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
tag: "ion-fab",
|
|
491
|
+
importPath: "ion-fab.js",
|
|
492
|
+
category: "buttons",
|
|
493
|
+
minIonicMajor: 8
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
tag: "ion-fab-button",
|
|
497
|
+
importPath: "ion-fab-button.js",
|
|
498
|
+
category: "buttons",
|
|
499
|
+
minIonicMajor: 8,
|
|
500
|
+
dependencies: ["ion-fab"]
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
tag: "ion-fab-list",
|
|
504
|
+
importPath: "ion-fab-list.js",
|
|
505
|
+
category: "buttons",
|
|
506
|
+
minIonicMajor: 8,
|
|
507
|
+
dependencies: ["ion-fab"]
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
tag: "ion-ripple-effect",
|
|
511
|
+
importPath: "ion-ripple-effect.js",
|
|
512
|
+
category: "buttons",
|
|
513
|
+
minIonicMajor: 8
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
tag: "ion-modal",
|
|
517
|
+
importPath: "ion-modal.js",
|
|
518
|
+
category: "overlays",
|
|
519
|
+
minIonicMajor: 8,
|
|
520
|
+
wrapper: "useModal"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
tag: "ion-popover",
|
|
524
|
+
importPath: "ion-popover.js",
|
|
525
|
+
category: "overlays",
|
|
526
|
+
minIonicMajor: 8,
|
|
527
|
+
wrapper: "usePopover"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
tag: "ion-toast",
|
|
531
|
+
importPath: "ion-toast.js",
|
|
532
|
+
category: "overlays",
|
|
533
|
+
minIonicMajor: 8,
|
|
534
|
+
wrapper: "useToast"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
tag: "ion-alert",
|
|
538
|
+
importPath: "ion-alert.js",
|
|
539
|
+
category: "overlays",
|
|
540
|
+
minIonicMajor: 8,
|
|
541
|
+
wrapper: "useAlert"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
tag: "ion-action-sheet",
|
|
545
|
+
importPath: "ion-action-sheet.js",
|
|
546
|
+
category: "overlays",
|
|
547
|
+
minIonicMajor: 8,
|
|
548
|
+
wrapper: "useActionSheet"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
tag: "ion-loading",
|
|
552
|
+
importPath: "ion-loading.js",
|
|
553
|
+
category: "overlays",
|
|
554
|
+
minIonicMajor: 8,
|
|
555
|
+
wrapper: "useLoading"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
tag: "ion-picker",
|
|
559
|
+
importPath: "ion-picker.js",
|
|
560
|
+
category: "overlays",
|
|
561
|
+
minIonicMajor: 8,
|
|
562
|
+
wrapper: "usePicker"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
tag: "ion-picker-column",
|
|
566
|
+
importPath: "ion-picker-column.js",
|
|
567
|
+
category: "overlays",
|
|
568
|
+
minIonicMajor: 8,
|
|
569
|
+
dependencies: ["ion-picker"]
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
tag: "ion-picker-column-option",
|
|
573
|
+
importPath: "ion-picker-column-option.js",
|
|
574
|
+
category: "overlays",
|
|
575
|
+
minIonicMajor: 8,
|
|
576
|
+
dependencies: ["ion-picker-column"]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
tag: "ion-router",
|
|
580
|
+
importPath: "ion-router.js",
|
|
581
|
+
category: "routing-legacy",
|
|
582
|
+
minIonicMajor: 8,
|
|
583
|
+
legacy: !0
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
tag: "ion-route",
|
|
587
|
+
importPath: "ion-route.js",
|
|
588
|
+
category: "routing-legacy",
|
|
589
|
+
minIonicMajor: 8,
|
|
590
|
+
legacy: !0
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
tag: "ion-route-redirect",
|
|
594
|
+
importPath: "ion-route-redirect.js",
|
|
595
|
+
category: "routing-legacy",
|
|
596
|
+
minIonicMajor: 8,
|
|
597
|
+
legacy: !0
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
tag: "ion-router-outlet",
|
|
601
|
+
importPath: "ion-router-outlet.js",
|
|
602
|
+
category: "layout",
|
|
603
|
+
minIonicMajor: 8
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
tag: "ion-icon",
|
|
607
|
+
importPath: "ion-icon.js",
|
|
608
|
+
category: "feedback",
|
|
609
|
+
minIonicMajor: 8
|
|
610
|
+
}
|
|
611
|
+
], t = new Map(e.map((e) => [e.tag, e])), n = /* @__PURE__ */ new Map();
|
|
612
|
+
for (let t of e) {
|
|
613
|
+
let e = n.get(t.category) ?? [];
|
|
614
|
+
e.push(t), n.set(t.category, e);
|
|
615
|
+
}
|
|
616
|
+
function r(e) {
|
|
617
|
+
return t.get(e);
|
|
618
|
+
}
|
|
619
|
+
function i(e) {
|
|
620
|
+
return (n.get(e) ?? []).filter((e) => !e.legacy);
|
|
621
|
+
}
|
|
622
|
+
function a() {
|
|
623
|
+
return e.filter((e) => !e.legacy).map((e) => e.tag);
|
|
624
|
+
}
|
|
625
|
+
function o(e) {
|
|
626
|
+
let n = t.get(e);
|
|
627
|
+
return n != null && !n.legacy;
|
|
628
|
+
}
|
|
629
|
+
function s(e) {
|
|
630
|
+
if (!t.get(e)?.dependencies) return [];
|
|
631
|
+
let n = /* @__PURE__ */ new Set(), r = [];
|
|
632
|
+
function i(e) {
|
|
633
|
+
let a = t.get(e);
|
|
634
|
+
if (a?.dependencies) for (let e of a.dependencies) n.has(e) || (n.add(e), r.push(e), i(e));
|
|
635
|
+
}
|
|
636
|
+
return i(e), r;
|
|
637
|
+
}
|
|
638
|
+
function c(e) {
|
|
639
|
+
return e.replace(/^ion-/, "");
|
|
640
|
+
}
|
|
641
|
+
function l(e) {
|
|
642
|
+
return "defineIon" + c(e).split("-").map((e) => e.charAt(0).toUpperCase() + e.slice(1)).join("");
|
|
643
|
+
}
|
|
644
|
+
//#endregion
|
|
645
|
+
export { e as COMPONENT_MANIFEST, a as getAllSupportedTags, r as getComponentByTag, i as getComponentsByCategory, s as getDependencyChain, o as isSupportedTag, l as tagToDefinerName, c as tagToSubpath };
|
|
646
|
+
|
|
647
|
+
//# sourceMappingURL=manifest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"manifest.js","names":[],"sources":["../../../src/components/manifest.ts"],"sourcesContent":["/**\n * Typed manifest of all Ionic 8 custom elements supported by elur-ionic.\n * This is the single source of truth for:\n * - the Vite plugin (auto-import scanning)\n * - direct subpath generation\n * - bundle composition\n * - diagnostics (unsupported tags, version drift)\n *\n * Each entry maps a kebab-case tag name to its Ionic Core import path and\n * metadata (category, dependencies, wrapper/controller if any).\n */\n\nexport type ComponentCategory =\n | \"layout\"\n | \"navigation\"\n | \"forms\"\n | \"lists\"\n | \"feedback\"\n | \"buttons\"\n | \"overlays\"\n | \"data\"\n | \"routing-legacy\";\n\nexport interface ComponentManifestEntry {\n /** Custom element tag name, e.g. \"ion-button\". */\n tag: string;\n /** Import specifier relative to @ionic/core, e.g. \"ion-button.js\". */\n importPath: string;\n /** Category for bundle composition. */\n category: ComponentCategory;\n /** Other components this one depends on (e.g. ion-card needs ion-card-content). */\n dependencies?: string[];\n /** Associated elur-ionic wrapper or controller, if any. */\n wrapper?: string;\n /** Minimum Ionic Core major version. */\n minIonicMajor: number;\n /** True if this is a legacy/deprecated component (ion-router, ion-route, etc.). */\n legacy?: boolean;\n}\n\n// --- Manifest ---\n\nexport const COMPONENT_MANIFEST: readonly ComponentManifestEntry[] = [\n // Layout & Core\n { tag: \"ion-app\", importPath: \"ion-app.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-header\", importPath: \"ion-header.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-toolbar\", importPath: \"ion-toolbar.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-title\", importPath: \"ion-title.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-content\", importPath: \"ion-content.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-footer\", importPath: \"ion-footer.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-grid\", importPath: \"ion-grid.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-row\", importPath: \"ion-row.js\", category: \"layout\", minIonicMajor: 8, dependencies: [\"ion-grid\"] },\n { tag: \"ion-col\", importPath: \"ion-col.js\", category: \"layout\", minIonicMajor: 8, dependencies: [\"ion-grid\", \"ion-row\"] },\n { tag: \"ion-split-pane\", importPath: \"ion-split-pane.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-text\", importPath: \"ion-text.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-img\", importPath: \"ion-img.js\", category: \"layout\", minIonicMajor: 8 },\n { tag: \"ion-backdrop\", importPath: \"ion-backdrop.js\", category: \"layout\", minIonicMajor: 8 },\n\n // Navigation\n { tag: \"ion-buttons\", importPath: \"ion-buttons.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-back-button\", importPath: \"ion-back-button.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-menu\", importPath: \"ion-menu.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-menu-button\", importPath: \"ion-menu-button.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-menu-toggle\", importPath: \"ion-menu-toggle.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-tabs\", importPath: \"ion-tabs.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-tab\", importPath: \"ion-tab.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-tab-bar\", importPath: \"ion-tab-bar.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-tab-button\", importPath: \"ion-tab-button.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-nav\", importPath: \"ion-nav.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-nav-link\", importPath: \"ion-nav-link.js\", category: \"navigation\", minIonicMajor: 8 },\n { tag: \"ion-router-link\", importPath: \"ion-router-link.js\", category: \"navigation\", minIonicMajor: 8 },\n\n // Forms & Inputs\n { tag: \"ion-input\", importPath: \"ion-input.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-input-otp\", importPath: \"ion-input-otp.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-input-password-toggle\", importPath: \"ion-input-password-toggle.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-textarea\", importPath: \"ion-textarea.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-checkbox\", importPath: \"ion-checkbox.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-toggle\", importPath: \"ion-toggle.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-select\", importPath: \"ion-select.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-select-option\", importPath: \"ion-select-option.js\", category: \"forms\", minIonicMajor: 8, dependencies: [\"ion-select\"] },\n { tag: \"ion-select-modal\", importPath: \"ion-select-modal.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-select-popover\", importPath: \"ion-select-popover.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-radio\", importPath: \"ion-radio.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-radio-group\", importPath: \"ion-radio-group.js\", category: \"forms\", minIonicMajor: 8, dependencies: [\"ion-radio\"] },\n { tag: \"ion-range\", importPath: \"ion-range.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-searchbar\", importPath: \"ion-searchbar.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-datetime\", importPath: \"ion-datetime.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-datetime-button\", importPath: \"ion-datetime-button.js\", category: \"forms\", minIonicMajor: 8, dependencies: [\"ion-datetime\"] },\n { tag: \"ion-segment\", importPath: \"ion-segment.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-segment-button\", importPath: \"ion-segment-button.js\", category: \"forms\", minIonicMajor: 8, dependencies: [\"ion-segment\"] },\n { tag: \"ion-segment-view\", importPath: \"ion-segment-view.js\", category: \"forms\", minIonicMajor: 8 },\n { tag: \"ion-segment-content\", importPath: \"ion-segment-content.js\", category: \"forms\", minIonicMajor: 8, dependencies: [\"ion-segment-view\"] },\n\n // List & Items\n { tag: \"ion-list\", importPath: \"ion-list.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-list-header\", importPath: \"ion-list-header.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-item\", importPath: \"ion-item.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-item-divider\", importPath: \"ion-item-divider.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-item-group\", importPath: \"ion-item-group.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-item-sliding\", importPath: \"ion-item-sliding.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-item-options\", importPath: \"ion-item-options.js\", category: \"lists\", minIonicMajor: 8, dependencies: [\"ion-item-sliding\"] },\n { tag: \"ion-item-option\", importPath: \"ion-item-option.js\", category: \"lists\", minIonicMajor: 8, dependencies: [\"ion-item-sliding\"] },\n { tag: \"ion-label\", importPath: \"ion-label.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-note\", importPath: \"ion-note.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-reorder\", importPath: \"ion-reorder.js\", category: \"lists\", minIonicMajor: 8 },\n { tag: \"ion-reorder-group\", importPath: \"ion-reorder-group.js\", category: \"lists\", minIonicMajor: 8, dependencies: [\"ion-reorder\"] },\n\n // Cards & Data\n { tag: \"ion-card\", importPath: \"ion-card.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-card-header\", importPath: \"ion-card-header.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-card\"] },\n { tag: \"ion-card-title\", importPath: \"ion-card-title.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-card\"] },\n { tag: \"ion-card-subtitle\", importPath: \"ion-card-subtitle.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-card\"] },\n { tag: \"ion-card-content\", importPath: \"ion-card-content.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-card\"] },\n { tag: \"ion-chip\", importPath: \"ion-chip.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-badge\", importPath: \"ion-badge.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-avatar\", importPath: \"ion-avatar.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-thumbnail\", importPath: \"ion-thumbnail.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-accordion\", importPath: \"ion-accordion.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-accordion-group\", importPath: \"ion-accordion-group.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-accordion\"] },\n { tag: \"ion-breadcrumb\", importPath: \"ion-breadcrumb.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-breadcrumbs\", importPath: \"ion-breadcrumbs.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-breadcrumb\"] },\n { tag: \"ion-infinite-scroll\", importPath: \"ion-infinite-scroll.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-infinite-scroll-content\", importPath: \"ion-infinite-scroll-content.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-infinite-scroll\"] },\n { tag: \"ion-refresher\", importPath: \"ion-refresher.js\", category: \"data\", minIonicMajor: 8 },\n { tag: \"ion-refresher-content\", importPath: \"ion-refresher-content.js\", category: \"data\", minIonicMajor: 8, dependencies: [\"ion-refresher\"] },\n\n // Feedback & Progress\n { tag: \"ion-spinner\", importPath: \"ion-spinner.js\", category: \"feedback\", minIonicMajor: 8 },\n { tag: \"ion-progress-bar\", importPath: \"ion-progress-bar.js\", category: \"feedback\", minIonicMajor: 8 },\n { tag: \"ion-skeleton-text\", importPath: \"ion-skeleton-text.js\", category: \"feedback\", minIonicMajor: 8 },\n\n // Buttons & Actions\n { tag: \"ion-button\", importPath: \"ion-button.js\", category: \"buttons\", minIonicMajor: 8 },\n { tag: \"ion-fab\", importPath: \"ion-fab.js\", category: \"buttons\", minIonicMajor: 8 },\n { tag: \"ion-fab-button\", importPath: \"ion-fab-button.js\", category: \"buttons\", minIonicMajor: 8, dependencies: [\"ion-fab\"] },\n { tag: \"ion-fab-list\", importPath: \"ion-fab-list.js\", category: \"buttons\", minIonicMajor: 8, dependencies: [\"ion-fab\"] },\n { tag: \"ion-ripple-effect\", importPath: \"ion-ripple-effect.js\", category: \"buttons\", minIonicMajor: 8 },\n\n // Overlays\n { tag: \"ion-modal\", importPath: \"ion-modal.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"useModal\" },\n { tag: \"ion-popover\", importPath: \"ion-popover.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"usePopover\" },\n { tag: \"ion-toast\", importPath: \"ion-toast.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"useToast\" },\n { tag: \"ion-alert\", importPath: \"ion-alert.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"useAlert\" },\n { tag: \"ion-action-sheet\", importPath: \"ion-action-sheet.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"useActionSheet\" },\n { tag: \"ion-loading\", importPath: \"ion-loading.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"useLoading\" },\n { tag: \"ion-picker\", importPath: \"ion-picker.js\", category: \"overlays\", minIonicMajor: 8, wrapper: \"usePicker\" },\n { tag: \"ion-picker-column\", importPath: \"ion-picker-column.js\", category: \"overlays\", minIonicMajor: 8, dependencies: [\"ion-picker\"] },\n { tag: \"ion-picker-column-option\", importPath: \"ion-picker-column-option.js\", category: \"overlays\", minIonicMajor: 8, dependencies: [\"ion-picker-column\"] },\n\n // Routing (legacy — not registered by default)\n { tag: \"ion-router\", importPath: \"ion-router.js\", category: \"routing-legacy\", minIonicMajor: 8, legacy: true },\n { tag: \"ion-route\", importPath: \"ion-route.js\", category: \"routing-legacy\", minIonicMajor: 8, legacy: true },\n { tag: \"ion-route-redirect\", importPath: \"ion-route-redirect.js\", category: \"routing-legacy\", minIonicMajor: 8, legacy: true },\n { tag: \"ion-router-outlet\", importPath: \"ion-router-outlet.js\", category: \"layout\", minIonicMajor: 8 },\n\n // Icon (from ionicons, not @ionic/core)\n { tag: \"ion-icon\", importPath: \"ion-icon.js\", category: \"feedback\", minIonicMajor: 8 },\n] as const;\n\n// --- Lookup helpers ---\n\nconst _byTag = new Map<string, ComponentManifestEntry>(\n COMPONENT_MANIFEST.map((e) => [e.tag, e]),\n);\n\nconst _byCategory = new Map<ComponentCategory, ComponentManifestEntry[]>();\nfor (const entry of COMPONENT_MANIFEST) {\n const list = _byCategory.get(entry.category) ?? [];\n list.push(entry);\n _byCategory.set(entry.category, list);\n}\n\n/** Get a manifest entry by tag name. */\nexport function getComponentByTag(tag: string): ComponentManifestEntry | undefined {\n return _byTag.get(tag);\n}\n\n/** Get all entries in a category (excluding legacy). */\nexport function getComponentsByCategory(category: ComponentCategory): readonly ComponentManifestEntry[] {\n return (_byCategory.get(category) ?? []).filter((e) => !e.legacy);\n}\n\n/** Get all non-legacy tags. */\nexport function getAllSupportedTags(): readonly string[] {\n return COMPONENT_MANIFEST.filter((e) => !e.legacy).map((e) => e.tag);\n}\n\n/** Check if a tag is in the manifest (and not legacy). */\nexport function isSupportedTag(tag: string): boolean {\n const entry = _byTag.get(tag);\n return entry != null && !entry.legacy;\n}\n\n/** Get the full dependency chain for a tag (recursive). */\nexport function getDependencyChain(tag: string): string[] {\n const entry = _byTag.get(tag);\n if (!entry?.dependencies) return [];\n const seen = new Set<string>();\n const result: string[] = [];\n function visit(t: string) {\n const e = _byTag.get(t);\n if (!e?.dependencies) return;\n for (const dep of e.dependencies) {\n if (seen.has(dep)) continue;\n seen.add(dep);\n result.push(dep);\n visit(dep);\n }\n }\n visit(tag);\n return result;\n}\n\n/** Convert a tag name to a subpath-safe name (e.g. \"ion-button\" → \"button\"). */\nexport function tagToSubpath(tag: string): string {\n return tag.replace(/^ion-/, \"\");\n}\n\n/** Convert a tag name to a definer export name (e.g. \"ion-button\" → \"defineIonButton\"). */\nexport function tagToDefinerName(tag: string): string {\n return \"defineIon\" + tagToSubpath(tag)\n .split(\"-\")\n .map((s) => s.charAt(0).toUpperCase() + s.slice(1))\n .join(\"\");\n}\n"],"mappings":";AA0CA,IAAa,IAAwD;CAEjE;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAU,eAAe;CAAE;CACjF;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAU,eAAe;CAAE;CACvF;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAU,eAAe;CAAE;CACzF;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAU,eAAe;CAAE;CACrF;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAU,eAAe;CAAE;CACzF;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAU,eAAe;CAAE;CACvF;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAU,eAAe;CAAE;CACnF;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAU,eAAe;EAAG,cAAc,CAAC,UAAU;CAAE;CAC7G;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAU,eAAe;EAAG,cAAc,CAAC,YAAY,SAAS;CAAE;CACxH;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAU,eAAe;CAAE;CAC/F;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAU,eAAe;CAAE;CACnF;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAU,eAAe;CAAE;CACjF;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAU,eAAe;CAAE;CAG3F;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAc,eAAe;CAAE;CAC7F;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAc,eAAe;CAAE;CACrG;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAc,eAAe;CAAE;CACvF;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAc,eAAe;CAAE;CACrG;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAc,eAAe;CAAE;CACrG;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAc,eAAe;CAAE;CACvF;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAc,eAAe;CAAE;CACrF;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAc,eAAe;CAAE;CAC7F;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAc,eAAe;CAAE;CACnG;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAc,eAAe;CAAE;CACrF;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAc,eAAe;CAAE;CAC/F;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAc,eAAe;CAAE;CAGrG;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAS,eAAe;CAAE;CACpF;EAAE,KAAK;EAAiB,YAAY;EAAoB,UAAU;EAAS,eAAe;CAAE;CAC5F;EAAE,KAAK;EAA6B,YAAY;EAAgC,UAAU;EAAS,eAAe;CAAE;CACpH;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAS,eAAe;CAAE;CAC1F;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAS,eAAe;CAAE;CAC1F;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAS,eAAe;CAAE;CACtF;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAS,eAAe;CAAE;CACtF;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,YAAY;CAAE;CAClI;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAS,eAAe;CAAE;CAClG;EAAE,KAAK;EAAsB,YAAY;EAAyB,UAAU;EAAS,eAAe;CAAE;CACtG;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAS,eAAe;CAAE;CACpF;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,WAAW;CAAE;CAC7H;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAS,eAAe;CAAE;CACpF;EAAE,KAAK;EAAiB,YAAY;EAAoB,UAAU;EAAS,eAAe;CAAE;CAC5F;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAS,eAAe;CAAE;CAC1F;EAAE,KAAK;EAAuB,YAAY;EAA0B,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,cAAc;CAAE;CACxI;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAS,eAAe;CAAE;CACxF;EAAE,KAAK;EAAsB,YAAY;EAAyB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,aAAa;CAAE;CACrI;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAS,eAAe;CAAE;CAClG;EAAE,KAAK;EAAuB,YAAY;EAA0B,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,kBAAkB;CAAE;CAG5I;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAS,eAAe;CAAE;CAClF;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAS,eAAe;CAAE;CAChG;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAS,eAAe;CAAE;CAClF;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAS,eAAe;CAAE;CAClG;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAS,eAAe;CAAE;CAC9F;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAS,eAAe;CAAE;CAClG;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,kBAAkB;CAAE;CACtI;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,kBAAkB;CAAE;CACpI;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAS,eAAe;CAAE;CACpF;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAS,eAAe;CAAE;CAClF;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAS,eAAe;CAAE;CACxF;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAS,eAAe;EAAG,cAAc,CAAC,aAAa;CAAE;CAGnI;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAQ,eAAe;CAAE;CACjF;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,UAAU;CAAE;CAC3H;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,UAAU;CAAE;CACzH;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,UAAU;CAAE;CAC/H;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,UAAU;CAAE;CAC7H;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAQ,eAAe;CAAE;CACjF;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAQ,eAAe;CAAE;CACnF;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAQ,eAAe;CAAE;CACrF;EAAE,KAAK;EAAiB,YAAY;EAAoB,UAAU;EAAQ,eAAe;CAAE;CAC3F;EAAE,KAAK;EAAiB,YAAY;EAAoB,UAAU;EAAQ,eAAe;CAAE;CAC3F;EAAE,KAAK;EAAuB,YAAY;EAA0B,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,eAAe;CAAE;CACxI;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAQ,eAAe;CAAE;CAC7F;EAAE,KAAK;EAAmB,YAAY;EAAsB,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,gBAAgB;CAAE;CACjI;EAAE,KAAK;EAAuB,YAAY;EAA0B,UAAU;EAAQ,eAAe;CAAE;CACvG;EAAE,KAAK;EAA+B,YAAY;EAAkC,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,qBAAqB;CAAE;CAC9J;EAAE,KAAK;EAAiB,YAAY;EAAoB,UAAU;EAAQ,eAAe;CAAE;CAC3F;EAAE,KAAK;EAAyB,YAAY;EAA4B,UAAU;EAAQ,eAAe;EAAG,cAAc,CAAC,eAAe;CAAE;CAG5I;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAY,eAAe;CAAE;CAC3F;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAY,eAAe;CAAE;CACrG;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAY,eAAe;CAAE;CAGvG;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAW,eAAe;CAAE;CACxF;EAAE,KAAK;EAAW,YAAY;EAAc,UAAU;EAAW,eAAe;CAAE;CAClF;EAAE,KAAK;EAAkB,YAAY;EAAqB,UAAU;EAAW,eAAe;EAAG,cAAc,CAAC,SAAS;CAAE;CAC3H;EAAE,KAAK;EAAgB,YAAY;EAAmB,UAAU;EAAW,eAAe;EAAG,cAAc,CAAC,SAAS;CAAE;CACvH;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAW,eAAe;CAAE;CAGtG;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAW;CAC5G;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAa;CAClH;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAW;CAC5G;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAW;CAC5G;EAAE,KAAK;EAAoB,YAAY;EAAuB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAiB;CAChI;EAAE,KAAK;EAAe,YAAY;EAAkB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAa;CAClH;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAY,eAAe;EAAG,SAAS;CAAY;CAC/G;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAY,eAAe;EAAG,cAAc,CAAC,YAAY;CAAE;CACrI;EAAE,KAAK;EAA4B,YAAY;EAA+B,UAAU;EAAY,eAAe;EAAG,cAAc,CAAC,mBAAmB;CAAE;CAG1J;EAAE,KAAK;EAAc,YAAY;EAAiB,UAAU;EAAkB,eAAe;EAAG,QAAQ;CAAK;CAC7G;EAAE,KAAK;EAAa,YAAY;EAAgB,UAAU;EAAkB,eAAe;EAAG,QAAQ;CAAK;CAC3G;EAAE,KAAK;EAAsB,YAAY;EAAyB,UAAU;EAAkB,eAAe;EAAG,QAAQ;CAAK;CAC7H;EAAE,KAAK;EAAqB,YAAY;EAAwB,UAAU;EAAU,eAAe;CAAE;CAGrG;EAAE,KAAK;EAAY,YAAY;EAAe,UAAU;EAAY,eAAe;CAAE;AACzF,GAIM,IAAS,IAAI,IACf,EAAmB,KAAK,MAAM,CAAC,EAAE,KAAK,CAAC,CAAC,CAC5C,GAEM,oBAAc,IAAI,IAAiD;AACzE,KAAK,IAAM,KAAS,GAAoB;CACpC,IAAM,IAAO,EAAY,IAAI,EAAM,QAAQ,KAAK,CAAC;CAEjD,AADA,EAAK,KAAK,CAAK,GACf,EAAY,IAAI,EAAM,UAAU,CAAI;AACxC;AAGA,SAAgB,EAAkB,GAAiD;CAC/E,OAAO,EAAO,IAAI,CAAG;AACzB;AAGA,SAAgB,EAAwB,GAAgE;CACpG,QAAQ,EAAY,IAAI,CAAQ,KAAK,CAAC,EAAA,CAAG,QAAQ,MAAM,CAAC,EAAE,MAAM;AACpE;AAGA,SAAgB,IAAyC;CACrD,OAAO,EAAmB,QAAQ,MAAM,CAAC,EAAE,MAAM,CAAC,CAAC,KAAK,MAAM,EAAE,GAAG;AACvE;AAGA,SAAgB,EAAe,GAAsB;CACjD,IAAM,IAAQ,EAAO,IAAI,CAAG;CAC5B,OAAO,KAAS,QAAQ,CAAC,EAAM;AACnC;AAGA,SAAgB,EAAmB,GAAuB;CAEtD,IAAI,CADU,EAAO,IAAI,CACpB,CAAA,EAAO,cAAc,OAAO,CAAC;CAClC,IAAM,oBAAO,IAAI,IAAY,GACvB,IAAmB,CAAC;CAC1B,SAAS,EAAM,GAAW;EACtB,IAAM,IAAI,EAAO,IAAI,CAAC;EACjB,OAAG,cACR,KAAK,IAAM,KAAO,EAAE,cACZ,EAAK,IAAI,CAAG,MAChB,EAAK,IAAI,CAAG,GACZ,EAAO,KAAK,CAAG,GACf,EAAM,CAAG;CAEjB;CAEA,OADA,EAAM,CAAG,GACF;AACX;AAGA,SAAgB,EAAa,GAAqB;CAC9C,OAAO,EAAI,QAAQ,SAAS,EAAE;AAClC;AAGA,SAAgB,EAAiB,GAAqB;CAClD,OAAO,cAAc,EAAa,CAAG,CAAC,CACjC,MAAM,GAAG,CAAC,CACV,KAAK,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,YAAY,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,CAClD,KAAK,EAAE;AAChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`}),require("../vite-plugin.cjs");let e=require("@ionic/core/components/ion-menu-button.js");Object.defineProperty(exports,"defineIonMenuButton",{enumerable:!0,get:function(){return e.defineCustomElement}});
|