voyager-ionic-core 7.2.3
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/LICENSE +23 -0
- package/README.md +113 -0
- package/components/action-sheet.js +354 -0
- package/components/alert.js +543 -0
- package/components/animation.js +985 -0
- package/components/backdrop.js +76 -0
- package/components/button-active.js +67 -0
- package/components/button.js +249 -0
- package/components/buttons.js +45 -0
- package/components/capacitor.js +13 -0
- package/components/checkbox.js +189 -0
- package/components/config.js +193 -0
- package/components/cubic-bezier.js +90 -0
- package/components/custom-elements.d.ts +2 -0
- package/components/data.js +1463 -0
- package/components/dir.js +18 -0
- package/components/focus-visible.js +75 -0
- package/components/form-controller.js +68 -0
- package/components/framework-delegate.js +121 -0
- package/components/gesture-controller.js +195 -0
- package/components/haptic.js +205 -0
- package/components/hardware-back-button.js +71 -0
- package/components/helpers.js +418 -0
- package/components/icon.js +357 -0
- package/components/index.d.ts +27 -0
- package/components/index.js +116 -0
- package/components/index2.js +457 -0
- package/components/index3.js +231 -0
- package/components/index4.js +301 -0
- package/components/index5.js +29 -0
- package/components/index6.js +34 -0
- package/components/index7.js +29 -0
- package/components/index8.js +129 -0
- package/components/index9.js +196 -0
- package/components/input-shims.js +503 -0
- package/components/input.utils.js +134 -0
- package/components/ion-accordion-group.d.ts +11 -0
- package/components/ion-accordion-group.js +241 -0
- package/components/ion-accordion.d.ts +11 -0
- package/components/ion-accordion.js +354 -0
- package/components/ion-action-sheet.d.ts +11 -0
- package/components/ion-action-sheet.js +9 -0
- package/components/ion-alert.d.ts +11 -0
- package/components/ion-alert.js +9 -0
- package/components/ion-app.d.ts +11 -0
- package/components/ion-app.js +118 -0
- package/components/ion-avatar.d.ts +11 -0
- package/components/ion-avatar.js +42 -0
- package/components/ion-back-button.d.ts +11 -0
- package/components/ion-back-button.js +130 -0
- package/components/ion-backdrop.d.ts +11 -0
- package/components/ion-backdrop.js +9 -0
- package/components/ion-badge.d.ts +11 -0
- package/components/ion-badge.js +49 -0
- package/components/ion-breadcrumb.d.ts +11 -0
- package/components/ion-breadcrumb.js +134 -0
- package/components/ion-breadcrumbs.d.ts +11 -0
- package/components/ion-breadcrumbs.js +155 -0
- package/components/ion-button.d.ts +11 -0
- package/components/ion-button.js +9 -0
- package/components/ion-buttons.d.ts +11 -0
- package/components/ion-buttons.js +9 -0
- package/components/ion-card-content.d.ts +11 -0
- package/components/ion-card-content.js +46 -0
- package/components/ion-card-header.d.ts +11 -0
- package/components/ion-card-header.js +53 -0
- package/components/ion-card-subtitle.d.ts +11 -0
- package/components/ion-card-subtitle.js +50 -0
- package/components/ion-card-title.d.ts +11 -0
- package/components/ion-card-title.js +50 -0
- package/components/ion-card.d.ts +11 -0
- package/components/ion-card.js +101 -0
- package/components/ion-checkbox.d.ts +11 -0
- package/components/ion-checkbox.js +9 -0
- package/components/ion-chip.d.ts +11 -0
- package/components/ion-chip.js +57 -0
- package/components/ion-col.d.ts +11 -0
- package/components/ion-col.js +188 -0
- package/components/ion-content.d.ts +11 -0
- package/components/ion-content.js +397 -0
- package/components/ion-datetime-button.d.ts +11 -0
- package/components/ion-datetime-button.js +377 -0
- package/components/ion-datetime.d.ts +11 -0
- package/components/ion-datetime.js +1783 -0
- package/components/ion-fab-button.d.ts +11 -0
- package/components/ion-fab-button.js +133 -0
- package/components/ion-fab-list.d.ts +11 -0
- package/components/ion-fab-list.js +59 -0
- package/components/ion-fab.d.ts +11 -0
- package/components/ion-fab.js +93 -0
- package/components/ion-footer.d.ts +11 -0
- package/components/ion-footer.js +153 -0
- package/components/ion-grid.d.ts +11 -0
- package/components/ion-grid.js +44 -0
- package/components/ion-header.d.ts +11 -0
- package/components/ion-header.js +357 -0
- package/components/ion-icon.js +9 -0
- package/components/ion-img.d.ts +11 -0
- package/components/ion-img.js +127 -0
- package/components/ion-infinite-scroll-content.d.ts +11 -0
- package/components/ion-infinite-scroll-content.js +72 -0
- package/components/ion-infinite-scroll.d.ts +11 -0
- package/components/ion-infinite-scroll.js +204 -0
- package/components/ion-input.d.ts +11 -0
- package/components/ion-input.js +508 -0
- package/components/ion-item-divider.d.ts +11 -0
- package/components/ion-item-divider.js +54 -0
- package/components/ion-item-group.d.ts +11 -0
- package/components/ion-item-group.js +47 -0
- package/components/ion-item-option.d.ts +11 -0
- package/components/ion-item-option.js +88 -0
- package/components/ion-item-options.d.ts +11 -0
- package/components/ion-item-options.js +70 -0
- package/components/ion-item-sliding.d.ts +11 -0
- package/components/ion-item-sliding.js +452 -0
- package/components/ion-item.d.ts +11 -0
- package/components/ion-item.js +9 -0
- package/components/ion-label.d.ts +11 -0
- package/components/ion-label.js +9 -0
- package/components/ion-list-header.d.ts +11 -0
- package/components/ion-list-header.js +9 -0
- package/components/ion-list.d.ts +11 -0
- package/components/ion-list.js +9 -0
- package/components/ion-loading.d.ts +11 -0
- package/components/ion-loading.js +314 -0
- package/components/ion-menu-button.d.ts +11 -0
- package/components/ion-menu-button.js +103 -0
- package/components/ion-menu-toggle.d.ts +11 -0
- package/components/ion-menu-toggle.js +60 -0
- package/components/ion-menu.d.ts +11 -0
- package/components/ion-menu.js +634 -0
- package/components/ion-modal.d.ts +11 -0
- package/components/ion-modal.js +1684 -0
- package/components/ion-nav-link.d.ts +11 -0
- package/components/ion-nav-link.js +65 -0
- package/components/ion-nav.d.ts +11 -0
- package/components/ion-nav.js +951 -0
- package/components/ion-note.d.ts +11 -0
- package/components/ion-note.js +9 -0
- package/components/ion-picker-column-internal.d.ts +11 -0
- package/components/ion-picker-column-internal.js +9 -0
- package/components/ion-picker-column.d.ts +11 -0
- package/components/ion-picker-column.js +9 -0
- package/components/ion-picker-internal.d.ts +11 -0
- package/components/ion-picker-internal.js +9 -0
- package/components/ion-picker.d.ts +11 -0
- package/components/ion-picker.js +312 -0
- package/components/ion-popover.d.ts +11 -0
- package/components/ion-popover.js +9 -0
- package/components/ion-progress-bar.d.ts +11 -0
- package/components/ion-progress-bar.js +82 -0
- package/components/ion-radio-group.d.ts +11 -0
- package/components/ion-radio-group.js +9 -0
- package/components/ion-radio.d.ts +11 -0
- package/components/ion-radio.js +9 -0
- package/components/ion-range.d.ts +11 -0
- package/components/ion-range.js +645 -0
- package/components/ion-refresher-content.d.ts +11 -0
- package/components/ion-refresher-content.js +86 -0
- package/components/ion-refresher.d.ts +11 -0
- package/components/ion-refresher.js +827 -0
- package/components/ion-reorder-group.d.ts +11 -0
- package/components/ion-reorder-group.js +303 -0
- package/components/ion-reorder.d.ts +11 -0
- package/components/ion-reorder.js +61 -0
- package/components/ion-ripple-effect.d.ts +11 -0
- package/components/ion-ripple-effect.js +9 -0
- package/components/ion-route-redirect.d.ts +11 -0
- package/components/ion-route-redirect.js +45 -0
- package/components/ion-route.d.ts +11 -0
- package/components/ion-route.js +69 -0
- package/components/ion-router-link.d.ts +11 -0
- package/components/ion-router-link.js +63 -0
- package/components/ion-router-outlet.d.ts +11 -0
- package/components/ion-router-outlet.js +229 -0
- package/components/ion-router.d.ts +11 -0
- package/components/ion-router.js +819 -0
- package/components/ion-row.d.ts +11 -0
- package/components/ion-row.js +37 -0
- package/components/ion-searchbar.d.ts +11 -0
- package/components/ion-searchbar.js +433 -0
- package/components/ion-segment-button.d.ts +11 -0
- package/components/ion-segment-button.js +142 -0
- package/components/ion-segment.d.ts +11 -0
- package/components/ion-segment.js +430 -0
- package/components/ion-select-option.d.ts +11 -0
- package/components/ion-select-option.js +45 -0
- package/components/ion-select-popover.d.ts +11 -0
- package/components/ion-select-popover.js +9 -0
- package/components/ion-select.d.ts +11 -0
- package/components/ion-select.js +819 -0
- package/components/ion-skeleton-text.d.ts +11 -0
- package/components/ion-skeleton-text.js +49 -0
- package/components/ion-spinner.d.ts +11 -0
- package/components/ion-spinner.js +9 -0
- package/components/ion-split-pane.d.ts +11 -0
- package/components/ion-split-pane.js +176 -0
- package/components/ion-tab-bar.d.ts +11 -0
- package/components/ion-tab-bar.js +94 -0
- package/components/ion-tab-button.d.ts +11 -0
- package/components/ion-tab-button.js +128 -0
- package/components/ion-tab.d.ts +11 -0
- package/components/ion-tab.js +91 -0
- package/components/ion-tabs.d.ts +11 -0
- package/components/ion-tabs.js +179 -0
- package/components/ion-text.d.ts +11 -0
- package/components/ion-text.js +44 -0
- package/components/ion-textarea.d.ts +11 -0
- package/components/ion-textarea.js +444 -0
- package/components/ion-thumbnail.d.ts +11 -0
- package/components/ion-thumbnail.js +37 -0
- package/components/ion-title.d.ts +11 -0
- package/components/ion-title.js +74 -0
- package/components/ion-toast.d.ts +11 -0
- package/components/ion-toast.js +408 -0
- package/components/ion-toggle.d.ts +11 -0
- package/components/ion-toggle.js +277 -0
- package/components/ion-toolbar.d.ts +11 -0
- package/components/ion-toolbar.js +94 -0
- package/components/ionic-global.js +224 -0
- package/components/ios.transition.js +479 -0
- package/components/item.js +301 -0
- package/components/keyboard-controller.js +165 -0
- package/components/keyboard.js +79 -0
- package/components/keyboard2.js +144 -0
- package/components/label.js +100 -0
- package/components/list-header.js +50 -0
- package/components/list.js +67 -0
- package/components/md.transition.js +54 -0
- package/components/menu-toggle-util.js +12 -0
- package/components/notch-controller.js +153 -0
- package/components/note.js +46 -0
- package/components/overlays.js +671 -0
- package/components/package.json +9 -0
- package/components/picker-column-internal.js +383 -0
- package/components/picker-column.js +377 -0
- package/components/picker-internal.js +499 -0
- package/components/popover.js +1367 -0
- package/components/radio-group.js +169 -0
- package/components/radio.js +224 -0
- package/components/ripple-effect.js +101 -0
- package/components/select-popover.js +197 -0
- package/components/spinner.js +224 -0
- package/components/status-tap.js +39 -0
- package/components/swipe-back.js +74 -0
- package/components/theme.js +43 -0
- package/components/watch-options.js +36 -0
- package/css/core.css +376 -0
- package/css/core.css.map +1 -0
- package/css/display.css +54 -0
- package/css/display.css.map +1 -0
- package/css/flex-utils.css +81 -0
- package/css/flex-utils.css.map +1 -0
- package/css/float-elements.css +216 -0
- package/css/float-elements.css.map +1 -0
- package/css/global.bundle.css +291 -0
- package/css/global.bundle.css.map +1 -0
- package/css/ionic-swiper.css +72 -0
- package/css/ionic-swiper.css.map +1 -0
- package/css/ionic.bundle.css +1 -0
- package/css/ionic.bundle.css.map +1 -0
- package/css/normalize.css +150 -0
- package/css/normalize.css.map +1 -0
- package/css/padding.css +125 -0
- package/css/padding.css.map +1 -0
- package/css/structure.css +75 -0
- package/css/structure.css.map +1 -0
- package/css/text-alignment.css +166 -0
- package/css/text-alignment.css.map +1 -0
- package/css/text-transformation.css +81 -0
- package/css/text-transformation.css.map +1 -0
- package/css/typography.css +68 -0
- package/css/typography.css.map +1 -0
- package/css/utils.bundle.css +715 -0
- package/css/utils.bundle.css.map +1 -0
- package/dist/cjs/animation-c68ec4cb.js +987 -0
- package/dist/cjs/app-globals-3ba8ddad.js +10 -0
- package/dist/cjs/button-active-7578c6c2.js +69 -0
- package/dist/cjs/capacitor-a77e977e.js +15 -0
- package/dist/cjs/config-172736e4.js +199 -0
- package/dist/cjs/cubic-bezier-0e51923d.js +92 -0
- package/dist/cjs/data-3a7f5c1a.js +1510 -0
- package/dist/cjs/dir-186d3a4d.js +20 -0
- package/dist/cjs/focus-visible-6163be3a.js +77 -0
- package/dist/cjs/form-controller-d42b8c05.js +70 -0
- package/dist/cjs/framework-delegate-d2bbe945.js +125 -0
- package/dist/cjs/gesture-controller-e2865472.js +197 -0
- package/dist/cjs/haptic-89b33156.js +211 -0
- package/dist/cjs/hardware-back-button-bae6e13a.js +76 -0
- package/dist/cjs/helpers-77560954.js +441 -0
- package/dist/cjs/index-1901dd17.js +303 -0
- package/dist/cjs/index-404c1016.js +198 -0
- package/dist/cjs/index-4e642409.js +243 -0
- package/dist/cjs/index-79605113.js +38 -0
- package/dist/cjs/index-b0e73ba0.js +53 -0
- package/dist/cjs/index-b358eb23.js +2507 -0
- package/dist/cjs/index-dc56ac38.js +141 -0
- package/dist/cjs/index-def9efb5.js +459 -0
- package/dist/cjs/index-f0d7c9cc.js +32 -0
- package/dist/cjs/index.cjs.js +150 -0
- package/dist/cjs/input-shims-9b42b3fe.js +508 -0
- package/dist/cjs/input.utils-7e077818.js +137 -0
- package/dist/cjs/ion-accordion_2.cjs.entry.js +533 -0
- package/dist/cjs/ion-action-sheet.cjs.entry.js +313 -0
- package/dist/cjs/ion-alert.cjs.entry.js +506 -0
- package/dist/cjs/ion-app_8.cjs.entry.js +1251 -0
- package/dist/cjs/ion-avatar_3.cjs.entry.js +64 -0
- package/dist/cjs/ion-back-button.cjs.entry.js +96 -0
- package/dist/cjs/ion-backdrop.cjs.entry.js +61 -0
- package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +223 -0
- package/dist/cjs/ion-button_2.cjs.entry.js +538 -0
- package/dist/cjs/ion-card_5.cjs.entry.js +164 -0
- package/dist/cjs/ion-checkbox.cjs.entry.js +168 -0
- package/dist/cjs/ion-chip.cjs.entry.js +33 -0
- package/dist/cjs/ion-col_3.cjs.entry.js +180 -0
- package/dist/cjs/ion-datetime-button.cjs.entry.js +348 -0
- package/dist/cjs/ion-datetime_3.cjs.entry.js +2275 -0
- package/dist/cjs/ion-fab_3.cjs.entry.js +186 -0
- package/dist/cjs/ion-img.cjs.entry.js +108 -0
- package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +227 -0
- package/dist/cjs/ion-input.cjs.entry.js +450 -0
- package/dist/cjs/ion-item-option_3.cjs.entry.js +524 -0
- package/dist/cjs/ion-item_8.cjs.entry.js +488 -0
- package/dist/cjs/ion-loading.cjs.entry.js +271 -0
- package/dist/cjs/ion-menu_3.cjs.entry.js +692 -0
- package/dist/cjs/ion-modal.cjs.entry.js +1636 -0
- package/dist/cjs/ion-nav_2.cjs.entry.js +948 -0
- package/dist/cjs/ion-picker-column-internal.cjs.entry.js +366 -0
- package/dist/cjs/ion-picker-internal.cjs.entry.js +486 -0
- package/dist/cjs/ion-popover.cjs.entry.js +1318 -0
- package/dist/cjs/ion-progress-bar.cjs.entry.js +62 -0
- package/dist/cjs/ion-radio_2.cjs.entry.js +345 -0
- package/dist/cjs/ion-range.cjs.entry.js +610 -0
- package/dist/cjs/ion-refresher_2.cjs.entry.js +852 -0
- package/dist/cjs/ion-reorder_2.cjs.entry.js +320 -0
- package/dist/cjs/ion-ripple-effect.cjs.entry.js +87 -0
- package/dist/cjs/ion-route_4.cjs.entry.js +892 -0
- package/dist/cjs/ion-searchbar.cjs.entry.js +390 -0
- package/dist/cjs/ion-segment_2.cjs.entry.js +512 -0
- package/dist/cjs/ion-select_3.cjs.entry.js +822 -0
- package/dist/cjs/ion-spinner.cjs.entry.js +68 -0
- package/dist/cjs/ion-split-pane.cjs.entry.js +151 -0
- package/dist/cjs/ion-tab-bar_2.cjs.entry.js +167 -0
- package/dist/cjs/ion-tab_2.cjs.entry.js +212 -0
- package/dist/cjs/ion-text.cjs.entry.js +28 -0
- package/dist/cjs/ion-textarea.cjs.entry.js +399 -0
- package/dist/cjs/ion-toast.cjs.entry.js +359 -0
- package/dist/cjs/ion-toggle.cjs.entry.js +248 -0
- package/dist/cjs/ionic-global-5e671da5.js +230 -0
- package/dist/cjs/ionic.cjs.js +32 -0
- package/dist/cjs/ios.transition-0b0d2e7f.js +485 -0
- package/dist/cjs/keyboard-2eabd73b.js +158 -0
- package/dist/cjs/keyboard-controller-4aa8c1d6.js +167 -0
- package/dist/cjs/keyboard-f35d0b9d.js +81 -0
- package/dist/cjs/loader.cjs.js +28 -0
- package/dist/cjs/md.transition-481e9b5f.js +59 -0
- package/dist/cjs/notch-controller-159c65d4.js +155 -0
- package/dist/cjs/overlays-d17b3668.js +693 -0
- package/dist/cjs/spinner-configs-7d30ff6f.js +147 -0
- package/dist/cjs/status-tap-6061aa3f.js +42 -0
- package/dist/cjs/swipe-back-75dad2d4.js +77 -0
- package/dist/cjs/theme-e6fec71e.js +48 -0
- package/dist/cjs/watch-options-4d182698.js +38 -0
- package/dist/collection/collection-manifest.json +372 -0
- package/dist/collection/components/accordion/accordion.ios.css +83 -0
- package/dist/collection/components/accordion/accordion.js +441 -0
- package/dist/collection/components/accordion/accordion.md.css +80 -0
- package/dist/collection/components/accordion/test/a11y/accordion.e2e.js +39 -0
- package/dist/collection/components/accordion/test/accordion.e2e.js +39 -0
- package/dist/collection/components/accordion/test/basic/accordion.e2e.js +52 -0
- package/dist/collection/components/accordion/test/multiple/accordion.e2e.js +26 -0
- package/dist/collection/components/accordion/test/nested/accordion.e2e.js +24 -0
- package/dist/collection/components/accordion/test/standalone/accordion.e2e.js +15 -0
- package/dist/collection/components/accordion-group/accordion-group-interface.js +1 -0
- package/dist/collection/components/accordion-group/accordion-group.ios.css +17 -0
- package/dist/collection/components/accordion-group/accordion-group.js +440 -0
- package/dist/collection/components/accordion-group/accordion-group.md.css +64 -0
- package/dist/collection/components/action-sheet/action-sheet-interface.js +1 -0
- package/dist/collection/components/action-sheet/action-sheet.ios.css +319 -0
- package/dist/collection/components/action-sheet/action-sheet.js +767 -0
- package/dist/collection/components/action-sheet/action-sheet.md.css +259 -0
- package/dist/collection/components/action-sheet/animations/ios.enter.js +27 -0
- package/dist/collection/components/action-sheet/animations/ios.leave.js +21 -0
- package/dist/collection/components/action-sheet/animations/md.enter.js +27 -0
- package/dist/collection/components/action-sheet/animations/md.leave.js +21 -0
- package/dist/collection/components/action-sheet/test/a11y/action-sheet.e2e.js +48 -0
- package/dist/collection/components/action-sheet/test/basic/action-sheet-rendering.e2e.js +41 -0
- package/dist/collection/components/action-sheet/test/basic/action-sheet.e2e.js +83 -0
- package/dist/collection/components/action-sheet/test/basic/fixture.js +30 -0
- package/dist/collection/components/action-sheet/test/is-open/action-sheet.e2e.js +33 -0
- package/dist/collection/components/action-sheet/test/translucent/action-sheet.e2e.js +18 -0
- package/dist/collection/components/action-sheet/test/trigger/action-sheet.e2e.js +29 -0
- package/dist/collection/components/alert/alert-interface.js +1 -0
- package/dist/collection/components/alert/alert.ios.css +503 -0
- package/dist/collection/components/alert/alert.js +1018 -0
- package/dist/collection/components/alert/alert.md.css +531 -0
- package/dist/collection/components/alert/animations/ios.enter.js +28 -0
- package/dist/collection/components/alert/animations/ios.leave.js +22 -0
- package/dist/collection/components/alert/animations/md.enter.js +28 -0
- package/dist/collection/components/alert/animations/md.leave.js +19 -0
- package/dist/collection/components/alert/test/a11y/alert.e2e.js +49 -0
- package/dist/collection/components/alert/test/basic/alert.e2e.js +110 -0
- package/dist/collection/components/alert/test/is-open/alert.e2e.js +33 -0
- package/dist/collection/components/alert/test/standalone/alert.e2e.js +17 -0
- package/dist/collection/components/alert/test/trigger/alert.e2e.js +29 -0
- package/dist/collection/components/app/app.css +17 -0
- package/dist/collection/components/app/app.js +132 -0
- package/dist/collection/components/app/test/safe-area/app.e2e.js +35 -0
- package/dist/collection/components/avatar/avatar.ios.css +22 -0
- package/dist/collection/components/avatar/avatar.js +24 -0
- package/dist/collection/components/avatar/avatar.md.css +22 -0
- package/dist/collection/components/avatar/test/avatar.svg +1 -0
- package/dist/collection/components/avatar/test/basic/avatar.e2e.js +24 -0
- package/dist/collection/components/back-button/back-button.ios.css +246 -0
- package/dist/collection/components/back-button/back-button.js +235 -0
- package/dist/collection/components/back-button/back-button.md.css +269 -0
- package/dist/collection/components/back-button/test/basic/back-button.e2e.js +14 -0
- package/dist/collection/components/back-button/test/toolbar/back-button.e2e.js +14 -0
- package/dist/collection/components/backdrop/backdrop.ios.css +26 -0
- package/dist/collection/components/backdrop/backdrop.js +143 -0
- package/dist/collection/components/backdrop/backdrop.md.css +26 -0
- package/dist/collection/components/badge/badge.ios.css +50 -0
- package/dist/collection/components/badge/badge.js +60 -0
- package/dist/collection/components/badge/badge.md.css +54 -0
- package/dist/collection/components/badge/test/basic/badge.e2e.js +14 -0
- package/dist/collection/components/breadcrumb/breadcrumb-interface.js +1 -0
- package/dist/collection/components/breadcrumb/breadcrumb.ios.css +205 -0
- package/dist/collection/components/breadcrumb/breadcrumb.js +409 -0
- package/dist/collection/components/breadcrumb/breadcrumb.md.css +200 -0
- package/dist/collection/components/breadcrumbs/breadcrumbs.ios.css +26 -0
- package/dist/collection/components/breadcrumbs/breadcrumbs.js +259 -0
- package/dist/collection/components/breadcrumbs/breadcrumbs.md.css +25 -0
- package/dist/collection/components/breadcrumbs/test/a11y/breadcrumbs.e2e.js +15 -0
- package/dist/collection/components/breadcrumbs/test/basic/breadcrumbs.e2e.js +14 -0
- package/dist/collection/components/breadcrumbs/test/collapsed/breadcrumbs.e2e.js +14 -0
- package/dist/collection/components/breadcrumbs/test/reactive/breadcrumbs.e2e.js +51 -0
- package/dist/collection/components/button/button.ios.css +431 -0
- package/dist/collection/components/button/button.js +555 -0
- package/dist/collection/components/button/button.md.css +408 -0
- package/dist/collection/components/button/test/basic/button.e2e.js +51 -0
- package/dist/collection/components/button/test/clear/button.e2e.js +14 -0
- package/dist/collection/components/button/test/expand/button.e2e.js +17 -0
- package/dist/collection/components/button/test/form-reference/button.e2e.js +135 -0
- package/dist/collection/components/button/test/icon/button.e2e.js +14 -0
- package/dist/collection/components/button/test/outline/button.e2e.js +14 -0
- package/dist/collection/components/button/test/round/button.e2e.js +17 -0
- package/dist/collection/components/button/test/size/button.e2e.js +43 -0
- package/dist/collection/components/button/test/strong/button.e2e.js +48 -0
- package/dist/collection/components/button/test/wrap/button.e2e.js +138 -0
- package/dist/collection/components/buttons/buttons.ios.css +114 -0
- package/dist/collection/components/buttons/buttons.js +53 -0
- package/dist/collection/components/buttons/buttons.md.css +134 -0
- package/dist/collection/components/card/card.ios.css +93 -0
- package/dist/collection/components/card/card.js +264 -0
- package/dist/collection/components/card/card.md.css +88 -0
- package/dist/collection/components/card/test/basic/card.e2e.js +151 -0
- package/dist/collection/components/card-content/card-content.ios.css +53 -0
- package/dist/collection/components/card-content/card-content.js +31 -0
- package/dist/collection/components/card-content/card-content.md.css +55 -0
- package/dist/collection/components/card-header/card-header.ios.css +31 -0
- package/dist/collection/components/card-header/card-header.js +81 -0
- package/dist/collection/components/card-header/card-header.md.css +28 -0
- package/dist/collection/components/card-header/test/basic/card-header.e2e.js +14 -0
- package/dist/collection/components/card-subtitle/card-subtitle.ios.css +28 -0
- package/dist/collection/components/card-subtitle/card-subtitle.js +61 -0
- package/dist/collection/components/card-subtitle/card-subtitle.md.css +26 -0
- package/dist/collection/components/card-title/card-title.ios.css +27 -0
- package/dist/collection/components/card-title/card-title.js +61 -0
- package/dist/collection/components/card-title/card-title.md.css +27 -0
- package/dist/collection/components/checkbox/checkbox-interface.js +1 -0
- package/dist/collection/components/checkbox/checkbox.ios.css +310 -0
- package/dist/collection/components/checkbox/checkbox.js +420 -0
- package/dist/collection/components/checkbox/checkbox.md.css +326 -0
- package/dist/collection/components/checkbox/test/a11y/checkbox.e2e.js +15 -0
- package/dist/collection/components/checkbox/test/basic/checkbox.e2e.js +60 -0
- package/dist/collection/components/checkbox/test/color/checkbox.e2e.js +23 -0
- package/dist/collection/components/checkbox/test/indeterminate/checkbox.e2e.js +14 -0
- package/dist/collection/components/checkbox/test/item/checkbox.e2e.js +61 -0
- package/dist/collection/components/checkbox/test/label/checkbox.e2e.js +95 -0
- package/dist/collection/components/checkbox/test/legacy/basic/checkbox.e2e.js +51 -0
- package/dist/collection/components/checkbox/test/legacy/indeterminate/checkbox.e2e.js +14 -0
- package/dist/collection/components/checkbox/test/states/checkbox.e2e.js +37 -0
- package/dist/collection/components/chip/chip.css +149 -0
- package/dist/collection/components/chip/chip.js +99 -0
- package/dist/collection/components/chip/test/basic/chip.e2e.js +81 -0
- package/dist/collection/components/chip/test/states/chip.e2e.js +35 -0
- package/dist/collection/components/col/col.css +68 -0
- package/dist/collection/components/col/col.js +551 -0
- package/dist/collection/components/content/content-interface.js +1 -0
- package/dist/collection/components/content/content.css +227 -0
- package/dist/collection/components/content/content.js +750 -0
- package/dist/collection/components/content/test/basic/content.e2e.js +17 -0
- package/dist/collection/components/content/test/fixed/content.e2e.js +17 -0
- package/dist/collection/components/content/test/fullscreen/content.e2e.js +17 -0
- package/dist/collection/components/content/test/standalone/content.e2e.js +16 -0
- package/dist/collection/components/datetime/datetime-interface.js +1 -0
- package/dist/collection/components/datetime/datetime.ios.css +589 -0
- package/dist/collection/components/datetime/datetime.js +2268 -0
- package/dist/collection/components/datetime/datetime.md.css +561 -0
- package/dist/collection/components/datetime/test/basic/datetime.e2e.js +350 -0
- package/dist/collection/components/datetime/test/color/datetime.e2e.js +20 -0
- package/dist/collection/components/datetime/test/custom/datetime.e2e.js +33 -0
- package/dist/collection/components/datetime/test/datetime.e2e.js +39 -0
- package/dist/collection/components/datetime/test/disable-dates/datetime.e2e.js +150 -0
- package/dist/collection/components/datetime/test/display/datetime.e2e.js +121 -0
- package/dist/collection/components/datetime/test/first-day-of-week/datetime.e2e.js +14 -0
- package/dist/collection/components/datetime/test/highlighted-dates/datetime.e2e.js +86 -0
- package/dist/collection/components/datetime/test/hour-cycle/datetime.e2e.js +23 -0
- package/dist/collection/components/datetime/test/locale/datetime.e2e.js +129 -0
- package/dist/collection/components/datetime/test/minmax/datetime.e2e.js +266 -0
- package/dist/collection/components/datetime/test/month-year-picker/datetime.e2e.js +29 -0
- package/dist/collection/components/datetime/test/multiple/datetime.e2e.js +225 -0
- package/dist/collection/components/datetime/test/position/datetime.e2e.js +22 -0
- package/dist/collection/components/datetime/test/prefer-wheel/datetime.e2e.js +485 -0
- package/dist/collection/components/datetime/test/presentation/datetime.e2e.js +138 -0
- package/dist/collection/components/datetime/test/set-value/datetime.e2e.js +53 -0
- package/dist/collection/components/datetime/test/time-label/datetime.e2e.js +25 -0
- package/dist/collection/components/datetime/test/utils/month-did-change-event.js +18 -0
- package/dist/collection/components/datetime/test/values/datetime.e2e.js +140 -0
- package/dist/collection/components/datetime/utils/comparison.js +44 -0
- package/dist/collection/components/datetime/utils/data.js +470 -0
- package/dist/collection/components/datetime/utils/format.js +286 -0
- package/dist/collection/components/datetime/utils/helpers.js +99 -0
- package/dist/collection/components/datetime/utils/manipulation.js +416 -0
- package/dist/collection/components/datetime/utils/parse.js +166 -0
- package/dist/collection/components/datetime/utils/state.js +173 -0
- package/dist/collection/components/datetime-button/datetime-button.css +44 -0
- package/dist/collection/components/datetime-button/datetime-button.js +428 -0
- package/dist/collection/components/datetime-button/test/basic/datetime-button.e2e.js +177 -0
- package/dist/collection/components/datetime-button/test/disabled/datetime-button.e2e.js +27 -0
- package/dist/collection/components/datetime-button/test/multiple/datetime-button.e2e.js +96 -0
- package/dist/collection/components/datetime-button/test/overlays/datetime-button.e2e.js +143 -0
- package/dist/collection/components/fab/fab.css +98 -0
- package/dist/collection/components/fab/fab.js +189 -0
- package/dist/collection/components/fab/test/basic/fab.e2e.js +65 -0
- package/dist/collection/components/fab/test/states/fab.e2e.js +14 -0
- package/dist/collection/components/fab/test/translucent/fab.e2e.js +28 -0
- package/dist/collection/components/fab-button/fab-button.ios.css +312 -0
- package/dist/collection/components/fab-button/fab-button.js +389 -0
- package/dist/collection/components/fab-button/fab-button.md.css +283 -0
- package/dist/collection/components/fab-button/test/a11y/fab-button.e2e.js +16 -0
- package/dist/collection/components/fab-list/fab-list.css +123 -0
- package/dist/collection/components/fab-list/fab-list.js +86 -0
- package/dist/collection/components/footer/footer.ios.css +36 -0
- package/dist/collection/components/footer/footer.js +151 -0
- package/dist/collection/components/footer/footer.md.css +19 -0
- package/dist/collection/components/footer/footer.utils.js +33 -0
- package/dist/collection/components/footer/test/basic/footer.e2e.js +61 -0
- package/dist/collection/components/footer/test/fade/footer.e2e.js +21 -0
- package/dist/collection/components/footer/test/scroll-target/footer.e2e.js +26 -0
- package/dist/collection/components/footer/test/with-tabs/footer.e2e.js +17 -0
- package/dist/collection/components/grid/grid.css +103 -0
- package/dist/collection/components/grid/grid.js +51 -0
- package/dist/collection/components/grid/test/basic/grid.e2e.js +17 -0
- package/dist/collection/components/grid/test/offsets/grid.e2e.js +17 -0
- package/dist/collection/components/grid/test/padding/grid.e2e.js +17 -0
- package/dist/collection/components/grid/test/sizes/grid.e2e.js +17 -0
- package/dist/collection/components/header/header.ios.css +106 -0
- package/dist/collection/components/header/header.js +205 -0
- package/dist/collection/components/header/header.md.css +23 -0
- package/dist/collection/components/header/header.utils.js +180 -0
- package/dist/collection/components/header/test/a11y/header.e2e.js +29 -0
- package/dist/collection/components/header/test/basic/header.e2e.js +70 -0
- package/dist/collection/components/header/test/condense/header.e2e.js +33 -0
- package/dist/collection/components/header/test/fade/header.e2e.js +21 -0
- package/dist/collection/components/header/test/scroll-target/header.e2e.js +26 -0
- package/dist/collection/components/icon/test/basic/icon.e2e.js +16 -0
- package/dist/collection/components/icon/test/dir/heart-broken.svg +5 -0
- package/dist/collection/components/icon/test/dir/icon.e2e.js +23 -0
- package/dist/collection/components/img/img.css +12 -0
- package/dist/collection/components/img/img.js +204 -0
- package/dist/collection/components/img/test/basic/img.e2e.js +73 -0
- package/dist/collection/components/img/test/draggable/img.e2e.js +21 -0
- package/dist/collection/components/infinite-scroll/infinite-scroll-interface.js +1 -0
- package/dist/collection/components/infinite-scroll/infinite-scroll.css +8 -0
- package/dist/collection/components/infinite-scroll/infinite-scroll.js +290 -0
- package/dist/collection/components/infinite-scroll/test/basic/infinite-scroll.e2e.js +19 -0
- package/dist/collection/components/infinite-scroll/test/scroll-target/infinite-scroll.e2e.js +19 -0
- package/dist/collection/components/infinite-scroll/test/top/infinite-scroll.e2e.js +19 -0
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.ios.css +46 -0
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +97 -0
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.md.css +46 -0
- package/dist/collection/components/input/input-interface.js +1 -0
- package/dist/collection/components/input/input.ios.css +641 -0
- package/dist/collection/components/input/input.js +1250 -0
- package/dist/collection/components/input/input.md.css +1082 -0
- package/dist/collection/components/input/input.utils.js +30 -0
- package/dist/collection/components/input/test/a11y/input.e2e.js +15 -0
- package/dist/collection/components/input/test/basic/input.e2e.js +102 -0
- package/dist/collection/components/input/test/bottom-content/input.e2e.js +145 -0
- package/dist/collection/components/input/test/card/input.e2e.js +22 -0
- package/dist/collection/components/input/test/color/input.e2e.js +130 -0
- package/dist/collection/components/input/test/fill/input.e2e.js +203 -0
- package/dist/collection/components/input/test/highlight/input.e2e.js +156 -0
- package/dist/collection/components/input/test/input.e2e.js +17 -0
- package/dist/collection/components/input/test/item/input.e2e.js +43 -0
- package/dist/collection/components/input/test/label-placement/input.e2e.js +165 -0
- package/dist/collection/components/input/test/legacy/a11y/input.e2e.js +28 -0
- package/dist/collection/components/input/test/legacy/basic/input.e2e.js +181 -0
- package/dist/collection/components/input/test/legacy/clear-on-edit/input.e2e.js +55 -0
- package/dist/collection/components/input/test/legacy/input-events.e2e.js +71 -0
- package/dist/collection/components/input/test/legacy/masking/input.e2e.js +26 -0
- package/dist/collection/components/input/test/legacy/spec/input.e2e.js +16 -0
- package/dist/collection/components/input/test/states/input.e2e.js +23 -0
- package/dist/collection/components/item/item-interface.js +1 -0
- package/dist/collection/components/item/item.ios.css +646 -0
- package/dist/collection/components/item/item.js +613 -0
- package/dist/collection/components/item/item.md.css +908 -0
- package/dist/collection/components/item/test/a11y/item.e2e.js +28 -0
- package/dist/collection/components/item/test/alignment/item.e2e.js +14 -0
- package/dist/collection/components/item/test/basic/item.e2e.js +14 -0
- package/dist/collection/components/item/test/buttons/item.e2e.js +29 -0
- package/dist/collection/components/item/test/colors/item.e2e.js +17 -0
- package/dist/collection/components/item/test/counter/item.e2e.js +49 -0
- package/dist/collection/components/item/test/css-variables/item.e2e.js +17 -0
- package/dist/collection/components/item/test/disabled/item.e2e.js +18 -0
- package/dist/collection/components/item/test/dividers/item.e2e.js +14 -0
- package/dist/collection/components/item/test/groups/item.e2e.js +16 -0
- package/dist/collection/components/item/test/highlight/item.e2e.js +14 -0
- package/dist/collection/components/item/test/icons/heart-broken.svg +5 -0
- package/dist/collection/components/item/test/icons/item.e2e.js +14 -0
- package/dist/collection/components/item/test/images/item.e2e.js +14 -0
- package/dist/collection/components/item/test/inputs/item.e2e.js +153 -0
- package/dist/collection/components/item/test/legacy/alignment/item.e2e.js +14 -0
- package/dist/collection/components/item/test/legacy/disabled/item.e2e.js +14 -0
- package/dist/collection/components/item/test/legacy/fill/item.e2e.js +14 -0
- package/dist/collection/components/item/test/legacy/form/item.e2e.js +14 -0
- package/dist/collection/components/item/test/lines/item.e2e.js +14 -0
- package/dist/collection/components/item/test/media/item.e2e.js +14 -0
- package/dist/collection/components/item/test/reorder/item.e2e.js +16 -0
- package/dist/collection/components/item/test/slotted-inputs/item.e2e.js +14 -0
- package/dist/collection/components/item/test/states/item.e2e.js +17 -0
- package/dist/collection/components/item/test/text/item.e2e.js +14 -0
- package/dist/collection/components/item-divider/item-divider.ios.css +166 -0
- package/dist/collection/components/item-divider/item-divider.js +86 -0
- package/dist/collection/components/item-divider/item-divider.md.css +232 -0
- package/dist/collection/components/item-divider/test/basic/item-divider.e2e.js +38 -0
- package/dist/collection/components/item-divider/test/spec/item-divider.e2e.js +16 -0
- package/dist/collection/components/item-group/item-group.ios.css +3 -0
- package/dist/collection/components/item-group/item-group.js +29 -0
- package/dist/collection/components/item-group/item-group.md.css +3 -0
- package/dist/collection/components/item-option/item-option.ios.css +142 -0
- package/dist/collection/components/item-option/item-option.js +217 -0
- package/dist/collection/components/item-option/item-option.md.css +136 -0
- package/dist/collection/components/item-options/item-options.ios.css +123 -0
- package/dist/collection/components/item-options/item-options.js +118 -0
- package/dist/collection/components/item-options/item-options.md.css +120 -0
- package/dist/collection/components/item-sliding/item-sliding-interface.js +1 -0
- package/dist/collection/components/item-sliding/item-sliding.css +66 -0
- package/dist/collection/components/item-sliding/item-sliding.js +575 -0
- package/dist/collection/components/item-sliding/test/async/item-sliding.e2e.js +33 -0
- package/dist/collection/components/item-sliding/test/basic/item-sliding.e2e.js +59 -0
- package/dist/collection/components/item-sliding/test/icons/item-sliding.e2e.js +20 -0
- package/dist/collection/components/item-sliding/test/scroll-target/item-sliding.e2e.js +35 -0
- package/dist/collection/components/item-sliding/test/test.utils.js +25 -0
- package/dist/collection/components/label/label.ios.css +164 -0
- package/dist/collection/components/label/label.js +187 -0
- package/dist/collection/components/label/label.md.css +251 -0
- package/dist/collection/components/label/test/basic/label.e2e.js +45 -0
- package/dist/collection/components/label/test/color/label.e2e.js +39 -0
- package/dist/collection/components/label/test/headings/label.e2e.js +13 -0
- package/dist/collection/components/list/list.ios.css +63 -0
- package/dist/collection/components/list/list.js +112 -0
- package/dist/collection/components/list/list.md.css +104 -0
- package/dist/collection/components/list/test/a11y/list.e2e.js +15 -0
- package/dist/collection/components/list/test/basic/list.e2e.js +24 -0
- package/dist/collection/components/list/test/inset/list.e2e.js +69 -0
- package/dist/collection/components/list/test/lines/list.e2e.js +24 -0
- package/dist/collection/components/list-header/list-header.ios.css +107 -0
- package/dist/collection/components/list-header/list-header.js +80 -0
- package/dist/collection/components/list-header/list-header.md.css +88 -0
- package/dist/collection/components/list-header/test/basic/list-header.e2e.js +14 -0
- package/dist/collection/components/loading/animations/ios.enter.js +28 -0
- package/dist/collection/components/loading/animations/ios.leave.js +22 -0
- package/dist/collection/components/loading/animations/md.enter.js +28 -0
- package/dist/collection/components/loading/animations/md.leave.js +22 -0
- package/dist/collection/components/loading/loading-interface.js +1 -0
- package/dist/collection/components/loading/loading.ios.css +95 -0
- package/dist/collection/components/loading/loading.js +753 -0
- package/dist/collection/components/loading/loading.md.css +86 -0
- package/dist/collection/components/loading/test/a11y/loading.e2e.js +26 -0
- package/dist/collection/components/loading/test/basic/loading.e2e.js +80 -0
- package/dist/collection/components/loading/test/is-open/loading.e2e.js +28 -0
- package/dist/collection/components/loading/test/standalone/loading.e2e.js +21 -0
- package/dist/collection/components/loading/test/trigger/loading.e2e.js +32 -0
- package/dist/collection/components/menu/menu-interface.js +1 -0
- package/dist/collection/components/menu/menu.ios.css +167 -0
- package/dist/collection/components/menu/menu.js +965 -0
- package/dist/collection/components/menu/menu.md.css +163 -0
- package/dist/collection/components/menu/test/a11y/menu.e2e.js +22 -0
- package/dist/collection/components/menu/test/basic/menu.e2e.js +124 -0
- package/dist/collection/components/menu/test/focus-trap/menu.e2e.js +72 -0
- package/dist/collection/components/menu-button/menu-button.ios.css +167 -0
- package/dist/collection/components/menu-button/menu-button.js +192 -0
- package/dist/collection/components/menu-button/menu-button.md.css +170 -0
- package/dist/collection/components/menu-button/test/a11y/menu-button.e2e.js +15 -0
- package/dist/collection/components/menu-button/test/basic/menu-button.e2e.js +14 -0
- package/dist/collection/components/menu-toggle/menu-toggle-util.js +9 -0
- package/dist/collection/components/menu-toggle/menu-toggle.css +3 -0
- package/dist/collection/components/menu-toggle/menu-toggle.js +105 -0
- package/dist/collection/components/menu-toggle/test/basic/menu-toggle.e2e.js +43 -0
- package/dist/collection/components/modal/animations/ios.enter.js +98 -0
- package/dist/collection/components/modal/animations/ios.leave.js +91 -0
- package/dist/collection/components/modal/animations/md.enter.js +34 -0
- package/dist/collection/components/modal/animations/md.leave.js +28 -0
- package/dist/collection/components/modal/animations/sheet.js +52 -0
- package/dist/collection/components/modal/gestures/sheet.js +308 -0
- package/dist/collection/components/modal/gestures/swipe-to-close.js +265 -0
- package/dist/collection/components/modal/gestures/utils.js +119 -0
- package/dist/collection/components/modal/modal-interface.js +1 -0
- package/dist/collection/components/modal/modal.ios.css +247 -0
- package/dist/collection/components/modal/modal.js +1338 -0
- package/dist/collection/components/modal/modal.md.css +162 -0
- package/dist/collection/components/modal/test/a11y/modal.e2e.js +21 -0
- package/dist/collection/components/modal/test/basic/modal.e2e.js +125 -0
- package/dist/collection/components/modal/test/can-dismiss/modal-card.e2e.js +55 -0
- package/dist/collection/components/modal/test/can-dismiss/modal-sheet.e2e.js +73 -0
- package/dist/collection/components/modal/test/can-dismiss/modal.e2e.js +27 -0
- package/dist/collection/components/modal/test/card/modal-card.e2e.js +83 -0
- package/dist/collection/components/modal/test/card/modal-tablet.e2e.js +82 -0
- package/dist/collection/components/modal/test/card-nav/modal.e2e.js +39 -0
- package/dist/collection/components/modal/test/card-refresher/modal.e2e.js +22 -0
- package/dist/collection/components/modal/test/card-scroll-target/modal.e2e.js +42 -0
- package/dist/collection/components/modal/test/custom/modal.e2e.js +24 -0
- package/dist/collection/components/modal/test/custom-dialog/modal.e2e.js +20 -0
- package/dist/collection/components/modal/test/dark-mode/model.e2e.js +20 -0
- package/dist/collection/components/modal/test/fixtures.js +28 -0
- package/dist/collection/components/modal/test/inline/modal.e2e.js +48 -0
- package/dist/collection/components/modal/test/is-open/modal.e2e.js +25 -0
- package/dist/collection/components/modal/test/sheet/modal.e2e.js +212 -0
- package/dist/collection/components/modal/test/standalone/modal.e2e.js +19 -0
- package/dist/collection/components/modal/test/trigger/modal.e2e.js +31 -0
- package/dist/collection/components/modal/utils.js +86 -0
- package/dist/collection/components/modal/utils.spec.js +13 -0
- package/dist/collection/components/nav/constants.js +8 -0
- package/dist/collection/components/nav/nav-interface.js +1 -0
- package/dist/collection/components/nav/nav.css +10 -0
- package/dist/collection/components/nav/nav.js +1792 -0
- package/dist/collection/components/nav/test/basic/nav.e2e.js +69 -0
- package/dist/collection/components/nav/test/modal-navigation/nav.e2e.js +65 -0
- package/dist/collection/components/nav/test/nested/nav.e2e.js +66 -0
- package/dist/collection/components/nav/test/routing/nav.e2e.js +87 -0
- package/dist/collection/components/nav/view-controller.js +71 -0
- package/dist/collection/components/nav-link/nav-link-utils.js +22 -0
- package/dist/collection/components/nav-link/nav-link.js +110 -0
- package/dist/collection/components/note/note.ios.css +16 -0
- package/dist/collection/components/note/note.js +60 -0
- package/dist/collection/components/note/note.md.css +17 -0
- package/dist/collection/components/note/test/basic/note.e2e.js +78 -0
- package/dist/collection/components/picker/animations/ios.enter.js +27 -0
- package/dist/collection/components/picker/animations/ios.leave.js +23 -0
- package/dist/collection/components/picker/picker-interface.js +1 -0
- package/dist/collection/components/picker/picker.ios.css +257 -0
- package/dist/collection/components/picker/picker.js +804 -0
- package/dist/collection/components/picker/picker.md.css +244 -0
- package/dist/collection/components/picker/test/basic/picker.e2e.js +25 -0
- package/dist/collection/components/picker/test/is-open/picker.e2e.js +28 -0
- package/dist/collection/components/picker/test/trigger/picker.e2e.js +32 -0
- package/dist/collection/components/picker-column/picker-column.ios.css +145 -0
- package/dist/collection/components/picker-column/picker-column.js +417 -0
- package/dist/collection/components/picker-column/picker-column.md.css +136 -0
- package/dist/collection/components/picker-column/test/standalone/picker-column.e2e.js +35 -0
- package/dist/collection/components/picker-column/test/test.utils.js +43 -0
- package/dist/collection/components/picker-column-internal/picker-column-internal-interfaces.js +1 -0
- package/dist/collection/components/picker-column-internal/picker-column-internal.ios.css +75 -0
- package/dist/collection/components/picker-column-internal/picker-column-internal.js +538 -0
- package/dist/collection/components/picker-column-internal/picker-column-internal.md.css +78 -0
- package/dist/collection/components/picker-column-internal/test/basic/picker-column-internal.e2e.js +64 -0
- package/dist/collection/components/picker-column-internal/test/disabled/picker-column-internal.e2e.js +133 -0
- package/dist/collection/components/picker-internal/picker-internal-interfaces.js +1 -0
- package/dist/collection/components/picker-internal/picker-internal.ios.css +152 -0
- package/dist/collection/components/picker-internal/picker-internal.js +542 -0
- package/dist/collection/components/picker-internal/picker-internal.md.css +148 -0
- package/dist/collection/components/picker-internal/test/a11y/picker-internal.e2e.js +15 -0
- package/dist/collection/components/picker-internal/test/basic/picker-internal.e2e.js +113 -0
- package/dist/collection/components/picker-internal/test/keyboard-entry/picker-internal.e2e.js +114 -0
- package/dist/collection/components/popover/animations/ios.enter.js +92 -0
- package/dist/collection/components/popover/animations/ios.leave.js +38 -0
- package/dist/collection/components/popover/animations/md.enter.js +71 -0
- package/dist/collection/components/popover/animations/md.leave.js +29 -0
- package/dist/collection/components/popover/popover-interface.js +1 -0
- package/dist/collection/components/popover/popover.ios.css +250 -0
- package/dist/collection/components/popover/popover.js +1234 -0
- package/dist/collection/components/popover/popover.md.css +157 -0
- package/dist/collection/components/popover/test/adjustment/popover.e2e.js +33 -0
- package/dist/collection/components/popover/test/arrow/popover.e2e.js +27 -0
- package/dist/collection/components/popover/test/basic/popover.e2e.js +135 -0
- package/dist/collection/components/popover/test/dismiss-on-select/popover.e2e.js +38 -0
- package/dist/collection/components/popover/test/fixture.js +22 -0
- package/dist/collection/components/popover/test/inline/popover.e2e.js +32 -0
- package/dist/collection/components/popover/test/is-open/popover.e2e.js +13 -0
- package/dist/collection/components/popover/test/nested/popover.e2e.js +92 -0
- package/dist/collection/components/popover/test/position/popover.e2e.js +27 -0
- package/dist/collection/components/popover/test/reference/popover.e2e.js +22 -0
- package/dist/collection/components/popover/test/size/popover.e2e.js +41 -0
- package/dist/collection/components/popover/test/standalone/popover.e2e.js +15 -0
- package/dist/collection/components/popover/test/test.utils.js +33 -0
- package/dist/collection/components/popover/test/trigger/popover.e2e.js +46 -0
- package/dist/collection/components/popover/utils.js +745 -0
- package/dist/collection/components/progress-bar/progress-bar.ios.css +206 -0
- package/dist/collection/components/progress-bar/progress-bar.js +167 -0
- package/dist/collection/components/progress-bar/progress-bar.md.css +206 -0
- package/dist/collection/components/progress-bar/test/basic/progress-bar.e2e.js +14 -0
- package/dist/collection/components/radio/radio.ios.css +331 -0
- package/dist/collection/components/radio/radio.js +455 -0
- package/dist/collection/components/radio/radio.md.css +354 -0
- package/dist/collection/components/radio/test/a11y/radio.e2e.js +84 -0
- package/dist/collection/components/radio/test/color/radio.e2e.js +27 -0
- package/dist/collection/components/radio/test/item/radio.e2e.js +54 -0
- package/dist/collection/components/radio/test/label-placement/radio.e2e.js +104 -0
- package/dist/collection/components/radio/test/legacy/a11y/radio.e2e.js +38 -0
- package/dist/collection/components/radio/test/legacy/basic/radio.e2e.js +127 -0
- package/dist/collection/components/radio/test/states/radio.e2e.js +45 -0
- package/dist/collection/components/radio-group/radio-group-interface.js +1 -0
- package/dist/collection/components/radio-group/radio-group.js +261 -0
- package/dist/collection/components/radio-group/test/basic/radio-group.e2e.js +85 -0
- package/dist/collection/components/radio-group/test/fixtures.js +31 -0
- package/dist/collection/components/radio-group/test/form/radio-group.e2e.js +56 -0
- package/dist/collection/components/radio-group/test/legacy/basic/radio-group.e2e.js +122 -0
- package/dist/collection/components/radio-group/test/legacy/form/radio-group.e2e.js +30 -0
- package/dist/collection/components/radio-group/test/legacy/search/radio-group.e2e.js +38 -0
- package/dist/collection/components/radio-group/test/radio-group-events.e2e.js +80 -0
- package/dist/collection/components/radio-group/test/search/radio-group.e2e.js +35 -0
- package/dist/collection/components/range/range-interface.js +1 -0
- package/dist/collection/components/range/range.ios.css +469 -0
- package/dist/collection/components/range/range.js +1049 -0
- package/dist/collection/components/range/range.md.css +614 -0
- package/dist/collection/components/range/test/a11y/range.e2e.js +57 -0
- package/dist/collection/components/range/test/active-bar-start/range.e2e.js +14 -0
- package/dist/collection/components/range/test/basic/range.e2e.js +31 -0
- package/dist/collection/components/range/test/color/range.e2e.js +20 -0
- package/dist/collection/components/range/test/custom/range.e2e.js +14 -0
- package/dist/collection/components/range/test/item/range.e2e.js +44 -0
- package/dist/collection/components/range/test/label/range.e2e.js +120 -0
- package/dist/collection/components/range/test/legacy/a11y/range.e2e.js +49 -0
- package/dist/collection/components/range/test/legacy/active-bar-start/range.e2e.js +14 -0
- package/dist/collection/components/range/test/legacy/basic/range.e2e.js +80 -0
- package/dist/collection/components/range/test/legacy/range-events.e2e.js +90 -0
- package/dist/collection/components/range/test/legacy/scroll-target/range.e2e.js +32 -0
- package/dist/collection/components/range/test/range-events.e2e.js +153 -0
- package/dist/collection/components/range/test/scroll-target/range.e2e.js +35 -0
- package/dist/collection/components/range/test/states/range.e2e.js +53 -0
- package/dist/collection/components/refresher/refresher-interface.js +1 -0
- package/dist/collection/components/refresher/refresher.ios.css +211 -0
- package/dist/collection/components/refresher/refresher.js +850 -0
- package/dist/collection/components/refresher/refresher.md.css +206 -0
- package/dist/collection/components/refresher/refresher.utils.js +178 -0
- package/dist/collection/components/refresher/test/basic/refresher.e2e.js +39 -0
- package/dist/collection/components/refresher/test/scroll-target/refresher.e2e.js +39 -0
- package/dist/collection/components/refresher/test/test.utils.js +19 -0
- package/dist/collection/components/refresher-content/refresher-content.js +145 -0
- package/dist/collection/components/reorder/reorder.ios.css +15 -0
- package/dist/collection/components/reorder/reorder.js +49 -0
- package/dist/collection/components/reorder/reorder.md.css +15 -0
- package/dist/collection/components/reorder-group/reorder-group-interface.js +1 -0
- package/dist/collection/components/reorder-group/reorder-group.css +34 -0
- package/dist/collection/components/reorder-group/reorder-group.js +367 -0
- package/dist/collection/components/reorder-group/test/basic/reorder-group.e2e.js +36 -0
- package/dist/collection/components/reorder-group/test/interactive/reorder-group.e2e.js +34 -0
- package/dist/collection/components/reorder-group/test/nested/reorder-group.e2e.js +34 -0
- package/dist/collection/components/reorder-group/test/scroll-target/reorder-group.e2e.js +34 -0
- package/dist/collection/components/ripple-effect/ripple-effect.css +58 -0
- package/dist/collection/components/ripple-effect/ripple-effect.js +148 -0
- package/dist/collection/components/ripple-effect/test/basic/ripple-effect.e2e.js +66 -0
- package/dist/collection/components/route/route-interface.js +1 -0
- package/dist/collection/components/route/route.js +158 -0
- package/dist/collection/components/route-redirect/route-redirect.js +78 -0
- package/dist/collection/components/router/router.js +496 -0
- package/dist/collection/components/router/test/basic/router.e2e.js +68 -0
- package/dist/collection/components/router/test/guards/href/router.e2e.js +60 -0
- package/dist/collection/components/router/test/guards/link/router.e2e.js +60 -0
- package/dist/collection/components/router/test/guards/push/router.e2e.js +60 -0
- package/dist/collection/components/router/test/guards/router.e2e.js +13 -0
- package/dist/collection/components/router/test/guards/test.utils.js +17 -0
- package/dist/collection/components/router/utils/constants.js +6 -0
- package/dist/collection/components/router/utils/debug.js +23 -0
- package/dist/collection/components/router/utils/dom.js +87 -0
- package/dist/collection/components/router/utils/interface.js +1 -0
- package/dist/collection/components/router/utils/matching.js +227 -0
- package/dist/collection/components/router/utils/parser.js +89 -0
- package/dist/collection/components/router/utils/path.js +107 -0
- package/dist/collection/components/router-link/router-link.css +29 -0
- package/dist/collection/components/router-link/router-link.js +163 -0
- package/dist/collection/components/router-outlet/route-outlet.css +10 -0
- package/dist/collection/components/router-outlet/route-outlet.js +480 -0
- package/dist/collection/components/router-outlet/test/basic/router-outlet.e2e.js +39 -0
- package/dist/collection/components/row/row.css +4 -0
- package/dist/collection/components/row/row.js +22 -0
- package/dist/collection/components/searchbar/searchbar-interface.js +1 -0
- package/dist/collection/components/searchbar/searchbar.ios.css +354 -0
- package/dist/collection/components/searchbar/searchbar.js +913 -0
- package/dist/collection/components/searchbar/searchbar.md.css +339 -0
- package/dist/collection/components/searchbar/test/basic/searchbar.e2e.js +118 -0
- package/dist/collection/components/searchbar/test/events/searchbar.e2e.js +67 -0
- package/dist/collection/components/segment/segment-interface.js +1 -0
- package/dist/collection/components/segment/segment.ios.css +59 -0
- package/dist/collection/components/segment/segment.js +620 -0
- package/dist/collection/components/segment/segment.md.css +49 -0
- package/dist/collection/components/segment/test/a11y/segment.e2e.js +46 -0
- package/dist/collection/components/segment/test/basic/segment.e2e.js +84 -0
- package/dist/collection/components/segment/test/custom/segment.e2e.js +14 -0
- package/dist/collection/components/segment/test/icon/segment.e2e.js +29 -0
- package/dist/collection/components/segment/test/modes/segment.e2e.js +38 -0
- package/dist/collection/components/segment/test/scrollable/segment.e2e.js +44 -0
- package/dist/collection/components/segment/test/segment-events.e2e.js +209 -0
- package/dist/collection/components/segment/test/toolbar/segment.e2e.js +122 -0
- package/dist/collection/components/segment/test/wrap/segment.e2e.js +85 -0
- package/dist/collection/components/segment-button/segment-button-interface.js +1 -0
- package/dist/collection/components/segment-button/segment-button.ios.css +410 -0
- package/dist/collection/components/segment-button/segment-button.js +237 -0
- package/dist/collection/components/segment-button/segment-button.md.css +396 -0
- package/dist/collection/components/select/select-interface.js +1 -0
- package/dist/collection/components/select/select.ios.css +552 -0
- package/dist/collection/components/select/select.js +1252 -0
- package/dist/collection/components/select/select.md.css +1025 -0
- package/dist/collection/components/select/test/a11y/select.e2e.js +15 -0
- package/dist/collection/components/select/test/async/select.e2e.js +25 -0
- package/dist/collection/components/select/test/basic/select.e2e.js +174 -0
- package/dist/collection/components/select/test/card/select.e2e.js +22 -0
- package/dist/collection/components/select/test/color/select.e2e.js +42 -0
- package/dist/collection/components/select/test/compare-with/select.e2e.js +67 -0
- package/dist/collection/components/select/test/custom/select.e2e.js +68 -0
- package/dist/collection/components/select/test/fill/select.e2e.js +192 -0
- package/dist/collection/components/select/test/highlight/select.e2e.js +125 -0
- package/dist/collection/components/select/test/item/select.e2e.js +41 -0
- package/dist/collection/components/select/test/label/select.e2e.js +245 -0
- package/dist/collection/components/select/test/legacy/async/select.e2e.js +19 -0
- package/dist/collection/components/select/test/legacy/basic/select.e2e.js +145 -0
- package/dist/collection/components/select/test/legacy/compare-with/select.e2e.js +67 -0
- package/dist/collection/components/select/test/legacy/custom/custom.e2e.js +13 -0
- package/dist/collection/components/select/test/legacy/single-value/select.e2e.js +16 -0
- package/dist/collection/components/select/test/legacy/spec/select.e2e.js +14 -0
- package/dist/collection/components/select/test/legacy/standalone/select.e2e.js +18 -0
- package/dist/collection/components/select/test/legacy/wrapping/select.e2e.js +39 -0
- package/dist/collection/components/select/test/popover-size/select.e2e.js +80 -0
- package/dist/collection/components/select/test/states/select.e2e.js +41 -0
- package/dist/collection/components/select/test/toggle-icon/select.e2e.js +30 -0
- package/dist/collection/components/select/test/wrapping/select.e2e.js +36 -0
- package/dist/collection/components/select-option/select-option.css +3 -0
- package/dist/collection/components/select-option/select-option.js +68 -0
- package/dist/collection/components/select-popover/select-popover-interface.js +1 -0
- package/dist/collection/components/select-popover/select-popover.ios.css +14 -0
- package/dist/collection/components/select-popover/select-popover.js +215 -0
- package/dist/collection/components/select-popover/select-popover.md.css +37 -0
- package/dist/collection/components/select-popover/test/basic/select-popover.e2e.js +77 -0
- package/dist/collection/components/select-popover/test/fixtures.js +48 -0
- package/dist/collection/components/skeleton-text/skeleton-text.css +53 -0
- package/dist/collection/components/skeleton-text/skeleton-text.js +57 -0
- package/dist/collection/components/skeleton-text/test/basic/skeleton-text.e2e.js +14 -0
- package/dist/collection/components/skeleton-text/test/custom/skeleton-text.e2e.js +14 -0
- package/dist/collection/components/slides/IonicSlides.js +101 -0
- package/dist/collection/components/spinner/spinner-configs.js +143 -0
- package/dist/collection/components/spinner/spinner-interface.js +1 -0
- package/dist/collection/components/spinner/spinner.css +177 -0
- package/dist/collection/components/spinner/spinner.js +153 -0
- package/dist/collection/components/spinner/test/basic/spinner.e2e.js +18 -0
- package/dist/collection/components/spinner/test/color/spinner.e2e.js +21 -0
- package/dist/collection/components/spinner/test/resize/spinner.e2e.js +35 -0
- package/dist/collection/components/split-pane/split-pane.ios.css +92 -0
- package/dist/collection/components/split-pane/split-pane.js +241 -0
- package/dist/collection/components/split-pane/split-pane.md.css +92 -0
- package/dist/collection/components/split-pane/test/basic/split-pane.e2e.js +29 -0
- package/dist/collection/components/tab/tab.css +4 -0
- package/dist/collection/components/tab/tab.js +182 -0
- package/dist/collection/components/tab-bar/tab-bar-interface.js +1 -0
- package/dist/collection/components/tab-bar/tab-bar.ios.css +87 -0
- package/dist/collection/components/tab-bar/tab-bar.js +170 -0
- package/dist/collection/components/tab-bar/tab-bar.md.css +74 -0
- package/dist/collection/components/tab-bar/test/custom/tab-bar.e2e.js +14 -0
- package/dist/collection/components/tab-bar/test/translucent/tab-bar.e2e.js +40 -0
- package/dist/collection/components/tab-button/tab-button.ios.css +367 -0
- package/dist/collection/components/tab-button/tab-button.js +284 -0
- package/dist/collection/components/tab-button/tab-button.md.css +391 -0
- package/dist/collection/components/tab-button/test/a11y/tab-button.e2e.js +15 -0
- package/dist/collection/components/tab-button/test/basic/tab-button.e2e.js +81 -0
- package/dist/collection/components/tab-button/test/layout/tab-button.e2e.js +123 -0
- package/dist/collection/components/tab-button/test/states/tab-button.e2e.js +65 -0
- package/dist/collection/components/tabs/tabs-interface.js +1 -0
- package/dist/collection/components/tabs/tabs.css +19 -0
- package/dist/collection/components/tabs/tabs.js +366 -0
- package/dist/collection/components/tabs/test/basic/tabs.e2e.js +32 -0
- package/dist/collection/components/tabs/test/placements/tabs.e2e.js +39 -0
- package/dist/collection/components/text/test/basic/text.e2e.js +30 -0
- package/dist/collection/components/text/text.css +3 -0
- package/dist/collection/components/text/text.js +58 -0
- package/dist/collection/components/textarea/test/a11y/textarea.e2e.js +15 -0
- package/dist/collection/components/textarea/test/autogrow/textarea.e2e.js +48 -0
- package/dist/collection/components/textarea/test/bottom-content/textarea.e2e.js +120 -0
- package/dist/collection/components/textarea/test/card/textarea.e2e.js +22 -0
- package/dist/collection/components/textarea/test/color/textarea.e2e.js +131 -0
- package/dist/collection/components/textarea/test/fill/textarea.e2e.js +205 -0
- package/dist/collection/components/textarea/test/highlight/textarea.e2e.js +159 -0
- package/dist/collection/components/textarea/test/item/textarea.e2e.js +43 -0
- package/dist/collection/components/textarea/test/label-placement/textarea.e2e.js +224 -0
- package/dist/collection/components/textarea/test/legacy/a11y/textarea.e2e.js +31 -0
- package/dist/collection/components/textarea/test/legacy/autogrow/textarea.e2e.js +58 -0
- package/dist/collection/components/textarea/test/legacy/basic/textarea.e2e.js +43 -0
- package/dist/collection/components/textarea/test/legacy/clear-on-edit/textarea.e2e.js +25 -0
- package/dist/collection/components/textarea/test/states/textarea.e2e.js +23 -0
- package/dist/collection/components/textarea/test/textarea-events.e2e.js +70 -0
- package/dist/collection/components/textarea/textarea-interface.js +1 -0
- package/dist/collection/components/textarea/textarea.ios.css +699 -0
- package/dist/collection/components/textarea/textarea.js +1063 -0
- package/dist/collection/components/textarea/textarea.md.css +1147 -0
- package/dist/collection/components/thumbnail/test/basic/thumbnail.e2e.js +48 -0
- package/dist/collection/components/thumbnail/test/thumbnail.svg +1 -0
- package/dist/collection/components/thumbnail/thumbnail.css +21 -0
- package/dist/collection/components/thumbnail/thumbnail.js +22 -0
- package/dist/collection/components/title/test/basic/title.e2e.js +15 -0
- package/dist/collection/components/title/title.ios.css +119 -0
- package/dist/collection/components/title/title.js +126 -0
- package/dist/collection/components/title/title.md.css +47 -0
- package/dist/collection/components/toast/animations/ios.enter.js +31 -0
- package/dist/collection/components/toast/animations/ios.leave.js +29 -0
- package/dist/collection/components/toast/animations/md.enter.js +33 -0
- package/dist/collection/components/toast/animations/md.leave.js +16 -0
- package/dist/collection/components/toast/test/a11y/toast.e2e.js +40 -0
- package/dist/collection/components/toast/test/basic/toast.e2e.js +122 -0
- package/dist/collection/components/toast/test/is-open/toast.e2e.js +28 -0
- package/dist/collection/components/toast/test/layout/toast.e2e.js +17 -0
- package/dist/collection/components/toast/test/standalone/toast.e2e.js +21 -0
- package/dist/collection/components/toast/test/trigger/toast.e2e.js +32 -0
- package/dist/collection/components/toast/toast-interface.js +1 -0
- package/dist/collection/components/toast/toast.ios.css +284 -0
- package/dist/collection/components/toast/toast.js +918 -0
- package/dist/collection/components/toast/toast.md.css +305 -0
- package/dist/collection/components/toggle/test/a11y/toggle.e2e.js +15 -0
- package/dist/collection/components/toggle/test/color/toggle.e2e.js +23 -0
- package/dist/collection/components/toggle/test/enable-on-off-labels/toggle.e2e.js +41 -0
- package/dist/collection/components/toggle/test/item/toggle.e2e.js +61 -0
- package/dist/collection/components/toggle/test/label/toggle.e2e.js +93 -0
- package/dist/collection/components/toggle/test/legacy/basic/toggle.e2e.js +83 -0
- package/dist/collection/components/toggle/test/legacy/enable-on-off-labels/toggle.e2e.js +37 -0
- package/dist/collection/components/toggle/test/legacy/sizes/power-outline.svg +1 -0
- package/dist/collection/components/toggle/test/legacy/sizes/toggle.e2e.js +14 -0
- package/dist/collection/components/toggle/test/sizes/power-outline.svg +1 -0
- package/dist/collection/components/toggle/test/sizes/toggle.e2e.js +14 -0
- package/dist/collection/components/toggle/test/states/toggle.e2e.js +30 -0
- package/dist/collection/components/toggle/toggle-interface.js +1 -0
- package/dist/collection/components/toggle/toggle.ios.css +455 -0
- package/dist/collection/components/toggle/toggle.js +502 -0
- package/dist/collection/components/toggle/toggle.md.css +400 -0
- package/dist/collection/components/toolbar/test/basic/toolbar.e2e.js +15 -0
- package/dist/collection/components/toolbar/test/colors/toolbar.e2e.js +17 -0
- package/dist/collection/components/toolbar/toolbar.ios.css +161 -0
- package/dist/collection/components/toolbar/toolbar.js +120 -0
- package/dist/collection/components/toolbar/toolbar.md.css +136 -0
- package/dist/collection/global/config.js +70 -0
- package/dist/collection/global/ionic-global.js +68 -0
- package/dist/collection/index.js +18 -0
- package/dist/collection/utils/animation/animation-interface.js +1 -0
- package/dist/collection/utils/animation/animation-utils.js +125 -0
- package/dist/collection/utils/animation/animation.js +860 -0
- package/dist/collection/utils/animation/cubic-bezier.js +88 -0
- package/dist/collection/utils/animation/test/animationbuilder/animation.e2e.js +32 -0
- package/dist/collection/utils/animation/test/basic/animation.e2e.js +21 -0
- package/dist/collection/utils/animation/test/display/animation.e2e.js +28 -0
- package/dist/collection/utils/animation/test/hooks/animation.e2e.js +49 -0
- package/dist/collection/utils/animation/test/multiple/animation.e2e.js +37 -0
- package/dist/collection/utils/browser/index.js +27 -0
- package/dist/collection/utils/config.js +29 -0
- package/dist/collection/utils/content/content.utils.spec.js +137 -0
- package/dist/collection/utils/content/index.js +126 -0
- package/dist/collection/utils/element-interface.js +1 -0
- package/dist/collection/utils/floating-point/floating-point.spec.js +22 -0
- package/dist/collection/utils/floating-point/index.js +44 -0
- package/dist/collection/utils/focus-visible.js +73 -0
- package/dist/collection/utils/forms/form-controller.js +65 -0
- package/dist/collection/utils/forms/index.js +5 -0
- package/dist/collection/utils/forms/notch-controller.js +150 -0
- package/dist/collection/utils/framework-delegate.js +118 -0
- package/dist/collection/utils/gesture/button-active.js +64 -0
- package/dist/collection/utils/gesture/gesture-controller.js +193 -0
- package/dist/collection/utils/gesture/index.js +242 -0
- package/dist/collection/utils/gesture/listener.js +47 -0
- package/dist/collection/utils/gesture/pointer-events.js +123 -0
- package/dist/collection/utils/gesture/recognizers.js +51 -0
- package/dist/collection/utils/gesture/swipe-back.js +71 -0
- package/dist/collection/utils/hardware-back-button.js +69 -0
- package/dist/collection/utils/helpers.js +419 -0
- package/dist/collection/utils/helpers.spec.js +36 -0
- package/dist/collection/utils/input-shims/hacks/common.js +71 -0
- package/dist/collection/utils/input-shims/hacks/hide-caret.js +28 -0
- package/dist/collection/utils/input-shims/hacks/input-blurring.js +54 -0
- package/dist/collection/utils/input-shims/hacks/scroll-assist.js +179 -0
- package/dist/collection/utils/input-shims/hacks/scroll-data.js +39 -0
- package/dist/collection/utils/input-shims/hacks/scroll-padding.js +57 -0
- package/dist/collection/utils/input-shims/hacks/test/scroll-assist.e2e.js +115 -0
- package/dist/collection/utils/input-shims/input-shims.js +100 -0
- package/dist/collection/utils/keyboard/keyboard-controller.js +162 -0
- package/dist/collection/utils/keyboard/keyboard.js +141 -0
- package/dist/collection/utils/logging/index.js +32 -0
- package/dist/collection/utils/media.js +23 -0
- package/dist/collection/utils/menu-controller/animations/base.js +20 -0
- package/dist/collection/utils/menu-controller/animations/overlay.js +34 -0
- package/dist/collection/utils/menu-controller/animations/push.js +33 -0
- package/dist/collection/utils/menu-controller/animations/reveal.js +19 -0
- package/dist/collection/utils/menu-controller/index.js +211 -0
- package/dist/collection/utils/native/capacitor.js +10 -0
- package/dist/collection/utils/native/haptic.js +209 -0
- package/dist/collection/utils/native/keyboard.js +58 -0
- package/dist/collection/utils/native/native-interface.js +21 -0
- package/dist/collection/utils/native/status-bar.js +45 -0
- package/dist/collection/utils/overlays-interface.js +1 -0
- package/dist/collection/utils/overlays.js +669 -0
- package/dist/collection/utils/platform.js +91 -0
- package/dist/collection/utils/rtl/dir.js +16 -0
- package/dist/collection/utils/rtl/dir.spec.js +25 -0
- package/dist/collection/utils/rtl/index.js +4 -0
- package/dist/collection/utils/sanitization/index.js +164 -0
- package/dist/collection/utils/slot-mutation-controller.js +103 -0
- package/dist/collection/utils/status-tap.js +36 -0
- package/dist/collection/utils/tap-click/index.js +193 -0
- package/dist/collection/utils/tap-click/test/tap-click.e2e.js +25 -0
- package/dist/collection/utils/test/framework-delegate/framework-delegate.e2e.js +33 -0
- package/dist/collection/utils/test/overlays/overlays.e2e.js +179 -0
- package/dist/collection/utils/test/platform.utils.js +98 -0
- package/dist/collection/utils/test/playwright/drag-element.js +38 -0
- package/dist/collection/utils/test/playwright/generator.js +52 -0
- package/dist/collection/utils/test/playwright/index.js +11 -0
- package/dist/collection/utils/test/playwright/matchers/index.js +11 -0
- package/dist/collection/utils/test/playwright/matchers/toHaveReceivedEvent.js +28 -0
- package/dist/collection/utils/test/playwright/matchers/toHaveReceivedEventDetail.js +37 -0
- package/dist/collection/utils/test/playwright/matchers/toHaveReceivedEventTimes.js +29 -0
- package/dist/collection/utils/test/playwright/page/event-spy.js +144 -0
- package/dist/collection/utils/test/playwright/page/utils/get-snapshot-settings.js +32 -0
- package/dist/collection/utils/test/playwright/page/utils/goto.js +68 -0
- package/dist/collection/utils/test/playwright/page/utils/index.js +10 -0
- package/dist/collection/utils/test/playwright/page/utils/locator.js +14 -0
- package/dist/collection/utils/test/playwright/page/utils/set-content.js +70 -0
- package/dist/collection/utils/test/playwright/page/utils/set-ion-viewport.js +36 -0
- package/dist/collection/utils/test/playwright/page/utils/spy-on-event.js +10 -0
- package/dist/collection/utils/test/playwright/page/utils/wait-for-changes.js +61 -0
- package/dist/collection/utils/test/playwright/playwright-declarations.js +1 -0
- package/dist/collection/utils/test/playwright/playwright-page.js +56 -0
- package/dist/collection/utils/test/playwright/viewports/index.js +16 -0
- package/dist/collection/utils/test/press-keys.js +138 -0
- package/dist/collection/utils/theme.js +41 -0
- package/dist/collection/utils/transition/index.js +223 -0
- package/dist/collection/utils/transition/ios.transition.js +476 -0
- package/dist/collection/utils/transition/md.transition.js +51 -0
- package/dist/collection/utils/watch-options.js +34 -0
- package/dist/docs.d.ts +148 -0
- package/dist/docs.json +22240 -0
- package/dist/esm/animation-258fd22b.js +985 -0
- package/dist/esm/app-globals-70454efb.js +8 -0
- package/dist/esm/button-active-aef107f0.js +67 -0
- package/dist/esm/capacitor-6d1861b7.js +13 -0
- package/dist/esm/config-80c044f2.js +193 -0
- package/dist/esm/cubic-bezier-e78d1307.js +90 -0
- package/dist/esm/data-605c040f.js +1463 -0
- package/dist/esm/dir-e8b767a8.js +18 -0
- package/dist/esm/focus-visible-10ad4867.js +75 -0
- package/dist/esm/form-controller-6cd7ebd1.js +68 -0
- package/dist/esm/framework-delegate-6a45ed30.js +121 -0
- package/dist/esm/gesture-controller-17060b7c.js +195 -0
- package/dist/esm/haptic-d85b8584.js +205 -0
- package/dist/esm/hardware-back-button-490df115.js +71 -0
- package/dist/esm/helpers-f586db1c.js +418 -0
- package/dist/esm/index-2d0c7c77.js +196 -0
- package/dist/esm/index-36a5fd75.js +2470 -0
- package/dist/esm/index-393bc14a.js +29 -0
- package/dist/esm/index-422b6e83.js +457 -0
- package/dist/esm/index-6e89f340.js +301 -0
- package/dist/esm/index-7373924f.js +129 -0
- package/dist/esm/index-afea2bcf.js +231 -0
- package/dist/esm/index-b32cad98.js +29 -0
- package/dist/esm/index-e86f0117.js +34 -0
- package/dist/esm/index.js +121 -0
- package/dist/esm/input-shims-5b912f6d.js +506 -0
- package/dist/esm/input.utils-4c00ca72.js +134 -0
- package/dist/esm/ion-accordion_2.entry.js +528 -0
- package/dist/esm/ion-action-sheet.entry.js +309 -0
- package/dist/esm/ion-alert.entry.js +502 -0
- package/dist/esm/ion-app_8.entry.js +1240 -0
- package/dist/esm/ion-avatar_3.entry.js +58 -0
- package/dist/esm/ion-back-button.entry.js +92 -0
- package/dist/esm/ion-backdrop.entry.js +57 -0
- package/dist/esm/ion-breadcrumb_2.entry.js +218 -0
- package/dist/esm/ion-button_2.entry.js +533 -0
- package/dist/esm/ion-card_5.entry.js +156 -0
- package/dist/esm/ion-checkbox.entry.js +164 -0
- package/dist/esm/ion-chip.entry.js +29 -0
- package/dist/esm/ion-col_3.entry.js +174 -0
- package/dist/esm/ion-datetime-button.entry.js +344 -0
- package/dist/esm/ion-datetime_3.entry.js +2269 -0
- package/dist/esm/ion-fab_3.entry.js +180 -0
- package/dist/esm/ion-img.entry.js +104 -0
- package/dist/esm/ion-infinite-scroll_2.entry.js +222 -0
- package/dist/esm/ion-input.entry.js +446 -0
- package/dist/esm/ion-item-option_3.entry.js +518 -0
- package/dist/esm/ion-item_8.entry.js +477 -0
- package/dist/esm/ion-loading.entry.js +267 -0
- package/dist/esm/ion-menu_3.entry.js +686 -0
- package/dist/esm/ion-modal.entry.js +1632 -0
- package/dist/esm/ion-nav_2.entry.js +943 -0
- package/dist/esm/ion-picker-column-internal.entry.js +362 -0
- package/dist/esm/ion-picker-internal.entry.js +482 -0
- package/dist/esm/ion-popover.entry.js +1314 -0
- package/dist/esm/ion-progress-bar.entry.js +58 -0
- package/dist/esm/ion-radio_2.entry.js +340 -0
- package/dist/esm/ion-range.entry.js +606 -0
- package/dist/esm/ion-refresher_2.entry.js +847 -0
- package/dist/esm/ion-reorder_2.entry.js +315 -0
- package/dist/esm/ion-ripple-effect.entry.js +83 -0
- package/dist/esm/ion-route_4.entry.js +885 -0
- package/dist/esm/ion-searchbar.entry.js +386 -0
- package/dist/esm/ion-segment_2.entry.js +507 -0
- package/dist/esm/ion-select_3.entry.js +816 -0
- package/dist/esm/ion-spinner.entry.js +64 -0
- package/dist/esm/ion-split-pane.entry.js +147 -0
- package/dist/esm/ion-tab-bar_2.entry.js +162 -0
- package/dist/esm/ion-tab_2.entry.js +207 -0
- package/dist/esm/ion-text.entry.js +24 -0
- package/dist/esm/ion-textarea.entry.js +395 -0
- package/dist/esm/ion-toast.entry.js +355 -0
- package/dist/esm/ion-toggle.entry.js +244 -0
- package/dist/esm/ionic-global-a9abd569.js +224 -0
- package/dist/esm/ionic.js +27 -0
- package/dist/esm/ios.transition-6a838b0c.js +482 -0
- package/dist/esm/keyboard-a818f780.js +146 -0
- package/dist/esm/keyboard-cdb83866.js +79 -0
- package/dist/esm/keyboard-controller-4149afc6.js +165 -0
- package/dist/esm/loader.js +24 -0
- package/dist/esm/md.transition-b7d7b475.js +57 -0
- package/dist/esm/notch-controller-cfcb8c01.js +153 -0
- package/dist/esm/overlays-4801a327.js +671 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/spinner-configs-40ada8cd.js +145 -0
- package/dist/esm/status-tap-211f1ad8.js +40 -0
- package/dist/esm/swipe-back-1bb66ed2.js +75 -0
- package/dist/esm/theme-7670341c.js +43 -0
- package/dist/esm/watch-options-4d421847.js +36 -0
- package/dist/esm-es5/animation-258fd22b.js +4 -0
- package/dist/esm-es5/app-globals-70454efb.js +4 -0
- package/dist/esm-es5/button-active-aef107f0.js +4 -0
- package/dist/esm-es5/capacitor-6d1861b7.js +4 -0
- package/dist/esm-es5/config-80c044f2.js +4 -0
- package/dist/esm-es5/cubic-bezier-e78d1307.js +4 -0
- package/dist/esm-es5/data-605c040f.js +4 -0
- package/dist/esm-es5/dir-e8b767a8.js +4 -0
- package/dist/esm-es5/focus-visible-10ad4867.js +4 -0
- package/dist/esm-es5/form-controller-6cd7ebd1.js +4 -0
- package/dist/esm-es5/framework-delegate-6a45ed30.js +4 -0
- package/dist/esm-es5/gesture-controller-17060b7c.js +4 -0
- package/dist/esm-es5/haptic-d85b8584.js +4 -0
- package/dist/esm-es5/hardware-back-button-490df115.js +4 -0
- package/dist/esm-es5/helpers-f586db1c.js +4 -0
- package/dist/esm-es5/index-2d0c7c77.js +4 -0
- package/dist/esm-es5/index-36a5fd75.js +5 -0
- package/dist/esm-es5/index-393bc14a.js +4 -0
- package/dist/esm-es5/index-422b6e83.js +4 -0
- package/dist/esm-es5/index-6e89f340.js +4 -0
- package/dist/esm-es5/index-7373924f.js +4 -0
- package/dist/esm-es5/index-afea2bcf.js +4 -0
- package/dist/esm-es5/index-b32cad98.js +4 -0
- package/dist/esm-es5/index-e86f0117.js +4 -0
- package/dist/esm-es5/index.js +4 -0
- package/dist/esm-es5/input-shims-5b912f6d.js +4 -0
- package/dist/esm-es5/input.utils-4c00ca72.js +4 -0
- package/dist/esm-es5/ion-accordion_2.entry.js +4 -0
- package/dist/esm-es5/ion-action-sheet.entry.js +4 -0
- package/dist/esm-es5/ion-alert.entry.js +4 -0
- package/dist/esm-es5/ion-app_8.entry.js +4 -0
- package/dist/esm-es5/ion-avatar_3.entry.js +4 -0
- package/dist/esm-es5/ion-back-button.entry.js +4 -0
- package/dist/esm-es5/ion-backdrop.entry.js +4 -0
- package/dist/esm-es5/ion-breadcrumb_2.entry.js +4 -0
- package/dist/esm-es5/ion-button_2.entry.js +4 -0
- package/dist/esm-es5/ion-card_5.entry.js +4 -0
- package/dist/esm-es5/ion-checkbox.entry.js +4 -0
- package/dist/esm-es5/ion-chip.entry.js +4 -0
- package/dist/esm-es5/ion-col_3.entry.js +4 -0
- package/dist/esm-es5/ion-datetime-button.entry.js +4 -0
- package/dist/esm-es5/ion-datetime_3.entry.js +4 -0
- package/dist/esm-es5/ion-fab_3.entry.js +4 -0
- package/dist/esm-es5/ion-img.entry.js +4 -0
- package/dist/esm-es5/ion-infinite-scroll_2.entry.js +4 -0
- package/dist/esm-es5/ion-input.entry.js +4 -0
- package/dist/esm-es5/ion-item-option_3.entry.js +4 -0
- package/dist/esm-es5/ion-item_8.entry.js +4 -0
- package/dist/esm-es5/ion-loading.entry.js +4 -0
- package/dist/esm-es5/ion-menu_3.entry.js +4 -0
- package/dist/esm-es5/ion-modal.entry.js +4 -0
- package/dist/esm-es5/ion-nav_2.entry.js +4 -0
- package/dist/esm-es5/ion-picker-column-internal.entry.js +4 -0
- package/dist/esm-es5/ion-picker-internal.entry.js +4 -0
- package/dist/esm-es5/ion-popover.entry.js +4 -0
- package/dist/esm-es5/ion-progress-bar.entry.js +4 -0
- package/dist/esm-es5/ion-radio_2.entry.js +4 -0
- package/dist/esm-es5/ion-range.entry.js +4 -0
- package/dist/esm-es5/ion-refresher_2.entry.js +4 -0
- package/dist/esm-es5/ion-reorder_2.entry.js +4 -0
- package/dist/esm-es5/ion-ripple-effect.entry.js +4 -0
- package/dist/esm-es5/ion-route_4.entry.js +4 -0
- package/dist/esm-es5/ion-searchbar.entry.js +4 -0
- package/dist/esm-es5/ion-segment_2.entry.js +4 -0
- package/dist/esm-es5/ion-select_3.entry.js +4 -0
- package/dist/esm-es5/ion-spinner.entry.js +4 -0
- package/dist/esm-es5/ion-split-pane.entry.js +4 -0
- package/dist/esm-es5/ion-tab-bar_2.entry.js +4 -0
- package/dist/esm-es5/ion-tab_2.entry.js +4 -0
- package/dist/esm-es5/ion-text.entry.js +4 -0
- package/dist/esm-es5/ion-textarea.entry.js +4 -0
- package/dist/esm-es5/ion-toast.entry.js +4 -0
- package/dist/esm-es5/ion-toggle.entry.js +4 -0
- package/dist/esm-es5/ionic-global-a9abd569.js +4 -0
- package/dist/esm-es5/ionic.js +4 -0
- package/dist/esm-es5/ios.transition-6a838b0c.js +4 -0
- package/dist/esm-es5/keyboard-a818f780.js +4 -0
- package/dist/esm-es5/keyboard-cdb83866.js +4 -0
- package/dist/esm-es5/keyboard-controller-4149afc6.js +4 -0
- package/dist/esm-es5/loader.js +4 -0
- package/dist/esm-es5/md.transition-b7d7b475.js +4 -0
- package/dist/esm-es5/notch-controller-cfcb8c01.js +4 -0
- package/dist/esm-es5/overlays-4801a327.js +4 -0
- package/dist/esm-es5/spinner-configs-40ada8cd.js +4 -0
- package/dist/esm-es5/status-tap-211f1ad8.js +4 -0
- package/dist/esm-es5/swipe-back-1bb66ed2.js +4 -0
- package/dist/esm-es5/theme-7670341c.js +4 -0
- package/dist/esm-es5/watch-options-4d421847.js +4 -0
- package/dist/html.html-data.json +6429 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/ionic/index.esm.js +4 -0
- package/dist/ionic/ionic.esm.js +4 -0
- package/dist/ionic/ionic.js +131 -0
- package/dist/ionic/p-004db8b3.entry.js +4 -0
- package/dist/ionic/p-026e6f00.system.entry.js +4 -0
- package/dist/ionic/p-04f1268e.system.js +4 -0
- package/dist/ionic/p-05111967.entry.js +4 -0
- package/dist/ionic/p-084b2140.system.js +4 -0
- package/dist/ionic/p-088a58a8.system.entry.js +4 -0
- package/dist/ionic/p-09292468.system.js +4 -0
- package/dist/ionic/p-0b761768.system.js +4 -0
- package/dist/ionic/p-0c92638a.js +4 -0
- package/dist/ionic/p-0dd11651.entry.js +4 -0
- package/dist/ionic/p-0e51ceb7.system.entry.js +4 -0
- package/dist/ionic/p-0fba861a.system.js +4 -0
- package/dist/ionic/p-138fcf0f.entry.js +4 -0
- package/dist/ionic/p-13cb1942.system.entry.js +4 -0
- package/dist/ionic/p-163145e8.system.entry.js +4 -0
- package/dist/ionic/p-164b025e.system.js +4 -0
- package/dist/ionic/p-1699be8e.entry.js +4 -0
- package/dist/ionic/p-1ce8e1ca.system.entry.js +4 -0
- package/dist/ionic/p-1ef14636.system.js +4 -0
- package/dist/ionic/p-1f05aa2b.system.entry.js +4 -0
- package/dist/ionic/p-21e3627d.entry.js +4 -0
- package/dist/ionic/p-28342e96.js +4 -0
- package/dist/ionic/p-2d55f2bd.system.js +4 -0
- package/dist/ionic/p-2e5dc115.entry.js +4 -0
- package/dist/ionic/p-30ae30f8.entry.js +4 -0
- package/dist/ionic/p-322237d0.entry.js +4 -0
- package/dist/ionic/p-335e3cfe.js +4 -0
- package/dist/ionic/p-34f66fef.entry.js +4 -0
- package/dist/ionic/p-355aae8e.system.entry.js +4 -0
- package/dist/ionic/p-35d01c78.js +4 -0
- package/dist/ionic/p-37184fe8.js +4 -0
- package/dist/ionic/p-38bc7b29.js +4 -0
- package/dist/ionic/p-39a30df1.entry.js +4 -0
- package/dist/ionic/p-3b753651.system.js +4 -0
- package/dist/ionic/p-3bf5cd2e.system.entry.js +4 -0
- package/dist/ionic/p-3c349187.js +4 -0
- package/dist/ionic/p-3ca87455.system.js +4 -0
- package/dist/ionic/p-3f9dbcfc.system.entry.js +4 -0
- package/dist/ionic/p-40ed5852.system.js +4 -0
- package/dist/ionic/p-40f778e6.js +4 -0
- package/dist/ionic/p-4108c24e.entry.js +4 -0
- package/dist/ionic/p-43060640.system.entry.js +4 -0
- package/dist/ionic/p-451cbc39.js +4 -0
- package/dist/ionic/p-465e0121.system.entry.js +4 -0
- package/dist/ionic/p-46956a85.js +4 -0
- package/dist/ionic/p-46cac66d.system.entry.js +4 -0
- package/dist/ionic/p-477f7813.entry.js +4 -0
- package/dist/ionic/p-49ead5cb.system.js +4 -0
- package/dist/ionic/p-4a212c9c.system.js +4 -0
- package/dist/ionic/p-4ab679fd.system.js +4 -0
- package/dist/ionic/p-4c9a0825.system.js +4 -0
- package/dist/ionic/p-4f7973ad.entry.js +4 -0
- package/dist/ionic/p-505d3b57.system.js +4 -0
- package/dist/ionic/p-52540082.js +4 -0
- package/dist/ionic/p-54ada505.entry.js +4 -0
- package/dist/ionic/p-54d3d2b6.entry.js +4 -0
- package/dist/ionic/p-5503807a.system.js +4 -0
- package/dist/ionic/p-565d288e.system.js +4 -0
- package/dist/ionic/p-56929710.system.js +4 -0
- package/dist/ionic/p-59a47aff.system.js +4 -0
- package/dist/ionic/p-5a3ee051.system.js +4 -0
- package/dist/ionic/p-5d6123f1.entry.js +4 -0
- package/dist/ionic/p-5db06d92.system.entry.js +4 -0
- package/dist/ionic/p-5dc1aee9.entry.js +4 -0
- package/dist/ionic/p-5de3c520.js +4 -0
- package/dist/ionic/p-609ac308.js +4 -0
- package/dist/ionic/p-627e74b4.js +4 -0
- package/dist/ionic/p-6561b0e5.js +4 -0
- package/dist/ionic/p-66bd7d60.entry.js +4 -0
- package/dist/ionic/p-69a66969.js +4 -0
- package/dist/ionic/p-6a0edd6d.system.js +5 -0
- package/dist/ionic/p-6eeeee8b.system.entry.js +4 -0
- package/dist/ionic/p-6f59ad61.entry.js +4 -0
- package/dist/ionic/p-72969d37.entry.js +4 -0
- package/dist/ionic/p-72dbfdd4.system.js +4 -0
- package/dist/ionic/p-74a23266.system.entry.js +4 -0
- package/dist/ionic/p-7c63a67f.system.entry.js +4 -0
- package/dist/ionic/p-7cc4d08a.system.entry.js +4 -0
- package/dist/ionic/p-7ec7dc35.js +4 -0
- package/dist/ionic/p-86d4b2bf.system.js +4 -0
- package/dist/ionic/p-86e57430.system.js +4 -0
- package/dist/ionic/p-8711de04.entry.js +4 -0
- package/dist/ionic/p-871802fe.entry.js +4 -0
- package/dist/ionic/p-896b72c9.js +4 -0
- package/dist/ionic/p-897e142d.entry.js +4 -0
- package/dist/ionic/p-8a95273c.js +4 -0
- package/dist/ionic/p-8a9d2a85.system.entry.js +4 -0
- package/dist/ionic/p-8da248f0.system.entry.js +4 -0
- package/dist/ionic/p-90bfa7eb.system.entry.js +4 -0
- package/dist/ionic/p-9131f2ce.system.entry.js +4 -0
- package/dist/ionic/p-921d49a0.entry.js +4 -0
- package/dist/ionic/p-94bb8e22.entry.js +4 -0
- package/dist/ionic/p-94d4b708.system.entry.js +4 -0
- package/dist/ionic/p-954ce757.system.entry.js +4 -0
- package/dist/ionic/p-97891b6b.system.js +4 -0
- package/dist/ionic/p-9912d985.js +4 -0
- package/dist/ionic/p-99eac672.system.js +4 -0
- package/dist/ionic/p-9a7f5ed5.entry.js +4 -0
- package/dist/ionic/p-9c935c1f.system.entry.js +4 -0
- package/dist/ionic/p-9cfa25d2.system.entry.js +4 -0
- package/dist/ionic/p-9dcf76ff.system.entry.js +4 -0
- package/dist/ionic/p-9edd7119.system.entry.js +4 -0
- package/dist/ionic/p-9ee9d00e.js +4 -0
- package/dist/ionic/p-a18e77cb.system.entry.js +4 -0
- package/dist/ionic/p-a2e57f27.entry.js +4 -0
- package/dist/ionic/p-a4ef5b36.js +4 -0
- package/dist/ionic/p-a5808f22.entry.js +4 -0
- package/dist/ionic/p-a7016aef.entry.js +4 -0
- package/dist/ionic/p-a780a377.entry.js +4 -0
- package/dist/ionic/p-aa7b8135.system.js +4 -0
- package/dist/ionic/p-ab692eeb.entry.js +4 -0
- package/dist/ionic/p-acd4af3a.entry.js +4 -0
- package/dist/ionic/p-b04873a4.system.js +4 -0
- package/dist/ionic/p-b096113b.js +4 -0
- package/dist/ionic/p-b159246b.entry.js +4 -0
- package/dist/ionic/p-b46c09ac.system.entry.js +4 -0
- package/dist/ionic/p-b6098fdf.entry.js +4 -0
- package/dist/ionic/p-b6519389.system.entry.js +4 -0
- package/dist/ionic/p-b94d3454.entry.js +4 -0
- package/dist/ionic/p-bb38e011.js +4 -0
- package/dist/ionic/p-bb5b0f18.js +4 -0
- package/dist/ionic/p-c056132d.entry.js +4 -0
- package/dist/ionic/p-c05662ba.system.entry.js +4 -0
- package/dist/ionic/p-c099b4c9.js +4 -0
- package/dist/ionic/p-c1f5d275.js +4 -0
- package/dist/ionic/p-c2257c28.system.js +4 -0
- package/dist/ionic/p-c3325038.system.js +4 -0
- package/dist/ionic/p-c3da26fd.system.js +4 -0
- package/dist/ionic/p-c60bc054.system.entry.js +4 -0
- package/dist/ionic/p-c75da7cf.system.js +4 -0
- package/dist/ionic/p-c7d59299.js +4 -0
- package/dist/ionic/p-c9b94b63.system.entry.js +4 -0
- package/dist/ionic/p-cd582fdb.system.entry.js +4 -0
- package/dist/ionic/p-cd83e6cc.system.entry.js +4 -0
- package/dist/ionic/p-d0dedc45.entry.js +4 -0
- package/dist/ionic/p-d2405689.js +4 -0
- package/dist/ionic/p-d267077c.system.entry.js +4 -0
- package/dist/ionic/p-d34c3e77.js +4 -0
- package/dist/ionic/p-d7e0a42b.system.js +4 -0
- package/dist/ionic/p-d7fd994b.js +4 -0
- package/dist/ionic/p-d834e36b.entry.js +4 -0
- package/dist/ionic/p-d9bc4210.js +5 -0
- package/dist/ionic/p-dc3c3a0a.system.js +4 -0
- package/dist/ionic/p-dcf7bf1d.entry.js +4 -0
- package/dist/ionic/p-dd54d07b.system.entry.js +4 -0
- package/dist/ionic/p-e171bd9c.system.js +4 -0
- package/dist/ionic/p-e1bc9a81.js +4 -0
- package/dist/ionic/p-e1c318e0.js +4 -0
- package/dist/ionic/p-e3f387af.system.js +4 -0
- package/dist/ionic/p-e4146230.system.entry.js +4 -0
- package/dist/ionic/p-e614b5ba.system.entry.js +4 -0
- package/dist/ionic/p-e8b9a6b2.system.entry.js +4 -0
- package/dist/ionic/p-eb54056c.system.js +4 -0
- package/dist/ionic/p-ec8a20f7.system.entry.js +4 -0
- package/dist/ionic/p-ed70dec7.entry.js +4 -0
- package/dist/ionic/p-ee5049fd.entry.js +4 -0
- package/dist/ionic/p-ee9863ad.js +4 -0
- package/dist/ionic/p-f16ea33b.entry.js +4 -0
- package/dist/ionic/p-f3116c14.system.js +4 -0
- package/dist/ionic/p-f321535c.js +4 -0
- package/dist/ionic/p-f3c381f2.entry.js +4 -0
- package/dist/ionic/p-f484f0e1.system.entry.js +4 -0
- package/dist/ionic/p-f67dfe83.system.entry.js +4 -0
- package/dist/ionic/p-f6f393ee.system.entry.js +4 -0
- package/dist/ionic/p-f7515628.entry.js +4 -0
- package/dist/ionic/p-f810e0d3.js +4 -0
- package/dist/ionic/p-f9f3ef7c.system.js +4 -0
- package/dist/ionic/p-fa98c2a6.system.js +4 -0
- package/dist/ionic/p-fc2c5521.system.entry.js +4 -0
- package/dist/ionic/p-fc431180.entry.js +4 -0
- package/dist/ionic/p-fe01417c.js +4 -0
- package/dist/ionic/p-ffe2c670.js +4 -0
- package/dist/ionic/svg/accessibility-outline.svg +1 -0
- package/dist/ionic/svg/accessibility-sharp.svg +1 -0
- package/dist/ionic/svg/accessibility.svg +1 -0
- package/dist/ionic/svg/add-circle-outline.svg +1 -0
- package/dist/ionic/svg/add-circle-sharp.svg +1 -0
- package/dist/ionic/svg/add-circle.svg +1 -0
- package/dist/ionic/svg/add-outline.svg +1 -0
- package/dist/ionic/svg/add-sharp.svg +1 -0
- package/dist/ionic/svg/add.svg +1 -0
- package/dist/ionic/svg/airplane-outline.svg +1 -0
- package/dist/ionic/svg/airplane-sharp.svg +1 -0
- package/dist/ionic/svg/airplane.svg +1 -0
- package/dist/ionic/svg/alarm-outline.svg +1 -0
- package/dist/ionic/svg/alarm-sharp.svg +1 -0
- package/dist/ionic/svg/alarm.svg +1 -0
- package/dist/ionic/svg/albums-outline.svg +1 -0
- package/dist/ionic/svg/albums-sharp.svg +1 -0
- package/dist/ionic/svg/albums.svg +1 -0
- package/dist/ionic/svg/alert-circle-outline.svg +1 -0
- package/dist/ionic/svg/alert-circle-sharp.svg +1 -0
- package/dist/ionic/svg/alert-circle.svg +1 -0
- package/dist/ionic/svg/alert-outline.svg +1 -0
- package/dist/ionic/svg/alert-sharp.svg +1 -0
- package/dist/ionic/svg/alert.svg +1 -0
- package/dist/ionic/svg/american-football-outline.svg +1 -0
- package/dist/ionic/svg/american-football-sharp.svg +1 -0
- package/dist/ionic/svg/american-football.svg +1 -0
- package/dist/ionic/svg/analytics-outline.svg +1 -0
- package/dist/ionic/svg/analytics-sharp.svg +1 -0
- package/dist/ionic/svg/analytics.svg +1 -0
- package/dist/ionic/svg/aperture-outline.svg +1 -0
- package/dist/ionic/svg/aperture-sharp.svg +1 -0
- package/dist/ionic/svg/aperture.svg +1 -0
- package/dist/ionic/svg/apps-outline.svg +1 -0
- package/dist/ionic/svg/apps-sharp.svg +1 -0
- package/dist/ionic/svg/apps.svg +1 -0
- package/dist/ionic/svg/archive-outline.svg +1 -0
- package/dist/ionic/svg/archive-sharp.svg +1 -0
- package/dist/ionic/svg/archive.svg +1 -0
- package/dist/ionic/svg/arrow-back-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-back-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-back-circle.svg +1 -0
- package/dist/ionic/svg/arrow-back-outline.svg +1 -0
- package/dist/ionic/svg/arrow-back-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-back.svg +1 -0
- package/dist/ionic/svg/arrow-down-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-down-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-down-circle.svg +1 -0
- package/dist/ionic/svg/arrow-down-outline.svg +1 -0
- package/dist/ionic/svg/arrow-down-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-down.svg +1 -0
- package/dist/ionic/svg/arrow-forward-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-forward-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-forward-circle.svg +1 -0
- package/dist/ionic/svg/arrow-forward-outline.svg +1 -0
- package/dist/ionic/svg/arrow-forward-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-forward.svg +1 -0
- package/dist/ionic/svg/arrow-redo-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-redo-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-redo-circle.svg +1 -0
- package/dist/ionic/svg/arrow-redo-outline.svg +1 -0
- package/dist/ionic/svg/arrow-redo-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-redo.svg +1 -0
- package/dist/ionic/svg/arrow-undo-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-undo-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-undo-circle.svg +1 -0
- package/dist/ionic/svg/arrow-undo-outline.svg +1 -0
- package/dist/ionic/svg/arrow-undo-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-undo.svg +1 -0
- package/dist/ionic/svg/arrow-up-circle-outline.svg +1 -0
- package/dist/ionic/svg/arrow-up-circle-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-up-circle.svg +1 -0
- package/dist/ionic/svg/arrow-up-outline.svg +1 -0
- package/dist/ionic/svg/arrow-up-sharp.svg +1 -0
- package/dist/ionic/svg/arrow-up.svg +1 -0
- package/dist/ionic/svg/at-circle-outline.svg +1 -0
- package/dist/ionic/svg/at-circle-sharp.svg +1 -0
- package/dist/ionic/svg/at-circle.svg +1 -0
- package/dist/ionic/svg/at-outline.svg +1 -0
- package/dist/ionic/svg/at-sharp.svg +1 -0
- package/dist/ionic/svg/at.svg +1 -0
- package/dist/ionic/svg/attach-outline.svg +1 -0
- package/dist/ionic/svg/attach-sharp.svg +1 -0
- package/dist/ionic/svg/attach.svg +1 -0
- package/dist/ionic/svg/backspace-outline.svg +1 -0
- package/dist/ionic/svg/backspace-sharp.svg +1 -0
- package/dist/ionic/svg/backspace.svg +1 -0
- package/dist/ionic/svg/bag-add-outline.svg +1 -0
- package/dist/ionic/svg/bag-add-sharp.svg +1 -0
- package/dist/ionic/svg/bag-add.svg +1 -0
- package/dist/ionic/svg/bag-check-outline.svg +1 -0
- package/dist/ionic/svg/bag-check-sharp.svg +1 -0
- package/dist/ionic/svg/bag-check.svg +1 -0
- package/dist/ionic/svg/bag-handle-outline.svg +1 -0
- package/dist/ionic/svg/bag-handle-sharp.svg +1 -0
- package/dist/ionic/svg/bag-handle.svg +1 -0
- package/dist/ionic/svg/bag-outline.svg +1 -0
- package/dist/ionic/svg/bag-remove-outline.svg +1 -0
- package/dist/ionic/svg/bag-remove-sharp.svg +1 -0
- package/dist/ionic/svg/bag-remove.svg +1 -0
- package/dist/ionic/svg/bag-sharp.svg +1 -0
- package/dist/ionic/svg/bag.svg +1 -0
- package/dist/ionic/svg/balloon-outline.svg +1 -0
- package/dist/ionic/svg/balloon-sharp.svg +1 -0
- package/dist/ionic/svg/balloon.svg +1 -0
- package/dist/ionic/svg/ban-outline.svg +1 -0
- package/dist/ionic/svg/ban-sharp.svg +1 -0
- package/dist/ionic/svg/ban.svg +1 -0
- package/dist/ionic/svg/bandage-outline.svg +1 -0
- package/dist/ionic/svg/bandage-sharp.svg +1 -0
- package/dist/ionic/svg/bandage.svg +1 -0
- package/dist/ionic/svg/bar-chart-outline.svg +1 -0
- package/dist/ionic/svg/bar-chart-sharp.svg +1 -0
- package/dist/ionic/svg/bar-chart.svg +1 -0
- package/dist/ionic/svg/barbell-outline.svg +1 -0
- package/dist/ionic/svg/barbell-sharp.svg +1 -0
- package/dist/ionic/svg/barbell.svg +1 -0
- package/dist/ionic/svg/barcode-outline.svg +1 -0
- package/dist/ionic/svg/barcode-sharp.svg +1 -0
- package/dist/ionic/svg/barcode.svg +1 -0
- package/dist/ionic/svg/baseball-outline.svg +1 -0
- package/dist/ionic/svg/baseball-sharp.svg +1 -0
- package/dist/ionic/svg/baseball.svg +1 -0
- package/dist/ionic/svg/basket-outline.svg +1 -0
- package/dist/ionic/svg/basket-sharp.svg +1 -0
- package/dist/ionic/svg/basket.svg +1 -0
- package/dist/ionic/svg/basketball-outline.svg +1 -0
- package/dist/ionic/svg/basketball-sharp.svg +1 -0
- package/dist/ionic/svg/basketball.svg +1 -0
- package/dist/ionic/svg/battery-charging-outline.svg +1 -0
- package/dist/ionic/svg/battery-charging-sharp.svg +1 -0
- package/dist/ionic/svg/battery-charging.svg +1 -0
- package/dist/ionic/svg/battery-dead-outline.svg +1 -0
- package/dist/ionic/svg/battery-dead-sharp.svg +1 -0
- package/dist/ionic/svg/battery-dead.svg +1 -0
- package/dist/ionic/svg/battery-full-outline.svg +1 -0
- package/dist/ionic/svg/battery-full-sharp.svg +1 -0
- package/dist/ionic/svg/battery-full.svg +1 -0
- package/dist/ionic/svg/battery-half-outline.svg +1 -0
- package/dist/ionic/svg/battery-half-sharp.svg +1 -0
- package/dist/ionic/svg/battery-half.svg +1 -0
- package/dist/ionic/svg/beaker-outline.svg +1 -0
- package/dist/ionic/svg/beaker-sharp.svg +1 -0
- package/dist/ionic/svg/beaker.svg +1 -0
- package/dist/ionic/svg/bed-outline.svg +1 -0
- package/dist/ionic/svg/bed-sharp.svg +1 -0
- package/dist/ionic/svg/bed.svg +1 -0
- package/dist/ionic/svg/beer-outline.svg +1 -0
- package/dist/ionic/svg/beer-sharp.svg +1 -0
- package/dist/ionic/svg/beer.svg +1 -0
- package/dist/ionic/svg/bicycle-outline.svg +1 -0
- package/dist/ionic/svg/bicycle-sharp.svg +1 -0
- package/dist/ionic/svg/bicycle.svg +1 -0
- package/dist/ionic/svg/bluetooth-outline.svg +1 -0
- package/dist/ionic/svg/bluetooth-sharp.svg +1 -0
- package/dist/ionic/svg/bluetooth.svg +1 -0
- package/dist/ionic/svg/boat-outline.svg +1 -0
- package/dist/ionic/svg/boat-sharp.svg +1 -0
- package/dist/ionic/svg/boat.svg +1 -0
- package/dist/ionic/svg/body-outline.svg +1 -0
- package/dist/ionic/svg/body-sharp.svg +1 -0
- package/dist/ionic/svg/body.svg +1 -0
- package/dist/ionic/svg/bonfire-outline.svg +1 -0
- package/dist/ionic/svg/bonfire-sharp.svg +1 -0
- package/dist/ionic/svg/bonfire.svg +1 -0
- package/dist/ionic/svg/book-outline.svg +1 -0
- package/dist/ionic/svg/book-sharp.svg +1 -0
- package/dist/ionic/svg/book.svg +1 -0
- package/dist/ionic/svg/bookmark-outline.svg +1 -0
- package/dist/ionic/svg/bookmark-sharp.svg +1 -0
- package/dist/ionic/svg/bookmark.svg +1 -0
- package/dist/ionic/svg/bookmarks-outline.svg +1 -0
- package/dist/ionic/svg/bookmarks-sharp.svg +1 -0
- package/dist/ionic/svg/bookmarks.svg +1 -0
- package/dist/ionic/svg/bowling-ball-outline.svg +1 -0
- package/dist/ionic/svg/bowling-ball-sharp.svg +1 -0
- package/dist/ionic/svg/bowling-ball.svg +1 -0
- package/dist/ionic/svg/briefcase-outline.svg +1 -0
- package/dist/ionic/svg/briefcase-sharp.svg +1 -0
- package/dist/ionic/svg/briefcase.svg +1 -0
- package/dist/ionic/svg/browsers-outline.svg +1 -0
- package/dist/ionic/svg/browsers-sharp.svg +1 -0
- package/dist/ionic/svg/browsers.svg +1 -0
- package/dist/ionic/svg/brush-outline.svg +1 -0
- package/dist/ionic/svg/brush-sharp.svg +1 -0
- package/dist/ionic/svg/brush.svg +1 -0
- package/dist/ionic/svg/bug-outline.svg +1 -0
- package/dist/ionic/svg/bug-sharp.svg +1 -0
- package/dist/ionic/svg/bug.svg +1 -0
- package/dist/ionic/svg/build-outline.svg +1 -0
- package/dist/ionic/svg/build-sharp.svg +1 -0
- package/dist/ionic/svg/build.svg +1 -0
- package/dist/ionic/svg/bulb-outline.svg +1 -0
- package/dist/ionic/svg/bulb-sharp.svg +1 -0
- package/dist/ionic/svg/bulb.svg +1 -0
- package/dist/ionic/svg/bus-outline.svg +1 -0
- package/dist/ionic/svg/bus-sharp.svg +1 -0
- package/dist/ionic/svg/bus.svg +1 -0
- package/dist/ionic/svg/business-outline.svg +1 -0
- package/dist/ionic/svg/business-sharp.svg +1 -0
- package/dist/ionic/svg/business.svg +1 -0
- package/dist/ionic/svg/cafe-outline.svg +1 -0
- package/dist/ionic/svg/cafe-sharp.svg +1 -0
- package/dist/ionic/svg/cafe.svg +1 -0
- package/dist/ionic/svg/calculator-outline.svg +1 -0
- package/dist/ionic/svg/calculator-sharp.svg +1 -0
- package/dist/ionic/svg/calculator.svg +1 -0
- package/dist/ionic/svg/calendar-clear-outline.svg +1 -0
- package/dist/ionic/svg/calendar-clear-sharp.svg +1 -0
- package/dist/ionic/svg/calendar-clear.svg +1 -0
- package/dist/ionic/svg/calendar-number-outline.svg +1 -0
- package/dist/ionic/svg/calendar-number-sharp.svg +1 -0
- package/dist/ionic/svg/calendar-number.svg +1 -0
- package/dist/ionic/svg/calendar-outline.svg +1 -0
- package/dist/ionic/svg/calendar-sharp.svg +1 -0
- package/dist/ionic/svg/calendar.svg +1 -0
- package/dist/ionic/svg/call-outline.svg +1 -0
- package/dist/ionic/svg/call-sharp.svg +1 -0
- package/dist/ionic/svg/call.svg +1 -0
- package/dist/ionic/svg/camera-outline.svg +1 -0
- package/dist/ionic/svg/camera-reverse-outline.svg +1 -0
- package/dist/ionic/svg/camera-reverse-sharp.svg +1 -0
- package/dist/ionic/svg/camera-reverse.svg +1 -0
- package/dist/ionic/svg/camera-sharp.svg +1 -0
- package/dist/ionic/svg/camera.svg +1 -0
- package/dist/ionic/svg/car-outline.svg +1 -0
- package/dist/ionic/svg/car-sharp.svg +1 -0
- package/dist/ionic/svg/car-sport-outline.svg +1 -0
- package/dist/ionic/svg/car-sport-sharp.svg +1 -0
- package/dist/ionic/svg/car-sport.svg +1 -0
- package/dist/ionic/svg/car.svg +1 -0
- package/dist/ionic/svg/card-outline.svg +1 -0
- package/dist/ionic/svg/card-sharp.svg +1 -0
- package/dist/ionic/svg/card.svg +1 -0
- package/dist/ionic/svg/caret-back-circle-outline.svg +1 -0
- package/dist/ionic/svg/caret-back-circle-sharp.svg +1 -0
- package/dist/ionic/svg/caret-back-circle.svg +1 -0
- package/dist/ionic/svg/caret-back-outline.svg +1 -0
- package/dist/ionic/svg/caret-back-sharp.svg +1 -0
- package/dist/ionic/svg/caret-back.svg +1 -0
- package/dist/ionic/svg/caret-down-circle-outline.svg +1 -0
- package/dist/ionic/svg/caret-down-circle-sharp.svg +1 -0
- package/dist/ionic/svg/caret-down-circle.svg +1 -0
- package/dist/ionic/svg/caret-down-outline.svg +1 -0
- package/dist/ionic/svg/caret-down-sharp.svg +1 -0
- package/dist/ionic/svg/caret-down.svg +1 -0
- package/dist/ionic/svg/caret-forward-circle-outline.svg +1 -0
- package/dist/ionic/svg/caret-forward-circle-sharp.svg +1 -0
- package/dist/ionic/svg/caret-forward-circle.svg +1 -0
- package/dist/ionic/svg/caret-forward-outline.svg +1 -0
- package/dist/ionic/svg/caret-forward-sharp.svg +1 -0
- package/dist/ionic/svg/caret-forward.svg +1 -0
- package/dist/ionic/svg/caret-up-circle-outline.svg +1 -0
- package/dist/ionic/svg/caret-up-circle-sharp.svg +1 -0
- package/dist/ionic/svg/caret-up-circle.svg +1 -0
- package/dist/ionic/svg/caret-up-outline.svg +1 -0
- package/dist/ionic/svg/caret-up-sharp.svg +1 -0
- package/dist/ionic/svg/caret-up.svg +1 -0
- package/dist/ionic/svg/cart-outline.svg +1 -0
- package/dist/ionic/svg/cart-sharp.svg +1 -0
- package/dist/ionic/svg/cart.svg +1 -0
- package/dist/ionic/svg/cash-outline.svg +1 -0
- package/dist/ionic/svg/cash-sharp.svg +1 -0
- package/dist/ionic/svg/cash.svg +1 -0
- package/dist/ionic/svg/cellular-outline.svg +1 -0
- package/dist/ionic/svg/cellular-sharp.svg +1 -0
- package/dist/ionic/svg/cellular.svg +1 -0
- package/dist/ionic/svg/chatbox-ellipses-outline.svg +1 -0
- package/dist/ionic/svg/chatbox-ellipses-sharp.svg +1 -0
- package/dist/ionic/svg/chatbox-ellipses.svg +1 -0
- package/dist/ionic/svg/chatbox-outline.svg +1 -0
- package/dist/ionic/svg/chatbox-sharp.svg +1 -0
- package/dist/ionic/svg/chatbox.svg +1 -0
- package/dist/ionic/svg/chatbubble-ellipses-outline.svg +1 -0
- package/dist/ionic/svg/chatbubble-ellipses-sharp.svg +1 -0
- package/dist/ionic/svg/chatbubble-ellipses.svg +1 -0
- package/dist/ionic/svg/chatbubble-outline.svg +1 -0
- package/dist/ionic/svg/chatbubble-sharp.svg +1 -0
- package/dist/ionic/svg/chatbubble.svg +1 -0
- package/dist/ionic/svg/chatbubbles-outline.svg +1 -0
- package/dist/ionic/svg/chatbubbles-sharp.svg +1 -0
- package/dist/ionic/svg/chatbubbles.svg +1 -0
- package/dist/ionic/svg/checkbox-outline.svg +1 -0
- package/dist/ionic/svg/checkbox-sharp.svg +1 -0
- package/dist/ionic/svg/checkbox.svg +1 -0
- package/dist/ionic/svg/checkmark-circle-outline.svg +1 -0
- package/dist/ionic/svg/checkmark-circle-sharp.svg +1 -0
- package/dist/ionic/svg/checkmark-circle.svg +1 -0
- package/dist/ionic/svg/checkmark-done-circle-outline.svg +1 -0
- package/dist/ionic/svg/checkmark-done-circle-sharp.svg +1 -0
- package/dist/ionic/svg/checkmark-done-circle.svg +1 -0
- package/dist/ionic/svg/checkmark-done-outline.svg +1 -0
- package/dist/ionic/svg/checkmark-done-sharp.svg +1 -0
- package/dist/ionic/svg/checkmark-done.svg +1 -0
- package/dist/ionic/svg/checkmark-outline.svg +1 -0
- package/dist/ionic/svg/checkmark-sharp.svg +1 -0
- package/dist/ionic/svg/checkmark.svg +1 -0
- package/dist/ionic/svg/chevron-back-circle-outline.svg +1 -0
- package/dist/ionic/svg/chevron-back-circle-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-back-circle.svg +1 -0
- package/dist/ionic/svg/chevron-back-outline.svg +1 -0
- package/dist/ionic/svg/chevron-back-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-back.svg +1 -0
- package/dist/ionic/svg/chevron-collapse-outline.svg +1 -0
- package/dist/ionic/svg/chevron-collapse-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-collapse.svg +1 -0
- package/dist/ionic/svg/chevron-down-circle-outline.svg +1 -0
- package/dist/ionic/svg/chevron-down-circle-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-down-circle.svg +1 -0
- package/dist/ionic/svg/chevron-down-outline.svg +1 -0
- package/dist/ionic/svg/chevron-down-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-down.svg +1 -0
- package/dist/ionic/svg/chevron-expand-outline.svg +1 -0
- package/dist/ionic/svg/chevron-expand-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-expand.svg +1 -0
- package/dist/ionic/svg/chevron-forward-circle-outline.svg +1 -0
- package/dist/ionic/svg/chevron-forward-circle-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-forward-circle.svg +1 -0
- package/dist/ionic/svg/chevron-forward-outline.svg +1 -0
- package/dist/ionic/svg/chevron-forward-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-forward.svg +1 -0
- package/dist/ionic/svg/chevron-up-circle-outline.svg +1 -0
- package/dist/ionic/svg/chevron-up-circle-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-up-circle.svg +1 -0
- package/dist/ionic/svg/chevron-up-outline.svg +1 -0
- package/dist/ionic/svg/chevron-up-sharp.svg +1 -0
- package/dist/ionic/svg/chevron-up.svg +1 -0
- package/dist/ionic/svg/clipboard-outline.svg +1 -0
- package/dist/ionic/svg/clipboard-sharp.svg +1 -0
- package/dist/ionic/svg/clipboard.svg +1 -0
- package/dist/ionic/svg/close-circle-outline.svg +1 -0
- package/dist/ionic/svg/close-circle-sharp.svg +1 -0
- package/dist/ionic/svg/close-circle.svg +1 -0
- package/dist/ionic/svg/close-outline.svg +1 -0
- package/dist/ionic/svg/close-sharp.svg +1 -0
- package/dist/ionic/svg/close.svg +1 -0
- package/dist/ionic/svg/cloud-circle-outline.svg +1 -0
- package/dist/ionic/svg/cloud-circle-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-circle.svg +1 -0
- package/dist/ionic/svg/cloud-done-outline.svg +1 -0
- package/dist/ionic/svg/cloud-done-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-done.svg +1 -0
- package/dist/ionic/svg/cloud-download-outline.svg +1 -0
- package/dist/ionic/svg/cloud-download-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-download.svg +1 -0
- package/dist/ionic/svg/cloud-offline-outline.svg +1 -0
- package/dist/ionic/svg/cloud-offline-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-offline.svg +1 -0
- package/dist/ionic/svg/cloud-outline.svg +1 -0
- package/dist/ionic/svg/cloud-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-upload-outline.svg +1 -0
- package/dist/ionic/svg/cloud-upload-sharp.svg +1 -0
- package/dist/ionic/svg/cloud-upload.svg +1 -0
- package/dist/ionic/svg/cloud.svg +1 -0
- package/dist/ionic/svg/cloudy-night-outline.svg +1 -0
- package/dist/ionic/svg/cloudy-night-sharp.svg +1 -0
- package/dist/ionic/svg/cloudy-night.svg +1 -0
- package/dist/ionic/svg/cloudy-outline.svg +1 -0
- package/dist/ionic/svg/cloudy-sharp.svg +1 -0
- package/dist/ionic/svg/cloudy.svg +1 -0
- package/dist/ionic/svg/code-download-outline.svg +1 -0
- package/dist/ionic/svg/code-download-sharp.svg +1 -0
- package/dist/ionic/svg/code-download.svg +1 -0
- package/dist/ionic/svg/code-outline.svg +1 -0
- package/dist/ionic/svg/code-sharp.svg +1 -0
- package/dist/ionic/svg/code-slash-outline.svg +1 -0
- package/dist/ionic/svg/code-slash-sharp.svg +1 -0
- package/dist/ionic/svg/code-slash.svg +1 -0
- package/dist/ionic/svg/code-working-outline.svg +1 -0
- package/dist/ionic/svg/code-working-sharp.svg +1 -0
- package/dist/ionic/svg/code-working.svg +1 -0
- package/dist/ionic/svg/code.svg +1 -0
- package/dist/ionic/svg/cog-outline.svg +1 -0
- package/dist/ionic/svg/cog-sharp.svg +1 -0
- package/dist/ionic/svg/cog.svg +1 -0
- package/dist/ionic/svg/color-fill-outline.svg +1 -0
- package/dist/ionic/svg/color-fill-sharp.svg +1 -0
- package/dist/ionic/svg/color-fill.svg +1 -0
- package/dist/ionic/svg/color-filter-outline.svg +1 -0
- package/dist/ionic/svg/color-filter-sharp.svg +1 -0
- package/dist/ionic/svg/color-filter.svg +1 -0
- package/dist/ionic/svg/color-palette-outline.svg +1 -0
- package/dist/ionic/svg/color-palette-sharp.svg +1 -0
- package/dist/ionic/svg/color-palette.svg +1 -0
- package/dist/ionic/svg/color-wand-outline.svg +1 -0
- package/dist/ionic/svg/color-wand-sharp.svg +1 -0
- package/dist/ionic/svg/color-wand.svg +1 -0
- package/dist/ionic/svg/compass-outline.svg +1 -0
- package/dist/ionic/svg/compass-sharp.svg +1 -0
- package/dist/ionic/svg/compass.svg +1 -0
- package/dist/ionic/svg/construct-outline.svg +1 -0
- package/dist/ionic/svg/construct-sharp.svg +1 -0
- package/dist/ionic/svg/construct.svg +1 -0
- package/dist/ionic/svg/contract-outline.svg +1 -0
- package/dist/ionic/svg/contract-sharp.svg +1 -0
- package/dist/ionic/svg/contract.svg +1 -0
- package/dist/ionic/svg/contrast-outline.svg +1 -0
- package/dist/ionic/svg/contrast-sharp.svg +1 -0
- package/dist/ionic/svg/contrast.svg +1 -0
- package/dist/ionic/svg/copy-outline.svg +1 -0
- package/dist/ionic/svg/copy-sharp.svg +1 -0
- package/dist/ionic/svg/copy.svg +1 -0
- package/dist/ionic/svg/create-outline.svg +1 -0
- package/dist/ionic/svg/create-sharp.svg +1 -0
- package/dist/ionic/svg/create.svg +1 -0
- package/dist/ionic/svg/crop-outline.svg +1 -0
- package/dist/ionic/svg/crop-sharp.svg +1 -0
- package/dist/ionic/svg/crop.svg +1 -0
- package/dist/ionic/svg/cube-outline.svg +1 -0
- package/dist/ionic/svg/cube-sharp.svg +1 -0
- package/dist/ionic/svg/cube.svg +1 -0
- package/dist/ionic/svg/cut-outline.svg +1 -0
- package/dist/ionic/svg/cut-sharp.svg +1 -0
- package/dist/ionic/svg/cut.svg +1 -0
- package/dist/ionic/svg/desktop-outline.svg +1 -0
- package/dist/ionic/svg/desktop-sharp.svg +1 -0
- package/dist/ionic/svg/desktop.svg +1 -0
- package/dist/ionic/svg/diamond-outline.svg +1 -0
- package/dist/ionic/svg/diamond-sharp.svg +1 -0
- package/dist/ionic/svg/diamond.svg +1 -0
- package/dist/ionic/svg/dice-outline.svg +1 -0
- package/dist/ionic/svg/dice-sharp.svg +1 -0
- package/dist/ionic/svg/dice.svg +1 -0
- package/dist/ionic/svg/disc-outline.svg +1 -0
- package/dist/ionic/svg/disc-sharp.svg +1 -0
- package/dist/ionic/svg/disc.svg +1 -0
- package/dist/ionic/svg/document-attach-outline.svg +1 -0
- package/dist/ionic/svg/document-attach-sharp.svg +1 -0
- package/dist/ionic/svg/document-attach.svg +1 -0
- package/dist/ionic/svg/document-lock-outline.svg +1 -0
- package/dist/ionic/svg/document-lock-sharp.svg +1 -0
- package/dist/ionic/svg/document-lock.svg +1 -0
- package/dist/ionic/svg/document-outline.svg +1 -0
- package/dist/ionic/svg/document-sharp.svg +1 -0
- package/dist/ionic/svg/document-text-outline.svg +1 -0
- package/dist/ionic/svg/document-text-sharp.svg +1 -0
- package/dist/ionic/svg/document-text.svg +1 -0
- package/dist/ionic/svg/document.svg +1 -0
- package/dist/ionic/svg/documents-outline.svg +1 -0
- package/dist/ionic/svg/documents-sharp.svg +1 -0
- package/dist/ionic/svg/documents.svg +1 -0
- package/dist/ionic/svg/download-outline.svg +1 -0
- package/dist/ionic/svg/download-sharp.svg +1 -0
- package/dist/ionic/svg/download.svg +1 -0
- package/dist/ionic/svg/duplicate-outline.svg +1 -0
- package/dist/ionic/svg/duplicate-sharp.svg +1 -0
- package/dist/ionic/svg/duplicate.svg +1 -0
- package/dist/ionic/svg/ear-outline.svg +1 -0
- package/dist/ionic/svg/ear-sharp.svg +1 -0
- package/dist/ionic/svg/ear.svg +1 -0
- package/dist/ionic/svg/earth-outline.svg +1 -0
- package/dist/ionic/svg/earth-sharp.svg +1 -0
- package/dist/ionic/svg/earth.svg +1 -0
- package/dist/ionic/svg/easel-outline.svg +1 -0
- package/dist/ionic/svg/easel-sharp.svg +1 -0
- package/dist/ionic/svg/easel.svg +1 -0
- package/dist/ionic/svg/egg-outline.svg +1 -0
- package/dist/ionic/svg/egg-sharp.svg +1 -0
- package/dist/ionic/svg/egg.svg +1 -0
- package/dist/ionic/svg/ellipse-outline.svg +1 -0
- package/dist/ionic/svg/ellipse-sharp.svg +1 -0
- package/dist/ionic/svg/ellipse.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal-circle-outline.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal-circle-sharp.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal-circle.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal-outline.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal-sharp.svg +1 -0
- package/dist/ionic/svg/ellipsis-horizontal.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical-circle-outline.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical-circle-sharp.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical-circle.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical-outline.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical-sharp.svg +1 -0
- package/dist/ionic/svg/ellipsis-vertical.svg +1 -0
- package/dist/ionic/svg/enter-outline.svg +1 -0
- package/dist/ionic/svg/enter-sharp.svg +1 -0
- package/dist/ionic/svg/enter.svg +1 -0
- package/dist/ionic/svg/exit-outline.svg +1 -0
- package/dist/ionic/svg/exit-sharp.svg +1 -0
- package/dist/ionic/svg/exit.svg +1 -0
- package/dist/ionic/svg/expand-outline.svg +1 -0
- package/dist/ionic/svg/expand-sharp.svg +1 -0
- package/dist/ionic/svg/expand.svg +1 -0
- package/dist/ionic/svg/extension-puzzle-outline.svg +1 -0
- package/dist/ionic/svg/extension-puzzle-sharp.svg +1 -0
- package/dist/ionic/svg/extension-puzzle.svg +1 -0
- package/dist/ionic/svg/eye-off-outline.svg +1 -0
- package/dist/ionic/svg/eye-off-sharp.svg +1 -0
- package/dist/ionic/svg/eye-off.svg +1 -0
- package/dist/ionic/svg/eye-outline.svg +1 -0
- package/dist/ionic/svg/eye-sharp.svg +1 -0
- package/dist/ionic/svg/eye.svg +1 -0
- package/dist/ionic/svg/eyedrop-outline.svg +1 -0
- package/dist/ionic/svg/eyedrop-sharp.svg +1 -0
- package/dist/ionic/svg/eyedrop.svg +1 -0
- package/dist/ionic/svg/fast-food-outline.svg +1 -0
- package/dist/ionic/svg/fast-food-sharp.svg +1 -0
- package/dist/ionic/svg/fast-food.svg +1 -0
- package/dist/ionic/svg/female-outline.svg +1 -0
- package/dist/ionic/svg/female-sharp.svg +1 -0
- package/dist/ionic/svg/female.svg +1 -0
- package/dist/ionic/svg/file-tray-full-outline.svg +1 -0
- package/dist/ionic/svg/file-tray-full-sharp.svg +1 -0
- package/dist/ionic/svg/file-tray-full.svg +1 -0
- package/dist/ionic/svg/file-tray-outline.svg +1 -0
- package/dist/ionic/svg/file-tray-sharp.svg +1 -0
- package/dist/ionic/svg/file-tray-stacked-outline.svg +1 -0
- package/dist/ionic/svg/file-tray-stacked-sharp.svg +1 -0
- package/dist/ionic/svg/file-tray-stacked.svg +1 -0
- package/dist/ionic/svg/file-tray.svg +1 -0
- package/dist/ionic/svg/film-outline.svg +1 -0
- package/dist/ionic/svg/film-sharp.svg +1 -0
- package/dist/ionic/svg/film.svg +1 -0
- package/dist/ionic/svg/filter-circle-outline.svg +1 -0
- package/dist/ionic/svg/filter-circle-sharp.svg +1 -0
- package/dist/ionic/svg/filter-circle.svg +1 -0
- package/dist/ionic/svg/filter-outline.svg +1 -0
- package/dist/ionic/svg/filter-sharp.svg +1 -0
- package/dist/ionic/svg/filter.svg +1 -0
- package/dist/ionic/svg/finger-print-outline.svg +1 -0
- package/dist/ionic/svg/finger-print-sharp.svg +1 -0
- package/dist/ionic/svg/finger-print.svg +1 -0
- package/dist/ionic/svg/fish-outline.svg +1 -0
- package/dist/ionic/svg/fish-sharp.svg +1 -0
- package/dist/ionic/svg/fish.svg +1 -0
- package/dist/ionic/svg/fitness-outline.svg +1 -0
- package/dist/ionic/svg/fitness-sharp.svg +1 -0
- package/dist/ionic/svg/fitness.svg +1 -0
- package/dist/ionic/svg/flag-outline.svg +1 -0
- package/dist/ionic/svg/flag-sharp.svg +1 -0
- package/dist/ionic/svg/flag.svg +1 -0
- package/dist/ionic/svg/flame-outline.svg +1 -0
- package/dist/ionic/svg/flame-sharp.svg +1 -0
- package/dist/ionic/svg/flame.svg +1 -0
- package/dist/ionic/svg/flash-off-outline.svg +1 -0
- package/dist/ionic/svg/flash-off-sharp.svg +1 -0
- package/dist/ionic/svg/flash-off.svg +1 -0
- package/dist/ionic/svg/flash-outline.svg +1 -0
- package/dist/ionic/svg/flash-sharp.svg +1 -0
- package/dist/ionic/svg/flash.svg +1 -0
- package/dist/ionic/svg/flashlight-outline.svg +1 -0
- package/dist/ionic/svg/flashlight-sharp.svg +1 -0
- package/dist/ionic/svg/flashlight.svg +1 -0
- package/dist/ionic/svg/flask-outline.svg +1 -0
- package/dist/ionic/svg/flask-sharp.svg +1 -0
- package/dist/ionic/svg/flask.svg +1 -0
- package/dist/ionic/svg/flower-outline.svg +1 -0
- package/dist/ionic/svg/flower-sharp.svg +1 -0
- package/dist/ionic/svg/flower.svg +1 -0
- package/dist/ionic/svg/folder-open-outline.svg +1 -0
- package/dist/ionic/svg/folder-open-sharp.svg +1 -0
- package/dist/ionic/svg/folder-open.svg +1 -0
- package/dist/ionic/svg/folder-outline.svg +1 -0
- package/dist/ionic/svg/folder-sharp.svg +1 -0
- package/dist/ionic/svg/folder.svg +1 -0
- package/dist/ionic/svg/football-outline.svg +1 -0
- package/dist/ionic/svg/football-sharp.svg +1 -0
- package/dist/ionic/svg/football.svg +1 -0
- package/dist/ionic/svg/footsteps-outline.svg +1 -0
- package/dist/ionic/svg/footsteps-sharp.svg +1 -0
- package/dist/ionic/svg/footsteps.svg +1 -0
- package/dist/ionic/svg/funnel-outline.svg +1 -0
- package/dist/ionic/svg/funnel-sharp.svg +1 -0
- package/dist/ionic/svg/funnel.svg +1 -0
- package/dist/ionic/svg/game-controller-outline.svg +1 -0
- package/dist/ionic/svg/game-controller-sharp.svg +1 -0
- package/dist/ionic/svg/game-controller.svg +1 -0
- package/dist/ionic/svg/gift-outline.svg +1 -0
- package/dist/ionic/svg/gift-sharp.svg +1 -0
- package/dist/ionic/svg/gift.svg +1 -0
- package/dist/ionic/svg/git-branch-outline.svg +1 -0
- package/dist/ionic/svg/git-branch-sharp.svg +1 -0
- package/dist/ionic/svg/git-branch.svg +1 -0
- package/dist/ionic/svg/git-commit-outline.svg +1 -0
- package/dist/ionic/svg/git-commit-sharp.svg +1 -0
- package/dist/ionic/svg/git-commit.svg +1 -0
- package/dist/ionic/svg/git-compare-outline.svg +1 -0
- package/dist/ionic/svg/git-compare-sharp.svg +1 -0
- package/dist/ionic/svg/git-compare.svg +1 -0
- package/dist/ionic/svg/git-merge-outline.svg +1 -0
- package/dist/ionic/svg/git-merge-sharp.svg +1 -0
- package/dist/ionic/svg/git-merge.svg +1 -0
- package/dist/ionic/svg/git-network-outline.svg +1 -0
- package/dist/ionic/svg/git-network-sharp.svg +1 -0
- package/dist/ionic/svg/git-network.svg +1 -0
- package/dist/ionic/svg/git-pull-request-outline.svg +1 -0
- package/dist/ionic/svg/git-pull-request-sharp.svg +1 -0
- package/dist/ionic/svg/git-pull-request.svg +1 -0
- package/dist/ionic/svg/glasses-outline.svg +1 -0
- package/dist/ionic/svg/glasses-sharp.svg +1 -0
- package/dist/ionic/svg/glasses.svg +1 -0
- package/dist/ionic/svg/globe-outline.svg +1 -0
- package/dist/ionic/svg/globe-sharp.svg +1 -0
- package/dist/ionic/svg/globe.svg +1 -0
- package/dist/ionic/svg/golf-outline.svg +1 -0
- package/dist/ionic/svg/golf-sharp.svg +1 -0
- package/dist/ionic/svg/golf.svg +1 -0
- package/dist/ionic/svg/grid-outline.svg +1 -0
- package/dist/ionic/svg/grid-sharp.svg +1 -0
- package/dist/ionic/svg/grid.svg +1 -0
- package/dist/ionic/svg/hammer-outline.svg +1 -0
- package/dist/ionic/svg/hammer-sharp.svg +1 -0
- package/dist/ionic/svg/hammer.svg +1 -0
- package/dist/ionic/svg/hand-left-outline.svg +1 -0
- package/dist/ionic/svg/hand-left-sharp.svg +1 -0
- package/dist/ionic/svg/hand-left.svg +1 -0
- package/dist/ionic/svg/hand-right-outline.svg +1 -0
- package/dist/ionic/svg/hand-right-sharp.svg +1 -0
- package/dist/ionic/svg/hand-right.svg +1 -0
- package/dist/ionic/svg/happy-outline.svg +1 -0
- package/dist/ionic/svg/happy-sharp.svg +1 -0
- package/dist/ionic/svg/happy.svg +1 -0
- package/dist/ionic/svg/hardware-chip-outline.svg +1 -0
- package/dist/ionic/svg/hardware-chip-sharp.svg +1 -0
- package/dist/ionic/svg/hardware-chip.svg +1 -0
- package/dist/ionic/svg/headset-outline.svg +1 -0
- package/dist/ionic/svg/headset-sharp.svg +1 -0
- package/dist/ionic/svg/headset.svg +1 -0
- package/dist/ionic/svg/heart-circle-outline.svg +1 -0
- package/dist/ionic/svg/heart-circle-sharp.svg +1 -0
- package/dist/ionic/svg/heart-circle.svg +1 -0
- package/dist/ionic/svg/heart-dislike-circle-outline.svg +1 -0
- package/dist/ionic/svg/heart-dislike-circle-sharp.svg +1 -0
- package/dist/ionic/svg/heart-dislike-circle.svg +1 -0
- package/dist/ionic/svg/heart-dislike-outline.svg +1 -0
- package/dist/ionic/svg/heart-dislike-sharp.svg +1 -0
- package/dist/ionic/svg/heart-dislike.svg +1 -0
- package/dist/ionic/svg/heart-half-outline.svg +1 -0
- package/dist/ionic/svg/heart-half-sharp.svg +1 -0
- package/dist/ionic/svg/heart-half.svg +1 -0
- package/dist/ionic/svg/heart-outline.svg +1 -0
- package/dist/ionic/svg/heart-sharp.svg +1 -0
- package/dist/ionic/svg/heart.svg +1 -0
- package/dist/ionic/svg/help-buoy-outline.svg +1 -0
- package/dist/ionic/svg/help-buoy-sharp.svg +1 -0
- package/dist/ionic/svg/help-buoy.svg +1 -0
- package/dist/ionic/svg/help-circle-outline.svg +1 -0
- package/dist/ionic/svg/help-circle-sharp.svg +1 -0
- package/dist/ionic/svg/help-circle.svg +1 -0
- package/dist/ionic/svg/help-outline.svg +1 -0
- package/dist/ionic/svg/help-sharp.svg +1 -0
- package/dist/ionic/svg/help.svg +1 -0
- package/dist/ionic/svg/home-outline.svg +1 -0
- package/dist/ionic/svg/home-sharp.svg +1 -0
- package/dist/ionic/svg/home.svg +1 -0
- package/dist/ionic/svg/hourglass-outline.svg +1 -0
- package/dist/ionic/svg/hourglass-sharp.svg +1 -0
- package/dist/ionic/svg/hourglass.svg +1 -0
- package/dist/ionic/svg/ice-cream-outline.svg +1 -0
- package/dist/ionic/svg/ice-cream-sharp.svg +1 -0
- package/dist/ionic/svg/ice-cream.svg +1 -0
- package/dist/ionic/svg/id-card-outline.svg +1 -0
- package/dist/ionic/svg/id-card-sharp.svg +1 -0
- package/dist/ionic/svg/id-card.svg +1 -0
- package/dist/ionic/svg/image-outline.svg +1 -0
- package/dist/ionic/svg/image-sharp.svg +1 -0
- package/dist/ionic/svg/image.svg +1 -0
- package/dist/ionic/svg/images-outline.svg +1 -0
- package/dist/ionic/svg/images-sharp.svg +1 -0
- package/dist/ionic/svg/images.svg +1 -0
- package/dist/ionic/svg/infinite-outline.svg +1 -0
- package/dist/ionic/svg/infinite-sharp.svg +1 -0
- package/dist/ionic/svg/infinite.svg +1 -0
- package/dist/ionic/svg/information-circle-outline.svg +1 -0
- package/dist/ionic/svg/information-circle-sharp.svg +1 -0
- package/dist/ionic/svg/information-circle.svg +1 -0
- package/dist/ionic/svg/information-outline.svg +1 -0
- package/dist/ionic/svg/information-sharp.svg +1 -0
- package/dist/ionic/svg/information.svg +1 -0
- package/dist/ionic/svg/invert-mode-outline.svg +1 -0
- package/dist/ionic/svg/invert-mode-sharp.svg +1 -0
- package/dist/ionic/svg/invert-mode.svg +1 -0
- package/dist/ionic/svg/journal-outline.svg +1 -0
- package/dist/ionic/svg/journal-sharp.svg +1 -0
- package/dist/ionic/svg/journal.svg +1 -0
- package/dist/ionic/svg/key-outline.svg +1 -0
- package/dist/ionic/svg/key-sharp.svg +1 -0
- package/dist/ionic/svg/key.svg +1 -0
- package/dist/ionic/svg/keypad-outline.svg +1 -0
- package/dist/ionic/svg/keypad-sharp.svg +1 -0
- package/dist/ionic/svg/keypad.svg +1 -0
- package/dist/ionic/svg/language-outline.svg +1 -0
- package/dist/ionic/svg/language-sharp.svg +1 -0
- package/dist/ionic/svg/language.svg +1 -0
- package/dist/ionic/svg/laptop-outline.svg +1 -0
- package/dist/ionic/svg/laptop-sharp.svg +1 -0
- package/dist/ionic/svg/laptop.svg +1 -0
- package/dist/ionic/svg/layers-outline.svg +1 -0
- package/dist/ionic/svg/layers-sharp.svg +1 -0
- package/dist/ionic/svg/layers.svg +1 -0
- package/dist/ionic/svg/leaf-outline.svg +1 -0
- package/dist/ionic/svg/leaf-sharp.svg +1 -0
- package/dist/ionic/svg/leaf.svg +1 -0
- package/dist/ionic/svg/library-outline.svg +1 -0
- package/dist/ionic/svg/library-sharp.svg +1 -0
- package/dist/ionic/svg/library.svg +1 -0
- package/dist/ionic/svg/link-outline.svg +1 -0
- package/dist/ionic/svg/link-sharp.svg +1 -0
- package/dist/ionic/svg/link.svg +1 -0
- package/dist/ionic/svg/list-circle-outline.svg +1 -0
- package/dist/ionic/svg/list-circle-sharp.svg +1 -0
- package/dist/ionic/svg/list-circle.svg +1 -0
- package/dist/ionic/svg/list-outline.svg +1 -0
- package/dist/ionic/svg/list-sharp.svg +1 -0
- package/dist/ionic/svg/list.svg +1 -0
- package/dist/ionic/svg/locate-outline.svg +1 -0
- package/dist/ionic/svg/locate-sharp.svg +1 -0
- package/dist/ionic/svg/locate.svg +1 -0
- package/dist/ionic/svg/location-outline.svg +1 -0
- package/dist/ionic/svg/location-sharp.svg +1 -0
- package/dist/ionic/svg/location.svg +1 -0
- package/dist/ionic/svg/lock-closed-outline.svg +1 -0
- package/dist/ionic/svg/lock-closed-sharp.svg +1 -0
- package/dist/ionic/svg/lock-closed.svg +1 -0
- package/dist/ionic/svg/lock-open-outline.svg +1 -0
- package/dist/ionic/svg/lock-open-sharp.svg +1 -0
- package/dist/ionic/svg/lock-open.svg +1 -0
- package/dist/ionic/svg/log-in-outline.svg +1 -0
- package/dist/ionic/svg/log-in-sharp.svg +1 -0
- package/dist/ionic/svg/log-in.svg +1 -0
- package/dist/ionic/svg/log-out-outline.svg +1 -0
- package/dist/ionic/svg/log-out-sharp.svg +1 -0
- package/dist/ionic/svg/log-out.svg +1 -0
- package/dist/ionic/svg/logo-alipay.svg +1 -0
- package/dist/ionic/svg/logo-amazon.svg +1 -0
- package/dist/ionic/svg/logo-amplify.svg +1 -0
- package/dist/ionic/svg/logo-android.svg +1 -0
- package/dist/ionic/svg/logo-angular.svg +1 -0
- package/dist/ionic/svg/logo-apple-appstore.svg +1 -0
- package/dist/ionic/svg/logo-apple-ar.svg +1 -0
- package/dist/ionic/svg/logo-apple.svg +1 -0
- package/dist/ionic/svg/logo-behance.svg +1 -0
- package/dist/ionic/svg/logo-bitbucket.svg +1 -0
- package/dist/ionic/svg/logo-bitcoin.svg +1 -0
- package/dist/ionic/svg/logo-buffer.svg +1 -0
- package/dist/ionic/svg/logo-capacitor.svg +1 -0
- package/dist/ionic/svg/logo-chrome.svg +1 -0
- package/dist/ionic/svg/logo-closed-captioning.svg +1 -0
- package/dist/ionic/svg/logo-codepen.svg +1 -0
- package/dist/ionic/svg/logo-css3.svg +1 -0
- package/dist/ionic/svg/logo-designernews.svg +1 -0
- package/dist/ionic/svg/logo-deviantart.svg +1 -0
- package/dist/ionic/svg/logo-discord.svg +1 -0
- package/dist/ionic/svg/logo-docker.svg +1 -0
- package/dist/ionic/svg/logo-dribbble.svg +1 -0
- package/dist/ionic/svg/logo-dropbox.svg +1 -0
- package/dist/ionic/svg/logo-edge.svg +1 -0
- package/dist/ionic/svg/logo-electron.svg +1 -0
- package/dist/ionic/svg/logo-euro.svg +1 -0
- package/dist/ionic/svg/logo-facebook.svg +1 -0
- package/dist/ionic/svg/logo-figma.svg +1 -0
- package/dist/ionic/svg/logo-firebase.svg +1 -0
- package/dist/ionic/svg/logo-firefox.svg +1 -0
- package/dist/ionic/svg/logo-flickr.svg +1 -0
- package/dist/ionic/svg/logo-foursquare.svg +1 -0
- package/dist/ionic/svg/logo-github.svg +1 -0
- package/dist/ionic/svg/logo-gitlab.svg +1 -0
- package/dist/ionic/svg/logo-google-playstore.svg +1 -0
- package/dist/ionic/svg/logo-google.svg +1 -0
- package/dist/ionic/svg/logo-hackernews.svg +1 -0
- package/dist/ionic/svg/logo-html5.svg +1 -0
- package/dist/ionic/svg/logo-instagram.svg +1 -0
- package/dist/ionic/svg/logo-ionic.svg +1 -0
- package/dist/ionic/svg/logo-ionitron.svg +1 -0
- package/dist/ionic/svg/logo-javascript.svg +1 -0
- package/dist/ionic/svg/logo-laravel.svg +1 -0
- package/dist/ionic/svg/logo-linkedin.svg +1 -0
- package/dist/ionic/svg/logo-markdown.svg +1 -0
- package/dist/ionic/svg/logo-mastodon.svg +1 -0
- package/dist/ionic/svg/logo-medium.svg +1 -0
- package/dist/ionic/svg/logo-microsoft.svg +1 -0
- package/dist/ionic/svg/logo-no-smoking.svg +1 -0
- package/dist/ionic/svg/logo-nodejs.svg +1 -0
- package/dist/ionic/svg/logo-npm.svg +1 -0
- package/dist/ionic/svg/logo-octocat.svg +1 -0
- package/dist/ionic/svg/logo-paypal.svg +1 -0
- package/dist/ionic/svg/logo-pinterest.svg +1 -0
- package/dist/ionic/svg/logo-playstation.svg +1 -0
- package/dist/ionic/svg/logo-pwa.svg +1 -0
- package/dist/ionic/svg/logo-python.svg +1 -0
- package/dist/ionic/svg/logo-react.svg +1 -0
- package/dist/ionic/svg/logo-reddit.svg +1 -0
- package/dist/ionic/svg/logo-rss.svg +1 -0
- package/dist/ionic/svg/logo-sass.svg +1 -0
- package/dist/ionic/svg/logo-skype.svg +1 -0
- package/dist/ionic/svg/logo-slack.svg +1 -0
- package/dist/ionic/svg/logo-snapchat.svg +1 -0
- package/dist/ionic/svg/logo-soundcloud.svg +1 -0
- package/dist/ionic/svg/logo-stackoverflow.svg +1 -0
- package/dist/ionic/svg/logo-steam.svg +1 -0
- package/dist/ionic/svg/logo-stencil.svg +1 -0
- package/dist/ionic/svg/logo-tableau.svg +1 -0
- package/dist/ionic/svg/logo-tiktok.svg +1 -0
- package/dist/ionic/svg/logo-tumblr.svg +1 -0
- package/dist/ionic/svg/logo-tux.svg +1 -0
- package/dist/ionic/svg/logo-twitch.svg +1 -0
- package/dist/ionic/svg/logo-twitter.svg +1 -0
- package/dist/ionic/svg/logo-usd.svg +1 -0
- package/dist/ionic/svg/logo-venmo.svg +1 -0
- package/dist/ionic/svg/logo-vercel.svg +1 -0
- package/dist/ionic/svg/logo-vimeo.svg +1 -0
- package/dist/ionic/svg/logo-vk.svg +1 -0
- package/dist/ionic/svg/logo-vue.svg +1 -0
- package/dist/ionic/svg/logo-web-component.svg +1 -0
- package/dist/ionic/svg/logo-wechat.svg +1 -0
- package/dist/ionic/svg/logo-whatsapp.svg +1 -0
- package/dist/ionic/svg/logo-windows.svg +1 -0
- package/dist/ionic/svg/logo-wordpress.svg +1 -0
- package/dist/ionic/svg/logo-xbox.svg +1 -0
- package/dist/ionic/svg/logo-xing.svg +1 -0
- package/dist/ionic/svg/logo-yahoo.svg +1 -0
- package/dist/ionic/svg/logo-yen.svg +1 -0
- package/dist/ionic/svg/logo-youtube.svg +1 -0
- package/dist/ionic/svg/magnet-outline.svg +1 -0
- package/dist/ionic/svg/magnet-sharp.svg +1 -0
- package/dist/ionic/svg/magnet.svg +1 -0
- package/dist/ionic/svg/mail-open-outline.svg +1 -0
- package/dist/ionic/svg/mail-open-sharp.svg +1 -0
- package/dist/ionic/svg/mail-open.svg +1 -0
- package/dist/ionic/svg/mail-outline.svg +1 -0
- package/dist/ionic/svg/mail-sharp.svg +1 -0
- package/dist/ionic/svg/mail-unread-outline.svg +1 -0
- package/dist/ionic/svg/mail-unread-sharp.svg +1 -0
- package/dist/ionic/svg/mail-unread.svg +1 -0
- package/dist/ionic/svg/mail.svg +1 -0
- package/dist/ionic/svg/male-female-outline.svg +1 -0
- package/dist/ionic/svg/male-female-sharp.svg +1 -0
- package/dist/ionic/svg/male-female.svg +1 -0
- package/dist/ionic/svg/male-outline.svg +1 -0
- package/dist/ionic/svg/male-sharp.svg +1 -0
- package/dist/ionic/svg/male.svg +1 -0
- package/dist/ionic/svg/man-outline.svg +1 -0
- package/dist/ionic/svg/man-sharp.svg +1 -0
- package/dist/ionic/svg/man.svg +1 -0
- package/dist/ionic/svg/map-outline.svg +1 -0
- package/dist/ionic/svg/map-sharp.svg +1 -0
- package/dist/ionic/svg/map.svg +1 -0
- package/dist/ionic/svg/medal-outline.svg +1 -0
- package/dist/ionic/svg/medal-sharp.svg +1 -0
- package/dist/ionic/svg/medal.svg +1 -0
- package/dist/ionic/svg/medical-outline.svg +1 -0
- package/dist/ionic/svg/medical-sharp.svg +1 -0
- package/dist/ionic/svg/medical.svg +1 -0
- package/dist/ionic/svg/medkit-outline.svg +1 -0
- package/dist/ionic/svg/medkit-sharp.svg +1 -0
- package/dist/ionic/svg/medkit.svg +1 -0
- package/dist/ionic/svg/megaphone-outline.svg +1 -0
- package/dist/ionic/svg/megaphone-sharp.svg +1 -0
- package/dist/ionic/svg/megaphone.svg +1 -0
- package/dist/ionic/svg/menu-outline.svg +1 -0
- package/dist/ionic/svg/menu-sharp.svg +1 -0
- package/dist/ionic/svg/menu.svg +1 -0
- package/dist/ionic/svg/mic-circle-outline.svg +1 -0
- package/dist/ionic/svg/mic-circle-sharp.svg +1 -0
- package/dist/ionic/svg/mic-circle.svg +1 -0
- package/dist/ionic/svg/mic-off-circle-outline.svg +1 -0
- package/dist/ionic/svg/mic-off-circle-sharp.svg +1 -0
- package/dist/ionic/svg/mic-off-circle.svg +1 -0
- package/dist/ionic/svg/mic-off-outline.svg +1 -0
- package/dist/ionic/svg/mic-off-sharp.svg +1 -0
- package/dist/ionic/svg/mic-off.svg +1 -0
- package/dist/ionic/svg/mic-outline.svg +1 -0
- package/dist/ionic/svg/mic-sharp.svg +1 -0
- package/dist/ionic/svg/mic.svg +1 -0
- package/dist/ionic/svg/moon-outline.svg +1 -0
- package/dist/ionic/svg/moon-sharp.svg +1 -0
- package/dist/ionic/svg/moon.svg +1 -0
- package/dist/ionic/svg/move-outline.svg +1 -0
- package/dist/ionic/svg/move-sharp.svg +1 -0
- package/dist/ionic/svg/move.svg +1 -0
- package/dist/ionic/svg/musical-note-outline.svg +1 -0
- package/dist/ionic/svg/musical-note-sharp.svg +1 -0
- package/dist/ionic/svg/musical-note.svg +1 -0
- package/dist/ionic/svg/musical-notes-outline.svg +1 -0
- package/dist/ionic/svg/musical-notes-sharp.svg +1 -0
- package/dist/ionic/svg/musical-notes.svg +1 -0
- package/dist/ionic/svg/navigate-circle-outline.svg +1 -0
- package/dist/ionic/svg/navigate-circle-sharp.svg +1 -0
- package/dist/ionic/svg/navigate-circle.svg +1 -0
- package/dist/ionic/svg/navigate-outline.svg +1 -0
- package/dist/ionic/svg/navigate-sharp.svg +1 -0
- package/dist/ionic/svg/navigate.svg +1 -0
- package/dist/ionic/svg/newspaper-outline.svg +1 -0
- package/dist/ionic/svg/newspaper-sharp.svg +1 -0
- package/dist/ionic/svg/newspaper.svg +1 -0
- package/dist/ionic/svg/notifications-circle-outline.svg +1 -0
- package/dist/ionic/svg/notifications-circle-sharp.svg +1 -0
- package/dist/ionic/svg/notifications-circle.svg +1 -0
- package/dist/ionic/svg/notifications-off-circle-outline.svg +1 -0
- package/dist/ionic/svg/notifications-off-circle-sharp.svg +1 -0
- package/dist/ionic/svg/notifications-off-circle.svg +1 -0
- package/dist/ionic/svg/notifications-off-outline.svg +1 -0
- package/dist/ionic/svg/notifications-off-sharp.svg +1 -0
- package/dist/ionic/svg/notifications-off.svg +1 -0
- package/dist/ionic/svg/notifications-outline.svg +1 -0
- package/dist/ionic/svg/notifications-sharp.svg +1 -0
- package/dist/ionic/svg/notifications.svg +1 -0
- package/dist/ionic/svg/nuclear-outline.svg +1 -0
- package/dist/ionic/svg/nuclear-sharp.svg +1 -0
- package/dist/ionic/svg/nuclear.svg +1 -0
- package/dist/ionic/svg/nutrition-outline.svg +1 -0
- package/dist/ionic/svg/nutrition-sharp.svg +1 -0
- package/dist/ionic/svg/nutrition.svg +1 -0
- package/dist/ionic/svg/open-outline.svg +1 -0
- package/dist/ionic/svg/open-sharp.svg +1 -0
- package/dist/ionic/svg/open.svg +1 -0
- package/dist/ionic/svg/options-outline.svg +1 -0
- package/dist/ionic/svg/options-sharp.svg +1 -0
- package/dist/ionic/svg/options.svg +1 -0
- package/dist/ionic/svg/paper-plane-outline.svg +1 -0
- package/dist/ionic/svg/paper-plane-sharp.svg +1 -0
- package/dist/ionic/svg/paper-plane.svg +1 -0
- package/dist/ionic/svg/partly-sunny-outline.svg +1 -0
- package/dist/ionic/svg/partly-sunny-sharp.svg +1 -0
- package/dist/ionic/svg/partly-sunny.svg +1 -0
- package/dist/ionic/svg/pause-circle-outline.svg +1 -0
- package/dist/ionic/svg/pause-circle-sharp.svg +1 -0
- package/dist/ionic/svg/pause-circle.svg +1 -0
- package/dist/ionic/svg/pause-outline.svg +1 -0
- package/dist/ionic/svg/pause-sharp.svg +1 -0
- package/dist/ionic/svg/pause.svg +1 -0
- package/dist/ionic/svg/paw-outline.svg +1 -0
- package/dist/ionic/svg/paw-sharp.svg +1 -0
- package/dist/ionic/svg/paw.svg +1 -0
- package/dist/ionic/svg/pencil-outline.svg +1 -0
- package/dist/ionic/svg/pencil-sharp.svg +1 -0
- package/dist/ionic/svg/pencil.svg +1 -0
- package/dist/ionic/svg/people-circle-outline.svg +1 -0
- package/dist/ionic/svg/people-circle-sharp.svg +1 -0
- package/dist/ionic/svg/people-circle.svg +1 -0
- package/dist/ionic/svg/people-outline.svg +1 -0
- package/dist/ionic/svg/people-sharp.svg +1 -0
- package/dist/ionic/svg/people.svg +1 -0
- package/dist/ionic/svg/person-add-outline.svg +1 -0
- package/dist/ionic/svg/person-add-sharp.svg +1 -0
- package/dist/ionic/svg/person-add.svg +1 -0
- package/dist/ionic/svg/person-circle-outline.svg +1 -0
- package/dist/ionic/svg/person-circle-sharp.svg +1 -0
- package/dist/ionic/svg/person-circle.svg +1 -0
- package/dist/ionic/svg/person-outline.svg +1 -0
- package/dist/ionic/svg/person-remove-outline.svg +1 -0
- package/dist/ionic/svg/person-remove-sharp.svg +1 -0
- package/dist/ionic/svg/person-remove.svg +1 -0
- package/dist/ionic/svg/person-sharp.svg +1 -0
- package/dist/ionic/svg/person.svg +1 -0
- package/dist/ionic/svg/phone-landscape-outline.svg +1 -0
- package/dist/ionic/svg/phone-landscape-sharp.svg +1 -0
- package/dist/ionic/svg/phone-landscape.svg +1 -0
- package/dist/ionic/svg/phone-portrait-outline.svg +1 -0
- package/dist/ionic/svg/phone-portrait-sharp.svg +1 -0
- package/dist/ionic/svg/phone-portrait.svg +1 -0
- package/dist/ionic/svg/pie-chart-outline.svg +1 -0
- package/dist/ionic/svg/pie-chart-sharp.svg +1 -0
- package/dist/ionic/svg/pie-chart.svg +1 -0
- package/dist/ionic/svg/pin-outline.svg +1 -0
- package/dist/ionic/svg/pin-sharp.svg +1 -0
- package/dist/ionic/svg/pin.svg +1 -0
- package/dist/ionic/svg/pint-outline.svg +1 -0
- package/dist/ionic/svg/pint-sharp.svg +1 -0
- package/dist/ionic/svg/pint.svg +1 -0
- package/dist/ionic/svg/pizza-outline.svg +1 -0
- package/dist/ionic/svg/pizza-sharp.svg +1 -0
- package/dist/ionic/svg/pizza.svg +1 -0
- package/dist/ionic/svg/planet-outline.svg +1 -0
- package/dist/ionic/svg/planet-sharp.svg +1 -0
- package/dist/ionic/svg/planet.svg +1 -0
- package/dist/ionic/svg/play-back-circle-outline.svg +1 -0
- package/dist/ionic/svg/play-back-circle-sharp.svg +1 -0
- package/dist/ionic/svg/play-back-circle.svg +1 -0
- package/dist/ionic/svg/play-back-outline.svg +1 -0
- package/dist/ionic/svg/play-back-sharp.svg +1 -0
- package/dist/ionic/svg/play-back.svg +1 -0
- package/dist/ionic/svg/play-circle-outline.svg +1 -0
- package/dist/ionic/svg/play-circle-sharp.svg +1 -0
- package/dist/ionic/svg/play-circle.svg +1 -0
- package/dist/ionic/svg/play-forward-circle-outline.svg +1 -0
- package/dist/ionic/svg/play-forward-circle-sharp.svg +1 -0
- package/dist/ionic/svg/play-forward-circle.svg +1 -0
- package/dist/ionic/svg/play-forward-outline.svg +1 -0
- package/dist/ionic/svg/play-forward-sharp.svg +1 -0
- package/dist/ionic/svg/play-forward.svg +1 -0
- package/dist/ionic/svg/play-outline.svg +1 -0
- package/dist/ionic/svg/play-sharp.svg +1 -0
- package/dist/ionic/svg/play-skip-back-circle-outline.svg +1 -0
- package/dist/ionic/svg/play-skip-back-circle-sharp.svg +1 -0
- package/dist/ionic/svg/play-skip-back-circle.svg +1 -0
- package/dist/ionic/svg/play-skip-back-outline.svg +1 -0
- package/dist/ionic/svg/play-skip-back-sharp.svg +1 -0
- package/dist/ionic/svg/play-skip-back.svg +1 -0
- package/dist/ionic/svg/play-skip-forward-circle-outline.svg +1 -0
- package/dist/ionic/svg/play-skip-forward-circle-sharp.svg +1 -0
- package/dist/ionic/svg/play-skip-forward-circle.svg +1 -0
- package/dist/ionic/svg/play-skip-forward-outline.svg +1 -0
- package/dist/ionic/svg/play-skip-forward-sharp.svg +1 -0
- package/dist/ionic/svg/play-skip-forward.svg +1 -0
- package/dist/ionic/svg/play.svg +1 -0
- package/dist/ionic/svg/podium-outline.svg +1 -0
- package/dist/ionic/svg/podium-sharp.svg +1 -0
- package/dist/ionic/svg/podium.svg +1 -0
- package/dist/ionic/svg/power-outline.svg +1 -0
- package/dist/ionic/svg/power-sharp.svg +1 -0
- package/dist/ionic/svg/power.svg +1 -0
- package/dist/ionic/svg/pricetag-outline.svg +1 -0
- package/dist/ionic/svg/pricetag-sharp.svg +1 -0
- package/dist/ionic/svg/pricetag.svg +1 -0
- package/dist/ionic/svg/pricetags-outline.svg +1 -0
- package/dist/ionic/svg/pricetags-sharp.svg +1 -0
- package/dist/ionic/svg/pricetags.svg +1 -0
- package/dist/ionic/svg/print-outline.svg +1 -0
- package/dist/ionic/svg/print-sharp.svg +1 -0
- package/dist/ionic/svg/print.svg +1 -0
- package/dist/ionic/svg/prism-outline.svg +1 -0
- package/dist/ionic/svg/prism-sharp.svg +1 -0
- package/dist/ionic/svg/prism.svg +1 -0
- package/dist/ionic/svg/pulse-outline.svg +1 -0
- package/dist/ionic/svg/pulse-sharp.svg +1 -0
- package/dist/ionic/svg/pulse.svg +1 -0
- package/dist/ionic/svg/push-outline.svg +1 -0
- package/dist/ionic/svg/push-sharp.svg +1 -0
- package/dist/ionic/svg/push.svg +1 -0
- package/dist/ionic/svg/qr-code-outline.svg +1 -0
- package/dist/ionic/svg/qr-code-sharp.svg +1 -0
- package/dist/ionic/svg/qr-code.svg +1 -0
- package/dist/ionic/svg/radio-button-off-outline.svg +1 -0
- package/dist/ionic/svg/radio-button-off-sharp.svg +1 -0
- package/dist/ionic/svg/radio-button-off.svg +1 -0
- package/dist/ionic/svg/radio-button-on-outline.svg +1 -0
- package/dist/ionic/svg/radio-button-on-sharp.svg +1 -0
- package/dist/ionic/svg/radio-button-on.svg +1 -0
- package/dist/ionic/svg/radio-outline.svg +1 -0
- package/dist/ionic/svg/radio-sharp.svg +1 -0
- package/dist/ionic/svg/radio.svg +1 -0
- package/dist/ionic/svg/rainy-outline.svg +1 -0
- package/dist/ionic/svg/rainy-sharp.svg +1 -0
- package/dist/ionic/svg/rainy.svg +1 -0
- package/dist/ionic/svg/reader-outline.svg +1 -0
- package/dist/ionic/svg/reader-sharp.svg +1 -0
- package/dist/ionic/svg/reader.svg +1 -0
- package/dist/ionic/svg/receipt-outline.svg +1 -0
- package/dist/ionic/svg/receipt-sharp.svg +1 -0
- package/dist/ionic/svg/receipt.svg +1 -0
- package/dist/ionic/svg/recording-outline.svg +1 -0
- package/dist/ionic/svg/recording-sharp.svg +1 -0
- package/dist/ionic/svg/recording.svg +1 -0
- package/dist/ionic/svg/refresh-circle-outline.svg +1 -0
- package/dist/ionic/svg/refresh-circle-sharp.svg +1 -0
- package/dist/ionic/svg/refresh-circle.svg +1 -0
- package/dist/ionic/svg/refresh-outline.svg +1 -0
- package/dist/ionic/svg/refresh-sharp.svg +1 -0
- package/dist/ionic/svg/refresh.svg +1 -0
- package/dist/ionic/svg/reload-circle-outline.svg +1 -0
- package/dist/ionic/svg/reload-circle-sharp.svg +1 -0
- package/dist/ionic/svg/reload-circle.svg +1 -0
- package/dist/ionic/svg/reload-outline.svg +1 -0
- package/dist/ionic/svg/reload-sharp.svg +1 -0
- package/dist/ionic/svg/reload.svg +1 -0
- package/dist/ionic/svg/remove-circle-outline.svg +1 -0
- package/dist/ionic/svg/remove-circle-sharp.svg +1 -0
- package/dist/ionic/svg/remove-circle.svg +1 -0
- package/dist/ionic/svg/remove-outline.svg +1 -0
- package/dist/ionic/svg/remove-sharp.svg +1 -0
- package/dist/ionic/svg/remove.svg +1 -0
- package/dist/ionic/svg/reorder-four-outline.svg +1 -0
- package/dist/ionic/svg/reorder-four-sharp.svg +1 -0
- package/dist/ionic/svg/reorder-four.svg +1 -0
- package/dist/ionic/svg/reorder-three-outline.svg +1 -0
- package/dist/ionic/svg/reorder-three-sharp.svg +1 -0
- package/dist/ionic/svg/reorder-three.svg +1 -0
- package/dist/ionic/svg/reorder-two-outline.svg +1 -0
- package/dist/ionic/svg/reorder-two-sharp.svg +1 -0
- package/dist/ionic/svg/reorder-two.svg +1 -0
- package/dist/ionic/svg/repeat-outline.svg +1 -0
- package/dist/ionic/svg/repeat-sharp.svg +1 -0
- package/dist/ionic/svg/repeat.svg +1 -0
- package/dist/ionic/svg/resize-outline.svg +1 -0
- package/dist/ionic/svg/resize-sharp.svg +1 -0
- package/dist/ionic/svg/resize.svg +1 -0
- package/dist/ionic/svg/restaurant-outline.svg +1 -0
- package/dist/ionic/svg/restaurant-sharp.svg +1 -0
- package/dist/ionic/svg/restaurant.svg +1 -0
- package/dist/ionic/svg/return-down-back-outline.svg +1 -0
- package/dist/ionic/svg/return-down-back-sharp.svg +1 -0
- package/dist/ionic/svg/return-down-back.svg +1 -0
- package/dist/ionic/svg/return-down-forward-outline.svg +1 -0
- package/dist/ionic/svg/return-down-forward-sharp.svg +1 -0
- package/dist/ionic/svg/return-down-forward.svg +1 -0
- package/dist/ionic/svg/return-up-back-outline.svg +1 -0
- package/dist/ionic/svg/return-up-back-sharp.svg +1 -0
- package/dist/ionic/svg/return-up-back.svg +1 -0
- package/dist/ionic/svg/return-up-forward-outline.svg +1 -0
- package/dist/ionic/svg/return-up-forward-sharp.svg +1 -0
- package/dist/ionic/svg/return-up-forward.svg +1 -0
- package/dist/ionic/svg/ribbon-outline.svg +1 -0
- package/dist/ionic/svg/ribbon-sharp.svg +1 -0
- package/dist/ionic/svg/ribbon.svg +1 -0
- package/dist/ionic/svg/rocket-outline.svg +1 -0
- package/dist/ionic/svg/rocket-sharp.svg +1 -0
- package/dist/ionic/svg/rocket.svg +1 -0
- package/dist/ionic/svg/rose-outline.svg +1 -0
- package/dist/ionic/svg/rose-sharp.svg +1 -0
- package/dist/ionic/svg/rose.svg +1 -0
- package/dist/ionic/svg/sad-outline.svg +1 -0
- package/dist/ionic/svg/sad-sharp.svg +1 -0
- package/dist/ionic/svg/sad.svg +1 -0
- package/dist/ionic/svg/save-outline.svg +1 -0
- package/dist/ionic/svg/save-sharp.svg +1 -0
- package/dist/ionic/svg/save.svg +1 -0
- package/dist/ionic/svg/scale-outline.svg +1 -0
- package/dist/ionic/svg/scale-sharp.svg +1 -0
- package/dist/ionic/svg/scale.svg +1 -0
- package/dist/ionic/svg/scan-circle-outline.svg +1 -0
- package/dist/ionic/svg/scan-circle-sharp.svg +1 -0
- package/dist/ionic/svg/scan-circle.svg +1 -0
- package/dist/ionic/svg/scan-outline.svg +1 -0
- package/dist/ionic/svg/scan-sharp.svg +1 -0
- package/dist/ionic/svg/scan.svg +1 -0
- package/dist/ionic/svg/school-outline.svg +1 -0
- package/dist/ionic/svg/school-sharp.svg +1 -0
- package/dist/ionic/svg/school.svg +1 -0
- package/dist/ionic/svg/search-circle-outline.svg +1 -0
- package/dist/ionic/svg/search-circle-sharp.svg +1 -0
- package/dist/ionic/svg/search-circle.svg +1 -0
- package/dist/ionic/svg/search-outline.svg +1 -0
- package/dist/ionic/svg/search-sharp.svg +1 -0
- package/dist/ionic/svg/search.svg +1 -0
- package/dist/ionic/svg/send-outline.svg +1 -0
- package/dist/ionic/svg/send-sharp.svg +1 -0
- package/dist/ionic/svg/send.svg +1 -0
- package/dist/ionic/svg/server-outline.svg +1 -0
- package/dist/ionic/svg/server-sharp.svg +1 -0
- package/dist/ionic/svg/server.svg +1 -0
- package/dist/ionic/svg/settings-outline.svg +1 -0
- package/dist/ionic/svg/settings-sharp.svg +1 -0
- package/dist/ionic/svg/settings.svg +1 -0
- package/dist/ionic/svg/shapes-outline.svg +1 -0
- package/dist/ionic/svg/shapes-sharp.svg +1 -0
- package/dist/ionic/svg/shapes.svg +1 -0
- package/dist/ionic/svg/share-outline.svg +1 -0
- package/dist/ionic/svg/share-sharp.svg +1 -0
- package/dist/ionic/svg/share-social-outline.svg +1 -0
- package/dist/ionic/svg/share-social-sharp.svg +1 -0
- package/dist/ionic/svg/share-social.svg +1 -0
- package/dist/ionic/svg/share.svg +1 -0
- package/dist/ionic/svg/shield-checkmark-outline.svg +1 -0
- package/dist/ionic/svg/shield-checkmark-sharp.svg +1 -0
- package/dist/ionic/svg/shield-checkmark.svg +1 -0
- package/dist/ionic/svg/shield-half-outline.svg +1 -0
- package/dist/ionic/svg/shield-half-sharp.svg +1 -0
- package/dist/ionic/svg/shield-half.svg +1 -0
- package/dist/ionic/svg/shield-outline.svg +1 -0
- package/dist/ionic/svg/shield-sharp.svg +1 -0
- package/dist/ionic/svg/shield.svg +1 -0
- package/dist/ionic/svg/shirt-outline.svg +1 -0
- package/dist/ionic/svg/shirt-sharp.svg +1 -0
- package/dist/ionic/svg/shirt.svg +1 -0
- package/dist/ionic/svg/shuffle-outline.svg +1 -0
- package/dist/ionic/svg/shuffle-sharp.svg +1 -0
- package/dist/ionic/svg/shuffle.svg +1 -0
- package/dist/ionic/svg/skull-outline.svg +1 -0
- package/dist/ionic/svg/skull-sharp.svg +1 -0
- package/dist/ionic/svg/skull.svg +1 -0
- package/dist/ionic/svg/snow-outline.svg +1 -0
- package/dist/ionic/svg/snow-sharp.svg +1 -0
- package/dist/ionic/svg/snow.svg +1 -0
- package/dist/ionic/svg/sparkles-outline.svg +1 -0
- package/dist/ionic/svg/sparkles-sharp.svg +1 -0
- package/dist/ionic/svg/sparkles.svg +1 -0
- package/dist/ionic/svg/speedometer-outline.svg +1 -0
- package/dist/ionic/svg/speedometer-sharp.svg +1 -0
- package/dist/ionic/svg/speedometer.svg +1 -0
- package/dist/ionic/svg/square-outline.svg +1 -0
- package/dist/ionic/svg/square-sharp.svg +1 -0
- package/dist/ionic/svg/square.svg +1 -0
- package/dist/ionic/svg/star-half-outline.svg +1 -0
- package/dist/ionic/svg/star-half-sharp.svg +1 -0
- package/dist/ionic/svg/star-half.svg +1 -0
- package/dist/ionic/svg/star-outline.svg +1 -0
- package/dist/ionic/svg/star-sharp.svg +1 -0
- package/dist/ionic/svg/star.svg +1 -0
- package/dist/ionic/svg/stats-chart-outline.svg +1 -0
- package/dist/ionic/svg/stats-chart-sharp.svg +1 -0
- package/dist/ionic/svg/stats-chart.svg +1 -0
- package/dist/ionic/svg/stop-circle-outline.svg +1 -0
- package/dist/ionic/svg/stop-circle-sharp.svg +1 -0
- package/dist/ionic/svg/stop-circle.svg +1 -0
- package/dist/ionic/svg/stop-outline.svg +1 -0
- package/dist/ionic/svg/stop-sharp.svg +1 -0
- package/dist/ionic/svg/stop.svg +1 -0
- package/dist/ionic/svg/stopwatch-outline.svg +1 -0
- package/dist/ionic/svg/stopwatch-sharp.svg +1 -0
- package/dist/ionic/svg/stopwatch.svg +1 -0
- package/dist/ionic/svg/storefront-outline.svg +1 -0
- package/dist/ionic/svg/storefront-sharp.svg +1 -0
- package/dist/ionic/svg/storefront.svg +1 -0
- package/dist/ionic/svg/subway-outline.svg +1 -0
- package/dist/ionic/svg/subway-sharp.svg +1 -0
- package/dist/ionic/svg/subway.svg +1 -0
- package/dist/ionic/svg/sunny-outline.svg +1 -0
- package/dist/ionic/svg/sunny-sharp.svg +1 -0
- package/dist/ionic/svg/sunny.svg +1 -0
- package/dist/ionic/svg/swap-horizontal-outline.svg +1 -0
- package/dist/ionic/svg/swap-horizontal-sharp.svg +1 -0
- package/dist/ionic/svg/swap-horizontal.svg +1 -0
- package/dist/ionic/svg/swap-vertical-outline.svg +1 -0
- package/dist/ionic/svg/swap-vertical-sharp.svg +1 -0
- package/dist/ionic/svg/swap-vertical.svg +1 -0
- package/dist/ionic/svg/sync-circle-outline.svg +1 -0
- package/dist/ionic/svg/sync-circle-sharp.svg +1 -0
- package/dist/ionic/svg/sync-circle.svg +1 -0
- package/dist/ionic/svg/sync-outline.svg +1 -0
- package/dist/ionic/svg/sync-sharp.svg +1 -0
- package/dist/ionic/svg/sync.svg +1 -0
- package/dist/ionic/svg/tablet-landscape-outline.svg +1 -0
- package/dist/ionic/svg/tablet-landscape-sharp.svg +1 -0
- package/dist/ionic/svg/tablet-landscape.svg +1 -0
- package/dist/ionic/svg/tablet-portrait-outline.svg +1 -0
- package/dist/ionic/svg/tablet-portrait-sharp.svg +1 -0
- package/dist/ionic/svg/tablet-portrait.svg +1 -0
- package/dist/ionic/svg/telescope-outline.svg +1 -0
- package/dist/ionic/svg/telescope-sharp.svg +1 -0
- package/dist/ionic/svg/telescope.svg +1 -0
- package/dist/ionic/svg/tennisball-outline.svg +1 -0
- package/dist/ionic/svg/tennisball-sharp.svg +1 -0
- package/dist/ionic/svg/tennisball.svg +1 -0
- package/dist/ionic/svg/terminal-outline.svg +1 -0
- package/dist/ionic/svg/terminal-sharp.svg +1 -0
- package/dist/ionic/svg/terminal.svg +1 -0
- package/dist/ionic/svg/text-outline.svg +1 -0
- package/dist/ionic/svg/text-sharp.svg +1 -0
- package/dist/ionic/svg/text.svg +1 -0
- package/dist/ionic/svg/thermometer-outline.svg +1 -0
- package/dist/ionic/svg/thermometer-sharp.svg +1 -0
- package/dist/ionic/svg/thermometer.svg +1 -0
- package/dist/ionic/svg/thumbs-down-outline.svg +1 -0
- package/dist/ionic/svg/thumbs-down-sharp.svg +1 -0
- package/dist/ionic/svg/thumbs-down.svg +1 -0
- package/dist/ionic/svg/thumbs-up-outline.svg +1 -0
- package/dist/ionic/svg/thumbs-up-sharp.svg +1 -0
- package/dist/ionic/svg/thumbs-up.svg +1 -0
- package/dist/ionic/svg/thunderstorm-outline.svg +1 -0
- package/dist/ionic/svg/thunderstorm-sharp.svg +1 -0
- package/dist/ionic/svg/thunderstorm.svg +1 -0
- package/dist/ionic/svg/ticket-outline.svg +1 -0
- package/dist/ionic/svg/ticket-sharp.svg +1 -0
- package/dist/ionic/svg/ticket.svg +1 -0
- package/dist/ionic/svg/time-outline.svg +1 -0
- package/dist/ionic/svg/time-sharp.svg +1 -0
- package/dist/ionic/svg/time.svg +1 -0
- package/dist/ionic/svg/timer-outline.svg +1 -0
- package/dist/ionic/svg/timer-sharp.svg +1 -0
- package/dist/ionic/svg/timer.svg +1 -0
- package/dist/ionic/svg/today-outline.svg +1 -0
- package/dist/ionic/svg/today-sharp.svg +1 -0
- package/dist/ionic/svg/today.svg +1 -0
- package/dist/ionic/svg/toggle-outline.svg +1 -0
- package/dist/ionic/svg/toggle-sharp.svg +1 -0
- package/dist/ionic/svg/toggle.svg +1 -0
- package/dist/ionic/svg/trail-sign-outline.svg +1 -0
- package/dist/ionic/svg/trail-sign-sharp.svg +1 -0
- package/dist/ionic/svg/trail-sign.svg +1 -0
- package/dist/ionic/svg/train-outline.svg +1 -0
- package/dist/ionic/svg/train-sharp.svg +1 -0
- package/dist/ionic/svg/train.svg +1 -0
- package/dist/ionic/svg/transgender-outline.svg +1 -0
- package/dist/ionic/svg/transgender-sharp.svg +1 -0
- package/dist/ionic/svg/transgender.svg +1 -0
- package/dist/ionic/svg/trash-bin-outline.svg +1 -0
- package/dist/ionic/svg/trash-bin-sharp.svg +1 -0
- package/dist/ionic/svg/trash-bin.svg +1 -0
- package/dist/ionic/svg/trash-outline.svg +1 -0
- package/dist/ionic/svg/trash-sharp.svg +1 -0
- package/dist/ionic/svg/trash.svg +1 -0
- package/dist/ionic/svg/trending-down-outline.svg +1 -0
- package/dist/ionic/svg/trending-down-sharp.svg +1 -0
- package/dist/ionic/svg/trending-down.svg +1 -0
- package/dist/ionic/svg/trending-up-outline.svg +1 -0
- package/dist/ionic/svg/trending-up-sharp.svg +1 -0
- package/dist/ionic/svg/trending-up.svg +1 -0
- package/dist/ionic/svg/triangle-outline.svg +1 -0
- package/dist/ionic/svg/triangle-sharp.svg +1 -0
- package/dist/ionic/svg/triangle.svg +1 -0
- package/dist/ionic/svg/trophy-outline.svg +1 -0
- package/dist/ionic/svg/trophy-sharp.svg +1 -0
- package/dist/ionic/svg/trophy.svg +1 -0
- package/dist/ionic/svg/tv-outline.svg +1 -0
- package/dist/ionic/svg/tv-sharp.svg +1 -0
- package/dist/ionic/svg/tv.svg +1 -0
- package/dist/ionic/svg/umbrella-outline.svg +1 -0
- package/dist/ionic/svg/umbrella-sharp.svg +1 -0
- package/dist/ionic/svg/umbrella.svg +1 -0
- package/dist/ionic/svg/unlink-outline.svg +1 -0
- package/dist/ionic/svg/unlink-sharp.svg +1 -0
- package/dist/ionic/svg/unlink.svg +1 -0
- package/dist/ionic/svg/videocam-off-outline.svg +1 -0
- package/dist/ionic/svg/videocam-off-sharp.svg +1 -0
- package/dist/ionic/svg/videocam-off.svg +1 -0
- package/dist/ionic/svg/videocam-outline.svg +1 -0
- package/dist/ionic/svg/videocam-sharp.svg +1 -0
- package/dist/ionic/svg/videocam.svg +1 -0
- package/dist/ionic/svg/volume-high-outline.svg +1 -0
- package/dist/ionic/svg/volume-high-sharp.svg +1 -0
- package/dist/ionic/svg/volume-high.svg +1 -0
- package/dist/ionic/svg/volume-low-outline.svg +1 -0
- package/dist/ionic/svg/volume-low-sharp.svg +1 -0
- package/dist/ionic/svg/volume-low.svg +1 -0
- package/dist/ionic/svg/volume-medium-outline.svg +1 -0
- package/dist/ionic/svg/volume-medium-sharp.svg +1 -0
- package/dist/ionic/svg/volume-medium.svg +1 -0
- package/dist/ionic/svg/volume-mute-outline.svg +1 -0
- package/dist/ionic/svg/volume-mute-sharp.svg +1 -0
- package/dist/ionic/svg/volume-mute.svg +1 -0
- package/dist/ionic/svg/volume-off-outline.svg +1 -0
- package/dist/ionic/svg/volume-off-sharp.svg +1 -0
- package/dist/ionic/svg/volume-off.svg +1 -0
- package/dist/ionic/svg/walk-outline.svg +1 -0
- package/dist/ionic/svg/walk-sharp.svg +1 -0
- package/dist/ionic/svg/walk.svg +1 -0
- package/dist/ionic/svg/wallet-outline.svg +1 -0
- package/dist/ionic/svg/wallet-sharp.svg +1 -0
- package/dist/ionic/svg/wallet.svg +1 -0
- package/dist/ionic/svg/warning-outline.svg +1 -0
- package/dist/ionic/svg/warning-sharp.svg +1 -0
- package/dist/ionic/svg/warning.svg +1 -0
- package/dist/ionic/svg/watch-outline.svg +1 -0
- package/dist/ionic/svg/watch-sharp.svg +1 -0
- package/dist/ionic/svg/watch.svg +1 -0
- package/dist/ionic/svg/water-outline.svg +1 -0
- package/dist/ionic/svg/water-sharp.svg +1 -0
- package/dist/ionic/svg/water.svg +1 -0
- package/dist/ionic/svg/wifi-outline.svg +1 -0
- package/dist/ionic/svg/wifi-sharp.svg +1 -0
- package/dist/ionic/svg/wifi.svg +1 -0
- package/dist/ionic/svg/wine-outline.svg +1 -0
- package/dist/ionic/svg/wine-sharp.svg +1 -0
- package/dist/ionic/svg/wine.svg +1 -0
- package/dist/ionic/svg/woman-outline.svg +1 -0
- package/dist/ionic/svg/woman-sharp.svg +1 -0
- package/dist/ionic/svg/woman.svg +1 -0
- package/dist/node_modules/ionicons/dist/collection/components/icon/icon.css +101 -0
- package/dist/types/components/accordion/accordion.d.ts +81 -0
- package/dist/types/components/accordion-group/accordion-group-interface.d.ts +7 -0
- package/dist/types/components/accordion-group/accordion-group.d.ts +83 -0
- package/dist/types/components/action-sheet/action-sheet-interface.d.ts +27 -0
- package/dist/types/components/action-sheet/action-sheet.d.ts +158 -0
- package/dist/types/components/action-sheet/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/action-sheet/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/action-sheet/animations/md.enter.d.ts +5 -0
- package/dist/types/components/action-sheet/animations/md.leave.d.ts +5 -0
- package/dist/types/components/action-sheet/test/basic/fixture.d.ts +10 -0
- package/dist/types/components/alert/alert-interface.d.ts +53 -0
- package/dist/types/components/alert/alert.d.ts +191 -0
- package/dist/types/components/alert/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/alert/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/alert/animations/md.enter.d.ts +5 -0
- package/dist/types/components/alert/animations/md.leave.d.ts +5 -0
- package/dist/types/components/app/app.d.ts +18 -0
- package/dist/types/components/avatar/avatar.d.ts +4 -0
- package/dist/types/components/back-button/back-button.d.ts +53 -0
- package/dist/types/components/backdrop/backdrop.d.ts +25 -0
- package/dist/types/components/badge/badge.d.ts +14 -0
- package/dist/types/components/breadcrumb/breadcrumb-interface.d.ts +8 -0
- package/dist/types/components/breadcrumb/breadcrumb.d.ts +100 -0
- package/dist/types/components/breadcrumbs/breadcrumbs.d.ts +48 -0
- package/dist/types/components/button/button.d.ts +128 -0
- package/dist/types/components/buttons/buttons.d.ts +17 -0
- package/dist/types/components/card/card.d.ts +68 -0
- package/dist/types/components/card-content/card-content.d.ts +7 -0
- package/dist/types/components/card-header/card-header.d.ts +20 -0
- package/dist/types/components/card-subtitle/card-subtitle.d.ts +14 -0
- package/dist/types/components/card-title/card-title.d.ts +14 -0
- package/dist/types/components/checkbox/checkbox-interface.d.ts +8 -0
- package/dist/types/components/checkbox/checkbox.d.ts +116 -0
- package/dist/types/components/chip/chip.d.ts +22 -0
- package/dist/types/components/col/col.d.ts +131 -0
- package/dist/types/components/content/content-interface.d.ts +16 -0
- package/dist/types/components/content/content.d.ts +140 -0
- package/dist/types/components/datetime/datetime-interface.d.ts +29 -0
- package/dist/types/components/datetime/datetime.d.ts +423 -0
- package/dist/types/components/datetime/utils/comparison.d.ts +14 -0
- package/dist/types/components/datetime/utils/data.d.ts +76 -0
- package/dist/types/components/datetime/utils/format.d.ts +127 -0
- package/dist/types/components/datetime/utils/helpers.d.ts +34 -0
- package/dist/types/components/datetime/utils/manipulation.d.ts +116 -0
- package/dist/types/components/datetime/utils/parse.d.ts +43 -0
- package/dist/types/components/datetime/utils/state.d.ts +45 -0
- package/dist/types/components/datetime-button/datetime-button.d.ts +72 -0
- package/dist/types/components/fab/fab.d.ts +36 -0
- package/dist/types/components/fab-button/fab-button.d.ts +100 -0
- package/dist/types/components/fab-list/fab-list.d.ts +14 -0
- package/dist/types/components/footer/footer.d.ts +33 -0
- package/dist/types/components/footer/footer.utils.d.ts +1 -0
- package/dist/types/components/grid/grid.d.ts +8 -0
- package/dist/types/components/header/header.d.ts +37 -0
- package/dist/types/components/header/header.utils.d.ts +25 -0
- package/dist/types/components/img/img.d.ts +36 -0
- package/dist/types/components/infinite-scroll/infinite-scroll-interface.d.ts +3 -0
- package/dist/types/components/infinite-scroll/infinite-scroll.d.ts +61 -0
- package/dist/types/components/infinite-scroll-content/infinite-scroll-content.d.ts +28 -0
- package/dist/types/components/input/input-interface.d.ts +17 -0
- package/dist/types/components/input/input.d.ts +325 -0
- package/dist/types/components/input/input.utils.d.ts +1 -0
- package/dist/types/components/item/item-interface.d.ts +1 -0
- package/dist/types/components/item/item.d.ts +129 -0
- package/dist/types/components/item-divider/item-divider.d.ts +27 -0
- package/dist/types/components/item-group/item-group.d.ts +4 -0
- package/dist/types/components/item-option/item-option.d.ts +61 -0
- package/dist/types/components/item-options/item-options.d.ts +17 -0
- package/dist/types/components/item-sliding/item-sliding-interface.d.ts +3 -0
- package/dist/types/components/item-sliding/item-sliding.d.ts +82 -0
- package/dist/types/components/item-sliding/test/test.utils.d.ts +2 -0
- package/dist/types/components/label/label.d.ts +37 -0
- package/dist/types/components/list/list.d.ts +23 -0
- package/dist/types/components/list-header/list-header.d.ts +18 -0
- package/dist/types/components/loading/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/loading/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/loading/animations/md.enter.d.ts +5 -0
- package/dist/types/components/loading/animations/md.leave.d.ts +5 -0
- package/dist/types/components/loading/loading-interface.d.ts +21 -0
- package/dist/types/components/loading/loading.d.ts +162 -0
- package/dist/types/components/menu/menu-interface.d.ts +39 -0
- package/dist/types/components/menu/menu.d.ts +139 -0
- package/dist/types/components/menu-button/menu-button.d.ts +41 -0
- package/dist/types/components/menu-toggle/menu-toggle-util.d.ts +1 -0
- package/dist/types/components/menu-toggle/menu-toggle.d.ts +27 -0
- package/dist/types/components/modal/animations/ios.enter.d.ts +6 -0
- package/dist/types/components/modal/animations/ios.leave.d.ts +6 -0
- package/dist/types/components/modal/animations/md.enter.d.ts +6 -0
- package/dist/types/components/modal/animations/md.leave.d.ts +6 -0
- package/dist/types/components/modal/animations/sheet.d.ts +9 -0
- package/dist/types/components/modal/gestures/sheet.d.ts +35 -0
- package/dist/types/components/modal/gestures/swipe-to-close.d.ts +6 -0
- package/dist/types/components/modal/gestures/utils.d.ts +75 -0
- package/dist/types/components/modal/modal-interface.d.ts +40 -0
- package/dist/types/components/modal/modal.d.ts +280 -0
- package/dist/types/components/modal/test/fixtures.d.ts +10 -0
- package/dist/types/components/modal/utils.d.ts +24 -0
- package/dist/types/components/nav/constants.d.ts +5 -0
- package/dist/types/components/nav/nav-interface.d.ts +59 -0
- package/dist/types/components/nav/nav.d.ts +254 -0
- package/dist/types/components/nav/view-controller.d.ts +22 -0
- package/dist/types/components/nav-link/nav-link-utils.d.ts +4 -0
- package/dist/types/components/nav-link/nav-link.d.ts +25 -0
- package/dist/types/components/note/note.d.ts +14 -0
- package/dist/types/components/picker/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/picker/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/picker/picker-interface.d.ts +49 -0
- package/dist/types/components/picker/picker.d.ts +158 -0
- package/dist/types/components/picker-column/picker-column.d.ts +46 -0
- package/dist/types/components/picker-column/test/test.utils.d.ts +9 -0
- package/dist/types/components/picker-column-internal/picker-column-internal-interfaces.d.ts +5 -0
- package/dist/types/components/picker-column-internal/picker-column-internal.d.ts +98 -0
- package/dist/types/components/picker-internal/picker-internal-interfaces.d.ts +8 -0
- package/dist/types/components/picker-internal/picker-internal.d.ts +102 -0
- package/dist/types/components/popover/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/popover/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/popover/animations/md.enter.d.ts +5 -0
- package/dist/types/components/popover/animations/md.leave.d.ts +5 -0
- package/dist/types/components/popover/popover-interface.d.ts +36 -0
- package/dist/types/components/popover/popover.d.ts +294 -0
- package/dist/types/components/popover/test/fixture.d.ts +8 -0
- package/dist/types/components/popover/test/test.utils.d.ts +5 -0
- package/dist/types/components/popover/utils.d.ts +89 -0
- package/dist/types/components/progress-bar/progress-bar.d.ts +39 -0
- package/dist/types/components/radio/radio.d.ts +104 -0
- package/dist/types/components/radio-group/radio-group-interface.d.ts +8 -0
- package/dist/types/components/radio-group/radio-group.d.ts +47 -0
- package/dist/types/components/radio-group/test/fixtures.d.ts +8 -0
- package/dist/types/components/range/range-interface.d.ts +19 -0
- package/dist/types/components/range/range.d.ts +202 -0
- package/dist/types/components/refresher/refresher-interface.d.ts +7 -0
- package/dist/types/components/refresher/refresher.d.ts +136 -0
- package/dist/types/components/refresher/refresher.utils.d.ts +10 -0
- package/dist/types/components/refresher/test/test.utils.d.ts +13 -0
- package/dist/types/components/refresher-content/refresher-content.d.ts +49 -0
- package/dist/types/components/reorder/reorder.d.ts +9 -0
- package/dist/types/components/reorder-group/reorder-group-interface.d.ts +9 -0
- package/dist/types/components/reorder-group/reorder-group.d.ts +60 -0
- package/dist/types/components/ripple-effect/ripple-effect.d.ts +23 -0
- package/dist/types/components/route/route-interface.d.ts +5 -0
- package/dist/types/components/route/route.d.ts +47 -0
- package/dist/types/components/route-redirect/route-redirect.d.ts +36 -0
- package/dist/types/components/router/router.d.ts +77 -0
- package/dist/types/components/router/test/guards/test.utils.d.ts +11 -0
- package/dist/types/components/router/utils/constants.d.ts +3 -0
- package/dist/types/components/router/utils/debug.d.ts +3 -0
- package/dist/types/components/router/utils/dom.d.ts +21 -0
- package/dist/types/components/router/utils/interface.d.ts +57 -0
- package/dist/types/components/router/utils/matching.d.ts +64 -0
- package/dist/types/components/router/utils/parser.d.ts +25 -0
- package/dist/types/components/router/utils/path.d.ts +19 -0
- package/dist/types/components/router-link/router-link.d.ts +39 -0
- package/dist/types/components/router-outlet/route-outlet.d.ts +48 -0
- package/dist/types/components/row/row.d.ts +4 -0
- package/dist/types/components/searchbar/searchbar-interface.d.ts +12 -0
- package/dist/types/components/searchbar/searchbar.d.ts +241 -0
- package/dist/types/components/segment/segment-interface.d.ts +9 -0
- package/dist/types/components/segment/segment.d.ts +90 -0
- package/dist/types/components/segment-button/segment-button-interface.d.ts +1 -0
- package/dist/types/components/segment-button/segment-button.d.ts +49 -0
- package/dist/types/components/select/select-interface.d.ts +9 -0
- package/dist/types/components/select/select.d.ts +249 -0
- package/dist/types/components/select-option/select-option.d.ts +14 -0
- package/dist/types/components/select-popover/select-popover-interface.d.ts +10 -0
- package/dist/types/components/select-popover/select-popover.d.ts +46 -0
- package/dist/types/components/select-popover/test/fixtures.d.ts +16 -0
- package/dist/types/components/skeleton-text/skeleton-text.d.ts +9 -0
- package/dist/types/components/slides/IonicSlides.d.ts +1 -0
- package/dist/types/components/spinner/spinner-configs.d.ts +111 -0
- package/dist/types/components/spinner/spinner-interface.d.ts +20 -0
- package/dist/types/components/spinner/spinner.d.ts +26 -0
- package/dist/types/components/split-pane/split-pane.d.ts +37 -0
- package/dist/types/components/tab/tab.d.ts +25 -0
- package/dist/types/components/tab-bar/tab-bar-interface.d.ts +9 -0
- package/dist/types/components/tab-bar/tab-bar.d.ts +34 -0
- package/dist/types/components/tab-button/tab-button.d.ts +66 -0
- package/dist/types/components/tabs/tabs-interface.d.ts +6 -0
- package/dist/types/components/tabs/tabs.d.ts +61 -0
- package/dist/types/components/text/text.d.ts +14 -0
- package/dist/types/components/textarea/textarea-interface.d.ts +12 -0
- package/dist/types/components/textarea/textarea.d.ts +279 -0
- package/dist/types/components/thumbnail/thumbnail.d.ts +4 -0
- package/dist/types/components/title/title.d.ts +25 -0
- package/dist/types/components/toast/animations/ios.enter.d.ts +5 -0
- package/dist/types/components/toast/animations/ios.leave.d.ts +5 -0
- package/dist/types/components/toast/animations/md.enter.d.ts +5 -0
- package/dist/types/components/toast/animations/md.leave.d.ts +5 -0
- package/dist/types/components/toast/toast-interface.d.ts +33 -0
- package/dist/types/components/toast/toast.d.ts +209 -0
- package/dist/types/components/toggle/toggle-interface.d.ts +8 -0
- package/dist/types/components/toggle/toggle.d.ts +122 -0
- package/dist/types/components/toolbar/toolbar.d.ts +24 -0
- package/dist/types/components.d.ts +7400 -0
- package/dist/types/global/config.d.ts +13 -0
- package/dist/types/global/ionic-global.d.ts +4 -0
- package/dist/types/index.d.ts +15 -0
- package/dist/types/interface.d.ts +173 -0
- package/dist/types/stencil-public-runtime.d.ts +1640 -0
- package/dist/types/utils/animation/animation-interface.d.ts +222 -0
- package/dist/types/utils/animation/animation-utils.d.ts +15 -0
- package/dist/types/utils/animation/animation.d.ts +2 -0
- package/dist/types/utils/animation/cubic-bezier.d.ts +19 -0
- package/dist/types/utils/browser/index.d.ts +24 -0
- package/dist/types/utils/config.d.ts +184 -0
- package/dist/types/utils/content/index.d.ts +45 -0
- package/dist/types/utils/element-interface.d.ts +10 -0
- package/dist/types/utils/floating-point/index.d.ts +34 -0
- package/dist/types/utils/focus-visible.d.ts +4 -0
- package/dist/types/utils/forms/form-controller.d.ts +15 -0
- package/dist/types/utils/forms/index.d.ts +2 -0
- package/dist/types/utils/forms/notch-controller.d.ts +24 -0
- package/dist/types/utils/framework-delegate.d.ts +9 -0
- package/dist/types/utils/gesture/button-active.d.ts +2 -0
- package/dist/types/utils/gesture/gesture-controller.d.ts +61 -0
- package/dist/types/utils/gesture/index.d.ts +41 -0
- package/dist/types/utils/gesture/listener.d.ts +4 -0
- package/dist/types/utils/gesture/pointer-events.d.ts +17 -0
- package/dist/types/utils/gesture/recognizers.d.ts +7 -0
- package/dist/types/utils/gesture/swipe-back.d.ts +2 -0
- package/dist/types/utils/hardware-back-button.d.ts +14 -0
- package/dist/types/utils/helpers.d.ts +125 -0
- package/dist/types/utils/input-shims/hacks/common.d.ts +8 -0
- package/dist/types/utils/input-shims/hacks/hide-caret.d.ts +1 -0
- package/dist/types/utils/input-shims/hacks/input-blurring.d.ts +1 -0
- package/dist/types/utils/input-shims/hacks/scroll-assist.d.ts +2 -0
- package/dist/types/utils/input-shims/hacks/scroll-data.d.ts +7 -0
- package/dist/types/utils/input-shims/hacks/scroll-padding.d.ts +30 -0
- package/dist/types/utils/input-shims/input-shims.d.ts +2 -0
- package/dist/types/utils/keyboard/keyboard-controller.d.ts +12 -0
- package/dist/types/utils/keyboard/keyboard.d.ts +46 -0
- package/dist/types/utils/logging/index.d.ts +16 -0
- package/dist/types/utils/media.d.ts +2 -0
- package/dist/types/utils/menu-controller/animations/base.d.ts +8 -0
- package/dist/types/utils/menu-controller/animations/overlay.d.ts +8 -0
- package/dist/types/utils/menu-controller/animations/push.d.ts +8 -0
- package/dist/types/utils/menu-controller/animations/reveal.d.ts +8 -0
- package/dist/types/utils/menu-controller/index.d.ts +22 -0
- package/dist/types/utils/native/capacitor.d.ts +2 -0
- package/dist/types/utils/native/haptic.d.ts +81 -0
- package/dist/types/utils/native/keyboard.d.ts +34 -0
- package/dist/types/utils/native/native-interface.d.ts +17 -0
- package/dist/types/utils/native/status-bar.d.ts +16 -0
- package/dist/types/utils/overlays-interface.d.ts +38 -0
- package/dist/types/utils/overlays.d.ts +130 -0
- package/dist/types/utils/platform.d.ts +27 -0
- package/dist/types/utils/rtl/dir.d.ts +6 -0
- package/dist/types/utils/rtl/index.d.ts +1 -0
- package/dist/types/utils/sanitization/index.d.ts +9 -0
- package/dist/types/utils/slot-mutation-controller.d.ts +13 -0
- package/dist/types/utils/status-tap.d.ts +1 -0
- package/dist/types/utils/tap-click/index.d.ts +2 -0
- package/dist/types/utils/test/platform.utils.d.ts +82 -0
- package/dist/types/utils/test/playwright/drag-element.d.ts +11 -0
- package/dist/types/utils/test/playwright/generator.d.ts +22 -0
- package/dist/types/utils/test/playwright/index.d.ts +8 -0
- package/dist/types/utils/test/playwright/matchers/index.d.ts +8 -0
- package/dist/types/utils/test/playwright/matchers/toHaveReceivedEvent.d.ts +5 -0
- package/dist/types/utils/test/playwright/matchers/toHaveReceivedEventDetail.d.ts +5 -0
- package/dist/types/utils/test/playwright/matchers/toHaveReceivedEventTimes.d.ts +5 -0
- package/dist/types/utils/test/playwright/page/event-spy.d.ts +42 -0
- package/dist/types/utils/test/playwright/page/utils/get-snapshot-settings.d.ts +8 -0
- package/dist/types/utils/test/playwright/page/utils/goto.d.ts +14 -0
- package/dist/types/utils/test/playwright/page/utils/index.d.ts +7 -0
- package/dist/types/utils/test/playwright/page/utils/locator.d.ts +23 -0
- package/dist/types/utils/test/playwright/page/utils/set-content.d.ts +14 -0
- package/dist/types/utils/test/playwright/page/utils/set-ion-viewport.d.ts +14 -0
- package/dist/types/utils/test/playwright/page/utils/spy-on-event.d.ts +3 -0
- package/dist/types/utils/test/playwright/page/utils/wait-for-changes.d.ts +8 -0
- package/dist/types/utils/test/playwright/playwright-declarations.d.ts +114 -0
- package/dist/types/utils/test/playwright/playwright-page.d.ts +17 -0
- package/dist/types/utils/test/playwright/testExpect.d.ts +21 -0
- package/dist/types/utils/test/playwright/viewports/index.d.ts +12 -0
- package/dist/types/utils/test/press-keys.d.ts +38 -0
- package/dist/types/utils/theme.d.ts +10 -0
- package/dist/types/utils/transition/index.d.ts +31 -0
- package/dist/types/utils/transition/ios.transition.d.ts +4 -0
- package/dist/types/utils/transition/md.transition.d.ts +3 -0
- package/dist/types/utils/watch-options.d.ts +2 -0
- package/hydrate/index.d.ts +218 -0
- package/hydrate/index.js +35590 -0
- package/hydrate/package.json +6 -0
- package/loader/cdn.js +5 -0
- package/loader/index.cjs.js +5 -0
- package/loader/index.d.ts +21 -0
- package/loader/index.es2017.js +5 -0
- package/loader/index.js +6 -0
- package/loader/package.json +11 -0
- package/package.json +115 -0
|
@@ -0,0 +1,1792 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* (C) Ionic http://ionicframework.com - MIT License
|
|
3
|
+
*/
|
|
4
|
+
import { Build, h } from '@stencil/core';
|
|
5
|
+
import { getTimeGivenProgression } from "../../utils/animation/cubic-bezier";
|
|
6
|
+
import { assert } from "../../utils/helpers";
|
|
7
|
+
import { printIonWarning } from "../../utils/logging/index";
|
|
8
|
+
import { lifecycle, setPageHidden, transition } from "../../utils/transition/index";
|
|
9
|
+
import { config } from '../../global/config';
|
|
10
|
+
import { getIonMode } from '../../global/ionic-global';
|
|
11
|
+
import { LIFECYCLE_DID_LEAVE, LIFECYCLE_WILL_LEAVE, LIFECYCLE_WILL_UNLOAD } from './constants';
|
|
12
|
+
import { VIEW_STATE_ATTACHED, VIEW_STATE_DESTROYED, VIEW_STATE_NEW, convertToViews, matches } from './view-controller';
|
|
13
|
+
export class Nav {
|
|
14
|
+
constructor() {
|
|
15
|
+
this.transInstr = [];
|
|
16
|
+
this.gestureOrAnimationInProgress = false;
|
|
17
|
+
this.useRouter = false;
|
|
18
|
+
this.isTransitioning = false;
|
|
19
|
+
this.destroyed = false;
|
|
20
|
+
this.views = [];
|
|
21
|
+
this.didLoad = false;
|
|
22
|
+
this.delegate = undefined;
|
|
23
|
+
this.swipeGesture = undefined;
|
|
24
|
+
this.animated = true;
|
|
25
|
+
this.animation = undefined;
|
|
26
|
+
this.rootParams = undefined;
|
|
27
|
+
this.root = undefined;
|
|
28
|
+
}
|
|
29
|
+
swipeGestureChanged() {
|
|
30
|
+
if (this.gesture) {
|
|
31
|
+
this.gesture.enable(this.swipeGesture === true);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
rootChanged() {
|
|
35
|
+
const isDev = Build.isDev;
|
|
36
|
+
if (this.root === undefined) {
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
if (this.didLoad === false) {
|
|
40
|
+
/**
|
|
41
|
+
* If the component has not loaded yet, we can skip setting up the root component.
|
|
42
|
+
* It will be called when `componentDidLoad` fires.
|
|
43
|
+
*/
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
if (!this.useRouter) {
|
|
47
|
+
if (this.root !== undefined) {
|
|
48
|
+
this.setRoot(this.root, this.rootParams);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
else if (isDev) {
|
|
52
|
+
printIonWarning('<ion-nav> does not support a root attribute when using ion-router.', this.el);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
componentWillLoad() {
|
|
56
|
+
this.useRouter = document.querySelector('ion-router') !== null && this.el.closest('[no-router]') === null;
|
|
57
|
+
if (this.swipeGesture === undefined) {
|
|
58
|
+
const mode = getIonMode(this);
|
|
59
|
+
this.swipeGesture = config.getBoolean('swipeBackEnabled', mode === 'ios');
|
|
60
|
+
}
|
|
61
|
+
this.ionNavWillLoad.emit();
|
|
62
|
+
}
|
|
63
|
+
async componentDidLoad() {
|
|
64
|
+
// We want to set this flag before any watch callbacks are manually called
|
|
65
|
+
this.didLoad = true;
|
|
66
|
+
this.rootChanged();
|
|
67
|
+
this.gesture = (await import('../../utils/gesture/swipe-back')).createSwipeBackGesture(this.el, this.canStart.bind(this), this.onStart.bind(this), this.onMove.bind(this), this.onEnd.bind(this));
|
|
68
|
+
this.swipeGestureChanged();
|
|
69
|
+
}
|
|
70
|
+
connectedCallback() {
|
|
71
|
+
this.destroyed = false;
|
|
72
|
+
}
|
|
73
|
+
disconnectedCallback() {
|
|
74
|
+
for (const view of this.views) {
|
|
75
|
+
lifecycle(view.element, LIFECYCLE_WILL_UNLOAD);
|
|
76
|
+
view._destroy();
|
|
77
|
+
}
|
|
78
|
+
// Release swipe back gesture and transition.
|
|
79
|
+
if (this.gesture) {
|
|
80
|
+
this.gesture.destroy();
|
|
81
|
+
this.gesture = undefined;
|
|
82
|
+
}
|
|
83
|
+
this.transInstr.length = 0;
|
|
84
|
+
this.views.length = 0;
|
|
85
|
+
this.destroyed = true;
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Push a new component onto the current navigation stack. Pass any additional
|
|
89
|
+
* information along as an object. This additional information is accessible
|
|
90
|
+
* through NavParams.
|
|
91
|
+
*
|
|
92
|
+
* @param component The component to push onto the navigation stack.
|
|
93
|
+
* @param componentProps Any properties of the component.
|
|
94
|
+
* @param opts The navigation options.
|
|
95
|
+
* @param done The transition complete function.
|
|
96
|
+
*/
|
|
97
|
+
push(component, componentProps, opts, done) {
|
|
98
|
+
return this.insert(-1, component, componentProps, opts, done);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Inserts a component into the navigation stack at the specified index.
|
|
102
|
+
* This is useful to add a component at any point in the navigation stack.
|
|
103
|
+
*
|
|
104
|
+
* @param insertIndex The index to insert the component at in the stack.
|
|
105
|
+
* @param component The component to insert into the navigation stack.
|
|
106
|
+
* @param componentProps Any properties of the component.
|
|
107
|
+
* @param opts The navigation options.
|
|
108
|
+
* @param done The transition complete function.
|
|
109
|
+
*/
|
|
110
|
+
insert(insertIndex, component, componentProps, opts, done) {
|
|
111
|
+
return this.insertPages(insertIndex, [{ component, componentProps }], opts, done);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Inserts an array of components into the navigation stack at the specified index.
|
|
115
|
+
* The last component in the array will become instantiated as a view, and animate
|
|
116
|
+
* in to become the active view.
|
|
117
|
+
*
|
|
118
|
+
* @param insertIndex The index to insert the components at in the stack.
|
|
119
|
+
* @param insertComponents The components to insert into the navigation stack.
|
|
120
|
+
* @param opts The navigation options.
|
|
121
|
+
* @param done The transition complete function.
|
|
122
|
+
*/
|
|
123
|
+
insertPages(insertIndex, insertComponents, opts, done) {
|
|
124
|
+
return this.queueTrns({
|
|
125
|
+
insertStart: insertIndex,
|
|
126
|
+
insertViews: insertComponents,
|
|
127
|
+
opts,
|
|
128
|
+
}, done);
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Pop a component off of the navigation stack. Navigates back from the current
|
|
132
|
+
* component.
|
|
133
|
+
*
|
|
134
|
+
* @param opts The navigation options.
|
|
135
|
+
* @param done The transition complete function.
|
|
136
|
+
*/
|
|
137
|
+
pop(opts, done) {
|
|
138
|
+
return this.removeIndex(-1, 1, opts, done);
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Pop to a specific index in the navigation stack.
|
|
142
|
+
*
|
|
143
|
+
* @param indexOrViewCtrl The index or view controller to pop to.
|
|
144
|
+
* @param opts The navigation options.
|
|
145
|
+
* @param done The transition complete function.
|
|
146
|
+
*/
|
|
147
|
+
popTo(indexOrViewCtrl, opts, done) {
|
|
148
|
+
const ti = {
|
|
149
|
+
removeStart: -1,
|
|
150
|
+
removeCount: -1,
|
|
151
|
+
opts,
|
|
152
|
+
};
|
|
153
|
+
if (typeof indexOrViewCtrl === 'object' && indexOrViewCtrl.component) {
|
|
154
|
+
ti.removeView = indexOrViewCtrl;
|
|
155
|
+
ti.removeStart = 1;
|
|
156
|
+
}
|
|
157
|
+
else if (typeof indexOrViewCtrl === 'number') {
|
|
158
|
+
ti.removeStart = indexOrViewCtrl + 1;
|
|
159
|
+
}
|
|
160
|
+
return this.queueTrns(ti, done);
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* Navigate back to the root of the stack, no matter how far back that is.
|
|
164
|
+
*
|
|
165
|
+
* @param opts The navigation options.
|
|
166
|
+
* @param done The transition complete function.
|
|
167
|
+
*/
|
|
168
|
+
popToRoot(opts, done) {
|
|
169
|
+
return this.removeIndex(1, -1, opts, done);
|
|
170
|
+
}
|
|
171
|
+
/**
|
|
172
|
+
* Removes a component from the navigation stack at the specified index.
|
|
173
|
+
*
|
|
174
|
+
* @param startIndex The number to begin removal at.
|
|
175
|
+
* @param removeCount The number of components to remove.
|
|
176
|
+
* @param opts The navigation options.
|
|
177
|
+
* @param done The transition complete function.
|
|
178
|
+
*/
|
|
179
|
+
removeIndex(startIndex, removeCount = 1, opts, done) {
|
|
180
|
+
return this.queueTrns({
|
|
181
|
+
removeStart: startIndex,
|
|
182
|
+
removeCount,
|
|
183
|
+
opts,
|
|
184
|
+
}, done);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Set the root for the current navigation stack to a component.
|
|
188
|
+
*
|
|
189
|
+
* @param component The component to set as the root of the navigation stack.
|
|
190
|
+
* @param componentProps Any properties of the component.
|
|
191
|
+
* @param opts The navigation options.
|
|
192
|
+
* @param done The transition complete function.
|
|
193
|
+
*/
|
|
194
|
+
setRoot(component, componentProps, opts, done) {
|
|
195
|
+
return this.setPages([{ component, componentProps }], opts, done);
|
|
196
|
+
}
|
|
197
|
+
/**
|
|
198
|
+
* Set the views of the current navigation stack and navigate to the last view.
|
|
199
|
+
* By default animations are disabled, but they can be enabled by passing options
|
|
200
|
+
* to the navigation controller. Navigation parameters can also be passed to the
|
|
201
|
+
* individual pages in the array.
|
|
202
|
+
*
|
|
203
|
+
* @param views The list of views to set as the navigation stack.
|
|
204
|
+
* @param opts The navigation options.
|
|
205
|
+
* @param done The transition complete function.
|
|
206
|
+
*/
|
|
207
|
+
setPages(views, opts, done) {
|
|
208
|
+
opts !== null && opts !== void 0 ? opts : (opts = {});
|
|
209
|
+
// if animation wasn't set to true then default it to NOT animate
|
|
210
|
+
if (opts.animated !== true) {
|
|
211
|
+
opts.animated = false;
|
|
212
|
+
}
|
|
213
|
+
return this.queueTrns({
|
|
214
|
+
insertStart: 0,
|
|
215
|
+
insertViews: views,
|
|
216
|
+
removeStart: 0,
|
|
217
|
+
removeCount: -1,
|
|
218
|
+
opts,
|
|
219
|
+
}, done);
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Called by the router to update the view.
|
|
223
|
+
*
|
|
224
|
+
* @param id The component tag.
|
|
225
|
+
* @param params The component params.
|
|
226
|
+
* @param direction A direction hint.
|
|
227
|
+
* @param animation an AnimationBuilder.
|
|
228
|
+
*
|
|
229
|
+
* @return the status.
|
|
230
|
+
* @internal
|
|
231
|
+
*/
|
|
232
|
+
setRouteId(id, params, direction, animation) {
|
|
233
|
+
const active = this.getActiveSync();
|
|
234
|
+
if (matches(active, id, params)) {
|
|
235
|
+
return Promise.resolve({
|
|
236
|
+
changed: false,
|
|
237
|
+
element: active.element,
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
let resolve;
|
|
241
|
+
const promise = new Promise((r) => (resolve = r));
|
|
242
|
+
let finish;
|
|
243
|
+
const commonOpts = {
|
|
244
|
+
updateURL: false,
|
|
245
|
+
viewIsReady: (enteringEl) => {
|
|
246
|
+
let mark;
|
|
247
|
+
const p = new Promise((r) => (mark = r));
|
|
248
|
+
resolve({
|
|
249
|
+
changed: true,
|
|
250
|
+
element: enteringEl,
|
|
251
|
+
markVisible: async () => {
|
|
252
|
+
mark();
|
|
253
|
+
await finish;
|
|
254
|
+
},
|
|
255
|
+
});
|
|
256
|
+
return p;
|
|
257
|
+
},
|
|
258
|
+
};
|
|
259
|
+
if (direction === 'root') {
|
|
260
|
+
finish = this.setRoot(id, params, commonOpts);
|
|
261
|
+
}
|
|
262
|
+
else {
|
|
263
|
+
// Look for a view matching the target in the view stack.
|
|
264
|
+
const viewController = this.views.find((v) => matches(v, id, params));
|
|
265
|
+
if (viewController) {
|
|
266
|
+
finish = this.popTo(viewController, Object.assign(Object.assign({}, commonOpts), { direction: 'back', animationBuilder: animation }));
|
|
267
|
+
}
|
|
268
|
+
else if (direction === 'forward') {
|
|
269
|
+
finish = this.push(id, params, Object.assign(Object.assign({}, commonOpts), { animationBuilder: animation }));
|
|
270
|
+
}
|
|
271
|
+
else if (direction === 'back') {
|
|
272
|
+
finish = this.setRoot(id, params, Object.assign(Object.assign({}, commonOpts), { direction: 'back', animated: true, animationBuilder: animation }));
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
return promise;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Called by <ion-router> to retrieve the current component.
|
|
279
|
+
*
|
|
280
|
+
* @internal
|
|
281
|
+
*/
|
|
282
|
+
async getRouteId() {
|
|
283
|
+
const active = this.getActiveSync();
|
|
284
|
+
if (active) {
|
|
285
|
+
return {
|
|
286
|
+
id: active.element.tagName,
|
|
287
|
+
params: active.params,
|
|
288
|
+
element: active.element,
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
return undefined;
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* Get the active view.
|
|
295
|
+
*/
|
|
296
|
+
async getActive() {
|
|
297
|
+
return this.getActiveSync();
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* Get the view at the specified index.
|
|
301
|
+
*
|
|
302
|
+
* @param index The index of the view.
|
|
303
|
+
*/
|
|
304
|
+
async getByIndex(index) {
|
|
305
|
+
return this.views[index];
|
|
306
|
+
}
|
|
307
|
+
/**
|
|
308
|
+
* Returns `true` if the current view can go back.
|
|
309
|
+
*
|
|
310
|
+
* @param view The view to check.
|
|
311
|
+
*/
|
|
312
|
+
async canGoBack(view) {
|
|
313
|
+
return this.canGoBackSync(view);
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* Get the previous view.
|
|
317
|
+
*
|
|
318
|
+
* @param view The view to get.
|
|
319
|
+
*/
|
|
320
|
+
async getPrevious(view) {
|
|
321
|
+
return this.getPreviousSync(view);
|
|
322
|
+
}
|
|
323
|
+
getLength() {
|
|
324
|
+
return this.views.length;
|
|
325
|
+
}
|
|
326
|
+
getActiveSync() {
|
|
327
|
+
return this.views[this.views.length - 1];
|
|
328
|
+
}
|
|
329
|
+
canGoBackSync(view = this.getActiveSync()) {
|
|
330
|
+
return !!(view && this.getPreviousSync(view));
|
|
331
|
+
}
|
|
332
|
+
getPreviousSync(view = this.getActiveSync()) {
|
|
333
|
+
if (!view) {
|
|
334
|
+
return undefined;
|
|
335
|
+
}
|
|
336
|
+
const views = this.views;
|
|
337
|
+
const index = views.indexOf(view);
|
|
338
|
+
return index > 0 ? views[index - 1] : undefined;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* Adds a navigation stack change to the queue and schedules it to run.
|
|
342
|
+
*
|
|
343
|
+
* @returns Whether the transition succeeds.
|
|
344
|
+
*/
|
|
345
|
+
async queueTrns(ti, done) {
|
|
346
|
+
var _a, _b;
|
|
347
|
+
if (this.isTransitioning && ((_a = ti.opts) === null || _a === void 0 ? void 0 : _a.skipIfBusy)) {
|
|
348
|
+
return false;
|
|
349
|
+
}
|
|
350
|
+
const promise = new Promise((resolve, reject) => {
|
|
351
|
+
ti.resolve = resolve;
|
|
352
|
+
ti.reject = reject;
|
|
353
|
+
});
|
|
354
|
+
ti.done = done;
|
|
355
|
+
/**
|
|
356
|
+
* If using router, check to see if navigation hooks
|
|
357
|
+
* will allow us to perform this transition. This
|
|
358
|
+
* is required in order for hooks to work with
|
|
359
|
+
* the ion-back-button or swipe to go back.
|
|
360
|
+
*/
|
|
361
|
+
if (ti.opts && ti.opts.updateURL !== false && this.useRouter) {
|
|
362
|
+
const router = document.querySelector('ion-router');
|
|
363
|
+
if (router) {
|
|
364
|
+
const canTransition = await router.canTransition();
|
|
365
|
+
if (canTransition === false) {
|
|
366
|
+
return false;
|
|
367
|
+
}
|
|
368
|
+
if (typeof canTransition === 'string') {
|
|
369
|
+
router.push(canTransition, ti.opts.direction || 'back');
|
|
370
|
+
return false;
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
// Normalize empty
|
|
375
|
+
if (((_b = ti.insertViews) === null || _b === void 0 ? void 0 : _b.length) === 0) {
|
|
376
|
+
ti.insertViews = undefined;
|
|
377
|
+
}
|
|
378
|
+
// Enqueue transition instruction
|
|
379
|
+
this.transInstr.push(ti);
|
|
380
|
+
// if there isn't a transition already happening
|
|
381
|
+
// then this will kick off this transition
|
|
382
|
+
this.nextTrns();
|
|
383
|
+
return promise;
|
|
384
|
+
}
|
|
385
|
+
success(result, ti) {
|
|
386
|
+
if (this.destroyed) {
|
|
387
|
+
this.fireError('nav controller was destroyed', ti);
|
|
388
|
+
return;
|
|
389
|
+
}
|
|
390
|
+
if (ti.done) {
|
|
391
|
+
ti.done(result.hasCompleted, result.requiresTransition, result.enteringView, result.leavingView, result.direction);
|
|
392
|
+
}
|
|
393
|
+
ti.resolve(result.hasCompleted);
|
|
394
|
+
if (ti.opts.updateURL !== false && this.useRouter) {
|
|
395
|
+
const router = document.querySelector('ion-router');
|
|
396
|
+
if (router) {
|
|
397
|
+
const direction = result.direction === 'back' ? 'back' : 'forward';
|
|
398
|
+
router.navChanged(direction);
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
failed(rejectReason, ti) {
|
|
403
|
+
if (this.destroyed) {
|
|
404
|
+
this.fireError('nav controller was destroyed', ti);
|
|
405
|
+
return;
|
|
406
|
+
}
|
|
407
|
+
this.transInstr.length = 0;
|
|
408
|
+
this.fireError(rejectReason, ti);
|
|
409
|
+
}
|
|
410
|
+
fireError(rejectReason, ti) {
|
|
411
|
+
if (ti.done) {
|
|
412
|
+
ti.done(false, false, rejectReason);
|
|
413
|
+
}
|
|
414
|
+
if (ti.reject && !this.destroyed) {
|
|
415
|
+
ti.reject(rejectReason);
|
|
416
|
+
}
|
|
417
|
+
else {
|
|
418
|
+
ti.resolve(false);
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
/**
|
|
422
|
+
* Consumes the next transition in the queue.
|
|
423
|
+
*
|
|
424
|
+
* @returns whether the transition is executed.
|
|
425
|
+
*/
|
|
426
|
+
nextTrns() {
|
|
427
|
+
// this is the framework's bread 'n butta function
|
|
428
|
+
// only one transition is allowed at any given time
|
|
429
|
+
if (this.isTransitioning) {
|
|
430
|
+
return false;
|
|
431
|
+
}
|
|
432
|
+
// there is no transition happening right now, executes the next instructions.
|
|
433
|
+
const ti = this.transInstr.shift();
|
|
434
|
+
if (!ti) {
|
|
435
|
+
return false;
|
|
436
|
+
}
|
|
437
|
+
this.runTransition(ti);
|
|
438
|
+
return true;
|
|
439
|
+
}
|
|
440
|
+
/** Executes all the transition instruction from the queue. */
|
|
441
|
+
async runTransition(ti) {
|
|
442
|
+
try {
|
|
443
|
+
// set that this nav is actively transitioning
|
|
444
|
+
this.ionNavWillChange.emit();
|
|
445
|
+
this.isTransitioning = true;
|
|
446
|
+
this.prepareTI(ti);
|
|
447
|
+
const leavingView = this.getActiveSync();
|
|
448
|
+
const enteringView = this.getEnteringView(ti, leavingView);
|
|
449
|
+
if (!leavingView && !enteringView) {
|
|
450
|
+
throw new Error('no views in the stack to be removed');
|
|
451
|
+
}
|
|
452
|
+
if (enteringView && enteringView.state === VIEW_STATE_NEW) {
|
|
453
|
+
await enteringView.init(this.el);
|
|
454
|
+
}
|
|
455
|
+
this.postViewInit(enteringView, leavingView, ti);
|
|
456
|
+
// Needs transition?
|
|
457
|
+
const requiresTransition = (ti.enteringRequiresTransition || ti.leavingRequiresTransition) && enteringView !== leavingView;
|
|
458
|
+
if (requiresTransition && ti.opts && leavingView) {
|
|
459
|
+
const isBackDirection = ti.opts.direction === 'back';
|
|
460
|
+
/**
|
|
461
|
+
* If heading back, use the entering page's animation
|
|
462
|
+
* unless otherwise specified by the developer.
|
|
463
|
+
*/
|
|
464
|
+
if (isBackDirection) {
|
|
465
|
+
ti.opts.animationBuilder = ti.opts.animationBuilder || (enteringView === null || enteringView === void 0 ? void 0 : enteringView.animationBuilder);
|
|
466
|
+
}
|
|
467
|
+
leavingView.animationBuilder = ti.opts.animationBuilder;
|
|
468
|
+
}
|
|
469
|
+
let result;
|
|
470
|
+
if (requiresTransition) {
|
|
471
|
+
result = await this.transition(enteringView, leavingView, ti);
|
|
472
|
+
}
|
|
473
|
+
else {
|
|
474
|
+
// transition is not required, so we are already done!
|
|
475
|
+
// they're inserting/removing the views somewhere in the middle or
|
|
476
|
+
// beginning, so visually nothing needs to animate/transition
|
|
477
|
+
// resolve immediately because there's no animation that's happening
|
|
478
|
+
result = {
|
|
479
|
+
hasCompleted: true,
|
|
480
|
+
requiresTransition: false,
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
this.success(result, ti);
|
|
484
|
+
this.ionNavDidChange.emit();
|
|
485
|
+
}
|
|
486
|
+
catch (rejectReason) {
|
|
487
|
+
this.failed(rejectReason, ti);
|
|
488
|
+
}
|
|
489
|
+
this.isTransitioning = false;
|
|
490
|
+
this.nextTrns();
|
|
491
|
+
}
|
|
492
|
+
prepareTI(ti) {
|
|
493
|
+
var _a, _b;
|
|
494
|
+
var _c;
|
|
495
|
+
const viewsLength = this.views.length;
|
|
496
|
+
(_a = ti.opts) !== null && _a !== void 0 ? _a : (ti.opts = {});
|
|
497
|
+
(_b = (_c = ti.opts).delegate) !== null && _b !== void 0 ? _b : (_c.delegate = this.delegate);
|
|
498
|
+
if (ti.removeView !== undefined) {
|
|
499
|
+
assert(ti.removeStart !== undefined, 'removeView needs removeStart');
|
|
500
|
+
assert(ti.removeCount !== undefined, 'removeView needs removeCount');
|
|
501
|
+
const index = this.views.indexOf(ti.removeView);
|
|
502
|
+
if (index < 0) {
|
|
503
|
+
throw new Error('removeView was not found');
|
|
504
|
+
}
|
|
505
|
+
ti.removeStart += index;
|
|
506
|
+
}
|
|
507
|
+
if (ti.removeStart !== undefined) {
|
|
508
|
+
if (ti.removeStart < 0) {
|
|
509
|
+
ti.removeStart = viewsLength - 1;
|
|
510
|
+
}
|
|
511
|
+
if (ti.removeCount < 0) {
|
|
512
|
+
ti.removeCount = viewsLength - ti.removeStart;
|
|
513
|
+
}
|
|
514
|
+
ti.leavingRequiresTransition = ti.removeCount > 0 && ti.removeStart + ti.removeCount === viewsLength;
|
|
515
|
+
}
|
|
516
|
+
if (ti.insertViews) {
|
|
517
|
+
// allow -1 to be passed in to auto push it on the end
|
|
518
|
+
// and clean up the index if it's larger then the size of the stack
|
|
519
|
+
if (ti.insertStart < 0 || ti.insertStart > viewsLength) {
|
|
520
|
+
ti.insertStart = viewsLength;
|
|
521
|
+
}
|
|
522
|
+
ti.enteringRequiresTransition = ti.insertStart === viewsLength;
|
|
523
|
+
}
|
|
524
|
+
const insertViews = ti.insertViews;
|
|
525
|
+
if (!insertViews) {
|
|
526
|
+
return;
|
|
527
|
+
}
|
|
528
|
+
assert(insertViews.length > 0, 'length can not be zero');
|
|
529
|
+
const viewControllers = convertToViews(insertViews);
|
|
530
|
+
if (viewControllers.length === 0) {
|
|
531
|
+
throw new Error('invalid views to insert');
|
|
532
|
+
}
|
|
533
|
+
// Check all the inserted view are correct
|
|
534
|
+
for (const view of viewControllers) {
|
|
535
|
+
view.delegate = ti.opts.delegate;
|
|
536
|
+
const nav = view.nav;
|
|
537
|
+
if (nav && nav !== this) {
|
|
538
|
+
throw new Error('inserted view was already inserted');
|
|
539
|
+
}
|
|
540
|
+
if (view.state === VIEW_STATE_DESTROYED) {
|
|
541
|
+
throw new Error('inserted view was already destroyed');
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
ti.insertViews = viewControllers;
|
|
545
|
+
}
|
|
546
|
+
/**
|
|
547
|
+
* Returns the view that will be entered considering the transition instructions.
|
|
548
|
+
*
|
|
549
|
+
* @param ti The instructions.
|
|
550
|
+
* @param leavingView The view being left or undefined if none.
|
|
551
|
+
*
|
|
552
|
+
* @returns The view that will be entered, undefined if none.
|
|
553
|
+
*/
|
|
554
|
+
getEnteringView(ti, leavingView) {
|
|
555
|
+
// The last inserted view will be entered when view are inserted.
|
|
556
|
+
const insertViews = ti.insertViews;
|
|
557
|
+
if (insertViews !== undefined) {
|
|
558
|
+
return insertViews[insertViews.length - 1];
|
|
559
|
+
}
|
|
560
|
+
// When views are deleted, we will enter the last view that is not removed and not the view being left.
|
|
561
|
+
const removeStart = ti.removeStart;
|
|
562
|
+
if (removeStart !== undefined) {
|
|
563
|
+
const views = this.views;
|
|
564
|
+
const removeEnd = removeStart + ti.removeCount;
|
|
565
|
+
for (let i = views.length - 1; i >= 0; i--) {
|
|
566
|
+
const view = views[i];
|
|
567
|
+
if ((i < removeStart || i >= removeEnd) && view !== leavingView) {
|
|
568
|
+
return view;
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
return undefined;
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* Adds and Removes the views from the navigation stack.
|
|
576
|
+
*
|
|
577
|
+
* @param enteringView The view being entered.
|
|
578
|
+
* @param leavingView The view being left.
|
|
579
|
+
* @param ti The instructions.
|
|
580
|
+
*/
|
|
581
|
+
postViewInit(enteringView, leavingView, ti) {
|
|
582
|
+
var _a, _b, _c;
|
|
583
|
+
assert(leavingView || enteringView, 'Both leavingView and enteringView are null');
|
|
584
|
+
assert(ti.resolve, 'resolve must be valid');
|
|
585
|
+
assert(ti.reject, 'reject must be valid');
|
|
586
|
+
// Compute the views to remove.
|
|
587
|
+
const opts = ti.opts;
|
|
588
|
+
const { insertViews, removeStart, removeCount } = ti;
|
|
589
|
+
/** Records the view to destroy */
|
|
590
|
+
let destroyQueue;
|
|
591
|
+
// there are views to remove
|
|
592
|
+
if (removeStart !== undefined && removeCount !== undefined) {
|
|
593
|
+
assert(removeStart >= 0, 'removeStart can not be negative');
|
|
594
|
+
assert(removeCount >= 0, 'removeCount can not be negative');
|
|
595
|
+
destroyQueue = [];
|
|
596
|
+
for (let i = removeStart; i < removeStart + removeCount; i++) {
|
|
597
|
+
const view = this.views[i];
|
|
598
|
+
if (view !== undefined && view !== enteringView && view !== leavingView) {
|
|
599
|
+
destroyQueue.push(view);
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
// default the direction to "back"
|
|
603
|
+
(_a = opts.direction) !== null && _a !== void 0 ? _a : (opts.direction = 'back');
|
|
604
|
+
}
|
|
605
|
+
const finalNumViews = this.views.length + ((_b = insertViews === null || insertViews === void 0 ? void 0 : insertViews.length) !== null && _b !== void 0 ? _b : 0) - (removeCount !== null && removeCount !== void 0 ? removeCount : 0);
|
|
606
|
+
assert(finalNumViews >= 0, 'final balance can not be negative');
|
|
607
|
+
if (finalNumViews === 0) {
|
|
608
|
+
console.warn(`You can't remove all the pages in the navigation stack. nav.pop() is probably called too many times.`, this, this.el);
|
|
609
|
+
throw new Error('navigation stack needs at least one root page');
|
|
610
|
+
}
|
|
611
|
+
// At this point the transition can not be rejected, any throw should be an error
|
|
612
|
+
// Insert the new views in the stack.
|
|
613
|
+
if (insertViews) {
|
|
614
|
+
// add the views to the
|
|
615
|
+
let insertIndex = ti.insertStart;
|
|
616
|
+
for (const view of insertViews) {
|
|
617
|
+
this.insertViewAt(view, insertIndex);
|
|
618
|
+
insertIndex++;
|
|
619
|
+
}
|
|
620
|
+
if (ti.enteringRequiresTransition) {
|
|
621
|
+
// default to forward if not already set
|
|
622
|
+
(_c = opts.direction) !== null && _c !== void 0 ? _c : (opts.direction = 'forward');
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
// if the views to be removed are in the beginning or middle
|
|
626
|
+
// and there is not a view that needs to visually transition out
|
|
627
|
+
// then just destroy them and don't transition anything
|
|
628
|
+
// batch all of lifecycles together
|
|
629
|
+
// let's make sure, callbacks are zoned
|
|
630
|
+
if (destroyQueue && destroyQueue.length > 0) {
|
|
631
|
+
for (const view of destroyQueue) {
|
|
632
|
+
lifecycle(view.element, LIFECYCLE_WILL_LEAVE);
|
|
633
|
+
lifecycle(view.element, LIFECYCLE_DID_LEAVE);
|
|
634
|
+
lifecycle(view.element, LIFECYCLE_WILL_UNLOAD);
|
|
635
|
+
}
|
|
636
|
+
// once all lifecycle events has been delivered, we can safely detroy the views
|
|
637
|
+
for (const view of destroyQueue) {
|
|
638
|
+
this.destroyView(view);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
async transition(enteringView, leavingView, ti) {
|
|
643
|
+
// we should animate (duration > 0) if the pushed page is not the first one (startup)
|
|
644
|
+
// or if it is a portal (modal, actionsheet, etc.)
|
|
645
|
+
const opts = ti.opts;
|
|
646
|
+
const progressCallback = opts.progressAnimation
|
|
647
|
+
? (ani) => {
|
|
648
|
+
/**
|
|
649
|
+
* Because this progress callback is called asynchronously
|
|
650
|
+
* it is possible for the gesture to start and end before
|
|
651
|
+
* the animation is ever set. In that scenario, we should
|
|
652
|
+
* immediately call progressEnd so that the transition promise
|
|
653
|
+
* resolves and the gesture does not get locked up.
|
|
654
|
+
*/
|
|
655
|
+
if (ani !== undefined && !this.gestureOrAnimationInProgress) {
|
|
656
|
+
this.gestureOrAnimationInProgress = true;
|
|
657
|
+
ani.onFinish(() => {
|
|
658
|
+
this.gestureOrAnimationInProgress = false;
|
|
659
|
+
}, { oneTimeCallback: true });
|
|
660
|
+
/**
|
|
661
|
+
* Playing animation to beginning
|
|
662
|
+
* with a duration of 0 prevents
|
|
663
|
+
* any flickering when the animation
|
|
664
|
+
* is later cleaned up.
|
|
665
|
+
*/
|
|
666
|
+
ani.progressEnd(0, 0, 0);
|
|
667
|
+
}
|
|
668
|
+
else {
|
|
669
|
+
this.sbAni = ani;
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
: undefined;
|
|
673
|
+
const mode = getIonMode(this);
|
|
674
|
+
const enteringEl = enteringView.element;
|
|
675
|
+
const leavingEl = leavingView && leavingView.element;
|
|
676
|
+
const animationOpts = Object.assign(Object.assign({ mode, showGoBack: this.canGoBackSync(enteringView), baseEl: this.el, progressCallback, animated: this.animated && config.getBoolean('animated', true), enteringEl,
|
|
677
|
+
leavingEl }, opts), { animationBuilder: opts.animationBuilder || this.animation || config.get('navAnimation') });
|
|
678
|
+
const { hasCompleted } = await transition(animationOpts);
|
|
679
|
+
return this.transitionFinish(hasCompleted, enteringView, leavingView, opts);
|
|
680
|
+
}
|
|
681
|
+
transitionFinish(hasCompleted, enteringView, leavingView, opts) {
|
|
682
|
+
/**
|
|
683
|
+
* If the transition did not complete, the leavingView will still be the active
|
|
684
|
+
* view on the stack. Otherwise unmount all the views after the enteringView.
|
|
685
|
+
*/
|
|
686
|
+
const activeView = hasCompleted ? enteringView : leavingView;
|
|
687
|
+
if (activeView) {
|
|
688
|
+
this.unmountInactiveViews(activeView);
|
|
689
|
+
}
|
|
690
|
+
return {
|
|
691
|
+
hasCompleted,
|
|
692
|
+
requiresTransition: true,
|
|
693
|
+
enteringView,
|
|
694
|
+
leavingView,
|
|
695
|
+
direction: opts.direction,
|
|
696
|
+
};
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* Inserts a view at the specified index.
|
|
700
|
+
*
|
|
701
|
+
* When the view already is in the stack it will be moved to the new position.
|
|
702
|
+
*
|
|
703
|
+
* @param view The view to insert.
|
|
704
|
+
* @param index The index where to insert the view.
|
|
705
|
+
*/
|
|
706
|
+
insertViewAt(view, index) {
|
|
707
|
+
const views = this.views;
|
|
708
|
+
const existingIndex = views.indexOf(view);
|
|
709
|
+
if (existingIndex > -1) {
|
|
710
|
+
assert(view.nav === this, 'view is not part of the nav');
|
|
711
|
+
// The view already in the stack, removes it.
|
|
712
|
+
views.splice(existingIndex, 1);
|
|
713
|
+
// and add it back at the requested index.
|
|
714
|
+
views.splice(index, 0, view);
|
|
715
|
+
}
|
|
716
|
+
else {
|
|
717
|
+
assert(!view.nav, 'nav is used');
|
|
718
|
+
// this is a new view to add to the stack
|
|
719
|
+
// create the new entering view
|
|
720
|
+
view.nav = this;
|
|
721
|
+
views.splice(index, 0, view);
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
/**
|
|
725
|
+
* Removes a view from the stack.
|
|
726
|
+
*
|
|
727
|
+
* @param view The view to remove.
|
|
728
|
+
*/
|
|
729
|
+
removeView(view) {
|
|
730
|
+
assert(view.state === VIEW_STATE_ATTACHED || view.state === VIEW_STATE_DESTROYED, 'view state should be loaded or destroyed');
|
|
731
|
+
const views = this.views;
|
|
732
|
+
const index = views.indexOf(view);
|
|
733
|
+
assert(index > -1, 'view must be part of the stack');
|
|
734
|
+
if (index >= 0) {
|
|
735
|
+
views.splice(index, 1);
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
destroyView(view) {
|
|
739
|
+
view._destroy();
|
|
740
|
+
this.removeView(view);
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
* Unmounts all inactive views after the specified active view.
|
|
744
|
+
*
|
|
745
|
+
* DOM WRITE
|
|
746
|
+
*
|
|
747
|
+
* @param activeView The view that is actively visible in the stack. Used to calculate which views to unmount.
|
|
748
|
+
*/
|
|
749
|
+
unmountInactiveViews(activeView) {
|
|
750
|
+
// ok, cleanup time!! Destroy all of the views that are
|
|
751
|
+
// INACTIVE and come after the active view
|
|
752
|
+
// only do this if the views exist, though
|
|
753
|
+
if (this.destroyed) {
|
|
754
|
+
return;
|
|
755
|
+
}
|
|
756
|
+
const views = this.views;
|
|
757
|
+
const activeViewIndex = views.indexOf(activeView);
|
|
758
|
+
for (let i = views.length - 1; i >= 0; i--) {
|
|
759
|
+
const view = views[i];
|
|
760
|
+
/**
|
|
761
|
+
* When inserting multiple views via insertPages
|
|
762
|
+
* the last page will be transitioned to, but the
|
|
763
|
+
* others will not be. As a result, a DOM element
|
|
764
|
+
* will only be created for the last page inserted.
|
|
765
|
+
* As a result, it is possible to have views in the
|
|
766
|
+
* stack that do not have `view.element` yet.
|
|
767
|
+
*/
|
|
768
|
+
const element = view.element;
|
|
769
|
+
if (element) {
|
|
770
|
+
if (i > activeViewIndex) {
|
|
771
|
+
// this view comes after the active view
|
|
772
|
+
// let's unload it
|
|
773
|
+
lifecycle(element, LIFECYCLE_WILL_UNLOAD);
|
|
774
|
+
this.destroyView(view);
|
|
775
|
+
}
|
|
776
|
+
else if (i < activeViewIndex) {
|
|
777
|
+
// this view comes before the active view
|
|
778
|
+
// and it is not a portal then ensure it is hidden
|
|
779
|
+
setPageHidden(element, true);
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
canStart() {
|
|
785
|
+
return (!this.gestureOrAnimationInProgress &&
|
|
786
|
+
!!this.swipeGesture &&
|
|
787
|
+
!this.isTransitioning &&
|
|
788
|
+
this.transInstr.length === 0 &&
|
|
789
|
+
this.canGoBackSync());
|
|
790
|
+
}
|
|
791
|
+
onStart() {
|
|
792
|
+
this.gestureOrAnimationInProgress = true;
|
|
793
|
+
this.pop({ direction: 'back', progressAnimation: true });
|
|
794
|
+
}
|
|
795
|
+
onMove(stepValue) {
|
|
796
|
+
if (this.sbAni) {
|
|
797
|
+
this.sbAni.progressStep(stepValue);
|
|
798
|
+
}
|
|
799
|
+
}
|
|
800
|
+
onEnd(shouldComplete, stepValue, dur) {
|
|
801
|
+
if (this.sbAni) {
|
|
802
|
+
this.sbAni.onFinish(() => {
|
|
803
|
+
this.gestureOrAnimationInProgress = false;
|
|
804
|
+
}, { oneTimeCallback: true });
|
|
805
|
+
// Account for rounding errors in JS
|
|
806
|
+
let newStepValue = shouldComplete ? -0.001 : 0.001;
|
|
807
|
+
/**
|
|
808
|
+
* Animation will be reversed here, so need to
|
|
809
|
+
* reverse the easing curve as well
|
|
810
|
+
*
|
|
811
|
+
* Additionally, we need to account for the time relative
|
|
812
|
+
* to the new easing curve, as `stepValue` is going to be given
|
|
813
|
+
* in terms of a linear curve.
|
|
814
|
+
*/
|
|
815
|
+
if (!shouldComplete) {
|
|
816
|
+
this.sbAni.easing('cubic-bezier(1, 0, 0.68, 0.28)');
|
|
817
|
+
newStepValue += getTimeGivenProgression([0, 0], [1, 0], [0.68, 0.28], [1, 1], stepValue)[0];
|
|
818
|
+
}
|
|
819
|
+
else {
|
|
820
|
+
newStepValue += getTimeGivenProgression([0, 0], [0.32, 0.72], [0, 1], [1, 1], stepValue)[0];
|
|
821
|
+
}
|
|
822
|
+
this.sbAni.progressEnd(shouldComplete ? 1 : 0, newStepValue, dur);
|
|
823
|
+
}
|
|
824
|
+
else {
|
|
825
|
+
this.gestureOrAnimationInProgress = false;
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
render() {
|
|
829
|
+
return h("slot", null);
|
|
830
|
+
}
|
|
831
|
+
static get is() { return "ion-nav"; }
|
|
832
|
+
static get encapsulation() { return "shadow"; }
|
|
833
|
+
static get originalStyleUrls() {
|
|
834
|
+
return {
|
|
835
|
+
"$": ["nav.scss"]
|
|
836
|
+
};
|
|
837
|
+
}
|
|
838
|
+
static get styleUrls() {
|
|
839
|
+
return {
|
|
840
|
+
"$": ["nav.css"]
|
|
841
|
+
};
|
|
842
|
+
}
|
|
843
|
+
static get properties() {
|
|
844
|
+
return {
|
|
845
|
+
"delegate": {
|
|
846
|
+
"type": "unknown",
|
|
847
|
+
"mutable": false,
|
|
848
|
+
"complexType": {
|
|
849
|
+
"original": "FrameworkDelegate",
|
|
850
|
+
"resolved": "FrameworkDelegate | undefined",
|
|
851
|
+
"references": {
|
|
852
|
+
"FrameworkDelegate": {
|
|
853
|
+
"location": "import",
|
|
854
|
+
"path": "../../interface"
|
|
855
|
+
}
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"required": false,
|
|
859
|
+
"optional": true,
|
|
860
|
+
"docs": {
|
|
861
|
+
"tags": [{
|
|
862
|
+
"name": "internal",
|
|
863
|
+
"text": undefined
|
|
864
|
+
}],
|
|
865
|
+
"text": ""
|
|
866
|
+
}
|
|
867
|
+
},
|
|
868
|
+
"swipeGesture": {
|
|
869
|
+
"type": "boolean",
|
|
870
|
+
"mutable": true,
|
|
871
|
+
"complexType": {
|
|
872
|
+
"original": "boolean",
|
|
873
|
+
"resolved": "boolean | undefined",
|
|
874
|
+
"references": {}
|
|
875
|
+
},
|
|
876
|
+
"required": false,
|
|
877
|
+
"optional": true,
|
|
878
|
+
"docs": {
|
|
879
|
+
"tags": [],
|
|
880
|
+
"text": "If the nav component should allow for swipe-to-go-back."
|
|
881
|
+
},
|
|
882
|
+
"attribute": "swipe-gesture",
|
|
883
|
+
"reflect": false
|
|
884
|
+
},
|
|
885
|
+
"animated": {
|
|
886
|
+
"type": "boolean",
|
|
887
|
+
"mutable": false,
|
|
888
|
+
"complexType": {
|
|
889
|
+
"original": "boolean",
|
|
890
|
+
"resolved": "boolean",
|
|
891
|
+
"references": {}
|
|
892
|
+
},
|
|
893
|
+
"required": false,
|
|
894
|
+
"optional": false,
|
|
895
|
+
"docs": {
|
|
896
|
+
"tags": [],
|
|
897
|
+
"text": "If `true`, the nav should animate the transition of components."
|
|
898
|
+
},
|
|
899
|
+
"attribute": "animated",
|
|
900
|
+
"reflect": false,
|
|
901
|
+
"defaultValue": "true"
|
|
902
|
+
},
|
|
903
|
+
"animation": {
|
|
904
|
+
"type": "unknown",
|
|
905
|
+
"mutable": false,
|
|
906
|
+
"complexType": {
|
|
907
|
+
"original": "AnimationBuilder",
|
|
908
|
+
"resolved": "((baseEl: any, opts?: any) => Animation) | undefined",
|
|
909
|
+
"references": {
|
|
910
|
+
"AnimationBuilder": {
|
|
911
|
+
"location": "import",
|
|
912
|
+
"path": "../../interface"
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
"required": false,
|
|
917
|
+
"optional": true,
|
|
918
|
+
"docs": {
|
|
919
|
+
"tags": [],
|
|
920
|
+
"text": "By default `ion-nav` animates transition between pages based in the mode (ios or material design).\nHowever, this property allows to create custom transition using `AnimationBuilder` functions."
|
|
921
|
+
}
|
|
922
|
+
},
|
|
923
|
+
"rootParams": {
|
|
924
|
+
"type": "unknown",
|
|
925
|
+
"mutable": false,
|
|
926
|
+
"complexType": {
|
|
927
|
+
"original": "ComponentProps",
|
|
928
|
+
"resolved": "undefined | { [key: string]: any; }",
|
|
929
|
+
"references": {
|
|
930
|
+
"ComponentProps": {
|
|
931
|
+
"location": "import",
|
|
932
|
+
"path": "../../interface"
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
},
|
|
936
|
+
"required": false,
|
|
937
|
+
"optional": true,
|
|
938
|
+
"docs": {
|
|
939
|
+
"tags": [],
|
|
940
|
+
"text": "Any parameters for the root component"
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
"root": {
|
|
944
|
+
"type": "string",
|
|
945
|
+
"mutable": false,
|
|
946
|
+
"complexType": {
|
|
947
|
+
"original": "NavComponent",
|
|
948
|
+
"resolved": "Function | HTMLElement | ViewController | null | string | undefined",
|
|
949
|
+
"references": {
|
|
950
|
+
"NavComponent": {
|
|
951
|
+
"location": "import",
|
|
952
|
+
"path": "./nav-interface"
|
|
953
|
+
}
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"required": false,
|
|
957
|
+
"optional": true,
|
|
958
|
+
"docs": {
|
|
959
|
+
"tags": [],
|
|
960
|
+
"text": "Root NavComponent to load"
|
|
961
|
+
},
|
|
962
|
+
"attribute": "root",
|
|
963
|
+
"reflect": false
|
|
964
|
+
}
|
|
965
|
+
};
|
|
966
|
+
}
|
|
967
|
+
static get events() {
|
|
968
|
+
return [{
|
|
969
|
+
"method": "ionNavWillLoad",
|
|
970
|
+
"name": "ionNavWillLoad",
|
|
971
|
+
"bubbles": true,
|
|
972
|
+
"cancelable": true,
|
|
973
|
+
"composed": true,
|
|
974
|
+
"docs": {
|
|
975
|
+
"tags": [{
|
|
976
|
+
"name": "internal",
|
|
977
|
+
"text": undefined
|
|
978
|
+
}],
|
|
979
|
+
"text": "Event fired when Nav will load a component"
|
|
980
|
+
},
|
|
981
|
+
"complexType": {
|
|
982
|
+
"original": "void",
|
|
983
|
+
"resolved": "void",
|
|
984
|
+
"references": {}
|
|
985
|
+
}
|
|
986
|
+
}, {
|
|
987
|
+
"method": "ionNavWillChange",
|
|
988
|
+
"name": "ionNavWillChange",
|
|
989
|
+
"bubbles": false,
|
|
990
|
+
"cancelable": true,
|
|
991
|
+
"composed": true,
|
|
992
|
+
"docs": {
|
|
993
|
+
"tags": [],
|
|
994
|
+
"text": "Event fired when the nav will change components"
|
|
995
|
+
},
|
|
996
|
+
"complexType": {
|
|
997
|
+
"original": "void",
|
|
998
|
+
"resolved": "void",
|
|
999
|
+
"references": {}
|
|
1000
|
+
}
|
|
1001
|
+
}, {
|
|
1002
|
+
"method": "ionNavDidChange",
|
|
1003
|
+
"name": "ionNavDidChange",
|
|
1004
|
+
"bubbles": false,
|
|
1005
|
+
"cancelable": true,
|
|
1006
|
+
"composed": true,
|
|
1007
|
+
"docs": {
|
|
1008
|
+
"tags": [],
|
|
1009
|
+
"text": "Event fired when the nav has changed components"
|
|
1010
|
+
},
|
|
1011
|
+
"complexType": {
|
|
1012
|
+
"original": "void",
|
|
1013
|
+
"resolved": "void",
|
|
1014
|
+
"references": {}
|
|
1015
|
+
}
|
|
1016
|
+
}];
|
|
1017
|
+
}
|
|
1018
|
+
static get methods() {
|
|
1019
|
+
return {
|
|
1020
|
+
"push": {
|
|
1021
|
+
"complexType": {
|
|
1022
|
+
"signature": "<T extends NavComponent>(component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1023
|
+
"parameters": [{
|
|
1024
|
+
"tags": [{
|
|
1025
|
+
"name": "param",
|
|
1026
|
+
"text": "component The component to push onto the navigation stack."
|
|
1027
|
+
}],
|
|
1028
|
+
"text": "The component to push onto the navigation stack."
|
|
1029
|
+
}, {
|
|
1030
|
+
"tags": [{
|
|
1031
|
+
"name": "param",
|
|
1032
|
+
"text": "componentProps Any properties of the component."
|
|
1033
|
+
}],
|
|
1034
|
+
"text": "Any properties of the component."
|
|
1035
|
+
}, {
|
|
1036
|
+
"tags": [{
|
|
1037
|
+
"name": "param",
|
|
1038
|
+
"text": "opts The navigation options."
|
|
1039
|
+
}],
|
|
1040
|
+
"text": "The navigation options."
|
|
1041
|
+
}, {
|
|
1042
|
+
"tags": [{
|
|
1043
|
+
"name": "param",
|
|
1044
|
+
"text": "done The transition complete function."
|
|
1045
|
+
}],
|
|
1046
|
+
"text": "The transition complete function."
|
|
1047
|
+
}],
|
|
1048
|
+
"references": {
|
|
1049
|
+
"Promise": {
|
|
1050
|
+
"location": "global"
|
|
1051
|
+
},
|
|
1052
|
+
"NavComponent": {
|
|
1053
|
+
"location": "import",
|
|
1054
|
+
"path": "./nav-interface"
|
|
1055
|
+
},
|
|
1056
|
+
"T": {
|
|
1057
|
+
"location": "global"
|
|
1058
|
+
},
|
|
1059
|
+
"ComponentProps": {
|
|
1060
|
+
"location": "import",
|
|
1061
|
+
"path": "../../interface"
|
|
1062
|
+
},
|
|
1063
|
+
"NavOptions": {
|
|
1064
|
+
"location": "import",
|
|
1065
|
+
"path": "./nav-interface"
|
|
1066
|
+
},
|
|
1067
|
+
"TransitionDoneFn": {
|
|
1068
|
+
"location": "import",
|
|
1069
|
+
"path": "./nav-interface"
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"return": "Promise<boolean>"
|
|
1073
|
+
},
|
|
1074
|
+
"docs": {
|
|
1075
|
+
"text": "Push a new component onto the current navigation stack. Pass any additional\ninformation along as an object. This additional information is accessible\nthrough NavParams.",
|
|
1076
|
+
"tags": [{
|
|
1077
|
+
"name": "param",
|
|
1078
|
+
"text": "component The component to push onto the navigation stack."
|
|
1079
|
+
}, {
|
|
1080
|
+
"name": "param",
|
|
1081
|
+
"text": "componentProps Any properties of the component."
|
|
1082
|
+
}, {
|
|
1083
|
+
"name": "param",
|
|
1084
|
+
"text": "opts The navigation options."
|
|
1085
|
+
}, {
|
|
1086
|
+
"name": "param",
|
|
1087
|
+
"text": "done The transition complete function."
|
|
1088
|
+
}]
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
"insert": {
|
|
1092
|
+
"complexType": {
|
|
1093
|
+
"signature": "<T extends NavComponent>(insertIndex: number, component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1094
|
+
"parameters": [{
|
|
1095
|
+
"tags": [{
|
|
1096
|
+
"name": "param",
|
|
1097
|
+
"text": "insertIndex The index to insert the component at in the stack."
|
|
1098
|
+
}],
|
|
1099
|
+
"text": "The index to insert the component at in the stack."
|
|
1100
|
+
}, {
|
|
1101
|
+
"tags": [{
|
|
1102
|
+
"name": "param",
|
|
1103
|
+
"text": "component The component to insert into the navigation stack."
|
|
1104
|
+
}],
|
|
1105
|
+
"text": "The component to insert into the navigation stack."
|
|
1106
|
+
}, {
|
|
1107
|
+
"tags": [{
|
|
1108
|
+
"name": "param",
|
|
1109
|
+
"text": "componentProps Any properties of the component."
|
|
1110
|
+
}],
|
|
1111
|
+
"text": "Any properties of the component."
|
|
1112
|
+
}, {
|
|
1113
|
+
"tags": [{
|
|
1114
|
+
"name": "param",
|
|
1115
|
+
"text": "opts The navigation options."
|
|
1116
|
+
}],
|
|
1117
|
+
"text": "The navigation options."
|
|
1118
|
+
}, {
|
|
1119
|
+
"tags": [{
|
|
1120
|
+
"name": "param",
|
|
1121
|
+
"text": "done The transition complete function."
|
|
1122
|
+
}],
|
|
1123
|
+
"text": "The transition complete function."
|
|
1124
|
+
}],
|
|
1125
|
+
"references": {
|
|
1126
|
+
"Promise": {
|
|
1127
|
+
"location": "global"
|
|
1128
|
+
},
|
|
1129
|
+
"NavComponent": {
|
|
1130
|
+
"location": "import",
|
|
1131
|
+
"path": "./nav-interface"
|
|
1132
|
+
},
|
|
1133
|
+
"T": {
|
|
1134
|
+
"location": "global"
|
|
1135
|
+
},
|
|
1136
|
+
"ComponentProps": {
|
|
1137
|
+
"location": "import",
|
|
1138
|
+
"path": "../../interface"
|
|
1139
|
+
},
|
|
1140
|
+
"NavOptions": {
|
|
1141
|
+
"location": "import",
|
|
1142
|
+
"path": "./nav-interface"
|
|
1143
|
+
},
|
|
1144
|
+
"TransitionDoneFn": {
|
|
1145
|
+
"location": "import",
|
|
1146
|
+
"path": "./nav-interface"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
"return": "Promise<boolean>"
|
|
1150
|
+
},
|
|
1151
|
+
"docs": {
|
|
1152
|
+
"text": "Inserts a component into the navigation stack at the specified index.\nThis is useful to add a component at any point in the navigation stack.",
|
|
1153
|
+
"tags": [{
|
|
1154
|
+
"name": "param",
|
|
1155
|
+
"text": "insertIndex The index to insert the component at in the stack."
|
|
1156
|
+
}, {
|
|
1157
|
+
"name": "param",
|
|
1158
|
+
"text": "component The component to insert into the navigation stack."
|
|
1159
|
+
}, {
|
|
1160
|
+
"name": "param",
|
|
1161
|
+
"text": "componentProps Any properties of the component."
|
|
1162
|
+
}, {
|
|
1163
|
+
"name": "param",
|
|
1164
|
+
"text": "opts The navigation options."
|
|
1165
|
+
}, {
|
|
1166
|
+
"name": "param",
|
|
1167
|
+
"text": "done The transition complete function."
|
|
1168
|
+
}]
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"insertPages": {
|
|
1172
|
+
"complexType": {
|
|
1173
|
+
"signature": "(insertIndex: number, insertComponents: NavComponent[] | NavComponentWithProps[], opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1174
|
+
"parameters": [{
|
|
1175
|
+
"tags": [{
|
|
1176
|
+
"name": "param",
|
|
1177
|
+
"text": "insertIndex The index to insert the components at in the stack."
|
|
1178
|
+
}],
|
|
1179
|
+
"text": "The index to insert the components at in the stack."
|
|
1180
|
+
}, {
|
|
1181
|
+
"tags": [{
|
|
1182
|
+
"name": "param",
|
|
1183
|
+
"text": "insertComponents The components to insert into the navigation stack."
|
|
1184
|
+
}],
|
|
1185
|
+
"text": "The components to insert into the navigation stack."
|
|
1186
|
+
}, {
|
|
1187
|
+
"tags": [{
|
|
1188
|
+
"name": "param",
|
|
1189
|
+
"text": "opts The navigation options."
|
|
1190
|
+
}],
|
|
1191
|
+
"text": "The navigation options."
|
|
1192
|
+
}, {
|
|
1193
|
+
"tags": [{
|
|
1194
|
+
"name": "param",
|
|
1195
|
+
"text": "done The transition complete function."
|
|
1196
|
+
}],
|
|
1197
|
+
"text": "The transition complete function."
|
|
1198
|
+
}],
|
|
1199
|
+
"references": {
|
|
1200
|
+
"Promise": {
|
|
1201
|
+
"location": "global"
|
|
1202
|
+
},
|
|
1203
|
+
"NavComponent": {
|
|
1204
|
+
"location": "import",
|
|
1205
|
+
"path": "./nav-interface"
|
|
1206
|
+
},
|
|
1207
|
+
"NavComponentWithProps": {
|
|
1208
|
+
"location": "import",
|
|
1209
|
+
"path": "./nav-interface"
|
|
1210
|
+
},
|
|
1211
|
+
"NavOptions": {
|
|
1212
|
+
"location": "import",
|
|
1213
|
+
"path": "./nav-interface"
|
|
1214
|
+
},
|
|
1215
|
+
"TransitionDoneFn": {
|
|
1216
|
+
"location": "import",
|
|
1217
|
+
"path": "./nav-interface"
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"return": "Promise<boolean>"
|
|
1221
|
+
},
|
|
1222
|
+
"docs": {
|
|
1223
|
+
"text": "Inserts an array of components into the navigation stack at the specified index.\nThe last component in the array will become instantiated as a view, and animate\nin to become the active view.",
|
|
1224
|
+
"tags": [{
|
|
1225
|
+
"name": "param",
|
|
1226
|
+
"text": "insertIndex The index to insert the components at in the stack."
|
|
1227
|
+
}, {
|
|
1228
|
+
"name": "param",
|
|
1229
|
+
"text": "insertComponents The components to insert into the navigation stack."
|
|
1230
|
+
}, {
|
|
1231
|
+
"name": "param",
|
|
1232
|
+
"text": "opts The navigation options."
|
|
1233
|
+
}, {
|
|
1234
|
+
"name": "param",
|
|
1235
|
+
"text": "done The transition complete function."
|
|
1236
|
+
}]
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"pop": {
|
|
1240
|
+
"complexType": {
|
|
1241
|
+
"signature": "(opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1242
|
+
"parameters": [{
|
|
1243
|
+
"tags": [{
|
|
1244
|
+
"name": "param",
|
|
1245
|
+
"text": "opts The navigation options."
|
|
1246
|
+
}],
|
|
1247
|
+
"text": "The navigation options."
|
|
1248
|
+
}, {
|
|
1249
|
+
"tags": [{
|
|
1250
|
+
"name": "param",
|
|
1251
|
+
"text": "done The transition complete function."
|
|
1252
|
+
}],
|
|
1253
|
+
"text": "The transition complete function."
|
|
1254
|
+
}],
|
|
1255
|
+
"references": {
|
|
1256
|
+
"Promise": {
|
|
1257
|
+
"location": "global"
|
|
1258
|
+
},
|
|
1259
|
+
"NavOptions": {
|
|
1260
|
+
"location": "import",
|
|
1261
|
+
"path": "./nav-interface"
|
|
1262
|
+
},
|
|
1263
|
+
"TransitionDoneFn": {
|
|
1264
|
+
"location": "import",
|
|
1265
|
+
"path": "./nav-interface"
|
|
1266
|
+
}
|
|
1267
|
+
},
|
|
1268
|
+
"return": "Promise<boolean>"
|
|
1269
|
+
},
|
|
1270
|
+
"docs": {
|
|
1271
|
+
"text": "Pop a component off of the navigation stack. Navigates back from the current\ncomponent.",
|
|
1272
|
+
"tags": [{
|
|
1273
|
+
"name": "param",
|
|
1274
|
+
"text": "opts The navigation options."
|
|
1275
|
+
}, {
|
|
1276
|
+
"name": "param",
|
|
1277
|
+
"text": "done The transition complete function."
|
|
1278
|
+
}]
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1281
|
+
"popTo": {
|
|
1282
|
+
"complexType": {
|
|
1283
|
+
"signature": "(indexOrViewCtrl: number | ViewController, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1284
|
+
"parameters": [{
|
|
1285
|
+
"tags": [{
|
|
1286
|
+
"name": "param",
|
|
1287
|
+
"text": "indexOrViewCtrl The index or view controller to pop to."
|
|
1288
|
+
}],
|
|
1289
|
+
"text": "The index or view controller to pop to."
|
|
1290
|
+
}, {
|
|
1291
|
+
"tags": [{
|
|
1292
|
+
"name": "param",
|
|
1293
|
+
"text": "opts The navigation options."
|
|
1294
|
+
}],
|
|
1295
|
+
"text": "The navigation options."
|
|
1296
|
+
}, {
|
|
1297
|
+
"tags": [{
|
|
1298
|
+
"name": "param",
|
|
1299
|
+
"text": "done The transition complete function."
|
|
1300
|
+
}],
|
|
1301
|
+
"text": "The transition complete function."
|
|
1302
|
+
}],
|
|
1303
|
+
"references": {
|
|
1304
|
+
"Promise": {
|
|
1305
|
+
"location": "global"
|
|
1306
|
+
},
|
|
1307
|
+
"ViewController": {
|
|
1308
|
+
"location": "import",
|
|
1309
|
+
"path": "./view-controller"
|
|
1310
|
+
},
|
|
1311
|
+
"NavOptions": {
|
|
1312
|
+
"location": "import",
|
|
1313
|
+
"path": "./nav-interface"
|
|
1314
|
+
},
|
|
1315
|
+
"TransitionDoneFn": {
|
|
1316
|
+
"location": "import",
|
|
1317
|
+
"path": "./nav-interface"
|
|
1318
|
+
},
|
|
1319
|
+
"TransitionInstruction": {
|
|
1320
|
+
"location": "import",
|
|
1321
|
+
"path": "./nav-interface"
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"return": "Promise<boolean>"
|
|
1325
|
+
},
|
|
1326
|
+
"docs": {
|
|
1327
|
+
"text": "Pop to a specific index in the navigation stack.",
|
|
1328
|
+
"tags": [{
|
|
1329
|
+
"name": "param",
|
|
1330
|
+
"text": "indexOrViewCtrl The index or view controller to pop to."
|
|
1331
|
+
}, {
|
|
1332
|
+
"name": "param",
|
|
1333
|
+
"text": "opts The navigation options."
|
|
1334
|
+
}, {
|
|
1335
|
+
"name": "param",
|
|
1336
|
+
"text": "done The transition complete function."
|
|
1337
|
+
}]
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
"popToRoot": {
|
|
1341
|
+
"complexType": {
|
|
1342
|
+
"signature": "(opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1343
|
+
"parameters": [{
|
|
1344
|
+
"tags": [{
|
|
1345
|
+
"name": "param",
|
|
1346
|
+
"text": "opts The navigation options."
|
|
1347
|
+
}],
|
|
1348
|
+
"text": "The navigation options."
|
|
1349
|
+
}, {
|
|
1350
|
+
"tags": [{
|
|
1351
|
+
"name": "param",
|
|
1352
|
+
"text": "done The transition complete function."
|
|
1353
|
+
}],
|
|
1354
|
+
"text": "The transition complete function."
|
|
1355
|
+
}],
|
|
1356
|
+
"references": {
|
|
1357
|
+
"Promise": {
|
|
1358
|
+
"location": "global"
|
|
1359
|
+
},
|
|
1360
|
+
"NavOptions": {
|
|
1361
|
+
"location": "import",
|
|
1362
|
+
"path": "./nav-interface"
|
|
1363
|
+
},
|
|
1364
|
+
"TransitionDoneFn": {
|
|
1365
|
+
"location": "import",
|
|
1366
|
+
"path": "./nav-interface"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"return": "Promise<boolean>"
|
|
1370
|
+
},
|
|
1371
|
+
"docs": {
|
|
1372
|
+
"text": "Navigate back to the root of the stack, no matter how far back that is.",
|
|
1373
|
+
"tags": [{
|
|
1374
|
+
"name": "param",
|
|
1375
|
+
"text": "opts The navigation options."
|
|
1376
|
+
}, {
|
|
1377
|
+
"name": "param",
|
|
1378
|
+
"text": "done The transition complete function."
|
|
1379
|
+
}]
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"removeIndex": {
|
|
1383
|
+
"complexType": {
|
|
1384
|
+
"signature": "(startIndex: number, removeCount?: number, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1385
|
+
"parameters": [{
|
|
1386
|
+
"tags": [{
|
|
1387
|
+
"name": "param",
|
|
1388
|
+
"text": "startIndex The number to begin removal at."
|
|
1389
|
+
}],
|
|
1390
|
+
"text": "The number to begin removal at."
|
|
1391
|
+
}, {
|
|
1392
|
+
"tags": [{
|
|
1393
|
+
"name": "param",
|
|
1394
|
+
"text": "removeCount The number of components to remove."
|
|
1395
|
+
}],
|
|
1396
|
+
"text": "The number of components to remove."
|
|
1397
|
+
}, {
|
|
1398
|
+
"tags": [{
|
|
1399
|
+
"name": "param",
|
|
1400
|
+
"text": "opts The navigation options."
|
|
1401
|
+
}],
|
|
1402
|
+
"text": "The navigation options."
|
|
1403
|
+
}, {
|
|
1404
|
+
"tags": [{
|
|
1405
|
+
"name": "param",
|
|
1406
|
+
"text": "done The transition complete function."
|
|
1407
|
+
}],
|
|
1408
|
+
"text": "The transition complete function."
|
|
1409
|
+
}],
|
|
1410
|
+
"references": {
|
|
1411
|
+
"Promise": {
|
|
1412
|
+
"location": "global"
|
|
1413
|
+
},
|
|
1414
|
+
"NavOptions": {
|
|
1415
|
+
"location": "import",
|
|
1416
|
+
"path": "./nav-interface"
|
|
1417
|
+
},
|
|
1418
|
+
"TransitionDoneFn": {
|
|
1419
|
+
"location": "import",
|
|
1420
|
+
"path": "./nav-interface"
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
"return": "Promise<boolean>"
|
|
1424
|
+
},
|
|
1425
|
+
"docs": {
|
|
1426
|
+
"text": "Removes a component from the navigation stack at the specified index.",
|
|
1427
|
+
"tags": [{
|
|
1428
|
+
"name": "param",
|
|
1429
|
+
"text": "startIndex The number to begin removal at."
|
|
1430
|
+
}, {
|
|
1431
|
+
"name": "param",
|
|
1432
|
+
"text": "removeCount The number of components to remove."
|
|
1433
|
+
}, {
|
|
1434
|
+
"name": "param",
|
|
1435
|
+
"text": "opts The navigation options."
|
|
1436
|
+
}, {
|
|
1437
|
+
"name": "param",
|
|
1438
|
+
"text": "done The transition complete function."
|
|
1439
|
+
}]
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"setRoot": {
|
|
1443
|
+
"complexType": {
|
|
1444
|
+
"signature": "<T extends NavComponent>(component: T, componentProps?: ComponentProps<T> | null, opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1445
|
+
"parameters": [{
|
|
1446
|
+
"tags": [{
|
|
1447
|
+
"name": "param",
|
|
1448
|
+
"text": "component The component to set as the root of the navigation stack."
|
|
1449
|
+
}],
|
|
1450
|
+
"text": "The component to set as the root of the navigation stack."
|
|
1451
|
+
}, {
|
|
1452
|
+
"tags": [{
|
|
1453
|
+
"name": "param",
|
|
1454
|
+
"text": "componentProps Any properties of the component."
|
|
1455
|
+
}],
|
|
1456
|
+
"text": "Any properties of the component."
|
|
1457
|
+
}, {
|
|
1458
|
+
"tags": [{
|
|
1459
|
+
"name": "param",
|
|
1460
|
+
"text": "opts The navigation options."
|
|
1461
|
+
}],
|
|
1462
|
+
"text": "The navigation options."
|
|
1463
|
+
}, {
|
|
1464
|
+
"tags": [{
|
|
1465
|
+
"name": "param",
|
|
1466
|
+
"text": "done The transition complete function."
|
|
1467
|
+
}],
|
|
1468
|
+
"text": "The transition complete function."
|
|
1469
|
+
}],
|
|
1470
|
+
"references": {
|
|
1471
|
+
"Promise": {
|
|
1472
|
+
"location": "global"
|
|
1473
|
+
},
|
|
1474
|
+
"NavComponent": {
|
|
1475
|
+
"location": "import",
|
|
1476
|
+
"path": "./nav-interface"
|
|
1477
|
+
},
|
|
1478
|
+
"T": {
|
|
1479
|
+
"location": "global"
|
|
1480
|
+
},
|
|
1481
|
+
"ComponentProps": {
|
|
1482
|
+
"location": "import",
|
|
1483
|
+
"path": "../../interface"
|
|
1484
|
+
},
|
|
1485
|
+
"NavOptions": {
|
|
1486
|
+
"location": "import",
|
|
1487
|
+
"path": "./nav-interface"
|
|
1488
|
+
},
|
|
1489
|
+
"TransitionDoneFn": {
|
|
1490
|
+
"location": "import",
|
|
1491
|
+
"path": "./nav-interface"
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"return": "Promise<boolean>"
|
|
1495
|
+
},
|
|
1496
|
+
"docs": {
|
|
1497
|
+
"text": "Set the root for the current navigation stack to a component.",
|
|
1498
|
+
"tags": [{
|
|
1499
|
+
"name": "param",
|
|
1500
|
+
"text": "component The component to set as the root of the navigation stack."
|
|
1501
|
+
}, {
|
|
1502
|
+
"name": "param",
|
|
1503
|
+
"text": "componentProps Any properties of the component."
|
|
1504
|
+
}, {
|
|
1505
|
+
"name": "param",
|
|
1506
|
+
"text": "opts The navigation options."
|
|
1507
|
+
}, {
|
|
1508
|
+
"name": "param",
|
|
1509
|
+
"text": "done The transition complete function."
|
|
1510
|
+
}]
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"setPages": {
|
|
1514
|
+
"complexType": {
|
|
1515
|
+
"signature": "(views: NavComponent[] | NavComponentWithProps[], opts?: NavOptions | null, done?: TransitionDoneFn) => Promise<boolean>",
|
|
1516
|
+
"parameters": [{
|
|
1517
|
+
"tags": [{
|
|
1518
|
+
"name": "param",
|
|
1519
|
+
"text": "views The list of views to set as the navigation stack."
|
|
1520
|
+
}],
|
|
1521
|
+
"text": "The list of views to set as the navigation stack."
|
|
1522
|
+
}, {
|
|
1523
|
+
"tags": [{
|
|
1524
|
+
"name": "param",
|
|
1525
|
+
"text": "opts The navigation options."
|
|
1526
|
+
}],
|
|
1527
|
+
"text": "The navigation options."
|
|
1528
|
+
}, {
|
|
1529
|
+
"tags": [{
|
|
1530
|
+
"name": "param",
|
|
1531
|
+
"text": "done The transition complete function."
|
|
1532
|
+
}],
|
|
1533
|
+
"text": "The transition complete function."
|
|
1534
|
+
}],
|
|
1535
|
+
"references": {
|
|
1536
|
+
"Promise": {
|
|
1537
|
+
"location": "global"
|
|
1538
|
+
},
|
|
1539
|
+
"NavComponent": {
|
|
1540
|
+
"location": "import",
|
|
1541
|
+
"path": "./nav-interface"
|
|
1542
|
+
},
|
|
1543
|
+
"NavComponentWithProps": {
|
|
1544
|
+
"location": "import",
|
|
1545
|
+
"path": "./nav-interface"
|
|
1546
|
+
},
|
|
1547
|
+
"NavOptions": {
|
|
1548
|
+
"location": "import",
|
|
1549
|
+
"path": "./nav-interface"
|
|
1550
|
+
},
|
|
1551
|
+
"TransitionDoneFn": {
|
|
1552
|
+
"location": "import",
|
|
1553
|
+
"path": "./nav-interface"
|
|
1554
|
+
}
|
|
1555
|
+
},
|
|
1556
|
+
"return": "Promise<boolean>"
|
|
1557
|
+
},
|
|
1558
|
+
"docs": {
|
|
1559
|
+
"text": "Set the views of the current navigation stack and navigate to the last view.\nBy default animations are disabled, but they can be enabled by passing options\nto the navigation controller. Navigation parameters can also be passed to the\nindividual pages in the array.",
|
|
1560
|
+
"tags": [{
|
|
1561
|
+
"name": "param",
|
|
1562
|
+
"text": "views The list of views to set as the navigation stack."
|
|
1563
|
+
}, {
|
|
1564
|
+
"name": "param",
|
|
1565
|
+
"text": "opts The navigation options."
|
|
1566
|
+
}, {
|
|
1567
|
+
"name": "param",
|
|
1568
|
+
"text": "done The transition complete function."
|
|
1569
|
+
}]
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"setRouteId": {
|
|
1573
|
+
"complexType": {
|
|
1574
|
+
"signature": "(id: string, params: ComponentProps | undefined, direction: RouterDirection, animation?: AnimationBuilder) => Promise<RouteWrite>",
|
|
1575
|
+
"parameters": [{
|
|
1576
|
+
"tags": [{
|
|
1577
|
+
"name": "param",
|
|
1578
|
+
"text": "id The component tag."
|
|
1579
|
+
}],
|
|
1580
|
+
"text": "The component tag."
|
|
1581
|
+
}, {
|
|
1582
|
+
"tags": [{
|
|
1583
|
+
"name": "param",
|
|
1584
|
+
"text": "params The component params."
|
|
1585
|
+
}],
|
|
1586
|
+
"text": "The component params."
|
|
1587
|
+
}, {
|
|
1588
|
+
"tags": [{
|
|
1589
|
+
"name": "param",
|
|
1590
|
+
"text": "direction A direction hint."
|
|
1591
|
+
}],
|
|
1592
|
+
"text": "A direction hint."
|
|
1593
|
+
}, {
|
|
1594
|
+
"tags": [{
|
|
1595
|
+
"name": "param",
|
|
1596
|
+
"text": "animation an AnimationBuilder."
|
|
1597
|
+
}],
|
|
1598
|
+
"text": "an AnimationBuilder."
|
|
1599
|
+
}],
|
|
1600
|
+
"references": {
|
|
1601
|
+
"Promise": {
|
|
1602
|
+
"location": "global"
|
|
1603
|
+
},
|
|
1604
|
+
"RouteWrite": {
|
|
1605
|
+
"location": "import",
|
|
1606
|
+
"path": "../router/utils/interface"
|
|
1607
|
+
},
|
|
1608
|
+
"ComponentProps": {
|
|
1609
|
+
"location": "import",
|
|
1610
|
+
"path": "../../interface"
|
|
1611
|
+
},
|
|
1612
|
+
"RouterDirection": {
|
|
1613
|
+
"location": "import",
|
|
1614
|
+
"path": "../router/utils/interface"
|
|
1615
|
+
},
|
|
1616
|
+
"AnimationBuilder": {
|
|
1617
|
+
"location": "import",
|
|
1618
|
+
"path": "../../interface"
|
|
1619
|
+
},
|
|
1620
|
+
"NavOptions": {
|
|
1621
|
+
"location": "import",
|
|
1622
|
+
"path": "./nav-interface"
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"return": "Promise<RouteWrite>"
|
|
1626
|
+
},
|
|
1627
|
+
"docs": {
|
|
1628
|
+
"text": "Called by the router to update the view.",
|
|
1629
|
+
"tags": [{
|
|
1630
|
+
"name": "param",
|
|
1631
|
+
"text": "id The component tag."
|
|
1632
|
+
}, {
|
|
1633
|
+
"name": "param",
|
|
1634
|
+
"text": "params The component params."
|
|
1635
|
+
}, {
|
|
1636
|
+
"name": "param",
|
|
1637
|
+
"text": "direction A direction hint."
|
|
1638
|
+
}, {
|
|
1639
|
+
"name": "param",
|
|
1640
|
+
"text": "animation an AnimationBuilder."
|
|
1641
|
+
}, {
|
|
1642
|
+
"name": "return",
|
|
1643
|
+
"text": "the status."
|
|
1644
|
+
}, {
|
|
1645
|
+
"name": "internal",
|
|
1646
|
+
"text": undefined
|
|
1647
|
+
}]
|
|
1648
|
+
}
|
|
1649
|
+
},
|
|
1650
|
+
"getRouteId": {
|
|
1651
|
+
"complexType": {
|
|
1652
|
+
"signature": "() => Promise<RouteID | undefined>",
|
|
1653
|
+
"parameters": [],
|
|
1654
|
+
"references": {
|
|
1655
|
+
"Promise": {
|
|
1656
|
+
"location": "global"
|
|
1657
|
+
},
|
|
1658
|
+
"RouteID": {
|
|
1659
|
+
"location": "import",
|
|
1660
|
+
"path": "../router/utils/interface"
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"return": "Promise<RouteID | undefined>"
|
|
1664
|
+
},
|
|
1665
|
+
"docs": {
|
|
1666
|
+
"text": "Called by <ion-router> to retrieve the current component.",
|
|
1667
|
+
"tags": [{
|
|
1668
|
+
"name": "internal",
|
|
1669
|
+
"text": undefined
|
|
1670
|
+
}]
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
"getActive": {
|
|
1674
|
+
"complexType": {
|
|
1675
|
+
"signature": "() => Promise<ViewController | undefined>",
|
|
1676
|
+
"parameters": [],
|
|
1677
|
+
"references": {
|
|
1678
|
+
"Promise": {
|
|
1679
|
+
"location": "global"
|
|
1680
|
+
},
|
|
1681
|
+
"ViewController": {
|
|
1682
|
+
"location": "import",
|
|
1683
|
+
"path": "./view-controller"
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
"return": "Promise<ViewController | undefined>"
|
|
1687
|
+
},
|
|
1688
|
+
"docs": {
|
|
1689
|
+
"text": "Get the active view.",
|
|
1690
|
+
"tags": []
|
|
1691
|
+
}
|
|
1692
|
+
},
|
|
1693
|
+
"getByIndex": {
|
|
1694
|
+
"complexType": {
|
|
1695
|
+
"signature": "(index: number) => Promise<ViewController | undefined>",
|
|
1696
|
+
"parameters": [{
|
|
1697
|
+
"tags": [{
|
|
1698
|
+
"name": "param",
|
|
1699
|
+
"text": "index The index of the view."
|
|
1700
|
+
}],
|
|
1701
|
+
"text": "The index of the view."
|
|
1702
|
+
}],
|
|
1703
|
+
"references": {
|
|
1704
|
+
"Promise": {
|
|
1705
|
+
"location": "global"
|
|
1706
|
+
},
|
|
1707
|
+
"ViewController": {
|
|
1708
|
+
"location": "import",
|
|
1709
|
+
"path": "./view-controller"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"return": "Promise<ViewController | undefined>"
|
|
1713
|
+
},
|
|
1714
|
+
"docs": {
|
|
1715
|
+
"text": "Get the view at the specified index.",
|
|
1716
|
+
"tags": [{
|
|
1717
|
+
"name": "param",
|
|
1718
|
+
"text": "index The index of the view."
|
|
1719
|
+
}]
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
"canGoBack": {
|
|
1723
|
+
"complexType": {
|
|
1724
|
+
"signature": "(view?: ViewController) => Promise<boolean>",
|
|
1725
|
+
"parameters": [{
|
|
1726
|
+
"tags": [{
|
|
1727
|
+
"name": "param",
|
|
1728
|
+
"text": "view The view to check."
|
|
1729
|
+
}],
|
|
1730
|
+
"text": "The view to check."
|
|
1731
|
+
}],
|
|
1732
|
+
"references": {
|
|
1733
|
+
"Promise": {
|
|
1734
|
+
"location": "global"
|
|
1735
|
+
},
|
|
1736
|
+
"ViewController": {
|
|
1737
|
+
"location": "import",
|
|
1738
|
+
"path": "./view-controller"
|
|
1739
|
+
}
|
|
1740
|
+
},
|
|
1741
|
+
"return": "Promise<boolean>"
|
|
1742
|
+
},
|
|
1743
|
+
"docs": {
|
|
1744
|
+
"text": "Returns `true` if the current view can go back.",
|
|
1745
|
+
"tags": [{
|
|
1746
|
+
"name": "param",
|
|
1747
|
+
"text": "view The view to check."
|
|
1748
|
+
}]
|
|
1749
|
+
}
|
|
1750
|
+
},
|
|
1751
|
+
"getPrevious": {
|
|
1752
|
+
"complexType": {
|
|
1753
|
+
"signature": "(view?: ViewController) => Promise<ViewController | undefined>",
|
|
1754
|
+
"parameters": [{
|
|
1755
|
+
"tags": [{
|
|
1756
|
+
"name": "param",
|
|
1757
|
+
"text": "view The view to get."
|
|
1758
|
+
}],
|
|
1759
|
+
"text": "The view to get."
|
|
1760
|
+
}],
|
|
1761
|
+
"references": {
|
|
1762
|
+
"Promise": {
|
|
1763
|
+
"location": "global"
|
|
1764
|
+
},
|
|
1765
|
+
"ViewController": {
|
|
1766
|
+
"location": "import",
|
|
1767
|
+
"path": "./view-controller"
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"return": "Promise<ViewController | undefined>"
|
|
1771
|
+
},
|
|
1772
|
+
"docs": {
|
|
1773
|
+
"text": "Get the previous view.",
|
|
1774
|
+
"tags": [{
|
|
1775
|
+
"name": "param",
|
|
1776
|
+
"text": "view The view to get."
|
|
1777
|
+
}]
|
|
1778
|
+
}
|
|
1779
|
+
}
|
|
1780
|
+
};
|
|
1781
|
+
}
|
|
1782
|
+
static get elementRef() { return "el"; }
|
|
1783
|
+
static get watchers() {
|
|
1784
|
+
return [{
|
|
1785
|
+
"propName": "swipeGesture",
|
|
1786
|
+
"methodName": "swipeGestureChanged"
|
|
1787
|
+
}, {
|
|
1788
|
+
"propName": "root",
|
|
1789
|
+
"methodName": "rootChanged"
|
|
1790
|
+
}];
|
|
1791
|
+
}
|
|
1792
|
+
}
|