voyager-ionic-core 7.2.3-tweak
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 +230 -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 +302 -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 +1252 -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 +489 -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-7e99fa89.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 +614 -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 +481 -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 +30 -0
- package/dist/collection/components/title/title.ios.css +118 -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 +171 -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 +1241 -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 +478 -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-2f9f0102.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-2f9f0102.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-0768899f.system.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-138715e1.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-6ff7a5e5.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-77531c55.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-8c56e025.entry.js +4 -0
- package/dist/ionic/p-8da248f0.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-9c8b2f9a.system.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-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-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-b6519389.system.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-cc6e5174.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-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-e22f826b.system.entry.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-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 +35592 -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,1684 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* (C) Ionic http://ionicframework.com - MIT License
|
|
3
|
+
*/
|
|
4
|
+
import { proxyCustomElement, HTMLElement, createEvent, writeTask, h, Host } from '@stencil/core/internal/client';
|
|
5
|
+
import { a as findClosestIonContent, i as isIonContent, d as disableContentScrollY, r as resetContentScrollY, f as findIonContent, p as printIonContentErrorMsg } from './index8.js';
|
|
6
|
+
import { C as CoreDelegate, a as attachComponent, d as detachComponent } from './framework-delegate.js';
|
|
7
|
+
import { g as getElementRoot, m as clamp, r as raf, d as inheritAttributes, l as hasLazyBuild } from './helpers.js';
|
|
8
|
+
import { p as printIonWarning } from './index6.js';
|
|
9
|
+
import { g as getCapacitor } from './capacitor.js';
|
|
10
|
+
import { G as GESTURE, e as createTriggerController, B as BACKDROP, j as prepareOverlay, k as setOverlayId, f as present, q as activeAnimations, g as dismiss, h as eventMethod } from './overlays.js';
|
|
11
|
+
import { g as getClassMap } from './theme.js';
|
|
12
|
+
import { e as deepReady, w as waitForMount } from './index3.js';
|
|
13
|
+
import { b as getIonMode, c as config } from './ionic-global.js';
|
|
14
|
+
import { KEYBOARD_DID_OPEN } from './keyboard2.js';
|
|
15
|
+
import { c as createAnimation } from './animation.js';
|
|
16
|
+
import { g as getTimeGivenProgression } from './cubic-bezier.js';
|
|
17
|
+
import { createGesture } from './index2.js';
|
|
18
|
+
import { w as win } from './index5.js';
|
|
19
|
+
import { d as defineCustomElement$2 } from './backdrop.js';
|
|
20
|
+
|
|
21
|
+
var Style;
|
|
22
|
+
(function (Style) {
|
|
23
|
+
Style["Dark"] = "DARK";
|
|
24
|
+
Style["Light"] = "LIGHT";
|
|
25
|
+
Style["Default"] = "DEFAULT";
|
|
26
|
+
})(Style || (Style = {}));
|
|
27
|
+
const StatusBar = {
|
|
28
|
+
getEngine() {
|
|
29
|
+
const capacitor = getCapacitor();
|
|
30
|
+
if (capacitor === null || capacitor === void 0 ? void 0 : capacitor.isPluginAvailable('StatusBar')) {
|
|
31
|
+
return capacitor.Plugins.StatusBar;
|
|
32
|
+
}
|
|
33
|
+
return undefined;
|
|
34
|
+
},
|
|
35
|
+
// TODO FW-4696 Remove supportDefaultStatusBarStyle in Ionic v8
|
|
36
|
+
supportsDefaultStatusBarStyle() {
|
|
37
|
+
const capacitor = getCapacitor();
|
|
38
|
+
/**
|
|
39
|
+
* The 'DEFAULT' status bar style was added
|
|
40
|
+
* to the @capacitor/status-bar plugin in Capacitor 3.
|
|
41
|
+
* PluginHeaders is only supported in Capacitor 3+,
|
|
42
|
+
* so we can use this to detect Capacitor 3.
|
|
43
|
+
*/
|
|
44
|
+
return !!(capacitor === null || capacitor === void 0 ? void 0 : capacitor.PluginHeaders);
|
|
45
|
+
},
|
|
46
|
+
setStyle(options) {
|
|
47
|
+
const engine = this.getEngine();
|
|
48
|
+
if (!engine) {
|
|
49
|
+
return;
|
|
50
|
+
}
|
|
51
|
+
engine.setStyle(options);
|
|
52
|
+
},
|
|
53
|
+
getStyle: async function () {
|
|
54
|
+
const engine = this.getEngine();
|
|
55
|
+
if (!engine) {
|
|
56
|
+
return Style.Default;
|
|
57
|
+
}
|
|
58
|
+
const { style } = await engine.getInfo();
|
|
59
|
+
return style;
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Use y = mx + b to
|
|
65
|
+
* figure out the backdrop value
|
|
66
|
+
* at a particular x coordinate. This
|
|
67
|
+
* is useful when the backdrop does
|
|
68
|
+
* not begin to fade in until after
|
|
69
|
+
* the 0 breakpoint.
|
|
70
|
+
*/
|
|
71
|
+
const getBackdropValueForSheet = (x, backdropBreakpoint) => {
|
|
72
|
+
/**
|
|
73
|
+
* We will use these points:
|
|
74
|
+
* (backdropBreakpoint, 0)
|
|
75
|
+
* (maxBreakpoint, 1)
|
|
76
|
+
* We know that at the beginning breakpoint,
|
|
77
|
+
* the backdrop will be hidden. We also
|
|
78
|
+
* know that at the maxBreakpoint, the backdrop
|
|
79
|
+
* must be fully visible. maxBreakpoint should
|
|
80
|
+
* always be 1 even if the maximum value
|
|
81
|
+
* of the breakpoints array is not 1 since
|
|
82
|
+
* the animation runs from a progress of 0
|
|
83
|
+
* to a progress of 1.
|
|
84
|
+
* m = (y2 - y1) / (x2 - x1)
|
|
85
|
+
*
|
|
86
|
+
* This is simplified from:
|
|
87
|
+
* m = (1 - 0) / (maxBreakpoint - backdropBreakpoint)
|
|
88
|
+
*
|
|
89
|
+
* If the backdropBreakpoint is 1, we return 0 as the
|
|
90
|
+
* backdrop is completely hidden.
|
|
91
|
+
*
|
|
92
|
+
*/
|
|
93
|
+
if (backdropBreakpoint === 1) {
|
|
94
|
+
return 0;
|
|
95
|
+
}
|
|
96
|
+
const slope = 1 / (1 - backdropBreakpoint);
|
|
97
|
+
/**
|
|
98
|
+
* From here, compute b which is
|
|
99
|
+
* the backdrop opacity if the offset
|
|
100
|
+
* is 0. If the backdrop does not
|
|
101
|
+
* begin to fade in until after the
|
|
102
|
+
* 0 breakpoint, this b value will be
|
|
103
|
+
* negative. This is fine as we never pass
|
|
104
|
+
* b directly into the animation keyframes.
|
|
105
|
+
* b = y - mx
|
|
106
|
+
* Use a known point: (backdropBreakpoint, 0)
|
|
107
|
+
* This is simplified from:
|
|
108
|
+
* b = 0 - (backdropBreakpoint * slope)
|
|
109
|
+
*/
|
|
110
|
+
const b = -(backdropBreakpoint * slope);
|
|
111
|
+
/**
|
|
112
|
+
* Finally, we can now determine the
|
|
113
|
+
* backdrop offset given an arbitrary
|
|
114
|
+
* gesture offset.
|
|
115
|
+
*/
|
|
116
|
+
return x * slope + b;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* The tablet/desktop card modal activates
|
|
120
|
+
* when the window width is >= 768.
|
|
121
|
+
* At that point, the presenting element
|
|
122
|
+
* is not transformed, so we do not need to
|
|
123
|
+
* adjust the status bar color.
|
|
124
|
+
*
|
|
125
|
+
* Note: We check supportsDefaultStatusBarStyle so that
|
|
126
|
+
* Capacitor <= 2 users do not get their status bar
|
|
127
|
+
* stuck in an inconsistent state due to a lack of
|
|
128
|
+
* support for Style.Default.
|
|
129
|
+
*/
|
|
130
|
+
const setCardStatusBarDark = () => {
|
|
131
|
+
// TODO FW-4696 Remove supportDefaultStatusBarStyle in Ionic v8
|
|
132
|
+
if (!win || win.innerWidth >= 768 || !StatusBar.supportsDefaultStatusBarStyle()) {
|
|
133
|
+
return;
|
|
134
|
+
}
|
|
135
|
+
StatusBar.setStyle({ style: Style.Dark });
|
|
136
|
+
};
|
|
137
|
+
const setCardStatusBarDefault = (defaultStyle = Style.Default) => {
|
|
138
|
+
// TODO FW-4696 Remove supportDefaultStatusBarStyle in Ionic v8
|
|
139
|
+
if (!win || win.innerWidth >= 768 || !StatusBar.supportsDefaultStatusBarStyle()) {
|
|
140
|
+
return;
|
|
141
|
+
}
|
|
142
|
+
StatusBar.setStyle({ style: defaultStyle });
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
const handleCanDismiss = async (el, animation) => {
|
|
146
|
+
/**
|
|
147
|
+
* If canDismiss is not a function
|
|
148
|
+
* then we can return early. If canDismiss is `true`,
|
|
149
|
+
* then canDismissBlocksGesture is `false` as canDismiss
|
|
150
|
+
* will never interrupt the gesture. As a result,
|
|
151
|
+
* this code block is never reached. If canDismiss is `false`,
|
|
152
|
+
* then we never dismiss.
|
|
153
|
+
*/
|
|
154
|
+
if (typeof el.canDismiss !== 'function') {
|
|
155
|
+
return;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* Run the canDismiss callback.
|
|
159
|
+
* If the function returns `true`,
|
|
160
|
+
* then we can proceed with dismiss.
|
|
161
|
+
*/
|
|
162
|
+
const shouldDismiss = await el.canDismiss(undefined, GESTURE);
|
|
163
|
+
if (!shouldDismiss) {
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* If canDismiss resolved after the snap
|
|
168
|
+
* back animation finished, we can
|
|
169
|
+
* dismiss immediately.
|
|
170
|
+
*
|
|
171
|
+
* If canDismiss resolved before the snap
|
|
172
|
+
* back animation finished, we need to
|
|
173
|
+
* wait until the snap back animation is
|
|
174
|
+
* done before dismissing.
|
|
175
|
+
*/
|
|
176
|
+
if (animation.isRunning()) {
|
|
177
|
+
animation.onFinish(() => {
|
|
178
|
+
el.dismiss(undefined, 'handler');
|
|
179
|
+
}, { oneTimeCallback: true });
|
|
180
|
+
}
|
|
181
|
+
else {
|
|
182
|
+
el.dismiss(undefined, 'handler');
|
|
183
|
+
}
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* This function lets us simulate a realistic spring-like animation
|
|
187
|
+
* when swiping down on the modal.
|
|
188
|
+
* There are two forces that we need to use to compute the spring physics:
|
|
189
|
+
*
|
|
190
|
+
* 1. Stiffness, k: This is a measure of resistance applied a spring.
|
|
191
|
+
* 2. Dampening, c: This value has the effect of reducing or preventing oscillation.
|
|
192
|
+
*
|
|
193
|
+
* Using these two values, we can calculate the Spring Force and the Dampening Force
|
|
194
|
+
* to compute the total force applied to a spring.
|
|
195
|
+
*
|
|
196
|
+
* Spring Force: This force pulls a spring back into its equilibrium position.
|
|
197
|
+
* Hooke's Law tells us that that spring force (FS) = kX.
|
|
198
|
+
* k is the stiffness of a spring, and X is the displacement of the spring from its
|
|
199
|
+
* equilibrium position. In this case, it is the amount by which the free end
|
|
200
|
+
* of a spring was displaced (stretched/pushed) from its "relaxed" position.
|
|
201
|
+
*
|
|
202
|
+
* Dampening Force: This force slows down motion. Without it, a spring would oscillate forever.
|
|
203
|
+
* The dampening force, FD, can be found via this formula: FD = -cv
|
|
204
|
+
* where c the dampening value and v is velocity.
|
|
205
|
+
*
|
|
206
|
+
* Therefore, the resulting force that is exerted on the block is:
|
|
207
|
+
* F = FS + FD = -kX - cv
|
|
208
|
+
*
|
|
209
|
+
* Newton's 2nd Law tells us that F = ma:
|
|
210
|
+
* ma = -kX - cv.
|
|
211
|
+
*
|
|
212
|
+
* For Ionic's purposes, we can assume that m = 1:
|
|
213
|
+
* a = -kX - cv
|
|
214
|
+
*
|
|
215
|
+
* Imagine a block attached to the end of a spring. At equilibrium
|
|
216
|
+
* the block is at position x = 1.
|
|
217
|
+
* Pressing on the block moves it to position x = 0;
|
|
218
|
+
* So, to calculate the displacement, we need to take the
|
|
219
|
+
* current position and subtract the previous position from it.
|
|
220
|
+
* X = x - x0 = 0 - 1 = -1.
|
|
221
|
+
*
|
|
222
|
+
* For Ionic's purposes, we are only pushing on the spring modal
|
|
223
|
+
* so we have a max position of 1.
|
|
224
|
+
* As a result, we can expand displacement to this formula:
|
|
225
|
+
* X = x - 1
|
|
226
|
+
*
|
|
227
|
+
* a = -k(x - 1) - cv
|
|
228
|
+
*
|
|
229
|
+
* We can represent the motion of something as a function of time: f(t) = x.
|
|
230
|
+
* The derivative of position gives us the velocity: f'(t)
|
|
231
|
+
* The derivative of the velocity gives us the acceleration: f''(t)
|
|
232
|
+
*
|
|
233
|
+
* We can substitute the formula above with these values:
|
|
234
|
+
*
|
|
235
|
+
* f"(t) = -k * (f(t) - 1) - c * f'(t)
|
|
236
|
+
*
|
|
237
|
+
* This is called a differential equation.
|
|
238
|
+
*
|
|
239
|
+
* We know that at t = 0, we are at x = 0 because the modal does not move: f(0) = 0
|
|
240
|
+
* This means our velocity is also zero: f'(0) = 0.
|
|
241
|
+
*
|
|
242
|
+
* We can cheat a bit and plug the formula into Wolfram Alpha.
|
|
243
|
+
* However, we need to pick stiffness and dampening values:
|
|
244
|
+
* k = 0.57
|
|
245
|
+
* c = 15
|
|
246
|
+
*
|
|
247
|
+
* I picked these as they are fairly close to native iOS's spring effect
|
|
248
|
+
* with the modal.
|
|
249
|
+
*
|
|
250
|
+
* What we plug in is this: f(0) = 0; f'(0) = 0; f''(t) = -0.57(f(t) - 1) - 15f'(t)
|
|
251
|
+
*
|
|
252
|
+
* The result is a formula that lets us calculate the acceleration
|
|
253
|
+
* for a given time t.
|
|
254
|
+
* Note: This is the approximate form of the solution. Wolfram Alpha will
|
|
255
|
+
* give you a complex differential equation too.
|
|
256
|
+
*/
|
|
257
|
+
const calculateSpringStep = (t) => {
|
|
258
|
+
return 0.00255275 * 2.71828 ** (-14.9619 * t) - 1.00255 * 2.71828 ** (-0.0380968 * t) + 1;
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
// Defaults for the card swipe animation
|
|
262
|
+
const SwipeToCloseDefaults = {
|
|
263
|
+
MIN_PRESENTING_SCALE: 0.93,
|
|
264
|
+
};
|
|
265
|
+
const createSwipeToCloseGesture = (el, animation, statusBarStyle, onDismiss) => {
|
|
266
|
+
/**
|
|
267
|
+
* The step value at which a card modal
|
|
268
|
+
* is eligible for dismissing via gesture.
|
|
269
|
+
*/
|
|
270
|
+
const DISMISS_THRESHOLD = 0.5;
|
|
271
|
+
const height = el.offsetHeight;
|
|
272
|
+
let isOpen = false;
|
|
273
|
+
let canDismissBlocksGesture = false;
|
|
274
|
+
let contentEl = null;
|
|
275
|
+
let scrollEl = null;
|
|
276
|
+
const canDismissMaxStep = 0.2;
|
|
277
|
+
let initialScrollY = true;
|
|
278
|
+
let lastStep = 0;
|
|
279
|
+
const getScrollY = () => {
|
|
280
|
+
if (contentEl && isIonContent(contentEl)) {
|
|
281
|
+
return contentEl.scrollY;
|
|
282
|
+
/**
|
|
283
|
+
* Custom scroll containers are intended to be
|
|
284
|
+
* used with virtual scrolling, so we assume
|
|
285
|
+
* there is scrolling in this case.
|
|
286
|
+
*/
|
|
287
|
+
}
|
|
288
|
+
else {
|
|
289
|
+
return true;
|
|
290
|
+
}
|
|
291
|
+
};
|
|
292
|
+
const canStart = (detail) => {
|
|
293
|
+
const target = detail.event.target;
|
|
294
|
+
if (target === null || !target.closest) {
|
|
295
|
+
return true;
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* If we are swiping on the content,
|
|
299
|
+
* swiping should only be possible if
|
|
300
|
+
* the content is scrolled all the way
|
|
301
|
+
* to the top so that we do not interfere
|
|
302
|
+
* with scrolling.
|
|
303
|
+
*
|
|
304
|
+
* We cannot assume that the `ion-content`
|
|
305
|
+
* target will remain consistent between
|
|
306
|
+
* swipes. For example, when using
|
|
307
|
+
* ion-nav within a card modal it is
|
|
308
|
+
* possible to swipe, push a view, and then
|
|
309
|
+
* swipe again. The target content will not
|
|
310
|
+
* be the same between swipes.
|
|
311
|
+
*/
|
|
312
|
+
contentEl = findClosestIonContent(target);
|
|
313
|
+
if (contentEl) {
|
|
314
|
+
/**
|
|
315
|
+
* The card should never swipe to close
|
|
316
|
+
* on the content with a refresher.
|
|
317
|
+
* Note: We cannot solve this by making the
|
|
318
|
+
* swipeToClose gesture have a higher priority
|
|
319
|
+
* than the refresher gesture as the iOS native
|
|
320
|
+
* refresh gesture uses a scroll listener in
|
|
321
|
+
* addition to a gesture.
|
|
322
|
+
*
|
|
323
|
+
* Note: Do not use getScrollElement here
|
|
324
|
+
* because we need this to be a synchronous
|
|
325
|
+
* operation, and getScrollElement is
|
|
326
|
+
* asynchronous.
|
|
327
|
+
*/
|
|
328
|
+
if (isIonContent(contentEl)) {
|
|
329
|
+
const root = getElementRoot(contentEl);
|
|
330
|
+
scrollEl = root.querySelector('.inner-scroll');
|
|
331
|
+
}
|
|
332
|
+
else {
|
|
333
|
+
scrollEl = contentEl;
|
|
334
|
+
}
|
|
335
|
+
const hasRefresherInContent = !!contentEl.querySelector('ion-refresher');
|
|
336
|
+
return !hasRefresherInContent && scrollEl.scrollTop === 0;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* Card should be swipeable on all
|
|
340
|
+
* parts of the modal except for the footer.
|
|
341
|
+
*/
|
|
342
|
+
const footer = target.closest('ion-footer');
|
|
343
|
+
if (footer === null) {
|
|
344
|
+
return true;
|
|
345
|
+
}
|
|
346
|
+
return false;
|
|
347
|
+
};
|
|
348
|
+
const onStart = (detail) => {
|
|
349
|
+
const { deltaY } = detail;
|
|
350
|
+
/**
|
|
351
|
+
* Get the initial scrollY value so
|
|
352
|
+
* that we can correctly reset the scrollY
|
|
353
|
+
* prop when the gesture ends.
|
|
354
|
+
*/
|
|
355
|
+
initialScrollY = getScrollY();
|
|
356
|
+
/**
|
|
357
|
+
* If canDismiss is anything other than `true`
|
|
358
|
+
* then users should be able to swipe down
|
|
359
|
+
* until a threshold is hit. At that point,
|
|
360
|
+
* the card modal should not proceed any further.
|
|
361
|
+
* TODO (FW-937)
|
|
362
|
+
* Remove undefined check
|
|
363
|
+
*/
|
|
364
|
+
canDismissBlocksGesture = el.canDismiss !== undefined && el.canDismiss !== true;
|
|
365
|
+
/**
|
|
366
|
+
* If we are pulling down, then
|
|
367
|
+
* it is possible we are pulling on the
|
|
368
|
+
* content. We do not want scrolling to
|
|
369
|
+
* happen at the same time as the gesture.
|
|
370
|
+
*/
|
|
371
|
+
if (deltaY > 0 && contentEl) {
|
|
372
|
+
disableContentScrollY(contentEl);
|
|
373
|
+
}
|
|
374
|
+
animation.progressStart(true, isOpen ? 1 : 0);
|
|
375
|
+
};
|
|
376
|
+
const onMove = (detail) => {
|
|
377
|
+
const { deltaY } = detail;
|
|
378
|
+
/**
|
|
379
|
+
* If we are pulling down, then
|
|
380
|
+
* it is possible we are pulling on the
|
|
381
|
+
* content. We do not want scrolling to
|
|
382
|
+
* happen at the same time as the gesture.
|
|
383
|
+
*/
|
|
384
|
+
if (deltaY > 0 && contentEl) {
|
|
385
|
+
disableContentScrollY(contentEl);
|
|
386
|
+
}
|
|
387
|
+
/**
|
|
388
|
+
* If we are swiping on the content
|
|
389
|
+
* then the swipe gesture should only
|
|
390
|
+
* happen if we are pulling down.
|
|
391
|
+
*
|
|
392
|
+
* However, if we pull up and
|
|
393
|
+
* then down such that the scroll position
|
|
394
|
+
* returns to 0, we should be able to swipe
|
|
395
|
+
* the card.
|
|
396
|
+
*/
|
|
397
|
+
const step = detail.deltaY / height;
|
|
398
|
+
/**
|
|
399
|
+
* Check if user is swiping down and
|
|
400
|
+
* if we have a canDismiss value that
|
|
401
|
+
* should block the gesture from
|
|
402
|
+
* proceeding,
|
|
403
|
+
*/
|
|
404
|
+
const isAttemptingDismissWithCanDismiss = step >= 0 && canDismissBlocksGesture;
|
|
405
|
+
/**
|
|
406
|
+
* If we are blocking the gesture from dismissing,
|
|
407
|
+
* set the max step value so that the sheet cannot be
|
|
408
|
+
* completely hidden.
|
|
409
|
+
*/
|
|
410
|
+
const maxStep = isAttemptingDismissWithCanDismiss ? canDismissMaxStep : 0.9999;
|
|
411
|
+
/**
|
|
412
|
+
* If we are blocking the gesture from
|
|
413
|
+
* dismissing, calculate the spring modifier value
|
|
414
|
+
* this will be added to the starting breakpoint
|
|
415
|
+
* value to give the gesture a spring-like feeling.
|
|
416
|
+
* Note that the starting breakpoint is always 0,
|
|
417
|
+
* so we omit adding 0 to the result.
|
|
418
|
+
*/
|
|
419
|
+
const processedStep = isAttemptingDismissWithCanDismiss ? calculateSpringStep(step / maxStep) : step;
|
|
420
|
+
const clampedStep = clamp(0.0001, processedStep, maxStep);
|
|
421
|
+
animation.progressStep(clampedStep);
|
|
422
|
+
/**
|
|
423
|
+
* When swiping down half way, the status bar style
|
|
424
|
+
* should be reset to its default value.
|
|
425
|
+
*
|
|
426
|
+
* We track lastStep so that we do not fire these
|
|
427
|
+
* functions on every onMove, only when the user has
|
|
428
|
+
* crossed a certain threshold.
|
|
429
|
+
*/
|
|
430
|
+
if (clampedStep >= DISMISS_THRESHOLD && lastStep < DISMISS_THRESHOLD) {
|
|
431
|
+
setCardStatusBarDefault(statusBarStyle);
|
|
432
|
+
/**
|
|
433
|
+
* However, if we swipe back up, then the
|
|
434
|
+
* status bar style should be set to have light
|
|
435
|
+
* text on a dark background.
|
|
436
|
+
*/
|
|
437
|
+
}
|
|
438
|
+
else if (clampedStep < DISMISS_THRESHOLD && lastStep >= DISMISS_THRESHOLD) {
|
|
439
|
+
setCardStatusBarDark();
|
|
440
|
+
}
|
|
441
|
+
lastStep = clampedStep;
|
|
442
|
+
};
|
|
443
|
+
const onEnd = (detail) => {
|
|
444
|
+
const velocity = detail.velocityY;
|
|
445
|
+
const step = detail.deltaY / height;
|
|
446
|
+
const isAttemptingDismissWithCanDismiss = step >= 0 && canDismissBlocksGesture;
|
|
447
|
+
const maxStep = isAttemptingDismissWithCanDismiss ? canDismissMaxStep : 0.9999;
|
|
448
|
+
const processedStep = isAttemptingDismissWithCanDismiss ? calculateSpringStep(step / maxStep) : step;
|
|
449
|
+
const clampedStep = clamp(0.0001, processedStep, maxStep);
|
|
450
|
+
const threshold = (detail.deltaY + velocity * 1000) / height;
|
|
451
|
+
/**
|
|
452
|
+
* If canDismiss blocks
|
|
453
|
+
* the swipe gesture, then the
|
|
454
|
+
* animation can never complete until
|
|
455
|
+
* canDismiss is checked.
|
|
456
|
+
*/
|
|
457
|
+
const shouldComplete = !isAttemptingDismissWithCanDismiss && threshold >= DISMISS_THRESHOLD;
|
|
458
|
+
let newStepValue = shouldComplete ? -0.001 : 0.001;
|
|
459
|
+
if (!shouldComplete) {
|
|
460
|
+
animation.easing('cubic-bezier(1, 0, 0.68, 0.28)');
|
|
461
|
+
newStepValue += getTimeGivenProgression([0, 0], [1, 0], [0.68, 0.28], [1, 1], clampedStep)[0];
|
|
462
|
+
}
|
|
463
|
+
else {
|
|
464
|
+
animation.easing('cubic-bezier(0.32, 0.72, 0, 1)');
|
|
465
|
+
newStepValue += getTimeGivenProgression([0, 0], [0.32, 0.72], [0, 1], [1, 1], clampedStep)[0];
|
|
466
|
+
}
|
|
467
|
+
const duration = shouldComplete
|
|
468
|
+
? computeDuration(step * height, velocity)
|
|
469
|
+
: computeDuration((1 - clampedStep) * height, velocity);
|
|
470
|
+
isOpen = shouldComplete;
|
|
471
|
+
gesture.enable(false);
|
|
472
|
+
if (contentEl) {
|
|
473
|
+
resetContentScrollY(contentEl, initialScrollY);
|
|
474
|
+
}
|
|
475
|
+
animation
|
|
476
|
+
.onFinish(() => {
|
|
477
|
+
if (!shouldComplete) {
|
|
478
|
+
gesture.enable(true);
|
|
479
|
+
}
|
|
480
|
+
})
|
|
481
|
+
.progressEnd(shouldComplete ? 1 : 0, newStepValue, duration);
|
|
482
|
+
/**
|
|
483
|
+
* If the canDismiss value blocked the gesture
|
|
484
|
+
* from proceeding, then we should ignore whatever
|
|
485
|
+
* shouldComplete is. Whether or not the modal
|
|
486
|
+
* animation should complete is now determined by
|
|
487
|
+
* canDismiss.
|
|
488
|
+
*
|
|
489
|
+
* If the user swiped >25% of the way
|
|
490
|
+
* to the max step, then we should
|
|
491
|
+
* check canDismiss. 25% was chosen
|
|
492
|
+
* to avoid accidental swipes.
|
|
493
|
+
*/
|
|
494
|
+
if (isAttemptingDismissWithCanDismiss && clampedStep > maxStep / 4) {
|
|
495
|
+
handleCanDismiss(el, animation);
|
|
496
|
+
}
|
|
497
|
+
else if (shouldComplete) {
|
|
498
|
+
onDismiss();
|
|
499
|
+
}
|
|
500
|
+
};
|
|
501
|
+
const gesture = createGesture({
|
|
502
|
+
el,
|
|
503
|
+
gestureName: 'modalSwipeToClose',
|
|
504
|
+
gesturePriority: 39,
|
|
505
|
+
direction: 'y',
|
|
506
|
+
threshold: 10,
|
|
507
|
+
canStart,
|
|
508
|
+
onStart,
|
|
509
|
+
onMove,
|
|
510
|
+
onEnd,
|
|
511
|
+
});
|
|
512
|
+
return gesture;
|
|
513
|
+
};
|
|
514
|
+
const computeDuration = (remaining, velocity) => {
|
|
515
|
+
return clamp(400, remaining / Math.abs(velocity * 1.1), 500);
|
|
516
|
+
};
|
|
517
|
+
|
|
518
|
+
const createSheetEnterAnimation = (opts) => {
|
|
519
|
+
const { currentBreakpoint, backdropBreakpoint } = opts;
|
|
520
|
+
/**
|
|
521
|
+
* If the backdropBreakpoint is undefined, then the backdrop
|
|
522
|
+
* should always fade in. If the backdropBreakpoint came before the
|
|
523
|
+
* current breakpoint, then the backdrop should be fading in.
|
|
524
|
+
*/
|
|
525
|
+
const shouldShowBackdrop = backdropBreakpoint === undefined || backdropBreakpoint < currentBreakpoint;
|
|
526
|
+
const initialBackdrop = shouldShowBackdrop ? `calc(var(--backdrop-opacity) * ${currentBreakpoint})` : '0';
|
|
527
|
+
const backdropAnimation = createAnimation('backdropAnimation').fromTo('opacity', 0, initialBackdrop);
|
|
528
|
+
if (shouldShowBackdrop) {
|
|
529
|
+
backdropAnimation
|
|
530
|
+
.beforeStyles({
|
|
531
|
+
'pointer-events': 'none',
|
|
532
|
+
})
|
|
533
|
+
.afterClearStyles(['pointer-events']);
|
|
534
|
+
}
|
|
535
|
+
const wrapperAnimation = createAnimation('wrapperAnimation').keyframes([
|
|
536
|
+
{ offset: 0, opacity: 1, transform: 'translateY(100%)' },
|
|
537
|
+
{ offset: 1, opacity: 1, transform: `translateY(${100 - currentBreakpoint * 100}%)` },
|
|
538
|
+
]);
|
|
539
|
+
return { wrapperAnimation, backdropAnimation };
|
|
540
|
+
};
|
|
541
|
+
const createSheetLeaveAnimation = (opts) => {
|
|
542
|
+
const { currentBreakpoint, backdropBreakpoint } = opts;
|
|
543
|
+
/**
|
|
544
|
+
* Backdrop does not always fade in from 0 to 1 if backdropBreakpoint
|
|
545
|
+
* is defined, so we need to account for that offset by figuring out
|
|
546
|
+
* what the current backdrop value should be.
|
|
547
|
+
*/
|
|
548
|
+
const backdropValue = `calc(var(--backdrop-opacity) * ${getBackdropValueForSheet(currentBreakpoint, backdropBreakpoint)})`;
|
|
549
|
+
const defaultBackdrop = [
|
|
550
|
+
{ offset: 0, opacity: backdropValue },
|
|
551
|
+
{ offset: 1, opacity: 0 },
|
|
552
|
+
];
|
|
553
|
+
const customBackdrop = [
|
|
554
|
+
{ offset: 0, opacity: backdropValue },
|
|
555
|
+
{ offset: backdropBreakpoint, opacity: 0 },
|
|
556
|
+
{ offset: 1, opacity: 0 },
|
|
557
|
+
];
|
|
558
|
+
const backdropAnimation = createAnimation('backdropAnimation').keyframes(backdropBreakpoint !== 0 ? customBackdrop : defaultBackdrop);
|
|
559
|
+
const wrapperAnimation = createAnimation('wrapperAnimation').keyframes([
|
|
560
|
+
{ offset: 0, opacity: 1, transform: `translateY(${100 - currentBreakpoint * 100}%)` },
|
|
561
|
+
{ offset: 1, opacity: 1, transform: `translateY(100%)` },
|
|
562
|
+
]);
|
|
563
|
+
return { wrapperAnimation, backdropAnimation };
|
|
564
|
+
};
|
|
565
|
+
|
|
566
|
+
const createEnterAnimation$1 = () => {
|
|
567
|
+
const backdropAnimation = createAnimation()
|
|
568
|
+
.fromTo('opacity', 0.01, 'var(--backdrop-opacity)')
|
|
569
|
+
.beforeStyles({
|
|
570
|
+
'pointer-events': 'none',
|
|
571
|
+
})
|
|
572
|
+
.afterClearStyles(['pointer-events']);
|
|
573
|
+
const wrapperAnimation = createAnimation().fromTo('transform', 'translateY(100vh)', 'translateY(0vh)');
|
|
574
|
+
return { backdropAnimation, wrapperAnimation };
|
|
575
|
+
};
|
|
576
|
+
/**
|
|
577
|
+
* iOS Modal Enter Animation for the Card presentation style
|
|
578
|
+
*/
|
|
579
|
+
const iosEnterAnimation = (baseEl, opts) => {
|
|
580
|
+
const { presentingEl, currentBreakpoint } = opts;
|
|
581
|
+
const root = getElementRoot(baseEl);
|
|
582
|
+
const { wrapperAnimation, backdropAnimation } = currentBreakpoint !== undefined ? createSheetEnterAnimation(opts) : createEnterAnimation$1();
|
|
583
|
+
backdropAnimation.addElement(root.querySelector('ion-backdrop'));
|
|
584
|
+
wrapperAnimation.addElement(root.querySelectorAll('.modal-wrapper, .modal-shadow')).beforeStyles({ opacity: 1 });
|
|
585
|
+
const baseAnimation = createAnimation('entering-base')
|
|
586
|
+
.addElement(baseEl)
|
|
587
|
+
.easing('cubic-bezier(0.32,0.72,0,1)')
|
|
588
|
+
.duration(500)
|
|
589
|
+
.addAnimation(wrapperAnimation);
|
|
590
|
+
if (presentingEl) {
|
|
591
|
+
const isMobile = window.innerWidth < 768;
|
|
592
|
+
const hasCardModal = presentingEl.tagName === 'ION-MODAL' && presentingEl.presentingElement !== undefined;
|
|
593
|
+
const presentingElRoot = getElementRoot(presentingEl);
|
|
594
|
+
const presentingAnimation = createAnimation().beforeStyles({
|
|
595
|
+
transform: 'translateY(0)',
|
|
596
|
+
'transform-origin': 'top center',
|
|
597
|
+
overflow: 'hidden',
|
|
598
|
+
});
|
|
599
|
+
const bodyEl = document.body;
|
|
600
|
+
if (isMobile) {
|
|
601
|
+
/**
|
|
602
|
+
* Fallback for browsers that does not support `max()` (ex: Firefox)
|
|
603
|
+
* No need to worry about statusbar padding since engines like Gecko
|
|
604
|
+
* are not used as the engine for standalone Cordova/Capacitor apps
|
|
605
|
+
*/
|
|
606
|
+
const transformOffset = !CSS.supports('width', 'max(0px, 1px)') ? '30px' : 'max(30px, var(--ion-safe-area-top))';
|
|
607
|
+
const modalTransform = hasCardModal ? '-10px' : transformOffset;
|
|
608
|
+
const toPresentingScale = SwipeToCloseDefaults.MIN_PRESENTING_SCALE;
|
|
609
|
+
const finalTransform = `translateY(${modalTransform}) scale(${toPresentingScale})`;
|
|
610
|
+
presentingAnimation
|
|
611
|
+
.afterStyles({
|
|
612
|
+
transform: finalTransform,
|
|
613
|
+
})
|
|
614
|
+
.beforeAddWrite(() => bodyEl.style.setProperty('background-color', 'black'))
|
|
615
|
+
.addElement(presentingEl)
|
|
616
|
+
.keyframes([
|
|
617
|
+
{ offset: 0, filter: 'contrast(1)', transform: 'translateY(0px) scale(1)', borderRadius: '0px' },
|
|
618
|
+
{ offset: 1, filter: 'contrast(0.85)', transform: finalTransform, borderRadius: '10px 10px 0 0' },
|
|
619
|
+
]);
|
|
620
|
+
baseAnimation.addAnimation(presentingAnimation);
|
|
621
|
+
}
|
|
622
|
+
else {
|
|
623
|
+
baseAnimation.addAnimation(backdropAnimation);
|
|
624
|
+
if (!hasCardModal) {
|
|
625
|
+
wrapperAnimation.fromTo('opacity', '0', '1');
|
|
626
|
+
}
|
|
627
|
+
else {
|
|
628
|
+
const toPresentingScale = hasCardModal ? SwipeToCloseDefaults.MIN_PRESENTING_SCALE : 1;
|
|
629
|
+
const finalTransform = `translateY(-10px) scale(${toPresentingScale})`;
|
|
630
|
+
presentingAnimation
|
|
631
|
+
.afterStyles({
|
|
632
|
+
transform: finalTransform,
|
|
633
|
+
})
|
|
634
|
+
.addElement(presentingElRoot.querySelector('.modal-wrapper'))
|
|
635
|
+
.keyframes([
|
|
636
|
+
{ offset: 0, filter: 'contrast(1)', transform: 'translateY(0) scale(1)' },
|
|
637
|
+
{ offset: 1, filter: 'contrast(0.85)', transform: finalTransform },
|
|
638
|
+
]);
|
|
639
|
+
const shadowAnimation = createAnimation()
|
|
640
|
+
.afterStyles({
|
|
641
|
+
transform: finalTransform,
|
|
642
|
+
})
|
|
643
|
+
.addElement(presentingElRoot.querySelector('.modal-shadow'))
|
|
644
|
+
.keyframes([
|
|
645
|
+
{ offset: 0, opacity: '1', transform: 'translateY(0) scale(1)' },
|
|
646
|
+
{ offset: 1, opacity: '0', transform: finalTransform },
|
|
647
|
+
]);
|
|
648
|
+
baseAnimation.addAnimation([presentingAnimation, shadowAnimation]);
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
else {
|
|
653
|
+
baseAnimation.addAnimation(backdropAnimation);
|
|
654
|
+
}
|
|
655
|
+
return baseAnimation;
|
|
656
|
+
};
|
|
657
|
+
|
|
658
|
+
const createLeaveAnimation$1 = () => {
|
|
659
|
+
const backdropAnimation = createAnimation().fromTo('opacity', 'var(--backdrop-opacity)', 0);
|
|
660
|
+
const wrapperAnimation = createAnimation().fromTo('transform', 'translateY(0vh)', 'translateY(100vh)');
|
|
661
|
+
return { backdropAnimation, wrapperAnimation };
|
|
662
|
+
};
|
|
663
|
+
/**
|
|
664
|
+
* iOS Modal Leave Animation
|
|
665
|
+
*/
|
|
666
|
+
const iosLeaveAnimation = (baseEl, opts, duration = 500) => {
|
|
667
|
+
const { presentingEl, currentBreakpoint } = opts;
|
|
668
|
+
const root = getElementRoot(baseEl);
|
|
669
|
+
const { wrapperAnimation, backdropAnimation } = currentBreakpoint !== undefined ? createSheetLeaveAnimation(opts) : createLeaveAnimation$1();
|
|
670
|
+
backdropAnimation.addElement(root.querySelector('ion-backdrop'));
|
|
671
|
+
wrapperAnimation.addElement(root.querySelectorAll('.modal-wrapper, .modal-shadow')).beforeStyles({ opacity: 1 });
|
|
672
|
+
const baseAnimation = createAnimation('leaving-base')
|
|
673
|
+
.addElement(baseEl)
|
|
674
|
+
.easing('cubic-bezier(0.32,0.72,0,1)')
|
|
675
|
+
.duration(duration)
|
|
676
|
+
.addAnimation(wrapperAnimation);
|
|
677
|
+
if (presentingEl) {
|
|
678
|
+
const isMobile = window.innerWidth < 768;
|
|
679
|
+
const hasCardModal = presentingEl.tagName === 'ION-MODAL' && presentingEl.presentingElement !== undefined;
|
|
680
|
+
const presentingElRoot = getElementRoot(presentingEl);
|
|
681
|
+
const presentingAnimation = createAnimation()
|
|
682
|
+
.beforeClearStyles(['transform'])
|
|
683
|
+
.afterClearStyles(['transform'])
|
|
684
|
+
.onFinish((currentStep) => {
|
|
685
|
+
// only reset background color if this is the last card-style modal
|
|
686
|
+
if (currentStep !== 1) {
|
|
687
|
+
return;
|
|
688
|
+
}
|
|
689
|
+
presentingEl.style.setProperty('overflow', '');
|
|
690
|
+
const numModals = Array.from(bodyEl.querySelectorAll('ion-modal:not(.overlay-hidden)')).filter((m) => m.presentingElement !== undefined).length;
|
|
691
|
+
if (numModals <= 1) {
|
|
692
|
+
bodyEl.style.setProperty('background-color', '');
|
|
693
|
+
}
|
|
694
|
+
});
|
|
695
|
+
const bodyEl = document.body;
|
|
696
|
+
if (isMobile) {
|
|
697
|
+
const transformOffset = !CSS.supports('width', 'max(0px, 1px)') ? '30px' : 'max(30px, var(--ion-safe-area-top))';
|
|
698
|
+
const modalTransform = hasCardModal ? '-10px' : transformOffset;
|
|
699
|
+
const toPresentingScale = SwipeToCloseDefaults.MIN_PRESENTING_SCALE;
|
|
700
|
+
const finalTransform = `translateY(${modalTransform}) scale(${toPresentingScale})`;
|
|
701
|
+
presentingAnimation.addElement(presentingEl).keyframes([
|
|
702
|
+
{ offset: 0, filter: 'contrast(0.85)', transform: finalTransform, borderRadius: '10px 10px 0 0' },
|
|
703
|
+
{ offset: 1, filter: 'contrast(1)', transform: 'translateY(0px) scale(1)', borderRadius: '0px' },
|
|
704
|
+
]);
|
|
705
|
+
baseAnimation.addAnimation(presentingAnimation);
|
|
706
|
+
}
|
|
707
|
+
else {
|
|
708
|
+
baseAnimation.addAnimation(backdropAnimation);
|
|
709
|
+
if (!hasCardModal) {
|
|
710
|
+
wrapperAnimation.fromTo('opacity', '1', '0');
|
|
711
|
+
}
|
|
712
|
+
else {
|
|
713
|
+
const toPresentingScale = hasCardModal ? SwipeToCloseDefaults.MIN_PRESENTING_SCALE : 1;
|
|
714
|
+
const finalTransform = `translateY(-10px) scale(${toPresentingScale})`;
|
|
715
|
+
presentingAnimation
|
|
716
|
+
.addElement(presentingElRoot.querySelector('.modal-wrapper'))
|
|
717
|
+
.afterStyles({
|
|
718
|
+
transform: 'translate3d(0, 0, 0)',
|
|
719
|
+
})
|
|
720
|
+
.keyframes([
|
|
721
|
+
{ offset: 0, filter: 'contrast(0.85)', transform: finalTransform },
|
|
722
|
+
{ offset: 1, filter: 'contrast(1)', transform: 'translateY(0) scale(1)' },
|
|
723
|
+
]);
|
|
724
|
+
const shadowAnimation = createAnimation()
|
|
725
|
+
.addElement(presentingElRoot.querySelector('.modal-shadow'))
|
|
726
|
+
.afterStyles({
|
|
727
|
+
transform: 'translateY(0) scale(1)',
|
|
728
|
+
})
|
|
729
|
+
.keyframes([
|
|
730
|
+
{ offset: 0, opacity: '0', transform: finalTransform },
|
|
731
|
+
{ offset: 1, opacity: '1', transform: 'translateY(0) scale(1)' },
|
|
732
|
+
]);
|
|
733
|
+
baseAnimation.addAnimation([presentingAnimation, shadowAnimation]);
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
else {
|
|
738
|
+
baseAnimation.addAnimation(backdropAnimation);
|
|
739
|
+
}
|
|
740
|
+
return baseAnimation;
|
|
741
|
+
};
|
|
742
|
+
|
|
743
|
+
const createEnterAnimation = () => {
|
|
744
|
+
const backdropAnimation = createAnimation()
|
|
745
|
+
.fromTo('opacity', 0.01, 'var(--backdrop-opacity)')
|
|
746
|
+
.beforeStyles({
|
|
747
|
+
'pointer-events': 'none',
|
|
748
|
+
})
|
|
749
|
+
.afterClearStyles(['pointer-events']);
|
|
750
|
+
const wrapperAnimation = createAnimation().keyframes([
|
|
751
|
+
{ offset: 0, opacity: 0.01, transform: 'translateY(40px)' },
|
|
752
|
+
{ offset: 1, opacity: 1, transform: `translateY(0px)` },
|
|
753
|
+
]);
|
|
754
|
+
return { backdropAnimation, wrapperAnimation };
|
|
755
|
+
};
|
|
756
|
+
/**
|
|
757
|
+
* Md Modal Enter Animation
|
|
758
|
+
*/
|
|
759
|
+
const mdEnterAnimation = (baseEl, opts) => {
|
|
760
|
+
const { currentBreakpoint } = opts;
|
|
761
|
+
const root = getElementRoot(baseEl);
|
|
762
|
+
const { wrapperAnimation, backdropAnimation } = currentBreakpoint !== undefined ? createSheetEnterAnimation(opts) : createEnterAnimation();
|
|
763
|
+
backdropAnimation.addElement(root.querySelector('ion-backdrop'));
|
|
764
|
+
wrapperAnimation.addElement(root.querySelector('.modal-wrapper'));
|
|
765
|
+
return createAnimation()
|
|
766
|
+
.addElement(baseEl)
|
|
767
|
+
.easing('cubic-bezier(0.36,0.66,0.04,1)')
|
|
768
|
+
.duration(280)
|
|
769
|
+
.addAnimation([backdropAnimation, wrapperAnimation]);
|
|
770
|
+
};
|
|
771
|
+
|
|
772
|
+
const createLeaveAnimation = () => {
|
|
773
|
+
const backdropAnimation = createAnimation().fromTo('opacity', 'var(--backdrop-opacity)', 0);
|
|
774
|
+
const wrapperAnimation = createAnimation().keyframes([
|
|
775
|
+
{ offset: 0, opacity: 0.99, transform: `translateY(0px)` },
|
|
776
|
+
{ offset: 1, opacity: 0, transform: 'translateY(40px)' },
|
|
777
|
+
]);
|
|
778
|
+
return { backdropAnimation, wrapperAnimation };
|
|
779
|
+
};
|
|
780
|
+
/**
|
|
781
|
+
* Md Modal Leave Animation
|
|
782
|
+
*/
|
|
783
|
+
const mdLeaveAnimation = (baseEl, opts) => {
|
|
784
|
+
const { currentBreakpoint } = opts;
|
|
785
|
+
const root = getElementRoot(baseEl);
|
|
786
|
+
const { wrapperAnimation, backdropAnimation } = currentBreakpoint !== undefined ? createSheetLeaveAnimation(opts) : createLeaveAnimation();
|
|
787
|
+
backdropAnimation.addElement(root.querySelector('ion-backdrop'));
|
|
788
|
+
wrapperAnimation.addElement(root.querySelector('.modal-wrapper'));
|
|
789
|
+
return createAnimation()
|
|
790
|
+
.easing('cubic-bezier(0.47,0,0.745,0.715)')
|
|
791
|
+
.duration(200)
|
|
792
|
+
.addAnimation([backdropAnimation, wrapperAnimation]);
|
|
793
|
+
};
|
|
794
|
+
|
|
795
|
+
const createSheetGesture = (baseEl, backdropEl, wrapperEl, initialBreakpoint, backdropBreakpoint, animation, breakpoints = [], getCurrentBreakpoint, onDismiss, onBreakpointChange) => {
|
|
796
|
+
// Defaults for the sheet swipe animation
|
|
797
|
+
const defaultBackdrop = [
|
|
798
|
+
{ offset: 0, opacity: 'var(--backdrop-opacity)' },
|
|
799
|
+
{ offset: 1, opacity: 0.01 },
|
|
800
|
+
];
|
|
801
|
+
const customBackdrop = [
|
|
802
|
+
{ offset: 0, opacity: 'var(--backdrop-opacity)' },
|
|
803
|
+
{ offset: 1 - backdropBreakpoint, opacity: 0 },
|
|
804
|
+
{ offset: 1, opacity: 0 },
|
|
805
|
+
];
|
|
806
|
+
const SheetDefaults = {
|
|
807
|
+
WRAPPER_KEYFRAMES: [
|
|
808
|
+
{ offset: 0, transform: 'translateY(0%)' },
|
|
809
|
+
{ offset: 1, transform: 'translateY(100%)' },
|
|
810
|
+
],
|
|
811
|
+
BACKDROP_KEYFRAMES: backdropBreakpoint !== 0 ? customBackdrop : defaultBackdrop,
|
|
812
|
+
};
|
|
813
|
+
const contentEl = baseEl.querySelector('ion-content');
|
|
814
|
+
const height = wrapperEl.clientHeight;
|
|
815
|
+
let currentBreakpoint = initialBreakpoint;
|
|
816
|
+
let offset = 0;
|
|
817
|
+
let canDismissBlocksGesture = false;
|
|
818
|
+
const canDismissMaxStep = 0.95;
|
|
819
|
+
const wrapperAnimation = animation.childAnimations.find((ani) => ani.id === 'wrapperAnimation');
|
|
820
|
+
const backdropAnimation = animation.childAnimations.find((ani) => ani.id === 'backdropAnimation');
|
|
821
|
+
const maxBreakpoint = breakpoints[breakpoints.length - 1];
|
|
822
|
+
const minBreakpoint = breakpoints[0];
|
|
823
|
+
const enableBackdrop = () => {
|
|
824
|
+
baseEl.style.setProperty('pointer-events', 'auto');
|
|
825
|
+
backdropEl.style.setProperty('pointer-events', 'auto');
|
|
826
|
+
/**
|
|
827
|
+
* When the backdrop is enabled, elements such
|
|
828
|
+
* as inputs should not be focusable outside
|
|
829
|
+
* the sheet.
|
|
830
|
+
*/
|
|
831
|
+
baseEl.classList.remove('ion-disable-focus-trap');
|
|
832
|
+
};
|
|
833
|
+
const disableBackdrop = () => {
|
|
834
|
+
baseEl.style.setProperty('pointer-events', 'none');
|
|
835
|
+
backdropEl.style.setProperty('pointer-events', 'none');
|
|
836
|
+
/**
|
|
837
|
+
* When the backdrop is enabled, elements such
|
|
838
|
+
* as inputs should not be focusable outside
|
|
839
|
+
* the sheet.
|
|
840
|
+
* Adding this class disables focus trapping
|
|
841
|
+
* for the sheet temporarily.
|
|
842
|
+
*/
|
|
843
|
+
baseEl.classList.add('ion-disable-focus-trap');
|
|
844
|
+
};
|
|
845
|
+
/**
|
|
846
|
+
* After the entering animation completes,
|
|
847
|
+
* we need to set the animation to go from
|
|
848
|
+
* offset 0 to offset 1 so that users can
|
|
849
|
+
* swipe in any direction. We then set the
|
|
850
|
+
* animation offset to the current breakpoint
|
|
851
|
+
* so there is no flickering.
|
|
852
|
+
*/
|
|
853
|
+
if (wrapperAnimation && backdropAnimation) {
|
|
854
|
+
wrapperAnimation.keyframes([...SheetDefaults.WRAPPER_KEYFRAMES]);
|
|
855
|
+
backdropAnimation.keyframes([...SheetDefaults.BACKDROP_KEYFRAMES]);
|
|
856
|
+
animation.progressStart(true, 1 - currentBreakpoint);
|
|
857
|
+
/**
|
|
858
|
+
* If backdrop is not enabled, then content
|
|
859
|
+
* behind modal should be clickable. To do this, we need
|
|
860
|
+
* to remove pointer-events from ion-modal as a whole.
|
|
861
|
+
* ion-backdrop and .modal-wrapper always have pointer-events: auto
|
|
862
|
+
* applied, so the modal content can still be interacted with.
|
|
863
|
+
*/
|
|
864
|
+
const shouldEnableBackdrop = currentBreakpoint > backdropBreakpoint;
|
|
865
|
+
if (shouldEnableBackdrop) {
|
|
866
|
+
enableBackdrop();
|
|
867
|
+
}
|
|
868
|
+
else {
|
|
869
|
+
disableBackdrop();
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
if (contentEl && currentBreakpoint !== maxBreakpoint) {
|
|
873
|
+
contentEl.scrollY = false;
|
|
874
|
+
}
|
|
875
|
+
const canStart = (detail) => {
|
|
876
|
+
/**
|
|
877
|
+
* If the sheet is fully expanded and
|
|
878
|
+
* the user is swiping on the content,
|
|
879
|
+
* the gesture should not start to
|
|
880
|
+
* allow for scrolling on the content.
|
|
881
|
+
*/
|
|
882
|
+
const content = detail.event.target.closest('ion-content');
|
|
883
|
+
currentBreakpoint = getCurrentBreakpoint();
|
|
884
|
+
if (currentBreakpoint === 1 && content) {
|
|
885
|
+
return false;
|
|
886
|
+
}
|
|
887
|
+
return true;
|
|
888
|
+
};
|
|
889
|
+
const onStart = () => {
|
|
890
|
+
/**
|
|
891
|
+
* If canDismiss is anything other than `true`
|
|
892
|
+
* then users should be able to swipe down
|
|
893
|
+
* until a threshold is hit. At that point,
|
|
894
|
+
* the card modal should not proceed any further.
|
|
895
|
+
*
|
|
896
|
+
* canDismiss is never fired via gesture if there is
|
|
897
|
+
* no 0 breakpoint. However, it can be fired if the user
|
|
898
|
+
* presses Esc or the hardware back button.
|
|
899
|
+
* TODO (FW-937)
|
|
900
|
+
* Remove undefined check
|
|
901
|
+
*/
|
|
902
|
+
canDismissBlocksGesture = baseEl.canDismiss !== undefined && baseEl.canDismiss !== true && minBreakpoint === 0;
|
|
903
|
+
/**
|
|
904
|
+
* If swiping on the content
|
|
905
|
+
* we should disable scrolling otherwise
|
|
906
|
+
* the sheet will expand and the content will scroll.
|
|
907
|
+
*/
|
|
908
|
+
if (contentEl) {
|
|
909
|
+
contentEl.scrollY = false;
|
|
910
|
+
}
|
|
911
|
+
raf(() => {
|
|
912
|
+
/**
|
|
913
|
+
* Dismisses the open keyboard when the sheet drag gesture is started.
|
|
914
|
+
* Sets the focus onto the modal element.
|
|
915
|
+
*/
|
|
916
|
+
baseEl.focus();
|
|
917
|
+
});
|
|
918
|
+
animation.progressStart(true, 1 - currentBreakpoint);
|
|
919
|
+
};
|
|
920
|
+
const onMove = (detail) => {
|
|
921
|
+
/**
|
|
922
|
+
* Given the change in gesture position on the Y axis,
|
|
923
|
+
* compute where the offset of the animation should be
|
|
924
|
+
* relative to where the user dragged.
|
|
925
|
+
*/
|
|
926
|
+
const initialStep = 1 - currentBreakpoint;
|
|
927
|
+
const secondToLastBreakpoint = breakpoints.length > 1 ? 1 - breakpoints[1] : undefined;
|
|
928
|
+
const step = initialStep + detail.deltaY / height;
|
|
929
|
+
const isAttemptingDismissWithCanDismiss = secondToLastBreakpoint !== undefined && step >= secondToLastBreakpoint && canDismissBlocksGesture;
|
|
930
|
+
/**
|
|
931
|
+
* If we are blocking the gesture from dismissing,
|
|
932
|
+
* set the max step value so that the sheet cannot be
|
|
933
|
+
* completely hidden.
|
|
934
|
+
*/
|
|
935
|
+
const maxStep = isAttemptingDismissWithCanDismiss ? canDismissMaxStep : 0.9999;
|
|
936
|
+
/**
|
|
937
|
+
* If we are blocking the gesture from
|
|
938
|
+
* dismissing, calculate the spring modifier value
|
|
939
|
+
* this will be added to the starting breakpoint
|
|
940
|
+
* value to give the gesture a spring-like feeling.
|
|
941
|
+
* Note that when isAttemptingDismissWithCanDismiss is true,
|
|
942
|
+
* the modifier is always added to the breakpoint that
|
|
943
|
+
* appears right after the 0 breakpoint.
|
|
944
|
+
*
|
|
945
|
+
* Note that this modifier is essentially the progression
|
|
946
|
+
* between secondToLastBreakpoint and maxStep which is
|
|
947
|
+
* why we subtract secondToLastBreakpoint. This lets us get
|
|
948
|
+
* the result as a value from 0 to 1.
|
|
949
|
+
*/
|
|
950
|
+
const processedStep = isAttemptingDismissWithCanDismiss && secondToLastBreakpoint !== undefined
|
|
951
|
+
? secondToLastBreakpoint +
|
|
952
|
+
calculateSpringStep((step - secondToLastBreakpoint) / (maxStep - secondToLastBreakpoint))
|
|
953
|
+
: step;
|
|
954
|
+
offset = clamp(0.0001, processedStep, maxStep);
|
|
955
|
+
animation.progressStep(offset);
|
|
956
|
+
};
|
|
957
|
+
const onEnd = (detail) => {
|
|
958
|
+
/**
|
|
959
|
+
* When the gesture releases, we need to determine
|
|
960
|
+
* the closest breakpoint to snap to.
|
|
961
|
+
*/
|
|
962
|
+
const velocity = detail.velocityY;
|
|
963
|
+
const threshold = (detail.deltaY + velocity * 350) / height;
|
|
964
|
+
const diff = currentBreakpoint - threshold;
|
|
965
|
+
const closest = breakpoints.reduce((a, b) => {
|
|
966
|
+
return Math.abs(b - diff) < Math.abs(a - diff) ? b : a;
|
|
967
|
+
});
|
|
968
|
+
moveSheetToBreakpoint({
|
|
969
|
+
breakpoint: closest,
|
|
970
|
+
breakpointOffset: offset,
|
|
971
|
+
canDismiss: canDismissBlocksGesture,
|
|
972
|
+
/**
|
|
973
|
+
* The swipe is user-driven, so we should
|
|
974
|
+
* always animate when the gesture ends.
|
|
975
|
+
*/
|
|
976
|
+
animated: true,
|
|
977
|
+
});
|
|
978
|
+
};
|
|
979
|
+
const moveSheetToBreakpoint = (options) => {
|
|
980
|
+
const { breakpoint, canDismiss, breakpointOffset, animated } = options;
|
|
981
|
+
/**
|
|
982
|
+
* canDismiss should only prevent snapping
|
|
983
|
+
* when users are trying to dismiss. If canDismiss
|
|
984
|
+
* is present but the user is trying to swipe upwards,
|
|
985
|
+
* we should allow that to happen,
|
|
986
|
+
*/
|
|
987
|
+
const shouldPreventDismiss = canDismiss && breakpoint === 0;
|
|
988
|
+
const snapToBreakpoint = shouldPreventDismiss ? currentBreakpoint : breakpoint;
|
|
989
|
+
const shouldRemainOpen = snapToBreakpoint !== 0;
|
|
990
|
+
currentBreakpoint = 0;
|
|
991
|
+
/**
|
|
992
|
+
* Update the animation so that it plays from
|
|
993
|
+
* the last offset to the closest snap point.
|
|
994
|
+
*/
|
|
995
|
+
if (wrapperAnimation && backdropAnimation) {
|
|
996
|
+
wrapperAnimation.keyframes([
|
|
997
|
+
{ offset: 0, transform: `translateY(${breakpointOffset * 100}%)` },
|
|
998
|
+
{ offset: 1, transform: `translateY(${(1 - snapToBreakpoint) * 100}%)` },
|
|
999
|
+
]);
|
|
1000
|
+
backdropAnimation.keyframes([
|
|
1001
|
+
{
|
|
1002
|
+
offset: 0,
|
|
1003
|
+
opacity: `calc(var(--backdrop-opacity) * ${getBackdropValueForSheet(1 - breakpointOffset, backdropBreakpoint)})`,
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
offset: 1,
|
|
1007
|
+
opacity: `calc(var(--backdrop-opacity) * ${getBackdropValueForSheet(snapToBreakpoint, backdropBreakpoint)})`,
|
|
1008
|
+
},
|
|
1009
|
+
]);
|
|
1010
|
+
animation.progressStep(0);
|
|
1011
|
+
}
|
|
1012
|
+
/**
|
|
1013
|
+
* Gesture should remain disabled until the
|
|
1014
|
+
* snapping animation completes.
|
|
1015
|
+
*/
|
|
1016
|
+
gesture.enable(false);
|
|
1017
|
+
if (shouldPreventDismiss) {
|
|
1018
|
+
handleCanDismiss(baseEl, animation);
|
|
1019
|
+
}
|
|
1020
|
+
else if (!shouldRemainOpen) {
|
|
1021
|
+
onDismiss();
|
|
1022
|
+
}
|
|
1023
|
+
return new Promise((resolve) => {
|
|
1024
|
+
animation
|
|
1025
|
+
.onFinish(() => {
|
|
1026
|
+
if (shouldRemainOpen) {
|
|
1027
|
+
/**
|
|
1028
|
+
* Once the snapping animation completes,
|
|
1029
|
+
* we need to reset the animation to go
|
|
1030
|
+
* from 0 to 1 so users can swipe in any direction.
|
|
1031
|
+
* We then set the animation offset to the current
|
|
1032
|
+
* breakpoint so that it starts at the snapped position.
|
|
1033
|
+
*/
|
|
1034
|
+
if (wrapperAnimation && backdropAnimation) {
|
|
1035
|
+
raf(() => {
|
|
1036
|
+
wrapperAnimation.keyframes([...SheetDefaults.WRAPPER_KEYFRAMES]);
|
|
1037
|
+
backdropAnimation.keyframes([...SheetDefaults.BACKDROP_KEYFRAMES]);
|
|
1038
|
+
animation.progressStart(true, 1 - snapToBreakpoint);
|
|
1039
|
+
currentBreakpoint = snapToBreakpoint;
|
|
1040
|
+
onBreakpointChange(currentBreakpoint);
|
|
1041
|
+
/**
|
|
1042
|
+
* If the sheet is fully expanded, we can safely
|
|
1043
|
+
* enable scrolling again.
|
|
1044
|
+
*/
|
|
1045
|
+
if (contentEl && currentBreakpoint === breakpoints[breakpoints.length - 1]) {
|
|
1046
|
+
contentEl.scrollY = true;
|
|
1047
|
+
}
|
|
1048
|
+
/**
|
|
1049
|
+
* Backdrop should become enabled
|
|
1050
|
+
* after the backdropBreakpoint value
|
|
1051
|
+
*/
|
|
1052
|
+
const shouldEnableBackdrop = currentBreakpoint > backdropBreakpoint;
|
|
1053
|
+
if (shouldEnableBackdrop) {
|
|
1054
|
+
enableBackdrop();
|
|
1055
|
+
}
|
|
1056
|
+
else {
|
|
1057
|
+
disableBackdrop();
|
|
1058
|
+
}
|
|
1059
|
+
gesture.enable(true);
|
|
1060
|
+
resolve();
|
|
1061
|
+
});
|
|
1062
|
+
}
|
|
1063
|
+
else {
|
|
1064
|
+
gesture.enable(true);
|
|
1065
|
+
resolve();
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
else {
|
|
1069
|
+
resolve();
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* This must be a one time callback
|
|
1073
|
+
* otherwise a new callback will
|
|
1074
|
+
* be added every time onEnd runs.
|
|
1075
|
+
*/
|
|
1076
|
+
}, { oneTimeCallback: true })
|
|
1077
|
+
.progressEnd(1, 0, animated ? 500 : 0);
|
|
1078
|
+
});
|
|
1079
|
+
};
|
|
1080
|
+
const gesture = createGesture({
|
|
1081
|
+
el: wrapperEl,
|
|
1082
|
+
gestureName: 'modalSheet',
|
|
1083
|
+
gesturePriority: 40,
|
|
1084
|
+
direction: 'y',
|
|
1085
|
+
threshold: 10,
|
|
1086
|
+
canStart,
|
|
1087
|
+
onStart,
|
|
1088
|
+
onMove,
|
|
1089
|
+
onEnd,
|
|
1090
|
+
});
|
|
1091
|
+
return {
|
|
1092
|
+
gesture,
|
|
1093
|
+
moveSheetToBreakpoint,
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1097
|
+
const modalIosCss = ":host{--width:100%;--min-width:auto;--max-width:auto;--height:100%;--min-height:auto;--max-height:auto;--overflow:hidden;--border-radius:0;--border-width:0;--border-style:none;--border-color:transparent;--background:var(--ion-background-color, #fff);--box-shadow:none;--backdrop-opacity:0;left:0;right:0;top:0;bottom:0;display:-ms-flexbox;display:flex;position:absolute;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;outline:none;color:var(--ion-text-color, #000);contain:strict}.modal-wrapper,ion-backdrop{pointer-events:auto}:host(.overlay-hidden){display:none}.modal-wrapper,.modal-shadow{border-radius:var(--border-radius);width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);-webkit-box-shadow:var(--box-shadow);box-shadow:var(--box-shadow);overflow:var(--overflow);z-index:10}.modal-shadow{position:absolute;background:transparent}@media only screen and (min-width: 768px) and (min-height: 600px){:host{--width:600px;--height:500px;--ion-safe-area-top:0px;--ion-safe-area-bottom:0px;--ion-safe-area-right:0px;--ion-safe-area-left:0px}}@media only screen and (min-width: 768px) and (min-height: 768px){:host{--width:600px;--height:600px}}.modal-handle{left:0px;right:0px;top:5px;border-radius:8px;-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;position:absolute;width:36px;height:5px;-webkit-transform:translateZ(0);transform:translateZ(0);border:0;background:var(--ion-color-step-350, #c0c0be);cursor:pointer;z-index:11}.modal-handle::before{-webkit-padding-start:4px;padding-inline-start:4px;-webkit-padding-end:4px;padding-inline-end:4px;padding-top:4px;padding-bottom:4px;position:absolute;width:36px;height:5px;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);content:\"\"}:host(.modal-sheet){--height:calc(100% - (var(--ion-safe-area-top) + 10px))}:host(.modal-sheet) .modal-wrapper,:host(.modal-sheet) .modal-shadow{position:absolute;bottom:0}:host{--backdrop-opacity:var(--ion-backdrop-opacity, 0.4)}:host(.modal-card),:host(.modal-sheet){--border-radius:10px}@media only screen and (min-width: 768px) and (min-height: 600px){:host{--border-radius:10px}}.modal-wrapper{-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0)}@media screen and (max-width: 767px){@supports (width: max(0px, 1px)){:host(.modal-card){--height:calc(100% - max(30px, var(--ion-safe-area-top)) - 10px)}}@supports not (width: max(0px, 1px)){:host(.modal-card){--height:calc(100% - 40px)}}:host(.modal-card) .modal-wrapper{border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl]):host(.modal-card) .modal-wrapper,:host-context([dir=rtl]).modal-card .modal-wrapper{border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}@supports selector(:dir(rtl)){:host(.modal-card) .modal-wrapper:dir(rtl){border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}}:host(.modal-card){--backdrop-opacity:0;--width:100%;-ms-flex-align:end;align-items:flex-end}:host(.modal-card) .modal-shadow{display:none}:host(.modal-card) ion-backdrop{pointer-events:none}}@media screen and (min-width: 768px){:host(.modal-card){--width:calc(100% - 120px);--height:calc(100% - (120px + var(--ion-safe-area-top) + var(--ion-safe-area-bottom)));--max-width:720px;--max-height:1000px;--backdrop-opacity:0;--box-shadow:0px 0px 30px 10px rgba(0, 0, 0, 0.1);-webkit-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out}:host(.modal-card) .modal-wrapper{-webkit-box-shadow:none;box-shadow:none}:host(.modal-card) .modal-shadow{-webkit-box-shadow:var(--box-shadow);box-shadow:var(--box-shadow)}}:host(.modal-sheet) .modal-wrapper{border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}:host-context([dir=rtl]):host(.modal-sheet) .modal-wrapper,:host-context([dir=rtl]).modal-sheet .modal-wrapper{border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}@supports selector(:dir(rtl)){:host(.modal-sheet) .modal-wrapper:dir(rtl){border-top-left-radius:var(--border-radius);border-top-right-radius:var(--border-radius);border-bottom-right-radius:0;border-bottom-left-radius:0}}";
|
|
1098
|
+
|
|
1099
|
+
const modalMdCss = ":host{--width:100%;--min-width:auto;--max-width:auto;--height:100%;--min-height:auto;--max-height:auto;--overflow:hidden;--border-radius:0;--border-width:0;--border-style:none;--border-color:transparent;--background:var(--ion-background-color, #fff);--box-shadow:none;--backdrop-opacity:0;left:0;right:0;top:0;bottom:0;display:-ms-flexbox;display:flex;position:absolute;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;outline:none;color:var(--ion-text-color, #000);contain:strict}.modal-wrapper,ion-backdrop{pointer-events:auto}:host(.overlay-hidden){display:none}.modal-wrapper,.modal-shadow{border-radius:var(--border-radius);width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);-webkit-box-shadow:var(--box-shadow);box-shadow:var(--box-shadow);overflow:var(--overflow);z-index:10}.modal-shadow{position:absolute;background:transparent}@media only screen and (min-width: 768px) and (min-height: 600px){:host{--width:600px;--height:500px;--ion-safe-area-top:0px;--ion-safe-area-bottom:0px;--ion-safe-area-right:0px;--ion-safe-area-left:0px}}@media only screen and (min-width: 768px) and (min-height: 768px){:host{--width:600px;--height:600px}}.modal-handle{left:0px;right:0px;top:5px;border-radius:8px;-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;position:absolute;width:36px;height:5px;-webkit-transform:translateZ(0);transform:translateZ(0);border:0;background:var(--ion-color-step-350, #c0c0be);cursor:pointer;z-index:11}.modal-handle::before{-webkit-padding-start:4px;padding-inline-start:4px;-webkit-padding-end:4px;padding-inline-end:4px;padding-top:4px;padding-bottom:4px;position:absolute;width:36px;height:5px;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);content:\"\"}:host(.modal-sheet){--height:calc(100% - (var(--ion-safe-area-top) + 10px))}:host(.modal-sheet) .modal-wrapper,:host(.modal-sheet) .modal-shadow{position:absolute;bottom:0}:host{--backdrop-opacity:var(--ion-backdrop-opacity, 0.32)}@media only screen and (min-width: 768px) and (min-height: 600px){:host{--border-radius:2px;--box-shadow:0 28px 48px rgba(0, 0, 0, 0.4)}}.modal-wrapper{-webkit-transform:translate3d(0, 40px, 0);transform:translate3d(0, 40px, 0);opacity:0.01}";
|
|
1100
|
+
|
|
1101
|
+
const Modal = /*@__PURE__*/ proxyCustomElement(class Modal extends HTMLElement {
|
|
1102
|
+
constructor() {
|
|
1103
|
+
super();
|
|
1104
|
+
this.__registerHost();
|
|
1105
|
+
this.__attachShadow();
|
|
1106
|
+
this.didPresent = createEvent(this, "ionModalDidPresent", 7);
|
|
1107
|
+
this.willPresent = createEvent(this, "ionModalWillPresent", 7);
|
|
1108
|
+
this.willDismiss = createEvent(this, "ionModalWillDismiss", 7);
|
|
1109
|
+
this.didDismiss = createEvent(this, "ionModalDidDismiss", 7);
|
|
1110
|
+
this.ionBreakpointDidChange = createEvent(this, "ionBreakpointDidChange", 7);
|
|
1111
|
+
this.didPresentShorthand = createEvent(this, "didPresent", 7);
|
|
1112
|
+
this.willPresentShorthand = createEvent(this, "willPresent", 7);
|
|
1113
|
+
this.willDismissShorthand = createEvent(this, "willDismiss", 7);
|
|
1114
|
+
this.didDismissShorthand = createEvent(this, "didDismiss", 7);
|
|
1115
|
+
this.ionMount = createEvent(this, "ionMount", 7);
|
|
1116
|
+
this.triggerController = createTriggerController();
|
|
1117
|
+
this.coreDelegate = CoreDelegate();
|
|
1118
|
+
this.isSheetModal = false;
|
|
1119
|
+
this.inheritedAttributes = {};
|
|
1120
|
+
this.inline = false;
|
|
1121
|
+
// Whether or not modal is being dismissed via gesture
|
|
1122
|
+
this.gestureAnimationDismissing = false;
|
|
1123
|
+
this.onHandleClick = () => {
|
|
1124
|
+
const { sheetTransition, handleBehavior } = this;
|
|
1125
|
+
if (handleBehavior !== 'cycle' || sheetTransition !== undefined) {
|
|
1126
|
+
/**
|
|
1127
|
+
* The sheet modal should not advance to the next breakpoint
|
|
1128
|
+
* if the handle behavior is not `cycle` or if the handle
|
|
1129
|
+
* is clicked while the sheet is moving to a breakpoint.
|
|
1130
|
+
*/
|
|
1131
|
+
return;
|
|
1132
|
+
}
|
|
1133
|
+
this.moveToNextBreakpoint();
|
|
1134
|
+
};
|
|
1135
|
+
this.onBackdropTap = () => {
|
|
1136
|
+
const { sheetTransition } = this;
|
|
1137
|
+
if (sheetTransition !== undefined) {
|
|
1138
|
+
/**
|
|
1139
|
+
* When the handle is double clicked at the largest breakpoint,
|
|
1140
|
+
* it will start to move to the first breakpoint. While transitioning,
|
|
1141
|
+
* the backdrop will often receive the second click. We prevent the
|
|
1142
|
+
* backdrop from dismissing the modal while moving between breakpoints.
|
|
1143
|
+
*/
|
|
1144
|
+
return;
|
|
1145
|
+
}
|
|
1146
|
+
this.dismiss(undefined, BACKDROP);
|
|
1147
|
+
};
|
|
1148
|
+
this.onLifecycle = (modalEvent) => {
|
|
1149
|
+
const el = this.usersElement;
|
|
1150
|
+
const name = LIFECYCLE_MAP[modalEvent.type];
|
|
1151
|
+
if (el && name) {
|
|
1152
|
+
const ev = new CustomEvent(name, {
|
|
1153
|
+
bubbles: false,
|
|
1154
|
+
cancelable: false,
|
|
1155
|
+
detail: modalEvent.detail,
|
|
1156
|
+
});
|
|
1157
|
+
el.dispatchEvent(ev);
|
|
1158
|
+
}
|
|
1159
|
+
};
|
|
1160
|
+
this.presented = false;
|
|
1161
|
+
this.hasController = false;
|
|
1162
|
+
this.overlayIndex = undefined;
|
|
1163
|
+
this.delegate = undefined;
|
|
1164
|
+
this.keyboardClose = true;
|
|
1165
|
+
this.enterAnimation = undefined;
|
|
1166
|
+
this.leaveAnimation = undefined;
|
|
1167
|
+
this.breakpoints = undefined;
|
|
1168
|
+
this.initialBreakpoint = undefined;
|
|
1169
|
+
this.backdropBreakpoint = 0;
|
|
1170
|
+
this.handle = undefined;
|
|
1171
|
+
this.handleBehavior = 'none';
|
|
1172
|
+
this.component = undefined;
|
|
1173
|
+
this.componentProps = undefined;
|
|
1174
|
+
this.cssClass = undefined;
|
|
1175
|
+
this.backdropDismiss = true;
|
|
1176
|
+
this.showBackdrop = true;
|
|
1177
|
+
this.animated = true;
|
|
1178
|
+
this.presentingElement = undefined;
|
|
1179
|
+
this.htmlAttributes = undefined;
|
|
1180
|
+
this.isOpen = false;
|
|
1181
|
+
this.trigger = undefined;
|
|
1182
|
+
this.keepContentsMounted = false;
|
|
1183
|
+
this.canDismiss = true;
|
|
1184
|
+
}
|
|
1185
|
+
onIsOpenChange(newValue, oldValue) {
|
|
1186
|
+
if (newValue === true && oldValue === false) {
|
|
1187
|
+
this.present();
|
|
1188
|
+
}
|
|
1189
|
+
else if (newValue === false && oldValue === true) {
|
|
1190
|
+
this.dismiss();
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1193
|
+
triggerChanged() {
|
|
1194
|
+
const { trigger, el, triggerController } = this;
|
|
1195
|
+
if (trigger) {
|
|
1196
|
+
triggerController.addClickListener(el, trigger);
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
breakpointsChanged(breakpoints) {
|
|
1200
|
+
if (breakpoints !== undefined) {
|
|
1201
|
+
this.sortedBreakpoints = breakpoints.sort((a, b) => a - b);
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
connectedCallback() {
|
|
1205
|
+
const { el } = this;
|
|
1206
|
+
prepareOverlay(el);
|
|
1207
|
+
this.triggerChanged();
|
|
1208
|
+
}
|
|
1209
|
+
disconnectedCallback() {
|
|
1210
|
+
this.triggerController.removeClickListener();
|
|
1211
|
+
}
|
|
1212
|
+
componentWillLoad() {
|
|
1213
|
+
const { breakpoints, initialBreakpoint, el } = this;
|
|
1214
|
+
const isSheetModal = (this.isSheetModal = breakpoints !== undefined && initialBreakpoint !== undefined);
|
|
1215
|
+
this.inheritedAttributes = inheritAttributes(el, ['aria-label', 'role']);
|
|
1216
|
+
if (isSheetModal) {
|
|
1217
|
+
this.currentBreakpoint = this.initialBreakpoint;
|
|
1218
|
+
}
|
|
1219
|
+
if (breakpoints !== undefined && initialBreakpoint !== undefined && !breakpoints.includes(initialBreakpoint)) {
|
|
1220
|
+
printIonWarning('Your breakpoints array must include the initialBreakpoint value.');
|
|
1221
|
+
}
|
|
1222
|
+
setOverlayId(el);
|
|
1223
|
+
}
|
|
1224
|
+
componentDidLoad() {
|
|
1225
|
+
/**
|
|
1226
|
+
* If modal was rendered with isOpen="true"
|
|
1227
|
+
* then we should open modal immediately.
|
|
1228
|
+
*/
|
|
1229
|
+
if (this.isOpen === true) {
|
|
1230
|
+
raf(() => this.present());
|
|
1231
|
+
}
|
|
1232
|
+
this.breakpointsChanged(this.breakpoints);
|
|
1233
|
+
}
|
|
1234
|
+
/**
|
|
1235
|
+
* Determines whether or not an overlay
|
|
1236
|
+
* is being used inline or via a controller/JS
|
|
1237
|
+
* and returns the correct delegate.
|
|
1238
|
+
* By default, subsequent calls to getDelegate
|
|
1239
|
+
* will use a cached version of the delegate.
|
|
1240
|
+
* This is useful for calling dismiss after
|
|
1241
|
+
* present so that the correct delegate is given.
|
|
1242
|
+
*/
|
|
1243
|
+
getDelegate(force = false) {
|
|
1244
|
+
if (this.workingDelegate && !force) {
|
|
1245
|
+
return {
|
|
1246
|
+
delegate: this.workingDelegate,
|
|
1247
|
+
inline: this.inline,
|
|
1248
|
+
};
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
* If using overlay inline
|
|
1252
|
+
* we potentially need to use the coreDelegate
|
|
1253
|
+
* so that this works in vanilla JS apps.
|
|
1254
|
+
* If a developer has presented this component
|
|
1255
|
+
* via a controller, then we can assume
|
|
1256
|
+
* the component is already in the
|
|
1257
|
+
* correct place.
|
|
1258
|
+
*/
|
|
1259
|
+
const parentEl = this.el.parentNode;
|
|
1260
|
+
const inline = (this.inline = parentEl !== null && !this.hasController);
|
|
1261
|
+
const delegate = (this.workingDelegate = inline ? this.delegate || this.coreDelegate : this.delegate);
|
|
1262
|
+
return { inline, delegate };
|
|
1263
|
+
}
|
|
1264
|
+
/**
|
|
1265
|
+
* Determines whether or not the
|
|
1266
|
+
* modal is allowed to dismiss based
|
|
1267
|
+
* on the state of the canDismiss prop.
|
|
1268
|
+
*/
|
|
1269
|
+
async checkCanDismiss(data, role) {
|
|
1270
|
+
const { canDismiss } = this;
|
|
1271
|
+
if (typeof canDismiss === 'function') {
|
|
1272
|
+
return canDismiss(data, role);
|
|
1273
|
+
}
|
|
1274
|
+
return canDismiss;
|
|
1275
|
+
}
|
|
1276
|
+
/**
|
|
1277
|
+
* Present the modal overlay after it has been created.
|
|
1278
|
+
*/
|
|
1279
|
+
async present() {
|
|
1280
|
+
if (this.presented) {
|
|
1281
|
+
return;
|
|
1282
|
+
}
|
|
1283
|
+
const { presentingElement, el } = this;
|
|
1284
|
+
/**
|
|
1285
|
+
* When using an inline modal
|
|
1286
|
+
* and dismissing a modal it is possible to
|
|
1287
|
+
* quickly present the modal while it is
|
|
1288
|
+
* dismissing. We need to await any current
|
|
1289
|
+
* transition to allow the dismiss to finish
|
|
1290
|
+
* before presenting again.
|
|
1291
|
+
*/
|
|
1292
|
+
if (this.currentTransition !== undefined) {
|
|
1293
|
+
await this.currentTransition;
|
|
1294
|
+
}
|
|
1295
|
+
/**
|
|
1296
|
+
* If the modal is presented multiple times (inline modals), we
|
|
1297
|
+
* need to reset the current breakpoint to the initial breakpoint.
|
|
1298
|
+
*/
|
|
1299
|
+
this.currentBreakpoint = this.initialBreakpoint;
|
|
1300
|
+
const { inline, delegate } = this.getDelegate(true);
|
|
1301
|
+
this.usersElement = await attachComponent(delegate, el, this.component, ['ion-page'], this.componentProps, inline);
|
|
1302
|
+
this.ionMount.emit();
|
|
1303
|
+
/**
|
|
1304
|
+
* When using the lazy loaded build of Stencil, we need to wait
|
|
1305
|
+
* for every Stencil component instance to be ready before presenting
|
|
1306
|
+
* otherwise there can be a flash of unstyled content. With the
|
|
1307
|
+
* custom elements bundle we need to wait for the JS framework
|
|
1308
|
+
* mount the inner contents of the overlay otherwise WebKit may
|
|
1309
|
+
* get the transition incorrect.
|
|
1310
|
+
*/
|
|
1311
|
+
if (hasLazyBuild(el)) {
|
|
1312
|
+
await deepReady(this.usersElement);
|
|
1313
|
+
/**
|
|
1314
|
+
* If keepContentsMounted="true" then the
|
|
1315
|
+
* JS Framework has already mounted the inner
|
|
1316
|
+
* contents so there is no need to wait.
|
|
1317
|
+
* Otherwise, we need to wait for the JS
|
|
1318
|
+
* Framework to mount the inner contents
|
|
1319
|
+
* of this component.
|
|
1320
|
+
*/
|
|
1321
|
+
}
|
|
1322
|
+
else if (!this.keepContentsMounted) {
|
|
1323
|
+
await waitForMount();
|
|
1324
|
+
}
|
|
1325
|
+
writeTask(() => this.el.classList.add('show-modal'));
|
|
1326
|
+
this.currentTransition = present(this, 'modalEnter', iosEnterAnimation, mdEnterAnimation, {
|
|
1327
|
+
presentingEl: presentingElement,
|
|
1328
|
+
currentBreakpoint: this.initialBreakpoint,
|
|
1329
|
+
backdropBreakpoint: this.backdropBreakpoint,
|
|
1330
|
+
});
|
|
1331
|
+
/* tslint:disable-next-line */
|
|
1332
|
+
if (typeof window !== 'undefined') {
|
|
1333
|
+
/**
|
|
1334
|
+
* This needs to be setup before any
|
|
1335
|
+
* non-transition async work so it can be dereferenced
|
|
1336
|
+
* in the dismiss method. The dismiss method
|
|
1337
|
+
* only waits for the entering transition
|
|
1338
|
+
* to finish. It does not wait for all of the `present`
|
|
1339
|
+
* method to resolve.
|
|
1340
|
+
*/
|
|
1341
|
+
this.keyboardOpenCallback = () => {
|
|
1342
|
+
if (this.gesture) {
|
|
1343
|
+
/**
|
|
1344
|
+
* When the native keyboard is opened and the webview
|
|
1345
|
+
* is resized, the gesture implementation will become unresponsive
|
|
1346
|
+
* and enter a free-scroll mode.
|
|
1347
|
+
*
|
|
1348
|
+
* When the keyboard is opened, we disable the gesture for
|
|
1349
|
+
* a single frame and re-enable once the contents have repositioned
|
|
1350
|
+
* from the keyboard placement.
|
|
1351
|
+
*/
|
|
1352
|
+
this.gesture.enable(false);
|
|
1353
|
+
raf(() => {
|
|
1354
|
+
if (this.gesture) {
|
|
1355
|
+
this.gesture.enable(true);
|
|
1356
|
+
}
|
|
1357
|
+
});
|
|
1358
|
+
}
|
|
1359
|
+
};
|
|
1360
|
+
window.addEventListener(KEYBOARD_DID_OPEN, this.keyboardOpenCallback);
|
|
1361
|
+
}
|
|
1362
|
+
const hasCardModal = presentingElement !== undefined;
|
|
1363
|
+
/**
|
|
1364
|
+
* We need to change the status bar at the
|
|
1365
|
+
* start of the animation so that it completes
|
|
1366
|
+
* by the time the card animation is done.
|
|
1367
|
+
*/
|
|
1368
|
+
if (hasCardModal && getIonMode(this) === 'ios') {
|
|
1369
|
+
// Cache the original status bar color before the modal is presented
|
|
1370
|
+
this.statusBarStyle = await StatusBar.getStyle();
|
|
1371
|
+
setCardStatusBarDark();
|
|
1372
|
+
}
|
|
1373
|
+
await this.currentTransition;
|
|
1374
|
+
if (this.isSheetModal) {
|
|
1375
|
+
this.initSheetGesture();
|
|
1376
|
+
}
|
|
1377
|
+
else if (hasCardModal) {
|
|
1378
|
+
this.initSwipeToClose();
|
|
1379
|
+
}
|
|
1380
|
+
this.currentTransition = undefined;
|
|
1381
|
+
}
|
|
1382
|
+
initSwipeToClose() {
|
|
1383
|
+
var _a;
|
|
1384
|
+
if (getIonMode(this) !== 'ios') {
|
|
1385
|
+
return;
|
|
1386
|
+
}
|
|
1387
|
+
const { el } = this;
|
|
1388
|
+
// All of the elements needed for the swipe gesture
|
|
1389
|
+
// should be in the DOM and referenced by now, except
|
|
1390
|
+
// for the presenting el
|
|
1391
|
+
const animationBuilder = this.leaveAnimation || config.get('modalLeave', iosLeaveAnimation);
|
|
1392
|
+
const ani = (this.animation = animationBuilder(el, { presentingEl: this.presentingElement }));
|
|
1393
|
+
const contentEl = findIonContent(el);
|
|
1394
|
+
if (!contentEl) {
|
|
1395
|
+
printIonContentErrorMsg(el);
|
|
1396
|
+
return;
|
|
1397
|
+
}
|
|
1398
|
+
const statusBarStyle = (_a = this.statusBarStyle) !== null && _a !== void 0 ? _a : Style.Default;
|
|
1399
|
+
this.gesture = createSwipeToCloseGesture(el, ani, statusBarStyle, () => {
|
|
1400
|
+
/**
|
|
1401
|
+
* While the gesture animation is finishing
|
|
1402
|
+
* it is possible for a user to tap the backdrop.
|
|
1403
|
+
* This would result in the dismiss animation
|
|
1404
|
+
* being played again. Typically this is avoided
|
|
1405
|
+
* by setting `presented = false` on the overlay
|
|
1406
|
+
* component; however, we cannot do that here as
|
|
1407
|
+
* that would prevent the element from being
|
|
1408
|
+
* removed from the DOM.
|
|
1409
|
+
*/
|
|
1410
|
+
this.gestureAnimationDismissing = true;
|
|
1411
|
+
this.animation.onFinish(async () => {
|
|
1412
|
+
await this.dismiss(undefined, GESTURE);
|
|
1413
|
+
this.gestureAnimationDismissing = false;
|
|
1414
|
+
});
|
|
1415
|
+
});
|
|
1416
|
+
this.gesture.enable(true);
|
|
1417
|
+
}
|
|
1418
|
+
initSheetGesture() {
|
|
1419
|
+
const { wrapperEl, initialBreakpoint, backdropBreakpoint } = this;
|
|
1420
|
+
if (!wrapperEl || initialBreakpoint === undefined) {
|
|
1421
|
+
return;
|
|
1422
|
+
}
|
|
1423
|
+
const animationBuilder = this.enterAnimation || config.get('modalEnter', iosEnterAnimation);
|
|
1424
|
+
const ani = (this.animation = animationBuilder(this.el, {
|
|
1425
|
+
presentingEl: this.presentingElement,
|
|
1426
|
+
currentBreakpoint: initialBreakpoint,
|
|
1427
|
+
backdropBreakpoint,
|
|
1428
|
+
}));
|
|
1429
|
+
ani.progressStart(true, 1);
|
|
1430
|
+
const { gesture, moveSheetToBreakpoint } = createSheetGesture(this.el, this.backdropEl, wrapperEl, initialBreakpoint, backdropBreakpoint, ani, this.sortedBreakpoints, () => { var _a; return (_a = this.currentBreakpoint) !== null && _a !== void 0 ? _a : 0; }, () => this.sheetOnDismiss(), (breakpoint) => {
|
|
1431
|
+
if (this.currentBreakpoint !== breakpoint) {
|
|
1432
|
+
this.currentBreakpoint = breakpoint;
|
|
1433
|
+
this.ionBreakpointDidChange.emit({ breakpoint });
|
|
1434
|
+
}
|
|
1435
|
+
});
|
|
1436
|
+
this.gesture = gesture;
|
|
1437
|
+
this.moveSheetToBreakpoint = moveSheetToBreakpoint;
|
|
1438
|
+
this.gesture.enable(true);
|
|
1439
|
+
}
|
|
1440
|
+
sheetOnDismiss() {
|
|
1441
|
+
/**
|
|
1442
|
+
* While the gesture animation is finishing
|
|
1443
|
+
* it is possible for a user to tap the backdrop.
|
|
1444
|
+
* This would result in the dismiss animation
|
|
1445
|
+
* being played again. Typically this is avoided
|
|
1446
|
+
* by setting `presented = false` on the overlay
|
|
1447
|
+
* component; however, we cannot do that here as
|
|
1448
|
+
* that would prevent the element from being
|
|
1449
|
+
* removed from the DOM.
|
|
1450
|
+
*/
|
|
1451
|
+
this.gestureAnimationDismissing = true;
|
|
1452
|
+
this.animation.onFinish(async () => {
|
|
1453
|
+
this.currentBreakpoint = 0;
|
|
1454
|
+
this.ionBreakpointDidChange.emit({ breakpoint: this.currentBreakpoint });
|
|
1455
|
+
await this.dismiss(undefined, GESTURE);
|
|
1456
|
+
this.gestureAnimationDismissing = false;
|
|
1457
|
+
});
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* Dismiss the modal overlay after it has been presented.
|
|
1461
|
+
*
|
|
1462
|
+
* @param data Any data to emit in the dismiss events.
|
|
1463
|
+
* @param role The role of the element that is dismissing the modal. For example, 'cancel' or 'backdrop'.
|
|
1464
|
+
*/
|
|
1465
|
+
async dismiss(data, role) {
|
|
1466
|
+
var _a;
|
|
1467
|
+
if (this.gestureAnimationDismissing && role !== GESTURE) {
|
|
1468
|
+
return false;
|
|
1469
|
+
}
|
|
1470
|
+
/**
|
|
1471
|
+
* If a canDismiss handler is responsible
|
|
1472
|
+
* for calling the dismiss method, we should
|
|
1473
|
+
* not run the canDismiss check again.
|
|
1474
|
+
*/
|
|
1475
|
+
if (role !== 'handler' && !(await this.checkCanDismiss(data, role))) {
|
|
1476
|
+
return false;
|
|
1477
|
+
}
|
|
1478
|
+
const { presentingElement } = this;
|
|
1479
|
+
/**
|
|
1480
|
+
* We need to start the status bar change
|
|
1481
|
+
* before the animation so that the change
|
|
1482
|
+
* finishes when the dismiss animation does.
|
|
1483
|
+
*/
|
|
1484
|
+
const hasCardModal = presentingElement !== undefined;
|
|
1485
|
+
if (hasCardModal && getIonMode(this) === 'ios') {
|
|
1486
|
+
setCardStatusBarDefault(this.statusBarStyle);
|
|
1487
|
+
}
|
|
1488
|
+
/* tslint:disable-next-line */
|
|
1489
|
+
if (typeof window !== 'undefined' && this.keyboardOpenCallback) {
|
|
1490
|
+
window.removeEventListener(KEYBOARD_DID_OPEN, this.keyboardOpenCallback);
|
|
1491
|
+
this.keyboardOpenCallback = undefined;
|
|
1492
|
+
}
|
|
1493
|
+
/**
|
|
1494
|
+
* When using an inline modal
|
|
1495
|
+
* and presenting a modal it is possible to
|
|
1496
|
+
* quickly dismiss the modal while it is
|
|
1497
|
+
* presenting. We need to await any current
|
|
1498
|
+
* transition to allow the present to finish
|
|
1499
|
+
* before dismissing again.
|
|
1500
|
+
*/
|
|
1501
|
+
if (this.currentTransition !== undefined) {
|
|
1502
|
+
await this.currentTransition;
|
|
1503
|
+
}
|
|
1504
|
+
const enteringAnimation = activeAnimations.get(this) || [];
|
|
1505
|
+
this.currentTransition = dismiss(this, data, role, 'modalLeave', iosLeaveAnimation, mdLeaveAnimation, {
|
|
1506
|
+
presentingEl: presentingElement,
|
|
1507
|
+
currentBreakpoint: (_a = this.currentBreakpoint) !== null && _a !== void 0 ? _a : this.initialBreakpoint,
|
|
1508
|
+
backdropBreakpoint: this.backdropBreakpoint,
|
|
1509
|
+
});
|
|
1510
|
+
const dismissed = await this.currentTransition;
|
|
1511
|
+
if (dismissed) {
|
|
1512
|
+
const { delegate } = this.getDelegate();
|
|
1513
|
+
await detachComponent(delegate, this.usersElement);
|
|
1514
|
+
writeTask(() => this.el.classList.remove('show-modal'));
|
|
1515
|
+
if (this.animation) {
|
|
1516
|
+
this.animation.destroy();
|
|
1517
|
+
}
|
|
1518
|
+
if (this.gesture) {
|
|
1519
|
+
this.gesture.destroy();
|
|
1520
|
+
}
|
|
1521
|
+
enteringAnimation.forEach((ani) => ani.destroy());
|
|
1522
|
+
}
|
|
1523
|
+
this.currentBreakpoint = undefined;
|
|
1524
|
+
this.currentTransition = undefined;
|
|
1525
|
+
this.animation = undefined;
|
|
1526
|
+
return dismissed;
|
|
1527
|
+
}
|
|
1528
|
+
/**
|
|
1529
|
+
* Returns a promise that resolves when the modal did dismiss.
|
|
1530
|
+
*/
|
|
1531
|
+
onDidDismiss() {
|
|
1532
|
+
return eventMethod(this.el, 'ionModalDidDismiss');
|
|
1533
|
+
}
|
|
1534
|
+
/**
|
|
1535
|
+
* Returns a promise that resolves when the modal will dismiss.
|
|
1536
|
+
*/
|
|
1537
|
+
onWillDismiss() {
|
|
1538
|
+
return eventMethod(this.el, 'ionModalWillDismiss');
|
|
1539
|
+
}
|
|
1540
|
+
/**
|
|
1541
|
+
* Move a sheet style modal to a specific breakpoint. The breakpoint value must
|
|
1542
|
+
* be a value defined in your `breakpoints` array.
|
|
1543
|
+
*/
|
|
1544
|
+
async setCurrentBreakpoint(breakpoint) {
|
|
1545
|
+
if (!this.isSheetModal) {
|
|
1546
|
+
printIonWarning('setCurrentBreakpoint is only supported on sheet modals.');
|
|
1547
|
+
return;
|
|
1548
|
+
}
|
|
1549
|
+
if (!this.breakpoints.includes(breakpoint)) {
|
|
1550
|
+
printIonWarning(`Attempted to set invalid breakpoint value ${breakpoint}. Please double check that the breakpoint value is part of your defined breakpoints.`);
|
|
1551
|
+
return;
|
|
1552
|
+
}
|
|
1553
|
+
const { currentBreakpoint, moveSheetToBreakpoint, canDismiss, breakpoints, animated } = this;
|
|
1554
|
+
if (currentBreakpoint === breakpoint) {
|
|
1555
|
+
return;
|
|
1556
|
+
}
|
|
1557
|
+
if (moveSheetToBreakpoint) {
|
|
1558
|
+
this.sheetTransition = moveSheetToBreakpoint({
|
|
1559
|
+
breakpoint,
|
|
1560
|
+
breakpointOffset: 1 - currentBreakpoint,
|
|
1561
|
+
canDismiss: canDismiss !== undefined && canDismiss !== true && breakpoints[0] === 0,
|
|
1562
|
+
animated,
|
|
1563
|
+
});
|
|
1564
|
+
await this.sheetTransition;
|
|
1565
|
+
this.sheetTransition = undefined;
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1568
|
+
/**
|
|
1569
|
+
* Returns the current breakpoint of a sheet style modal
|
|
1570
|
+
*/
|
|
1571
|
+
async getCurrentBreakpoint() {
|
|
1572
|
+
return this.currentBreakpoint;
|
|
1573
|
+
}
|
|
1574
|
+
async moveToNextBreakpoint() {
|
|
1575
|
+
const { breakpoints, currentBreakpoint } = this;
|
|
1576
|
+
if (!breakpoints || currentBreakpoint == null) {
|
|
1577
|
+
/**
|
|
1578
|
+
* If the modal does not have breakpoints and/or the current
|
|
1579
|
+
* breakpoint is not set, we can't move to the next breakpoint.
|
|
1580
|
+
*/
|
|
1581
|
+
return false;
|
|
1582
|
+
}
|
|
1583
|
+
const allowedBreakpoints = breakpoints.filter((b) => b !== 0);
|
|
1584
|
+
const currentBreakpointIndex = allowedBreakpoints.indexOf(currentBreakpoint);
|
|
1585
|
+
const nextBreakpointIndex = (currentBreakpointIndex + 1) % allowedBreakpoints.length;
|
|
1586
|
+
const nextBreakpoint = allowedBreakpoints[nextBreakpointIndex];
|
|
1587
|
+
/**
|
|
1588
|
+
* Sets the current breakpoint to the next available breakpoint.
|
|
1589
|
+
* If the current breakpoint is the last breakpoint, we set the current
|
|
1590
|
+
* breakpoint to the first non-zero breakpoint to avoid dismissing the sheet.
|
|
1591
|
+
*/
|
|
1592
|
+
await this.setCurrentBreakpoint(nextBreakpoint);
|
|
1593
|
+
return true;
|
|
1594
|
+
}
|
|
1595
|
+
render() {
|
|
1596
|
+
const { handle, isSheetModal, presentingElement, htmlAttributes, handleBehavior, inheritedAttributes } = this;
|
|
1597
|
+
const showHandle = handle !== false && isSheetModal;
|
|
1598
|
+
const mode = getIonMode(this);
|
|
1599
|
+
const isCardModal = presentingElement !== undefined && mode === 'ios';
|
|
1600
|
+
const isHandleCycle = handleBehavior === 'cycle';
|
|
1601
|
+
return (h(Host, Object.assign({ "no-router": true, tabindex: "-1" }, htmlAttributes, { style: {
|
|
1602
|
+
zIndex: `${20000 + this.overlayIndex}`,
|
|
1603
|
+
}, class: Object.assign({ [mode]: true, ['modal-default']: !isCardModal && !isSheetModal, [`modal-card`]: isCardModal, [`modal-sheet`]: isSheetModal, 'overlay-hidden': true }, getClassMap(this.cssClass)), onIonBackdropTap: this.onBackdropTap, onIonModalDidPresent: this.onLifecycle, onIonModalWillPresent: this.onLifecycle, onIonModalWillDismiss: this.onLifecycle, onIonModalDidDismiss: this.onLifecycle }), h("ion-backdrop", { ref: (el) => (this.backdropEl = el), visible: this.showBackdrop, tappable: this.backdropDismiss, part: "backdrop" }), mode === 'ios' && h("div", { class: "modal-shadow" }), h("div", Object.assign({
|
|
1604
|
+
/*
|
|
1605
|
+
role and aria-modal must be used on the
|
|
1606
|
+
same element. They must also be set inside the
|
|
1607
|
+
shadow DOM otherwise ion-button will not be highlighted
|
|
1608
|
+
when using VoiceOver: https://bugs.webkit.org/show_bug.cgi?id=247134
|
|
1609
|
+
*/
|
|
1610
|
+
role: "dialog"
|
|
1611
|
+
}, inheritedAttributes, { "aria-modal": "true", class: "modal-wrapper ion-overlay-wrapper", part: "content", ref: (el) => (this.wrapperEl = el) }), showHandle && (h("button", { class: "modal-handle",
|
|
1612
|
+
// Prevents the handle from receiving keyboard focus when it does not cycle
|
|
1613
|
+
tabIndex: !isHandleCycle ? -1 : 0, "aria-label": "Activate to adjust the size of the dialog overlaying the screen", onClick: isHandleCycle ? this.onHandleClick : undefined, part: "handle" })), h("slot", null))));
|
|
1614
|
+
}
|
|
1615
|
+
get el() { return this; }
|
|
1616
|
+
static get watchers() { return {
|
|
1617
|
+
"isOpen": ["onIsOpenChange"],
|
|
1618
|
+
"trigger": ["triggerChanged"]
|
|
1619
|
+
}; }
|
|
1620
|
+
static get style() { return {
|
|
1621
|
+
ios: modalIosCss,
|
|
1622
|
+
md: modalMdCss
|
|
1623
|
+
}; }
|
|
1624
|
+
}, [33, "ion-modal", {
|
|
1625
|
+
"hasController": [4, "has-controller"],
|
|
1626
|
+
"overlayIndex": [2, "overlay-index"],
|
|
1627
|
+
"delegate": [16],
|
|
1628
|
+
"keyboardClose": [4, "keyboard-close"],
|
|
1629
|
+
"enterAnimation": [16],
|
|
1630
|
+
"leaveAnimation": [16],
|
|
1631
|
+
"breakpoints": [16],
|
|
1632
|
+
"initialBreakpoint": [2, "initial-breakpoint"],
|
|
1633
|
+
"backdropBreakpoint": [2, "backdrop-breakpoint"],
|
|
1634
|
+
"handle": [4],
|
|
1635
|
+
"handleBehavior": [1, "handle-behavior"],
|
|
1636
|
+
"component": [1],
|
|
1637
|
+
"componentProps": [16],
|
|
1638
|
+
"cssClass": [1, "css-class"],
|
|
1639
|
+
"backdropDismiss": [4, "backdrop-dismiss"],
|
|
1640
|
+
"showBackdrop": [4, "show-backdrop"],
|
|
1641
|
+
"animated": [4],
|
|
1642
|
+
"presentingElement": [16],
|
|
1643
|
+
"htmlAttributes": [16],
|
|
1644
|
+
"isOpen": [4, "is-open"],
|
|
1645
|
+
"trigger": [1],
|
|
1646
|
+
"keepContentsMounted": [4, "keep-contents-mounted"],
|
|
1647
|
+
"canDismiss": [4, "can-dismiss"],
|
|
1648
|
+
"presented": [32],
|
|
1649
|
+
"present": [64],
|
|
1650
|
+
"dismiss": [64],
|
|
1651
|
+
"onDidDismiss": [64],
|
|
1652
|
+
"onWillDismiss": [64],
|
|
1653
|
+
"setCurrentBreakpoint": [64],
|
|
1654
|
+
"getCurrentBreakpoint": [64]
|
|
1655
|
+
}]);
|
|
1656
|
+
const LIFECYCLE_MAP = {
|
|
1657
|
+
ionModalDidPresent: 'ionViewDidEnter',
|
|
1658
|
+
ionModalWillPresent: 'ionViewWillEnter',
|
|
1659
|
+
ionModalWillDismiss: 'ionViewWillLeave',
|
|
1660
|
+
ionModalDidDismiss: 'ionViewDidLeave',
|
|
1661
|
+
};
|
|
1662
|
+
function defineCustomElement$1() {
|
|
1663
|
+
if (typeof customElements === "undefined") {
|
|
1664
|
+
return;
|
|
1665
|
+
}
|
|
1666
|
+
const components = ["ion-modal", "ion-backdrop"];
|
|
1667
|
+
components.forEach(tagName => { switch (tagName) {
|
|
1668
|
+
case "ion-modal":
|
|
1669
|
+
if (!customElements.get(tagName)) {
|
|
1670
|
+
customElements.define(tagName, Modal);
|
|
1671
|
+
}
|
|
1672
|
+
break;
|
|
1673
|
+
case "ion-backdrop":
|
|
1674
|
+
if (!customElements.get(tagName)) {
|
|
1675
|
+
defineCustomElement$2();
|
|
1676
|
+
}
|
|
1677
|
+
break;
|
|
1678
|
+
} });
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
const IonModal = Modal;
|
|
1682
|
+
const defineCustomElement = defineCustomElement$1;
|
|
1683
|
+
|
|
1684
|
+
export { IonModal, defineCustomElement };
|