@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 @@
|
|
|
1
|
+
{"version":3,"file":"manifest.cjs","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":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Typed manifest of all Ionic 8 custom elements supported by elur-ionic.
|
|
3
|
+
* This is the single source of truth for:
|
|
4
|
+
* - the Vite plugin (auto-import scanning)
|
|
5
|
+
* - direct subpath generation
|
|
6
|
+
* - bundle composition
|
|
7
|
+
* - diagnostics (unsupported tags, version drift)
|
|
8
|
+
*
|
|
9
|
+
* Each entry maps a kebab-case tag name to its Ionic Core import path and
|
|
10
|
+
* metadata (category, dependencies, wrapper/controller if any).
|
|
11
|
+
*/
|
|
12
|
+
export type ComponentCategory = "layout" | "navigation" | "forms" | "lists" | "feedback" | "buttons" | "overlays" | "data" | "routing-legacy";
|
|
13
|
+
export interface ComponentManifestEntry {
|
|
14
|
+
/** Custom element tag name, e.g. "ion-button". */
|
|
15
|
+
tag: string;
|
|
16
|
+
/** Import specifier relative to @ionic/core, e.g. "ion-button.js". */
|
|
17
|
+
importPath: string;
|
|
18
|
+
/** Category for bundle composition. */
|
|
19
|
+
category: ComponentCategory;
|
|
20
|
+
/** Other components this one depends on (e.g. ion-card needs ion-card-content). */
|
|
21
|
+
dependencies?: string[];
|
|
22
|
+
/** Associated elur-ionic wrapper or controller, if any. */
|
|
23
|
+
wrapper?: string;
|
|
24
|
+
/** Minimum Ionic Core major version. */
|
|
25
|
+
minIonicMajor: number;
|
|
26
|
+
/** True if this is a legacy/deprecated component (ion-router, ion-route, etc.). */
|
|
27
|
+
legacy?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare const COMPONENT_MANIFEST: readonly ComponentManifestEntry[];
|
|
30
|
+
/** Get a manifest entry by tag name. */
|
|
31
|
+
export declare function getComponentByTag(tag: string): ComponentManifestEntry | undefined;
|
|
32
|
+
/** Get all entries in a category (excluding legacy). */
|
|
33
|
+
export declare function getComponentsByCategory(category: ComponentCategory): readonly ComponentManifestEntry[];
|
|
34
|
+
/** Get all non-legacy tags. */
|
|
35
|
+
export declare function getAllSupportedTags(): readonly string[];
|
|
36
|
+
/** Check if a tag is in the manifest (and not legacy). */
|
|
37
|
+
export declare function isSupportedTag(tag: string): boolean;
|
|
38
|
+
/** Get the full dependency chain for a tag (recursive). */
|
|
39
|
+
export declare function getDependencyChain(tag: string): string[];
|
|
40
|
+
/** Convert a tag name to a subpath-safe name (e.g. "ion-button" → "button"). */
|
|
41
|
+
export declare function tagToSubpath(tag: string): string;
|
|
42
|
+
/** Convert a tag name to a definer export name (e.g. "ion-button" → "defineIonButton"). */
|
|
43
|
+
export declare function tagToDefinerName(tag: string): string;
|