@ionic/core 8.5.2-dev.11743531350.19e040aa → 8.5.2-dev.11743764999.1a665652
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/components/action-sheet.js +13 -8
- package/components/alert.js +15 -10
- package/components/animation.js +1 -1
- package/components/backdrop.js +10 -6
- package/components/button.js +41 -11
- package/components/buttons.js +11 -7
- package/components/capacitor.js +1 -1
- package/components/caret-down.js +6 -0
- package/components/caret-left.js +6 -0
- package/components/caret-right.js +6 -0
- package/components/checkbox.js +30 -12
- package/components/config2.js +79 -0
- package/components/content.js +14 -12
- package/components/data.js +6 -6
- package/components/focus-visible.js +23 -1
- package/components/framework-delegate.js +3 -1
- package/components/header.js +24 -15
- package/components/helpers.js +54 -3
- package/components/index2.js +2 -2
- package/components/index4.js +8 -9
- package/components/index5.js +27 -3
- package/components/index6.js +110 -24
- package/components/index7.js +163 -27
- package/components/input-shims.js +2 -2
- package/components/input.utils.js +1 -2
- package/components/ion-accordion-group.js +25 -6
- package/components/ion-accordion.js +36 -17
- package/components/ion-app.js +14 -77
- package/components/ion-avatar.js +58 -5
- package/components/ion-back-button.js +29 -19
- package/components/ion-badge.js +51 -9
- package/components/ion-breadcrumb.js +45 -11
- package/components/ion-breadcrumbs.js +9 -5
- package/components/ion-card-content.js +11 -7
- package/components/ion-card-header.js +9 -5
- package/components/ion-card-subtitle.js +9 -5
- package/components/ion-card-title.js +9 -5
- package/components/ion-card.js +17 -9
- package/components/ion-chip.js +45 -8
- package/components/ion-col.js +5 -5
- package/components/ion-datetime-button.js +9 -6
- package/components/ion-datetime.js +99 -21
- package/components/ion-divider.d.ts +11 -0
- package/components/ion-divider.js +59 -0
- package/components/ion-fab-button.js +33 -10
- package/components/ion-fab-list.js +5 -5
- package/components/ion-fab.js +6 -6
- package/components/ion-footer.js +18 -12
- package/components/ion-grid.js +5 -5
- package/components/ion-img.js +5 -2
- package/components/ion-infinite-scroll-content.js +13 -8
- package/components/ion-infinite-scroll.js +5 -5
- package/components/ion-input-password-toggle.js +53 -14
- package/components/ion-input.js +118 -20
- package/components/ion-item-divider.js +9 -5
- package/components/ion-item-group.js +9 -5
- package/components/ion-item-option.js +28 -8
- package/components/ion-item-options.js +9 -5
- package/components/ion-item-sliding.js +5 -5
- package/components/ion-loading.js +13 -8
- package/components/ion-menu-button.js +28 -10
- package/components/ion-menu-toggle.js +5 -5
- package/components/ion-menu.js +12 -8
- package/components/ion-nav-link.js +1 -1
- package/components/ion-nav.js +8 -6
- package/components/ion-note.js +9 -5
- package/components/ion-picker-legacy.js +7 -8
- package/components/ion-progress-bar.js +28 -7
- package/components/ion-range.js +15 -28
- package/components/ion-refresher-content.js +28 -9
- package/components/ion-refresher.js +11 -7
- package/components/ion-reorder-group.js +5 -5
- package/components/ion-reorder.js +31 -5
- package/components/ion-router-link.js +6 -6
- package/components/ion-router-outlet.js +4 -3
- package/components/ion-row.js +5 -2
- package/components/ion-searchbar.js +141 -18
- package/components/ion-segment-button.js +60 -25
- package/components/ion-segment-content.js +2 -2
- package/components/ion-segment-view.js +6 -2
- package/components/ion-segment.js +11 -7
- package/components/ion-select-option.js +5 -2
- package/components/ion-select.js +120 -33
- package/components/ion-skeleton-text.js +6 -5
- package/components/ion-split-pane.js +12 -8
- package/components/ion-tab-bar.js +31 -8
- package/components/ion-tab-button.js +28 -7
- package/components/ion-tab.js +2 -2
- package/components/ion-tabs.js +2 -2
- package/components/ion-text.js +5 -5
- package/components/ion-textarea.js +48 -11
- package/components/ion-thumbnail.js +5 -2
- package/components/ion-toast.js +30 -11
- package/components/ion-toggle.js +77 -18
- package/components/ionic-global.js +378 -82
- package/components/ios.transition.js +1 -0
- package/components/item.js +41 -11
- package/components/keyboard-controller.js +4 -2
- package/components/label.js +9 -5
- package/components/list-header.js +9 -5
- package/components/list.js +29 -6
- package/components/list2.js +6 -0
- package/components/modal.js +51 -21
- package/components/notch-controller.js +1 -1
- package/components/overlays.js +4 -5
- package/components/picker-column-option.js +9 -5
- package/components/picker-column.js +7 -8
- package/components/picker-column2.js +4 -4
- package/components/picker.js +8 -4
- package/components/popover.js +11 -8
- package/components/radio-group.js +11 -5
- package/components/radio.js +12 -8
- package/components/ripple-effect.js +18 -8
- package/components/select-modal.js +3 -3
- package/components/select-popover.js +9 -2
- package/components/spinner.js +36 -9
- package/components/status-tap.js +1 -1
- package/components/title.js +11 -7
- package/components/toolbar.js +11 -7
- package/components/x.js +6 -0
- package/css/core.css +1 -1
- package/css/core.css.map +1 -1
- package/css/display.css +1 -1
- package/css/display.css.map +1 -1
- package/css/flex-utils.css +1 -1
- package/css/flex-utils.css.map +1 -1
- package/css/float-elements.css.map +1 -1
- package/css/global.bundle.css.map +1 -1
- package/css/ionic/bundle.ionic.css +1 -0
- package/css/ionic/bundle.ionic.css.map +1 -0
- package/css/ionic/core.ionic.css +1 -0
- package/css/ionic/core.ionic.css.map +1 -0
- package/css/ionic/global.bundle.ionic.css +1 -0
- package/css/ionic/global.bundle.ionic.css.map +1 -0
- package/css/ionic/ionic-swiper.ionic.css +1 -0
- package/css/ionic/ionic-swiper.ionic.css.map +1 -0
- package/css/ionic/link.ionic.css +1 -0
- package/css/ionic/link.ionic.css.map +1 -0
- package/css/ionic/structure.ionic.css +1 -0
- package/css/ionic/structure.ionic.css.map +1 -0
- package/css/ionic/typography.ionic.css +1 -0
- package/css/ionic/typography.ionic.css.map +1 -0
- package/css/ionic/utils.bundle.ionic.css +1 -0
- package/css/ionic/utils.bundle.ionic.css.map +1 -0
- package/css/ionic-swiper.css +1 -1
- package/css/ionic-swiper.css.map +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/normalize.css.map +1 -1
- package/css/padding.css.map +1 -1
- package/css/palettes/dark.always.css.map +1 -1
- package/css/palettes/dark.class.css.map +1 -1
- package/css/palettes/dark.system.css.map +1 -1
- package/css/palettes/high-contrast-dark.always.css.map +1 -1
- package/css/palettes/high-contrast-dark.class.css.map +1 -1
- package/css/palettes/high-contrast-dark.system.css.map +1 -1
- package/css/palettes/high-contrast.always.css.map +1 -1
- package/css/palettes/high-contrast.class.css.map +1 -1
- package/css/palettes/high-contrast.system.css.map +1 -1
- package/css/structure.css.map +1 -1
- package/css/text-alignment.css.map +1 -1
- package/css/text-transformation.css.map +1 -1
- package/css/typography.css.map +1 -1
- package/css/utils.bundle.css +1 -1
- package/css/utils.bundle.css.map +1 -1
- package/dist/cjs/{animation-b4fdf128.js → animation-124b7017.js} +2 -2
- package/dist/cjs/{app-globals-dd592863.js → app-globals-04316582.js} +1 -1
- package/dist/cjs/{button-active-43e2b419.js → button-active-6c0ef0f0.js} +1 -1
- package/dist/cjs/{capacitor-c04564bf.js → capacitor-ec2a454d.js} +3 -3
- package/dist/cjs/caret-down-3c215cff.js +8 -0
- package/dist/cjs/caret-left-2bb66970.js +8 -0
- package/dist/cjs/caret-right-88e03970.js +8 -0
- package/dist/cjs/config-aff4ff52.js +84 -0
- package/dist/cjs/{data-27cc2c9c.js → data-ae8423e6.js} +8 -8
- package/dist/{esm/focus-visible-dd40d69f.js → cjs/focus-visible-fe3acfb5.js} +27 -1
- package/dist/cjs/{framework-delegate-50a86d56.js → framework-delegate-4de32fdc.js} +4 -2
- package/dist/cjs/{haptic-f6b37aa3.js → haptic-f262299e.js} +1 -1
- package/dist/cjs/{helpers-3a248559.js → helpers-4211d834.js} +54 -2
- package/dist/cjs/{index-e630fd95.js → index-042a8f38.js} +12 -12
- package/dist/cjs/{index-e36bd277.js → index-3d31ef2d.js} +10 -7
- package/dist/cjs/{index-4b70187a.js → index-943c0438.js} +14 -15
- package/dist/cjs/{index-509ca0d3.js → index-f835dc22.js} +3 -3
- package/dist/cjs/index.cjs.js +11 -12
- package/dist/cjs/{input-shims-22a9973f.js → input-shims-c93f3c7f.js} +18 -18
- package/dist/cjs/{input.utils-e82b8ed0.js → input.utils-00741e7b.js} +4 -5
- package/dist/cjs/ion-accordion_2.cjs.entry.js +62 -24
- package/dist/cjs/ion-action-sheet.cjs.entry.js +22 -18
- package/dist/cjs/ion-alert.cjs.entry.js +26 -23
- package/dist/cjs/ion-app_8.cjs.entry.js +113 -152
- package/dist/cjs/ion-avatar_3.cjs.entry.js +103 -11
- package/dist/cjs/ion-back-button.cjs.entry.js +32 -21
- package/dist/cjs/ion-backdrop.cjs.entry.js +11 -6
- package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +54 -15
- package/dist/cjs/ion-button_2.cjs.entry.js +47 -15
- package/dist/cjs/ion-card_5.cjs.entry.js +53 -28
- package/dist/cjs/ion-checkbox.cjs.entry.js +31 -13
- package/dist/cjs/ion-chip.cjs.entry.js +43 -7
- package/dist/cjs/ion-col_3.cjs.entry.js +14 -10
- package/dist/cjs/ion-datetime-button.cjs.entry.js +17 -12
- package/dist/cjs/ion-datetime_3.cjs.entry.js +191 -115
- package/dist/cjs/ion-divider.cjs.entry.js +43 -0
- package/dist/cjs/ion-fab_3.cjs.entry.js +43 -19
- package/dist/cjs/ion-img.cjs.entry.js +8 -3
- package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +22 -17
- package/dist/cjs/ion-input-password-toggle.cjs.entry.js +55 -16
- package/dist/cjs/ion-input.cjs.entry.js +119 -23
- package/dist/cjs/ion-item-option_3.cjs.entry.js +41 -17
- package/dist/cjs/ion-item_8.cjs.entry.js +114 -41
- package/dist/cjs/ion-loading.cjs.entry.js +21 -18
- package/dist/cjs/ion-menu_3.cjs.entry.js +49 -29
- package/dist/cjs/ion-modal.cjs.entry.js +99 -70
- package/dist/cjs/ion-nav_2.cjs.entry.js +16 -13
- package/dist/cjs/ion-picker-column-option.cjs.entry.js +12 -6
- package/dist/cjs/ion-picker-column.cjs.entry.js +13 -12
- package/dist/cjs/ion-picker.cjs.entry.js +11 -5
- package/dist/cjs/ion-popover.cjs.entry.js +21 -18
- package/dist/cjs/ion-progress-bar.cjs.entry.js +29 -8
- package/dist/cjs/ion-radio_2.cjs.entry.js +25 -13
- package/dist/cjs/ion-range.cjs.entry.js +23 -34
- package/dist/cjs/ion-refresher_2.cjs.entry.js +45 -23
- package/dist/cjs/ion-reorder_2.cjs.entry.js +38 -13
- package/dist/cjs/ion-ripple-effect.cjs.entry.js +18 -7
- package/dist/cjs/ion-route_4.cjs.entry.js +9 -7
- package/dist/cjs/ion-searchbar.cjs.entry.js +139 -17
- package/dist/cjs/ion-segment-content.cjs.entry.js +2 -2
- package/dist/cjs/ion-segment-view.cjs.entry.js +6 -2
- package/dist/cjs/ion-segment_2.cjs.entry.js +72 -31
- package/dist/cjs/ion-select-modal.cjs.entry.js +9 -10
- package/dist/cjs/ion-select_3.cjs.entry.js +134 -40
- package/dist/cjs/ion-spinner.cjs.entry.js +35 -9
- package/dist/cjs/ion-split-pane.cjs.entry.js +13 -8
- package/dist/cjs/ion-tab-bar_2.cjs.entry.js +61 -20
- package/dist/cjs/ion-tab_2.cjs.entry.js +8 -6
- package/dist/cjs/ion-text.cjs.entry.js +6 -5
- package/dist/cjs/ion-textarea.cjs.entry.js +52 -16
- package/dist/cjs/ion-toast.cjs.entry.js +60 -42
- package/dist/cjs/ion-toggle.cjs.entry.js +81 -22
- package/dist/cjs/ionic-global-5c446a5e.js +531 -0
- package/dist/cjs/ionic.cjs.js +4 -3
- package/dist/cjs/{ios.transition-ae7afca9.js → ios.transition-cdf1959e.js} +7 -6
- package/dist/cjs/{keyboard-0272231f.js → keyboard-924ba9a2.js} +1 -1
- package/dist/cjs/{keyboard-af1bb365.js → keyboard-9cd4a473.js} +5 -3
- package/dist/cjs/{keyboard-controller-c05e747a.js → keyboard-controller-dc7a55c4.js} +11 -9
- package/dist/cjs/list-2930c629.js +8 -0
- package/dist/cjs/loader.cjs.js +4 -3
- package/dist/cjs/{md.transition-26003e25.js → md.transition-6a00a3e7.js} +6 -6
- package/dist/cjs/{notch-controller-ae03a497.js → notch-controller-14681d65.js} +4 -4
- package/dist/cjs/{overlays-a0c6b23f.js → overlays-288b775b.js} +19 -20
- package/dist/cjs/{status-tap-03023755.js → status-tap-a41ad873.js} +5 -4
- package/dist/cjs/{swipe-back-cd0d9f77.js → swipe-back-cf9385d3.js} +3 -1
- package/dist/cjs/x-81a8f51c.js +8 -0
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/accordion/accordion.ionic.css +197 -0
- package/dist/collection/components/accordion/accordion.ios.css +73 -58
- package/dist/collection/components/accordion/accordion.js +37 -21
- package/dist/collection/components/accordion/accordion.md.css +67 -59
- package/dist/collection/components/accordion-group/accordion-group.ionic.css +95 -0
- package/dist/collection/components/accordion-group/accordion-group.ios.css +16 -4
- package/dist/collection/components/accordion-group/accordion-group.js +43 -8
- package/dist/collection/components/accordion-group/accordion-group.md.css +22 -4
- package/dist/collection/components/action-sheet/action-sheet.ios.css +18 -6
- package/dist/collection/components/action-sheet/action-sheet.js +14 -10
- package/dist/collection/components/action-sheet/action-sheet.md.css +17 -5
- package/dist/collection/components/alert/alert.ios.css +19 -1
- package/dist/collection/components/alert/alert.js +15 -12
- package/dist/collection/components/alert/alert.md.css +19 -1
- package/dist/collection/components/app/app.js +22 -80
- package/dist/collection/components/avatar/avatar.ionic.css +374 -0
- package/dist/collection/components/avatar/avatar.ios.css +13 -0
- package/dist/collection/components/avatar/avatar.js +113 -4
- package/dist/collection/components/avatar/avatar.md.css +90 -0
- package/dist/collection/components/back-button/back-button.ios.css +60 -48
- package/dist/collection/components/back-button/back-button.js +27 -19
- package/dist/collection/components/back-button/back-button.md.css +60 -48
- package/dist/collection/components/backdrop/backdrop.ionic.css +150 -0
- package/dist/collection/components/backdrop/backdrop.ios.css +13 -1
- package/dist/collection/components/backdrop/backdrop.js +12 -6
- package/dist/collection/components/backdrop/backdrop.md.css +13 -1
- package/dist/collection/components/badge/badge.ionic.css +356 -0
- package/dist/collection/components/badge/badge.ios.css +164 -4
- package/dist/collection/components/badge/badge.js +98 -9
- package/dist/collection/components/badge/badge.md.css +148 -4
- package/dist/collection/components/breadcrumb/breadcrumb.ios.css +20 -8
- package/dist/collection/components/breadcrumb/breadcrumb.js +43 -11
- package/dist/collection/components/breadcrumb/breadcrumb.md.css +20 -8
- package/dist/collection/components/breadcrumbs/breadcrumbs.ios.css +6 -0
- package/dist/collection/components/breadcrumbs/breadcrumbs.js +11 -9
- package/dist/collection/components/breadcrumbs/breadcrumbs.md.css +6 -0
- package/dist/collection/components/button/button.ionic.css +656 -0
- package/dist/collection/components/button/button.ios.css +182 -37
- package/dist/collection/components/button/button.js +46 -16
- package/dist/collection/components/button/button.md.css +173 -41
- package/dist/collection/components/buttons/buttons.ionic.css +100 -0
- package/dist/collection/components/buttons/buttons.ios.css +59 -7
- package/dist/collection/components/buttons/buttons.js +14 -8
- package/dist/collection/components/buttons/buttons.md.css +55 -3
- package/dist/collection/components/card/card.ionic.css +137 -0
- package/dist/collection/components/card/card.ios.css +65 -14
- package/dist/collection/components/card/card.js +34 -10
- package/dist/collection/components/card/card.md.css +65 -14
- package/dist/collection/components/card-content/card-content.ionic.css +90 -0
- package/dist/collection/components/card-content/card-content.ios.css +16 -1
- package/dist/collection/components/card-content/card-content.js +11 -8
- package/dist/collection/components/card-content/card-content.md.css +16 -1
- package/dist/collection/components/card-header/card-header.ionic.css +87 -0
- package/dist/collection/components/card-header/card-header.ios.css +27 -15
- package/dist/collection/components/card-header/card-header.js +12 -9
- package/dist/collection/components/card-header/card-header.md.css +27 -15
- package/dist/collection/components/card-subtitle/card-subtitle.ionic.css +146 -0
- package/dist/collection/components/card-subtitle/card-subtitle.ios.css +12 -0
- package/dist/collection/components/card-subtitle/card-subtitle.js +11 -8
- package/dist/collection/components/card-subtitle/card-subtitle.md.css +12 -0
- package/dist/collection/components/card-title/card-title.ios.css +73 -0
- package/dist/collection/components/card-title/card-title.js +11 -8
- package/dist/collection/components/card-title/card-title.md.css +73 -0
- package/dist/collection/components/checkbox/checkbox.ionic.css +519 -0
- package/dist/collection/components/checkbox/checkbox.ios.css +179 -119
- package/dist/collection/components/checkbox/checkbox.js +64 -14
- package/dist/collection/components/checkbox/checkbox.md.css +180 -120
- package/dist/collection/components/chip/chip.ionic.css +160 -0
- package/dist/collection/components/chip/chip.ios.css +20 -1
- package/dist/collection/components/chip/chip.js +77 -8
- package/dist/collection/components/chip/chip.md.css +20 -1
- package/dist/collection/components/col/col.css +12 -0
- package/dist/collection/components/col/col.js +9 -5
- package/dist/collection/components/content/content.css +8 -2
- package/dist/collection/components/content/content.js +16 -11
- package/dist/collection/components/datetime/datetime.ionic.css +673 -0
- package/dist/collection/components/datetime/datetime.ios.css +237 -86
- package/dist/collection/components/datetime/datetime.js +98 -20
- package/dist/collection/components/datetime/datetime.md.css +237 -86
- package/dist/collection/components/datetime/utils/data.js +5 -5
- package/dist/collection/components/datetime-button/datetime-button.ios.css +6 -0
- package/dist/collection/components/datetime-button/datetime-button.js +11 -8
- package/dist/collection/components/datetime-button/datetime-button.md.css +6 -0
- package/dist/collection/components/divider/divider.ionic.css +150 -0
- package/dist/collection/components/divider/divider.ios.css +87 -0
- package/dist/collection/components/divider/divider.js +76 -0
- package/dist/collection/components/divider/divider.md.css +87 -0
- package/dist/collection/components/fab/fab.css +25 -1
- package/dist/collection/components/fab/fab.js +9 -5
- package/dist/collection/components/fab-button/fab-button.ios.css +18 -6
- package/dist/collection/components/fab-button/fab-button.js +36 -15
- package/dist/collection/components/fab-button/fab-button.md.css +20 -8
- package/dist/collection/components/fab-list/fab-list.css +12 -0
- package/dist/collection/components/fab-list/fab-list.js +9 -5
- package/dist/collection/components/footer/footer.ios.css +14 -2
- package/dist/collection/components/footer/footer.js +20 -15
- package/dist/collection/components/footer/footer.md.css +12 -0
- package/dist/collection/components/grid/grid.css +12 -0
- package/dist/collection/components/grid/grid.js +9 -5
- package/dist/collection/components/header/header.ionic.css +86 -0
- package/dist/collection/components/header/header.ios.css +25 -10
- package/dist/collection/components/header/header.js +42 -17
- package/dist/collection/components/header/header.md.css +23 -8
- package/dist/collection/components/img/img.js +8 -2
- package/dist/collection/components/infinite-scroll/infinite-scroll.js +8 -4
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.ios.css +12 -0
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +16 -10
- package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.md.css +12 -0
- package/dist/collection/components/input/input.ionic.css +917 -0
- package/dist/collection/components/input/input.ios.css +223 -140
- package/dist/collection/components/input/input.js +144 -30
- package/dist/collection/components/input/input.md.css +245 -142
- package/dist/collection/components/input-password-toggle/input-password-toggle.common.css +61 -0
- package/dist/collection/components/input-password-toggle/input-password-toggle.ionic.css +141 -0
- package/dist/collection/components/input-password-toggle/input-password-toggle.js +48 -12
- package/dist/collection/components/item/item.ionic.css +497 -0
- package/dist/collection/components/item/item.ios.css +109 -69
- package/dist/collection/components/item/item.js +44 -16
- package/dist/collection/components/item/item.md.css +120 -68
- package/dist/collection/components/item-divider/item-divider.ios.css +18 -0
- package/dist/collection/components/item-divider/item-divider.js +11 -8
- package/dist/collection/components/item-divider/item-divider.md.css +18 -0
- package/dist/collection/components/item-group/item-group.ios.css +12 -0
- package/dist/collection/components/item-group/item-group.js +13 -7
- package/dist/collection/components/item-group/item-group.md.css +12 -0
- package/dist/collection/components/item-option/item-option.ionic.css +332 -0
- package/dist/collection/components/item-option/item-option.ios.css +14 -2
- package/dist/collection/components/item-option/item-option.js +43 -8
- package/dist/collection/components/item-option/item-option.md.css +14 -2
- package/dist/collection/components/item-options/item-options.ionic.css +259 -0
- package/dist/collection/components/item-options/item-options.ios.css +18 -0
- package/dist/collection/components/item-options/item-options.js +13 -7
- package/dist/collection/components/item-options/item-options.md.css +18 -0
- package/dist/collection/components/item-sliding/item-sliding.css +6 -0
- package/dist/collection/components/item-sliding/item-sliding.js +8 -4
- package/dist/collection/components/label/label.ios.css +18 -0
- package/dist/collection/components/label/label.js +11 -8
- package/dist/collection/components/label/label.md.css +18 -0
- package/dist/collection/components/list/list.ionic.css +192 -0
- package/dist/collection/components/list/list.ios.css +18 -0
- package/dist/collection/components/list/list.js +47 -9
- package/dist/collection/components/list/list.md.css +20 -2
- package/dist/collection/components/list-header/list-header.ionic.css +236 -0
- package/dist/collection/components/list-header/list-header.ios.css +18 -0
- package/dist/collection/components/list-header/list-header.js +11 -8
- package/dist/collection/components/list-header/list-header.md.css +18 -0
- package/dist/collection/components/loading/loading.ios.css +13 -1
- package/dist/collection/components/loading/loading.js +13 -10
- package/dist/collection/components/loading/loading.md.css +13 -1
- package/dist/collection/components/menu/menu.ios.css +15 -3
- package/dist/collection/components/menu/menu.js +12 -7
- package/dist/collection/components/menu/menu.md.css +15 -3
- package/dist/collection/components/menu-button/menu-button.ionic.css +238 -0
- package/dist/collection/components/menu-button/menu-button.ios.css +48 -14
- package/dist/collection/components/menu-button/menu-button.js +26 -10
- package/dist/collection/components/menu-button/menu-button.md.css +49 -15
- package/dist/collection/components/menu-toggle/menu-toggle.js +8 -5
- package/dist/collection/components/modal/animations/sheet.js +8 -2
- package/dist/collection/components/modal/gestures/sheet.js +10 -6
- package/dist/collection/components/modal/modal.ionic.css +245 -0
- package/dist/collection/components/modal/modal.ios.css +106 -63
- package/dist/collection/components/modal/modal.js +47 -11
- package/dist/collection/components/modal/modal.md.css +106 -63
- package/dist/collection/components/nav/nav.css +7 -1
- package/dist/collection/components/nav/nav.js +11 -5
- package/dist/collection/components/nav-link/nav-link.js +5 -1
- package/dist/collection/components/note/note.ios.css +12 -0
- package/dist/collection/components/note/note.js +11 -8
- package/dist/collection/components/note/note.md.css +12 -0
- package/dist/collection/components/picker/picker.ios.css +15 -3
- package/dist/collection/components/picker/picker.js +8 -5
- package/dist/collection/components/picker/picker.md.css +15 -3
- package/dist/collection/components/picker-column/picker-column.css +9 -2
- package/dist/collection/components/picker-column/picker-column.js +8 -7
- package/dist/collection/components/picker-column-option/picker-column-option.ios.css +6 -0
- package/dist/collection/components/picker-column-option/picker-column-option.js +13 -7
- package/dist/collection/components/picker-column-option/picker-column-option.md.css +6 -0
- package/dist/collection/components/picker-legacy/picker.ios.css +13 -1
- package/dist/collection/components/picker-legacy/picker.js +7 -6
- package/dist/collection/components/picker-legacy/picker.md.css +13 -1
- package/dist/collection/components/picker-legacy-column/picker-column.ios.css +12 -0
- package/dist/collection/components/picker-legacy-column/picker-column.js +4 -4
- package/dist/collection/components/picker-legacy-column/picker-column.md.css +12 -0
- package/dist/collection/components/popover/popover.ios.css +13 -1
- package/dist/collection/components/popover/popover.js +15 -12
- package/dist/collection/components/popover/popover.md.css +13 -1
- package/dist/collection/components/progress-bar/progress-bar.ionic.css +333 -0
- package/dist/collection/components/progress-bar/progress-bar.ios.css +8 -2
- package/dist/collection/components/progress-bar/progress-bar.js +42 -7
- package/dist/collection/components/progress-bar/progress-bar.md.css +8 -2
- package/dist/collection/components/radio/radio.ionic.css +424 -0
- package/dist/collection/components/radio/radio.ios.css +134 -91
- package/dist/collection/components/radio/radio.js +12 -9
- package/dist/collection/components/radio/radio.md.css +134 -91
- package/dist/collection/components/radio-group/radio-group.ionic.css +127 -0
- package/dist/collection/components/radio-group/radio-group.ios.css +42 -18
- package/dist/collection/components/radio-group/radio-group.js +13 -5
- package/dist/collection/components/radio-group/radio-group.md.css +42 -18
- package/dist/collection/components/range/range.ionic.css +555 -0
- package/dist/collection/components/range/range.ios.css +128 -85
- package/dist/collection/components/range/range.js +14 -27
- package/dist/collection/components/range/range.md.css +128 -85
- package/dist/collection/components/refresher/refresher.ios.css +14 -1
- package/dist/collection/components/refresher/refresher.js +11 -8
- package/dist/collection/components/refresher/refresher.md.css +15 -2
- package/dist/collection/components/refresher-content/refresher-content.js +28 -7
- package/dist/collection/components/reorder/reorder.ios.css +6 -0
- package/dist/collection/components/reorder/reorder.js +33 -6
- package/dist/collection/components/reorder/reorder.md.css +6 -0
- package/dist/collection/components/reorder-group/reorder-group.css +6 -0
- package/dist/collection/components/reorder-group/reorder-group.js +8 -4
- package/dist/collection/components/ripple-effect/{ripple-effect.css → ripple-effect.common.css} +7 -1
- package/dist/collection/components/ripple-effect/ripple-effect.ionic.css +154 -0
- package/dist/collection/components/ripple-effect/ripple-effect.js +14 -6
- package/dist/collection/components/route/route.js +4 -0
- package/dist/collection/components/router/router.js +4 -0
- package/dist/collection/components/router-link/router-link.css +8 -2
- package/dist/collection/components/router-link/router-link.js +9 -5
- package/dist/collection/components/router-outlet/router-outlet.css +7 -1
- package/dist/collection/components/router-outlet/router-outlet.js +5 -2
- package/dist/collection/components/row/row.css +12 -0
- package/dist/collection/components/row/row.js +9 -2
- package/dist/collection/components/searchbar/searchbar.ionic.css +628 -0
- package/dist/collection/components/searchbar/searchbar.ios.css +56 -18
- package/dist/collection/components/searchbar/searchbar.js +179 -29
- package/dist/collection/components/searchbar/searchbar.md.css +56 -18
- package/dist/collection/components/segment/segment.ionic.css +117 -0
- package/dist/collection/components/segment/segment.ios.css +45 -2
- package/dist/collection/components/segment/segment.js +11 -8
- package/dist/collection/components/segment/segment.md.css +45 -2
- package/dist/collection/components/segment-button/segment-button.ionic.css +355 -0
- package/dist/collection/components/segment-button/segment-button.ios.css +146 -105
- package/dist/collection/components/segment-button/segment-button.js +60 -26
- package/dist/collection/components/segment-button/segment-button.md.css +148 -107
- package/dist/collection/components/segment-content/segment-content.css +0 -9
- package/dist/collection/components/segment-content/segment-content.js +1 -1
- package/dist/collection/components/segment-view/segment-view.ios.css +6 -0
- package/dist/collection/components/segment-view/segment-view.js +6 -4
- package/dist/collection/components/segment-view/segment-view.md.css +6 -0
- package/dist/collection/components/select/select.ionic.css +829 -0
- package/dist/collection/components/select/select.ios.css +267 -134
- package/dist/collection/components/select/select.js +157 -55
- package/dist/collection/components/select/select.md.css +283 -136
- package/dist/collection/components/select-modal/select-modal.ionic.css +121 -0
- package/dist/collection/components/select-modal/select-modal.ios.css +18 -0
- package/dist/collection/components/select-modal/select-modal.js +3 -3
- package/dist/collection/components/select-modal/select-modal.md.css +7 -3
- package/dist/collection/components/select-option/select-option.js +9 -2
- package/dist/collection/components/select-popover/select-popover.ios.css +18 -0
- package/dist/collection/components/select-popover/select-popover.js +12 -4
- package/dist/collection/components/select-popover/select-popover.md.css +18 -0
- package/dist/collection/components/skeleton-text/skeleton-text.css +6 -0
- package/dist/collection/components/skeleton-text/skeleton-text.js +9 -5
- package/dist/collection/components/spinner/spinner.common.css +199 -0
- package/dist/collection/components/spinner/{spinner.css → spinner.ionic.css} +63 -0
- package/dist/collection/components/spinner/spinner.js +46 -6
- package/dist/collection/components/split-pane/split-pane.ios.css +20 -2
- package/dist/collection/components/split-pane/split-pane.js +14 -8
- package/dist/collection/components/split-pane/split-pane.md.css +20 -2
- package/dist/collection/components/tab/tab.js +6 -2
- package/dist/collection/components/tab-bar/tab-bar.ionic.css +188 -0
- package/dist/collection/components/tab-bar/tab-bar.ios.css +71 -43
- package/dist/collection/components/tab-bar/tab-bar.js +65 -10
- package/dist/collection/components/tab-bar/tab-bar.md.css +71 -43
- package/dist/collection/components/tab-button/tab-button.ionic.css +327 -0
- package/dist/collection/components/tab-button/tab-button.ios.css +166 -90
- package/dist/collection/components/tab-button/tab-button.js +43 -8
- package/dist/collection/components/tab-button/tab-button.md.css +132 -88
- package/dist/collection/components/tabs/tabs.css +7 -1
- package/dist/collection/components/tabs/tabs.js +4 -1
- package/dist/collection/components/text/text.css +6 -0
- package/dist/collection/components/text/text.js +7 -6
- package/dist/collection/components/textarea/textarea.ionic.css +879 -0
- package/dist/collection/components/textarea/textarea.ios.css +205 -96
- package/dist/collection/components/textarea/textarea.js +69 -16
- package/dist/collection/components/textarea/textarea.md.css +218 -97
- package/dist/collection/components/thumbnail/thumbnail.css +6 -0
- package/dist/collection/components/thumbnail/thumbnail.js +9 -2
- package/dist/collection/components/title/title.ionic.css +145 -0
- package/dist/collection/components/title/title.ios.css +32 -4
- package/dist/collection/components/title/title.js +13 -7
- package/dist/collection/components/title/title.md.css +32 -4
- package/dist/collection/components/toast/animations/utils.js +1 -1
- package/dist/collection/components/toast/toast.ionic.css +377 -0
- package/dist/collection/components/toast/toast.ios.css +74 -35
- package/dist/collection/components/toast/toast.js +45 -10
- package/dist/collection/components/toast/toast.md.css +74 -35
- package/dist/collection/components/toggle/toggle.ionic.css +525 -0
- package/dist/collection/components/toggle/toggle.ios.css +245 -129
- package/dist/collection/components/toggle/toggle.js +73 -18
- package/dist/collection/components/toggle/toggle.md.css +242 -129
- package/dist/collection/components/toolbar/toolbar.ionic.css +233 -0
- package/dist/collection/components/toolbar/toolbar.ios.css +90 -47
- package/dist/collection/components/toolbar/toolbar.js +13 -10
- package/dist/collection/components/toolbar/toolbar.md.css +90 -47
- package/dist/collection/global/ionic-global.js +229 -13
- package/dist/collection/utils/focus-visible.js +22 -0
- package/dist/collection/utils/framework-delegate.js +3 -1
- package/dist/collection/utils/helpers.js +52 -2
- package/dist/collection/utils/keyboard/keyboard-controller.js +3 -1
- package/dist/collection/utils/menu-controller/animations/overlay.js +3 -3
- package/dist/collection/utils/menu-controller/animations/push.js +2 -1
- package/dist/collection/utils/menu-controller/animations/reveal.js +2 -1
- package/dist/collection/utils/overlays.js +2 -1
- package/dist/collection/utils/test/playwright/generator.js +48 -23
- package/dist/collection/utils/test/playwright/page/utils/goto.js +14 -5
- package/dist/collection/utils/test/playwright/page/utils/set-content.js +16 -2
- package/dist/collection/utils/transition/ios.transition.js +1 -0
- package/dist/docs.json +7486 -331
- package/dist/esm/{animation-eab5a4ca.js → animation-12d440f3.js} +1 -1
- package/dist/esm/{app-globals-7b6cbf1a.js → app-globals-2497eeed.js} +1 -1
- package/dist/esm/{button-active-90f1dbc4.js → button-active-8f33f086.js} +2 -2
- package/dist/esm/{capacitor-59395cbd.js → capacitor-39edcb1f.js} +1 -1
- package/dist/esm/caret-down-3eaad1cc.js +6 -0
- package/dist/esm/caret-left-33424bb0.js +6 -0
- package/dist/esm/caret-right-68d856ad.js +6 -0
- package/dist/esm/config-84eb9670.js +79 -0
- package/dist/esm/{data-174ad5e0.js → data-591c1b05.js} +6 -6
- package/dist/{cjs/focus-visible-7a0ce04f.js → esm/focus-visible-6827442c.js} +23 -3
- package/dist/esm/{framework-delegate-2eea1763.js → framework-delegate-9ad3e427.js} +4 -2
- package/dist/esm/{haptic-ac164e4c.js → haptic-946542b8.js} +1 -1
- package/dist/esm/{helpers-78efeec3.js → helpers-ea1f7324.js} +54 -3
- package/dist/esm/{index-f9f5d018.js → index-036caa00.js} +10 -11
- package/{components/index9.js → dist/esm/index-0c65e393.js} +5 -2
- package/dist/esm/{index-527b9e34.js → index-4c3c5d46.js} +1 -1
- package/dist/esm/{index-e2cf2ceb.js → index-d997525d.js} +1 -1
- package/dist/esm/{index-ecb55b8d.js → index-eb1203fa.js} +6 -6
- package/dist/esm/{index-e919e353.js → index-f36a3fa4.js} +2 -2
- package/dist/esm/index.js +12 -13
- package/dist/esm/{input-shims-7dc1f6dc.js → input-shims-96f8d7c2.js} +8 -8
- package/dist/esm/{input.utils-28bf4ef0.js → input.utils-22a20c3a.js} +2 -3
- package/dist/esm/ion-accordion_2.entry.js +62 -24
- package/dist/esm/ion-action-sheet.entry.js +23 -19
- package/dist/esm/ion-alert.entry.js +24 -21
- package/dist/esm/ion-app_8.entry.js +101 -140
- package/dist/esm/ion-avatar_3.entry.js +105 -13
- package/dist/esm/ion-back-button.entry.js +32 -21
- package/dist/esm/ion-backdrop.entry.js +12 -7
- package/dist/esm/ion-breadcrumb_2.entry.js +56 -17
- package/dist/esm/ion-button_2.entry.js +45 -13
- package/dist/esm/ion-card_5.entry.js +54 -29
- package/dist/esm/ion-checkbox.entry.js +32 -14
- package/dist/esm/ion-chip.entry.js +44 -8
- package/dist/esm/ion-col_3.entry.js +15 -11
- package/dist/esm/ion-datetime-button.entry.js +14 -9
- package/dist/esm/ion-datetime_3.entry.js +117 -41
- package/dist/esm/ion-divider.entry.js +39 -0
- package/dist/esm/ion-fab_3.entry.js +45 -21
- package/dist/esm/ion-img.entry.js +9 -4
- package/dist/esm/ion-infinite-scroll_2.entry.js +20 -15
- package/dist/esm/ion-input-password-toggle.entry.js +54 -15
- package/dist/esm/ion-input.entry.js +121 -25
- package/dist/esm/ion-item-option_3.entry.js +42 -18
- package/dist/esm/ion-item_8.entry.js +115 -42
- package/dist/esm/ion-loading.entry.js +19 -16
- package/dist/esm/ion-menu_3.entry.js +49 -29
- package/dist/esm/ion-modal.entry.js +60 -31
- package/dist/esm/ion-nav_2.entry.js +15 -12
- package/dist/esm/ion-picker-column-option.entry.js +13 -7
- package/dist/esm/ion-picker-column.entry.js +13 -12
- package/dist/esm/ion-picker.entry.js +12 -6
- package/dist/esm/ion-popover.entry.js +19 -16
- package/dist/esm/ion-progress-bar.entry.js +29 -8
- package/dist/esm/ion-radio_2.entry.js +26 -14
- package/dist/esm/ion-range.entry.js +19 -30
- package/dist/esm/ion-refresher_2.entry.js +43 -21
- package/dist/esm/ion-reorder_2.entry.js +40 -15
- package/dist/esm/ion-ripple-effect.entry.js +19 -8
- package/dist/esm/ion-route_4.entry.js +10 -8
- package/dist/esm/ion-searchbar.entry.js +141 -19
- package/dist/esm/ion-segment-content.entry.js +3 -3
- package/dist/esm/ion-segment-view.entry.js +7 -3
- package/dist/esm/ion-segment_2.entry.js +73 -32
- package/dist/esm/ion-select-modal.entry.js +10 -11
- package/dist/esm/ion-select_3.entry.js +136 -42
- package/dist/esm/ion-spinner.entry.js +34 -8
- package/dist/esm/ion-split-pane.entry.js +14 -9
- package/dist/esm/ion-tab-bar_2.entry.js +61 -20
- package/dist/esm/ion-tab_2.entry.js +9 -7
- package/dist/esm/ion-text.entry.js +7 -6
- package/dist/esm/ion-textarea.entry.js +53 -17
- package/dist/esm/ion-toast.entry.js +35 -17
- package/dist/esm/ion-toggle.entry.js +82 -23
- package/dist/esm/ionic-global-b30d2cc2.js +517 -0
- package/dist/esm/ionic.js +6 -5
- package/dist/esm/{ios.transition-7fe5dbea.js → ios.transition-cbbf0bd1.js} +8 -7
- package/dist/esm/{keyboard-52278bd7.js → keyboard-0af19ead.js} +5 -3
- package/dist/esm/{keyboard-73175e24.js → keyboard-ceb6990d.js} +1 -1
- package/dist/esm/{keyboard-controller-ec5c2bfa.js → keyboard-controller-7e2da6b9.js} +5 -3
- package/dist/esm/list-6524700c.js +6 -0
- package/dist/esm/loader.js +6 -5
- package/dist/esm/{md.transition-8dc58b46.js → md.transition-21c93656.js} +7 -7
- package/dist/esm/{notch-controller-00d92e89.js → notch-controller-cd983e05.js} +2 -2
- package/dist/esm/{overlays-1bc809ec.js → overlays-d60b1d1e.js} +6 -7
- package/dist/esm/{status-tap-f6d08e9e.js → status-tap-bf78b74d.js} +6 -5
- package/dist/esm/{swipe-back-07df2095.js → swipe-back-fff82194.js} +3 -1
- package/dist/esm/x-a64bcd9f.js +6 -0
- package/dist/esm-es5/animation-12d440f3.js +4 -0
- package/dist/esm-es5/app-globals-2497eeed.js +4 -0
- package/dist/esm-es5/{button-active-90f1dbc4.js → button-active-8f33f086.js} +1 -1
- package/dist/esm-es5/capacitor-39edcb1f.js +4 -0
- package/dist/esm-es5/caret-down-3eaad1cc.js +4 -0
- package/dist/esm-es5/caret-left-33424bb0.js +4 -0
- package/dist/esm-es5/caret-right-68d856ad.js +4 -0
- package/dist/esm-es5/config-84eb9670.js +4 -0
- package/dist/esm-es5/data-591c1b05.js +4 -0
- package/dist/esm-es5/focus-visible-6827442c.js +4 -0
- package/dist/esm-es5/framework-delegate-9ad3e427.js +4 -0
- package/dist/esm-es5/{haptic-ac164e4c.js → haptic-946542b8.js} +1 -1
- package/dist/esm-es5/helpers-ea1f7324.js +4 -0
- package/dist/esm-es5/index-036caa00.js +4 -0
- package/dist/esm-es5/index-0c65e393.js +4 -0
- package/dist/esm-es5/{index-527b9e34.js → index-4c3c5d46.js} +1 -1
- package/dist/esm-es5/{index-e2cf2ceb.js → index-d997525d.js} +1 -1
- package/dist/esm-es5/index-eb1203fa.js +4 -0
- package/dist/esm-es5/index-f36a3fa4.js +4 -0
- package/dist/esm-es5/index.js +1 -1
- package/dist/esm-es5/input-shims-96f8d7c2.js +4 -0
- package/dist/esm-es5/input.utils-22a20c3a.js +4 -0
- package/dist/esm-es5/ion-accordion_2.entry.js +1 -1
- package/dist/esm-es5/ion-action-sheet.entry.js +1 -1
- package/dist/esm-es5/ion-alert.entry.js +1 -1
- package/dist/esm-es5/ion-app_8.entry.js +1 -1
- package/dist/esm-es5/ion-avatar_3.entry.js +1 -1
- package/dist/esm-es5/ion-back-button.entry.js +1 -1
- package/dist/esm-es5/ion-backdrop.entry.js +1 -1
- package/dist/esm-es5/ion-breadcrumb_2.entry.js +1 -1
- package/dist/esm-es5/ion-button_2.entry.js +1 -1
- package/dist/esm-es5/ion-card_5.entry.js +1 -1
- package/dist/esm-es5/ion-checkbox.entry.js +1 -1
- package/dist/esm-es5/ion-chip.entry.js +1 -1
- package/dist/esm-es5/ion-col_3.entry.js +1 -1
- package/dist/esm-es5/ion-datetime-button.entry.js +1 -1
- package/dist/esm-es5/ion-datetime_3.entry.js +1 -1
- package/dist/esm-es5/ion-divider.entry.js +4 -0
- package/dist/esm-es5/ion-fab_3.entry.js +1 -1
- package/dist/esm-es5/ion-img.entry.js +1 -1
- package/dist/esm-es5/ion-infinite-scroll_2.entry.js +1 -1
- package/dist/esm-es5/ion-input-password-toggle.entry.js +1 -1
- package/dist/esm-es5/ion-input.entry.js +1 -1
- package/dist/esm-es5/ion-item-option_3.entry.js +1 -1
- package/dist/esm-es5/ion-item_8.entry.js +1 -1
- package/dist/esm-es5/ion-loading.entry.js +1 -1
- package/dist/esm-es5/ion-menu_3.entry.js +1 -1
- package/dist/esm-es5/ion-modal.entry.js +1 -1
- package/dist/esm-es5/ion-nav_2.entry.js +1 -1
- package/dist/esm-es5/ion-picker-column-option.entry.js +1 -1
- package/dist/esm-es5/ion-picker-column.entry.js +1 -1
- package/dist/esm-es5/ion-picker.entry.js +1 -1
- package/dist/esm-es5/ion-popover.entry.js +1 -1
- package/dist/esm-es5/ion-progress-bar.entry.js +1 -1
- package/dist/esm-es5/ion-radio_2.entry.js +1 -1
- package/dist/esm-es5/ion-range.entry.js +1 -1
- package/dist/esm-es5/ion-refresher_2.entry.js +1 -1
- package/dist/esm-es5/ion-reorder_2.entry.js +1 -1
- package/dist/esm-es5/ion-ripple-effect.entry.js +1 -1
- package/dist/esm-es5/ion-route_4.entry.js +1 -1
- package/dist/esm-es5/ion-searchbar.entry.js +1 -1
- package/dist/esm-es5/ion-segment-content.entry.js +1 -1
- package/dist/esm-es5/ion-segment-view.entry.js +1 -1
- package/dist/esm-es5/ion-segment_2.entry.js +1 -1
- package/dist/esm-es5/ion-select-modal.entry.js +1 -1
- package/dist/esm-es5/ion-select_3.entry.js +1 -1
- package/dist/esm-es5/ion-spinner.entry.js +1 -1
- package/dist/esm-es5/ion-split-pane.entry.js +1 -1
- package/dist/esm-es5/ion-tab-bar_2.entry.js +1 -1
- package/dist/esm-es5/ion-tab_2.entry.js +1 -1
- package/dist/esm-es5/ion-text.entry.js +1 -1
- package/dist/esm-es5/ion-textarea.entry.js +1 -1
- package/dist/esm-es5/ion-toast.entry.js +1 -1
- package/dist/esm-es5/ion-toggle.entry.js +1 -1
- package/dist/esm-es5/ionic-global-b30d2cc2.js +4 -0
- package/dist/esm-es5/ionic.js +1 -1
- package/dist/esm-es5/ios.transition-cbbf0bd1.js +4 -0
- package/dist/esm-es5/{keyboard-52278bd7.js → keyboard-0af19ead.js} +1 -1
- package/dist/esm-es5/{keyboard-73175e24.js → keyboard-ceb6990d.js} +1 -1
- package/dist/esm-es5/keyboard-controller-7e2da6b9.js +4 -0
- package/dist/esm-es5/list-6524700c.js +4 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/md.transition-21c93656.js +4 -0
- package/dist/esm-es5/notch-controller-cd983e05.js +4 -0
- package/dist/esm-es5/overlays-d60b1d1e.js +4 -0
- package/dist/esm-es5/status-tap-bf78b74d.js +4 -0
- package/dist/esm-es5/swipe-back-fff82194.js +4 -0
- package/dist/esm-es5/x-a64bcd9f.js +4 -0
- package/dist/html.html-data.json +2452 -210
- package/dist/ionic/index.esm.js +1 -1
- package/dist/ionic/ionic.esm.js +1 -1
- package/dist/ionic/ionic.js +1 -1
- package/dist/ionic/p-0175d2ed.system.js +4 -0
- package/dist/ionic/p-01d80901.system.js +4 -0
- package/dist/ionic/p-047943a4.entry.js +4 -0
- package/dist/ionic/p-04ca2bc3.system.js +4 -0
- package/dist/ionic/p-051208d8.system.js +4 -0
- package/dist/ionic/p-0571060e.system.js +4 -0
- package/dist/ionic/p-06a7a822.system.entry.js +4 -0
- package/dist/ionic/p-06ec4706.js +4 -0
- package/dist/ionic/p-0a2ad7af.system.entry.js +4 -0
- package/dist/ionic/p-0b07a566.system.entry.js +4 -0
- package/dist/ionic/p-0c5e0dc8.system.entry.js +4 -0
- package/dist/ionic/p-0c6ba6d6.entry.js +4 -0
- package/dist/ionic/p-0e25995f.entry.js +4 -0
- package/dist/ionic/p-0eaae446.js +4 -0
- package/dist/ionic/p-107ddb23.entry.js +4 -0
- package/dist/ionic/{p-1e955a45.system.js → p-115d74cd.system.js} +1 -1
- package/dist/ionic/p-11ac6c97.entry.js +4 -0
- package/dist/ionic/p-1613cd36.system.entry.js +4 -0
- package/dist/ionic/p-17f49808.system.entry.js +4 -0
- package/dist/ionic/p-195c7099.system.entry.js +4 -0
- package/dist/ionic/p-1a3b4566.system.entry.js +4 -0
- package/dist/ionic/p-1bb9592a.entry.js +4 -0
- package/dist/ionic/p-1c8f3fef.system.entry.js +4 -0
- package/dist/ionic/p-1ee39457.system.entry.js +4 -0
- package/dist/ionic/p-1fd5c378.system.js +4 -0
- package/dist/ionic/p-20ec20dc.system.js +4 -0
- package/dist/ionic/p-243adf8c.js +4 -0
- package/dist/ionic/p-266448a7.system.entry.js +4 -0
- package/dist/ionic/p-2908a027.entry.js +4 -0
- package/dist/ionic/p-29b8f112.js +4 -0
- package/dist/ionic/p-2a1b5646.system.js +4 -0
- package/dist/ionic/p-2a4ebf7b.entry.js +4 -0
- package/dist/ionic/p-2a6e60d2.system.entry.js +4 -0
- package/dist/ionic/p-2aca2df7.entry.js +4 -0
- package/dist/ionic/{p-a93873de.system.js → p-2b8078c3.system.js} +1 -1
- package/dist/ionic/{p-89b61afc.js → p-2c0735b6.js} +1 -1
- package/dist/ionic/p-2c4d0578.system.entry.js +4 -0
- package/dist/ionic/{p-f7ce606e.js → p-2cbcecdb.js} +1 -1
- package/dist/ionic/p-2cede1ff.system.entry.js +4 -0
- package/dist/ionic/{p-22bc235f.js → p-2d30c885.js} +1 -1
- package/dist/ionic/p-2f14ca13.js +4 -0
- package/dist/ionic/p-31956865.system.entry.js +4 -0
- package/dist/ionic/{p-f23124c4.system.js → p-34fa2a61.system.js} +2 -2
- package/dist/ionic/p-3775da84.system.entry.js +4 -0
- package/dist/ionic/p-396bdcf7.js +4 -0
- package/dist/ionic/p-3cdea564.system.entry.js +4 -0
- package/dist/ionic/p-3dd43dba.system.entry.js +4 -0
- package/dist/ionic/p-3e9058ad.js +4 -0
- package/dist/ionic/p-40ea7c52.js +4 -0
- package/dist/ionic/p-4279f787.entry.js +4 -0
- package/dist/ionic/p-429dd2b5.system.js +4 -0
- package/dist/ionic/p-42acd60b.system.entry.js +4 -0
- package/dist/ionic/{p-a4866e3e.system.js → p-42e12526.system.js} +1 -1
- package/dist/ionic/p-43b4ca5b.entry.js +4 -0
- package/dist/ionic/p-443152fd.js +4 -0
- package/dist/ionic/p-4459a66e.system.js +4 -0
- package/dist/ionic/p-458a5952.system.entry.js +4 -0
- package/dist/ionic/p-46204887.entry.js +4 -0
- package/dist/ionic/p-47fda111.entry.js +4 -0
- package/dist/ionic/p-495eb25e.entry.js +4 -0
- package/dist/ionic/p-4975df33.system.entry.js +4 -0
- package/dist/ionic/p-4a066788.system.entry.js +4 -0
- package/dist/ionic/p-4ea97996.entry.js +4 -0
- package/dist/ionic/p-50b45518.entry.js +4 -0
- package/dist/ionic/p-510ab233.system.entry.js +4 -0
- package/dist/ionic/p-534b5031.js +4 -0
- package/dist/ionic/{p-66a5d6a8.js → p-578d5013.js} +1 -1
- package/dist/ionic/p-579b4a63.entry.js +4 -0
- package/dist/ionic/p-583f0c5f.js +4 -0
- package/dist/ionic/p-58a30d90.entry.js +4 -0
- package/dist/ionic/{p-da2b833b.js → p-58f16ef6.js} +1 -1
- package/dist/ionic/p-59920a82.system.entry.js +4 -0
- package/dist/ionic/p-5b57d327.system.js +4 -0
- package/dist/ionic/p-5c586ac1.entry.js +4 -0
- package/dist/ionic/p-5c9aab48.system.entry.js +4 -0
- package/dist/ionic/p-5dce701d.js +4 -0
- package/dist/ionic/{p-9146695e.system.js → p-5df8d52a.system.js} +1 -1
- package/dist/ionic/p-607c9c33.js +4 -0
- package/dist/ionic/p-61977a32.entry.js +4 -0
- package/dist/ionic/p-64771457.system.entry.js +4 -0
- package/dist/ionic/p-64b99a88.entry.js +4 -0
- package/dist/ionic/p-653e4810.entry.js +4 -0
- package/dist/ionic/p-6620dffa.entry.js +4 -0
- package/dist/ionic/p-663ace5f.entry.js +4 -0
- package/dist/ionic/p-66a495c4.system.entry.js +4 -0
- package/dist/ionic/p-6761a590.js +4 -0
- package/dist/ionic/p-689a94b3.system.entry.js +4 -0
- package/dist/ionic/p-6a0dd6bc.js +4 -0
- package/dist/ionic/p-6bf6e9e8.entry.js +4 -0
- package/dist/ionic/p-6ce59667.entry.js +4 -0
- package/dist/ionic/{p-b06ac4a5.system.js → p-6eb15fc1.system.js} +1 -1
- package/dist/ionic/p-7071d7ca.js +4 -0
- package/dist/ionic/p-70d36cb8.system.js +4 -0
- package/dist/ionic/p-71d96a02.system.entry.js +4 -0
- package/dist/ionic/p-72d019c5.system.entry.js +4 -0
- package/dist/ionic/p-730993c9.system.entry.js +4 -0
- package/dist/ionic/p-787d9af9.js +4 -0
- package/dist/ionic/p-78abe8f7.system.entry.js +4 -0
- package/dist/ionic/p-78fbb151.system.js +4 -0
- package/dist/ionic/p-7ac37962.entry.js +4 -0
- package/dist/ionic/p-7beb0900.system.entry.js +4 -0
- package/dist/ionic/p-7d8e1a3d.system.entry.js +4 -0
- package/dist/ionic/p-7dbbb35d.entry.js +4 -0
- package/dist/ionic/p-80263807.system.js +4 -0
- package/dist/ionic/p-85bb90f6.entry.js +4 -0
- package/dist/ionic/p-85cee6c9.entry.js +4 -0
- package/dist/ionic/p-86a390a7.js +4 -0
- package/dist/ionic/p-883ff61d.system.entry.js +4 -0
- package/dist/ionic/p-8870fcbd.entry.js +4 -0
- package/dist/ionic/p-8cba58fa.system.entry.js +4 -0
- package/dist/ionic/p-8cfd2546.entry.js +4 -0
- package/dist/ionic/p-8d7684b7.entry.js +4 -0
- package/dist/ionic/p-8f3bd9ab.system.js +4 -0
- package/dist/ionic/p-90ac5fdf.entry.js +4 -0
- package/dist/ionic/p-90ec152d.system.js +4 -0
- package/dist/ionic/p-91ce2114.entry.js +4 -0
- package/dist/ionic/p-91f7f574.entry.js +4 -0
- package/dist/ionic/p-97ce7496.system.entry.js +4 -0
- package/dist/ionic/p-981b8086.entry.js +4 -0
- package/dist/ionic/p-999a0cef.system.entry.js +4 -0
- package/dist/ionic/p-9b177519.js +4 -0
- package/dist/ionic/p-9b4b8c80.system.entry.js +4 -0
- package/dist/ionic/p-9dab7e7c.js +4 -0
- package/dist/ionic/p-9e9999d5.entry.js +4 -0
- package/dist/ionic/p-a3144a1e.entry.js +4 -0
- package/dist/ionic/p-a3ad8084.system.js +4 -0
- package/dist/ionic/p-a4c11918.system.entry.js +4 -0
- package/dist/ionic/p-a4c64c42.entry.js +4 -0
- package/dist/ionic/p-a8ce5285.system.entry.js +4 -0
- package/dist/ionic/{p-c7e16491.js → p-a92ad86c.js} +1 -1
- package/dist/ionic/p-a9af4103.js +4 -0
- package/dist/ionic/p-b1618321.entry.js +4 -0
- package/dist/ionic/{p-9e45532a.system.js → p-b3b40a2f.system.js} +1 -1
- package/dist/ionic/p-b6baf215.entry.js +4 -0
- package/dist/ionic/p-bd215938.system.entry.js +4 -0
- package/dist/ionic/p-be1800d4.js +4 -0
- package/dist/ionic/p-befb004d.entry.js +4 -0
- package/dist/ionic/p-c043a4c8.entry.js +4 -0
- package/dist/ionic/{p-a6625de8.system.js → p-c0abf8f8.system.js} +1 -1
- package/dist/ionic/p-c248c88d.system.js +4 -0
- package/dist/ionic/p-c27342bf.system.entry.js +4 -0
- package/dist/ionic/p-c47cb709.js +4 -0
- package/dist/ionic/p-cef4553b.entry.js +4 -0
- package/dist/ionic/p-cf17679a.entry.js +4 -0
- package/dist/ionic/p-cff47c26.system.entry.js +4 -0
- package/dist/ionic/{p-978bdf4c.system.js → p-d197eaeb.system.js} +1 -1
- package/dist/ionic/{p-f11a9436.system.js → p-d2536fe8.system.js} +1 -1
- package/dist/ionic/p-d2e6afa9.system.js +4 -0
- package/dist/ionic/p-d35e20cf.system.entry.js +4 -0
- package/dist/ionic/p-d4a21287.js +4 -0
- package/dist/ionic/p-d534a6c8.entry.js +4 -0
- package/dist/ionic/p-d760d709.entry.js +4 -0
- package/dist/ionic/p-da7bd63e.system.entry.js +4 -0
- package/dist/ionic/p-de32ae2a.system.entry.js +4 -0
- package/dist/ionic/{p-27281edd.js → p-de9f68cb.js} +1 -1
- package/dist/ionic/p-deb05ec4.js +4 -0
- package/dist/ionic/p-dff0b93b.system.entry.js +4 -0
- package/dist/ionic/{p-1bf5ec17.system.js → p-e028d393.system.js} +1 -1
- package/dist/ionic/p-e028d3f1.entry.js +4 -0
- package/dist/ionic/p-e341e1ec.system.entry.js +4 -0
- package/dist/ionic/p-e3b70846.system.js +4 -0
- package/dist/ionic/p-e913a8ec.system.entry.js +4 -0
- package/dist/ionic/p-eb15cdb8.entry.js +4 -0
- package/dist/ionic/p-ef7f7ba9.js +4 -0
- package/dist/ionic/p-effec462.system.js +4 -0
- package/dist/ionic/{p-8985cdb6.system.js → p-f3fed3f9.system.js} +1 -1
- package/dist/ionic/p-f4a27763.entry.js +4 -0
- package/dist/ionic/p-fa6f50b3.entry.js +4 -0
- package/dist/ionic/p-fb0197d6.system.entry.js +4 -0
- package/dist/ionic/p-fcedca77.system.js +4 -0
- package/dist/ionic/p-fdcaa201.system.js +4 -0
- package/dist/ionic/p-fe00bde2.system.entry.js +4 -0
- package/dist/types/components/accordion/accordion.d.ts +5 -3
- package/dist/types/components/accordion-group/accordion-group.d.ts +12 -1
- package/dist/types/components/action-sheet/action-sheet-interface.d.ts +3 -7
- package/dist/types/components/action-sheet/action-sheet.d.ts +3 -2
- package/dist/types/components/alert/alert-interface.d.ts +3 -7
- package/dist/types/components/alert/alert.d.ts +3 -2
- package/dist/types/components/app/app.d.ts +6 -2
- package/dist/types/components/avatar/avatar.d.ts +32 -0
- package/dist/types/components/back-button/back-button.d.ts +2 -1
- package/dist/types/components/backdrop/backdrop.d.ts +4 -0
- package/dist/types/components/badge/badge.d.ts +29 -1
- package/dist/types/components/breadcrumb/breadcrumb.d.ts +4 -1
- package/dist/types/components/breadcrumbs/breadcrumbs.d.ts +2 -2
- package/dist/types/components/button/button.d.ts +15 -4
- package/dist/types/components/buttons/buttons.d.ts +5 -1
- package/dist/types/components/card/card.d.ts +8 -1
- package/dist/types/components/card-content/card-content.d.ts +2 -1
- package/dist/types/components/card-header/card-header.d.ts +3 -2
- package/dist/types/components/card-subtitle/card-subtitle.d.ts +2 -1
- package/dist/types/components/card-title/card-title.d.ts +2 -1
- package/dist/types/components/checkbox/checkbox.d.ts +14 -4
- package/dist/types/components/chip/chip.d.ts +19 -1
- package/dist/types/components/col/col.d.ts +4 -0
- package/dist/types/components/content/content.d.ts +3 -0
- package/dist/types/components/datetime/datetime.d.ts +26 -1
- package/dist/types/components/datetime/utils/data.d.ts +5 -5
- package/dist/types/components/datetime-button/datetime-button.d.ts +2 -1
- package/dist/types/components/divider/divider.d.ts +20 -0
- package/dist/types/components/fab/fab.d.ts +4 -0
- package/dist/types/components/fab-button/fab-button.d.ts +5 -3
- package/dist/types/components/fab-list/fab-list.d.ts +4 -0
- package/dist/types/components/footer/footer.d.ts +4 -3
- package/dist/types/components/grid/grid.d.ts +4 -0
- package/dist/types/components/header/header.d.ts +9 -3
- package/dist/types/components/img/img.d.ts +3 -0
- package/dist/types/components/infinite-scroll/infinite-scroll.d.ts +4 -0
- package/dist/types/components/infinite-scroll-content/infinite-scroll-content.d.ts +4 -0
- package/dist/types/components/input/input.d.ts +31 -5
- package/dist/types/components/input-password-toggle/input-password-toggle.d.ts +2 -0
- package/dist/types/components/item/item.d.ts +11 -4
- package/dist/types/components/item-divider/item-divider.d.ts +2 -1
- package/dist/types/components/item-group/item-group.d.ts +4 -0
- package/dist/types/components/item-option/item-option.d.ts +11 -1
- package/dist/types/components/item-options/item-options.d.ts +4 -0
- package/dist/types/components/item-sliding/item-sliding.d.ts +4 -0
- package/dist/types/components/label/label.d.ts +2 -1
- package/dist/types/components/list/list.d.ts +15 -1
- package/dist/types/components/list-header/list-header.d.ts +2 -1
- package/dist/types/components/loading/loading-interface.d.ts +2 -7
- package/dist/types/components/loading/loading.d.ts +3 -2
- package/dist/types/components/menu/menu.d.ts +3 -0
- package/dist/types/components/menu-button/menu-button.d.ts +3 -1
- package/dist/types/components/menu-toggle/menu-toggle.d.ts +3 -0
- package/dist/types/components/modal/gestures/sheet.d.ts +1 -1
- package/dist/types/components/modal/modal-interface.d.ts +4 -7
- package/dist/types/components/modal/modal.d.ts +11 -1
- package/dist/types/components/nav/nav-interface.d.ts +9 -1
- package/dist/types/components/nav/nav.d.ts +5 -1
- package/dist/types/components/nav-link/nav-link.d.ts +4 -0
- package/dist/types/components/note/note.d.ts +2 -1
- package/dist/types/components/picker/picker.d.ts +2 -1
- package/dist/types/components/picker-column/picker-column.d.ts +2 -1
- package/dist/types/components/picker-column-option/picker-column-option.d.ts +4 -0
- package/dist/types/components/picker-legacy/picker.d.ts +2 -1
- package/dist/types/components/popover/popover-interface.d.ts +3 -6
- package/dist/types/components/popover/popover.d.ts +6 -5
- package/dist/types/components/progress-bar/progress-bar.d.ts +10 -1
- package/dist/types/components/radio/radio.d.ts +2 -1
- package/dist/types/components/radio-group/radio-group.d.ts +4 -0
- package/dist/types/components/range/range.d.ts +3 -10
- package/dist/types/components/refresher/refresher.d.ts +2 -1
- package/dist/types/components/refresher-content/refresher-content.d.ts +4 -0
- package/dist/types/components/reorder/reorder.d.ts +9 -0
- package/dist/types/components/reorder-group/reorder-group.d.ts +4 -0
- package/dist/types/components/ripple-effect/ripple-effect.d.ts +4 -0
- package/dist/types/components/route/route.d.ts +4 -0
- package/dist/types/components/router/router.d.ts +4 -0
- package/dist/types/components/router-link/router-link.d.ts +4 -0
- package/dist/types/components/router-outlet/router-outlet.d.ts +4 -1
- package/dist/types/components/row/row.d.ts +4 -0
- package/dist/types/components/searchbar/searchbar.d.ts +51 -9
- package/dist/types/components/segment/segment.d.ts +2 -1
- package/dist/types/components/segment-button/segment-button.d.ts +4 -2
- package/dist/types/components/select/select.d.ts +41 -13
- package/dist/types/components/select-option/select-option.d.ts +4 -0
- package/dist/types/components/select-popover/select-popover.d.ts +3 -0
- package/dist/types/components/skeleton-text/skeleton-text.d.ts +4 -0
- package/dist/types/components/spinner/spinner.d.ts +15 -0
- package/dist/types/components/split-pane/split-pane.d.ts +4 -0
- package/dist/types/components/tab/tab.d.ts +4 -0
- package/dist/types/components/tab-bar/tab-bar.d.ts +22 -2
- package/dist/types/components/tab-button/tab-button.d.ts +11 -1
- package/dist/types/components/tabs/tabs.d.ts +3 -0
- package/dist/types/components/text/text.d.ts +2 -1
- package/dist/types/components/textarea/textarea.d.ts +17 -4
- package/dist/types/components/thumbnail/thumbnail.d.ts +4 -0
- package/dist/types/components/title/title.d.ts +4 -0
- package/dist/types/components/toast/animations/utils.d.ts +2 -2
- package/dist/types/components/toast/toast-interface.d.ts +3 -7
- package/dist/types/components/toast/toast.d.ts +12 -2
- package/dist/types/components/toggle/toggle.d.ts +15 -1
- package/dist/types/components/toolbar/toolbar.d.ts +4 -3
- package/dist/types/components.d.ts +1462 -192
- package/dist/types/global/ionic-global.d.ts +27 -2
- package/dist/types/interface.d.ts +3 -0
- package/dist/types/utils/config.d.ts +106 -2
- package/dist/types/utils/focus-visible.d.ts +13 -0
- package/dist/types/utils/helpers.d.ts +12 -0
- package/dist/types/utils/overlays-interface.d.ts +31 -1
- package/dist/types/utils/test/playwright/generator.d.ts +31 -2
- package/hydrate/index.js +2597 -907
- package/hydrate/index.mjs +2597 -907
- package/package.json +10 -5
- package/components/hardware-back-button.js +0 -115
- package/components/index8.js +0 -128
- package/dist/cjs/hardware-back-button-5a99001f.js +0 -122
- package/dist/cjs/index-48b2a28e.js +0 -46
- package/dist/cjs/index-c8d52405.js +0 -10
- package/dist/cjs/ionic-global-acb665ad.js +0 -227
- package/dist/esm/hardware-back-button-864101a3.js +0 -116
- package/dist/esm/index-40894f4b.js +0 -167
- package/dist/esm/index-738d7504.js +0 -42
- package/dist/esm/index-a5d50daf.js +0 -7
- package/dist/esm/ionic-global-ca86cf32.js +0 -221
- package/dist/esm-es5/animation-eab5a4ca.js +0 -4
- package/dist/esm-es5/app-globals-7b6cbf1a.js +0 -4
- package/dist/esm-es5/capacitor-59395cbd.js +0 -4
- package/dist/esm-es5/data-174ad5e0.js +0 -4
- package/dist/esm-es5/focus-visible-dd40d69f.js +0 -4
- package/dist/esm-es5/framework-delegate-2eea1763.js +0 -4
- package/dist/esm-es5/hardware-back-button-864101a3.js +0 -4
- package/dist/esm-es5/helpers-78efeec3.js +0 -4
- package/dist/esm-es5/index-40894f4b.js +0 -4
- package/dist/esm-es5/index-738d7504.js +0 -4
- package/dist/esm-es5/index-a5d50daf.js +0 -4
- package/dist/esm-es5/index-e919e353.js +0 -4
- package/dist/esm-es5/index-ecb55b8d.js +0 -4
- package/dist/esm-es5/index-f9f5d018.js +0 -4
- package/dist/esm-es5/input-shims-7dc1f6dc.js +0 -4
- package/dist/esm-es5/input.utils-28bf4ef0.js +0 -4
- package/dist/esm-es5/ionic-global-ca86cf32.js +0 -4
- package/dist/esm-es5/ios.transition-7fe5dbea.js +0 -4
- package/dist/esm-es5/keyboard-controller-ec5c2bfa.js +0 -4
- package/dist/esm-es5/md.transition-8dc58b46.js +0 -4
- package/dist/esm-es5/notch-controller-00d92e89.js +0 -4
- package/dist/esm-es5/overlays-1bc809ec.js +0 -4
- package/dist/esm-es5/status-tap-f6d08e9e.js +0 -4
- package/dist/esm-es5/swipe-back-07df2095.js +0 -4
- package/dist/ionic/p-027a48f1.entry.js +0 -4
- package/dist/ionic/p-056b4c2a.system.entry.js +0 -4
- package/dist/ionic/p-058b7f35.js +0 -4
- package/dist/ionic/p-05b65d7a.entry.js +0 -4
- package/dist/ionic/p-0904eb08.entry.js +0 -4
- package/dist/ionic/p-0a456b7f.entry.js +0 -4
- package/dist/ionic/p-0adb6909.system.entry.js +0 -4
- package/dist/ionic/p-0bedc891.system.entry.js +0 -4
- package/dist/ionic/p-0d1be7c9.system.entry.js +0 -4
- package/dist/ionic/p-0ec5b7cf.system.js +0 -4
- package/dist/ionic/p-15bb1dde.system.js +0 -4
- package/dist/ionic/p-16130556.entry.js +0 -4
- package/dist/ionic/p-16491015.entry.js +0 -4
- package/dist/ionic/p-180b4f9a.entry.js +0 -4
- package/dist/ionic/p-19c32a76.entry.js +0 -4
- package/dist/ionic/p-1c1d781d.system.entry.js +0 -4
- package/dist/ionic/p-1c8b3ac9.entry.js +0 -4
- package/dist/ionic/p-1de5dfcd.system.entry.js +0 -4
- package/dist/ionic/p-1dfc11b3.system.js +0 -4
- package/dist/ionic/p-1e4371bd.js +0 -4
- package/dist/ionic/p-21891ead.js +0 -4
- package/dist/ionic/p-28c81576.entry.js +0 -4
- package/dist/ionic/p-29a5b4e4.entry.js +0 -4
- package/dist/ionic/p-29da3dcd.entry.js +0 -4
- package/dist/ionic/p-2a2c6bf4.system.entry.js +0 -4
- package/dist/ionic/p-2b7827c7.js +0 -4
- package/dist/ionic/p-317c1c08.entry.js +0 -4
- package/dist/ionic/p-33518a04.entry.js +0 -4
- package/dist/ionic/p-35b469f6.system.entry.js +0 -4
- package/dist/ionic/p-35f14792.entry.js +0 -4
- package/dist/ionic/p-383a6058.entry.js +0 -4
- package/dist/ionic/p-3855fef7.system.js +0 -4
- package/dist/ionic/p-38eaf9cf.system.entry.js +0 -4
- package/dist/ionic/p-3dad3534.system.js +0 -4
- package/dist/ionic/p-3f4327f7.js +0 -4
- package/dist/ionic/p-40388335.system.js +0 -4
- package/dist/ionic/p-41e70fa2.entry.js +0 -4
- package/dist/ionic/p-44fde7d5.system.entry.js +0 -4
- package/dist/ionic/p-44ff75ea.js +0 -4
- package/dist/ionic/p-455cd7cc.system.js +0 -4
- package/dist/ionic/p-4630688e.system.entry.js +0 -4
- package/dist/ionic/p-48ded460.entry.js +0 -4
- package/dist/ionic/p-49d53551.system.entry.js +0 -4
- package/dist/ionic/p-4b07c60a.system.js +0 -4
- package/dist/ionic/p-4eeca839.system.entry.js +0 -4
- package/dist/ionic/p-50e0ce13.entry.js +0 -4
- package/dist/ionic/p-5578033e.system.entry.js +0 -4
- package/dist/ionic/p-579c78d2.system.entry.js +0 -4
- package/dist/ionic/p-597ff9af.js +0 -4
- package/dist/ionic/p-5b420123.entry.js +0 -4
- package/dist/ionic/p-5b97abc9.entry.js +0 -4
- package/dist/ionic/p-5fb1321f.entry.js +0 -4
- package/dist/ionic/p-5fe5dc2c.system.entry.js +0 -4
- package/dist/ionic/p-607aa181.entry.js +0 -4
- package/dist/ionic/p-61373098.js +0 -4
- package/dist/ionic/p-6155027f.system.entry.js +0 -4
- package/dist/ionic/p-61e794fb.entry.js +0 -4
- package/dist/ionic/p-624ecf03.js +0 -4
- package/dist/ionic/p-63d1da62.system.entry.js +0 -4
- package/dist/ionic/p-64d8ac48.js +0 -4
- package/dist/ionic/p-657ada6a.entry.js +0 -4
- package/dist/ionic/p-65943bec.system.entry.js +0 -4
- package/dist/ionic/p-65e732b9.entry.js +0 -4
- package/dist/ionic/p-6c044a1d.system.js +0 -4
- package/dist/ionic/p-7058a5e4.system.entry.js +0 -4
- package/dist/ionic/p-705fda69.system.js +0 -4
- package/dist/ionic/p-707408c5.system.entry.js +0 -4
- package/dist/ionic/p-70abb1f2.system.entry.js +0 -4
- package/dist/ionic/p-747f9517.entry.js +0 -4
- package/dist/ionic/p-7514f2f5.entry.js +0 -4
- package/dist/ionic/p-756e4559.js +0 -4
- package/dist/ionic/p-772d1657.system.js +0 -4
- package/dist/ionic/p-77aa5fef.system.entry.js +0 -4
- package/dist/ionic/p-792919fd.system.js +0 -4
- package/dist/ionic/p-7b30edcc.js +0 -4
- package/dist/ionic/p-7b886108.system.entry.js +0 -4
- package/dist/ionic/p-7c9daa6f.entry.js +0 -4
- package/dist/ionic/p-7cc33a9a.system.js +0 -4
- package/dist/ionic/p-7e3b5638.system.entry.js +0 -4
- package/dist/ionic/p-824fe96b.system.entry.js +0 -4
- package/dist/ionic/p-87b0d2c9.entry.js +0 -4
- package/dist/ionic/p-8b1c1fd7.entry.js +0 -4
- package/dist/ionic/p-8b22be32.system.entry.js +0 -4
- package/dist/ionic/p-8d98e2bb.entry.js +0 -4
- package/dist/ionic/p-8f94769b.entry.js +0 -4
- package/dist/ionic/p-912131e9.system.entry.js +0 -4
- package/dist/ionic/p-959cf042.system.entry.js +0 -4
- package/dist/ionic/p-9870728f.js +0 -4
- package/dist/ionic/p-9af7f110.js +0 -4
- package/dist/ionic/p-9b069739.entry.js +0 -4
- package/dist/ionic/p-a26d7667.system.entry.js +0 -4
- package/dist/ionic/p-a3c931ad.system.js +0 -4
- package/dist/ionic/p-a520973b.entry.js +0 -4
- package/dist/ionic/p-a768ae50.entry.js +0 -4
- package/dist/ionic/p-a9198501.system.entry.js +0 -4
- package/dist/ionic/p-ab7337e1.entry.js +0 -4
- package/dist/ionic/p-abe101da.system.js +0 -4
- package/dist/ionic/p-ac09b6e9.system.entry.js +0 -4
- package/dist/ionic/p-ac58d726.system.entry.js +0 -4
- package/dist/ionic/p-b1673667.entry.js +0 -4
- package/dist/ionic/p-b1f9fbe8.system.entry.js +0 -4
- package/dist/ionic/p-b2ee0628.system.entry.js +0 -4
- package/dist/ionic/p-b87a9f1d.entry.js +0 -4
- package/dist/ionic/p-b8a461f5.system.entry.js +0 -4
- package/dist/ionic/p-b9fa7882.js +0 -4
- package/dist/ionic/p-bf64af90.system.js +0 -4
- package/dist/ionic/p-c005cc37.entry.js +0 -4
- package/dist/ionic/p-c27c57ea.system.entry.js +0 -4
- package/dist/ionic/p-c3f9d9fe.js +0 -4
- package/dist/ionic/p-c468af8a.system.js +0 -4
- package/dist/ionic/p-c53c414d.system.entry.js +0 -4
- package/dist/ionic/p-c609b315.system.entry.js +0 -4
- package/dist/ionic/p-c61cc894.js +0 -4
- package/dist/ionic/p-c63d8dc1.js +0 -4
- package/dist/ionic/p-cbebc567.entry.js +0 -4
- package/dist/ionic/p-ccb740ea.entry.js +0 -4
- package/dist/ionic/p-cec54707.system.entry.js +0 -4
- package/dist/ionic/p-d40f2b7a.js +0 -4
- package/dist/ionic/p-d47265c8.js +0 -4
- package/dist/ionic/p-d70a9e6d.system.js +0 -4
- package/dist/ionic/p-d882f1e2.system.entry.js +0 -4
- package/dist/ionic/p-db3b409e.system.entry.js +0 -4
- package/dist/ionic/p-dcfb7283.entry.js +0 -4
- package/dist/ionic/p-df54ab6b.system.entry.js +0 -4
- package/dist/ionic/p-e0d0bc88.system.entry.js +0 -4
- package/dist/ionic/p-e29c5aab.system.entry.js +0 -4
- package/dist/ionic/p-e2ce5f8b.entry.js +0 -4
- package/dist/ionic/p-e3e4eed7.entry.js +0 -4
- package/dist/ionic/p-e4683bfd.system.entry.js +0 -4
- package/dist/ionic/p-e4d2c281.entry.js +0 -4
- package/dist/ionic/p-e6cdfa96.system.entry.js +0 -4
- package/dist/ionic/p-e6e0331b.entry.js +0 -4
- package/dist/ionic/p-e8245753.entry.js +0 -4
- package/dist/ionic/p-e89451e8.system.entry.js +0 -4
- package/dist/ionic/p-e958e381.system.entry.js +0 -4
- package/dist/ionic/p-ece78e7b.js +0 -4
- package/dist/ionic/p-ee86cfff.system.js +0 -4
- package/dist/ionic/p-ef4292b9.js +0 -4
- package/dist/ionic/p-f201b53a.system.js +0 -4
- package/dist/ionic/p-f6bb9be7.system.entry.js +0 -4
- package/dist/ionic/p-f834322a.entry.js +0 -4
- package/dist/ionic/p-f896194a.system.entry.js +0 -4
- package/dist/ionic/p-fa70eaab.entry.js +0 -4
- package/dist/ionic/p-ff6be116.entry.js +0 -4
- package/dist/ionic/p-ffa3ba3c.js +0 -4
- /package/dist/collection/components/{input-password-toggle/input-password-toggle.css → refresher-content/refresher-content.css} +0 -0
package/dist/html.html-data.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"name": "mode",
|
|
17
|
-
"description": "The mode determines
|
|
17
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
18
18
|
"values": [
|
|
19
19
|
{
|
|
20
20
|
"name": "ios"
|
|
@@ -28,6 +28,21 @@
|
|
|
28
28
|
"name": "readonly",
|
|
29
29
|
"description": "If `true`, the accordion cannot be interacted with,\nbut does not alter the opacity."
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"name": "theme",
|
|
33
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
34
|
+
"values": [
|
|
35
|
+
{
|
|
36
|
+
"name": "ios"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "md"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "ionic"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
31
46
|
{
|
|
32
47
|
"name": "toggle-icon",
|
|
33
48
|
"description": "The toggle icon to use. This icon will be\nrotated when the accordion is expanded\nor collapsed."
|
|
@@ -85,7 +100,7 @@
|
|
|
85
100
|
},
|
|
86
101
|
{
|
|
87
102
|
"name": "mode",
|
|
88
|
-
"description": "The mode determines
|
|
103
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
89
104
|
"values": [
|
|
90
105
|
{
|
|
91
106
|
"name": "ios"
|
|
@@ -103,6 +118,36 @@
|
|
|
103
118
|
"name": "readonly",
|
|
104
119
|
"description": "If `true`, the accordion group cannot be interacted with,\nbut does not alter the opacity."
|
|
105
120
|
},
|
|
121
|
+
{
|
|
122
|
+
"name": "shape",
|
|
123
|
+
"description": "Set to `\"soft\"` for an accordion group with slightly rounded corners,\n`\"round\"` for an accordion group with fully rounded corners, or\n`\"rectangular\"` for an accordion group without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.\nOnly applies when `expand` is set to `\"inset\"`.",
|
|
124
|
+
"values": [
|
|
125
|
+
{
|
|
126
|
+
"name": "rectangular"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"name": "round"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "soft"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "theme",
|
|
138
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
139
|
+
"values": [
|
|
140
|
+
{
|
|
141
|
+
"name": "ios"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "md"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "ionic"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
106
151
|
{
|
|
107
152
|
"name": "value",
|
|
108
153
|
"description": "The value of the accordion group. This controls which\naccordions are expanded.\nThis should be an array of strings only when `multiple=\"true\"`"
|
|
@@ -148,7 +193,7 @@
|
|
|
148
193
|
},
|
|
149
194
|
{
|
|
150
195
|
"name": "mode",
|
|
151
|
-
"description": "The mode determines
|
|
196
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
152
197
|
"values": [
|
|
153
198
|
{
|
|
154
199
|
"name": "ios"
|
|
@@ -162,9 +207,24 @@
|
|
|
162
207
|
"name": "sub-header",
|
|
163
208
|
"description": "Subtitle for the action sheet."
|
|
164
209
|
},
|
|
210
|
+
{
|
|
211
|
+
"name": "theme",
|
|
212
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
213
|
+
"values": [
|
|
214
|
+
{
|
|
215
|
+
"name": "ios"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"name": "md"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "ionic"
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
},
|
|
165
225
|
{
|
|
166
226
|
"name": "translucent",
|
|
167
|
-
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the
|
|
227
|
+
"description": "If `true`, the action sheet will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
168
228
|
},
|
|
169
229
|
{
|
|
170
230
|
"name": "trigger",
|
|
@@ -215,7 +275,7 @@
|
|
|
215
275
|
},
|
|
216
276
|
{
|
|
217
277
|
"name": "mode",
|
|
218
|
-
"description": "The mode determines
|
|
278
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
219
279
|
"values": [
|
|
220
280
|
{
|
|
221
281
|
"name": "ios"
|
|
@@ -229,9 +289,24 @@
|
|
|
229
289
|
"name": "sub-header",
|
|
230
290
|
"description": "The subtitle in the heading of the alert. Displayed under the title."
|
|
231
291
|
},
|
|
292
|
+
{
|
|
293
|
+
"name": "theme",
|
|
294
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
295
|
+
"values": [
|
|
296
|
+
{
|
|
297
|
+
"name": "ios"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "md"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "ionic"
|
|
304
|
+
}
|
|
305
|
+
]
|
|
306
|
+
},
|
|
232
307
|
{
|
|
233
308
|
"name": "translucent",
|
|
234
|
-
"description": "If `true`, the alert will be translucent.\nOnly applies when the
|
|
309
|
+
"description": "If `true`, the alert will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
235
310
|
},
|
|
236
311
|
{
|
|
237
312
|
"name": "trigger",
|
|
@@ -251,7 +326,35 @@
|
|
|
251
326
|
"kind": "markdown",
|
|
252
327
|
"value": ""
|
|
253
328
|
},
|
|
254
|
-
"attributes": [
|
|
329
|
+
"attributes": [
|
|
330
|
+
{
|
|
331
|
+
"name": "mode",
|
|
332
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
333
|
+
"values": [
|
|
334
|
+
{
|
|
335
|
+
"name": "ios"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"name": "md"
|
|
339
|
+
}
|
|
340
|
+
]
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "theme",
|
|
344
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
345
|
+
"values": [
|
|
346
|
+
{
|
|
347
|
+
"name": "ios"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "md"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "ionic"
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
}
|
|
357
|
+
],
|
|
255
358
|
"references": [
|
|
256
359
|
{
|
|
257
360
|
"name": "Source code",
|
|
@@ -265,7 +368,78 @@
|
|
|
265
368
|
"kind": "markdown",
|
|
266
369
|
"value": ""
|
|
267
370
|
},
|
|
268
|
-
"attributes": [
|
|
371
|
+
"attributes": [
|
|
372
|
+
{
|
|
373
|
+
"name": "disabled",
|
|
374
|
+
"description": "If `true`, the user cannot interact with the avatar."
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "mode",
|
|
378
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
379
|
+
"values": [
|
|
380
|
+
{
|
|
381
|
+
"name": "ios"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "md"
|
|
385
|
+
}
|
|
386
|
+
]
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "shape",
|
|
390
|
+
"description": "Set to `\"soft\"` for an avatar with slightly rounded corners,\n`\"round\"` for an avatar with fully rounded corners, or `\"rectangular\"`\nfor an avatar without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
391
|
+
"values": [
|
|
392
|
+
{
|
|
393
|
+
"name": "rectangular"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "round"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"name": "soft"
|
|
400
|
+
}
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"name": "size",
|
|
405
|
+
"description": "Set to `\"xxsmall\"` for the smallest size.\nSet to `\"xsmall\"` for a very small size.\nSet to `\"small\"` for a compact size.\nSet to `\"medium\"` for the default height and width.\nSet to `\"large\"` for a larger size.\nSet to `\"xlarge\"` for the largest dimensions.\n\nDefaults to `\"medium\"` for the `ionic` theme, undefined for all other themes.",
|
|
406
|
+
"values": [
|
|
407
|
+
{
|
|
408
|
+
"name": "large"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"name": "medium"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "small"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"name": "xlarge"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"name": "xsmall"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"name": "xxsmall"
|
|
424
|
+
}
|
|
425
|
+
]
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"name": "theme",
|
|
429
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
430
|
+
"values": [
|
|
431
|
+
{
|
|
432
|
+
"name": "ios"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"name": "md"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"name": "ionic"
|
|
439
|
+
}
|
|
440
|
+
]
|
|
441
|
+
}
|
|
442
|
+
],
|
|
269
443
|
"references": [
|
|
270
444
|
{
|
|
271
445
|
"name": "Source code",
|
|
@@ -327,7 +501,7 @@
|
|
|
327
501
|
},
|
|
328
502
|
{
|
|
329
503
|
"name": "mode",
|
|
330
|
-
"description": "The mode determines
|
|
504
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
331
505
|
"values": [
|
|
332
506
|
{
|
|
333
507
|
"name": "ios"
|
|
@@ -341,6 +515,21 @@
|
|
|
341
515
|
"name": "text",
|
|
342
516
|
"description": "The text to display in the back button."
|
|
343
517
|
},
|
|
518
|
+
{
|
|
519
|
+
"name": "theme",
|
|
520
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
521
|
+
"values": [
|
|
522
|
+
{
|
|
523
|
+
"name": "ios"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"name": "md"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "ionic"
|
|
530
|
+
}
|
|
531
|
+
]
|
|
532
|
+
},
|
|
344
533
|
{
|
|
345
534
|
"name": "type",
|
|
346
535
|
"description": "The type of the button.",
|
|
@@ -371,6 +560,18 @@
|
|
|
371
560
|
"value": ""
|
|
372
561
|
},
|
|
373
562
|
"attributes": [
|
|
563
|
+
{
|
|
564
|
+
"name": "mode",
|
|
565
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
566
|
+
"values": [
|
|
567
|
+
{
|
|
568
|
+
"name": "ios"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"name": "md"
|
|
572
|
+
}
|
|
573
|
+
]
|
|
574
|
+
},
|
|
374
575
|
{
|
|
375
576
|
"name": "stop-propagation",
|
|
376
577
|
"description": "If `true`, the backdrop will stop propagation on tap."
|
|
@@ -379,6 +580,21 @@
|
|
|
379
580
|
"name": "tappable",
|
|
380
581
|
"description": "If `true`, the backdrop will can be clicked and will emit the `ionBackdropTap` event."
|
|
381
582
|
},
|
|
583
|
+
{
|
|
584
|
+
"name": "theme",
|
|
585
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
586
|
+
"values": [
|
|
587
|
+
{
|
|
588
|
+
"name": "ios"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"name": "md"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"name": "ionic"
|
|
595
|
+
}
|
|
596
|
+
]
|
|
597
|
+
},
|
|
382
598
|
{
|
|
383
599
|
"name": "visible",
|
|
384
600
|
"description": "If `true`, the backdrop will be visible."
|
|
@@ -433,13 +649,73 @@
|
|
|
433
649
|
},
|
|
434
650
|
{
|
|
435
651
|
"name": "mode",
|
|
436
|
-
"description": "The mode determines
|
|
652
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
653
|
+
"values": [
|
|
654
|
+
{
|
|
655
|
+
"name": "ios"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "md"
|
|
659
|
+
}
|
|
660
|
+
]
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "shape",
|
|
664
|
+
"description": "Set to `\"rectangular\"` for non-rounded corners.\nSet to `\"soft\"` for slightly rounded corners.\nSet to `\"round\"` for fully rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
665
|
+
"values": [
|
|
666
|
+
{
|
|
667
|
+
"name": "soft"
|
|
668
|
+
}
|
|
669
|
+
]
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
"name": "size",
|
|
673
|
+
"description": "Set to `\"xxsmall\"` for the smallest badge.\nSet to \"xsmall\" for a very small badge.\nSet to `\"small\"` for a small badge.\nSet to \"medium\" for a medium badge.\nSet to \"large\" for a large badge.\nSet to `\"xlarge\"` for the largest badge.\n\nDefaults to `\"small\"` for the `ionic` theme, undefined for all other themes.",
|
|
674
|
+
"values": [
|
|
675
|
+
{
|
|
676
|
+
"name": "large"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"name": "medium"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"name": "small"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "xlarge"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"name": "xsmall"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"name": "xxsmall"
|
|
692
|
+
}
|
|
693
|
+
]
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"name": "theme",
|
|
697
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
437
698
|
"values": [
|
|
438
699
|
{
|
|
439
700
|
"name": "ios"
|
|
440
701
|
},
|
|
441
702
|
{
|
|
442
703
|
"name": "md"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"name": "ionic"
|
|
707
|
+
}
|
|
708
|
+
]
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"name": "vertical",
|
|
712
|
+
"description": "Set to `\"top\"` to position the badge on top right absolute position of the parent element.\nSet to `\"bottom\"` to position the badge on bottom right absolute position of the parent element.",
|
|
713
|
+
"values": [
|
|
714
|
+
{
|
|
715
|
+
"name": "bottom"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"name": "top"
|
|
443
719
|
}
|
|
444
720
|
]
|
|
445
721
|
}
|
|
@@ -509,7 +785,7 @@
|
|
|
509
785
|
},
|
|
510
786
|
{
|
|
511
787
|
"name": "mode",
|
|
512
|
-
"description": "The mode determines
|
|
788
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
513
789
|
"values": [
|
|
514
790
|
{
|
|
515
791
|
"name": "ios"
|
|
@@ -545,6 +821,21 @@
|
|
|
545
821
|
{
|
|
546
822
|
"name": "target",
|
|
547
823
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"name": "theme",
|
|
827
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
828
|
+
"values": [
|
|
829
|
+
{
|
|
830
|
+
"name": "ios"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"name": "md"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"name": "ionic"
|
|
837
|
+
}
|
|
838
|
+
]
|
|
548
839
|
}
|
|
549
840
|
],
|
|
550
841
|
"references": [
|
|
@@ -608,7 +899,7 @@
|
|
|
608
899
|
},
|
|
609
900
|
{
|
|
610
901
|
"name": "mode",
|
|
611
|
-
"description": "The mode determines
|
|
902
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
612
903
|
"values": [
|
|
613
904
|
{
|
|
614
905
|
"name": "ios"
|
|
@@ -617,7 +908,22 @@
|
|
|
617
908
|
"name": "md"
|
|
618
909
|
}
|
|
619
910
|
]
|
|
620
|
-
}
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"name": "theme",
|
|
914
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
915
|
+
"values": [
|
|
916
|
+
{
|
|
917
|
+
"name": "ios"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"name": "md"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "ionic"
|
|
924
|
+
}
|
|
925
|
+
]
|
|
926
|
+
}
|
|
621
927
|
],
|
|
622
928
|
"references": [
|
|
623
929
|
{
|
|
@@ -718,7 +1024,7 @@
|
|
|
718
1024
|
},
|
|
719
1025
|
{
|
|
720
1026
|
"name": "mode",
|
|
721
|
-
"description": "The mode determines
|
|
1027
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
722
1028
|
"values": [
|
|
723
1029
|
{
|
|
724
1030
|
"name": "ios"
|
|
@@ -749,10 +1055,16 @@
|
|
|
749
1055
|
},
|
|
750
1056
|
{
|
|
751
1057
|
"name": "shape",
|
|
752
|
-
"description": "Set to `\"round\"` for a button with
|
|
1058
|
+
"description": "Set to `\"soft\"` for a button with slightly rounded corners, `\"round\"` for a button with fully\nrounded corners, or `\"rectangular\"` for a button without rounded corners.\nDefaults to `\"soft\"` for the `\"ios\"` theme and `\"round\"` for all other themes.",
|
|
753
1059
|
"values": [
|
|
1060
|
+
{
|
|
1061
|
+
"name": "rectangular"
|
|
1062
|
+
},
|
|
754
1063
|
{
|
|
755
1064
|
"name": "round"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"name": "soft"
|
|
756
1068
|
}
|
|
757
1069
|
]
|
|
758
1070
|
},
|
|
@@ -768,6 +1080,12 @@
|
|
|
768
1080
|
},
|
|
769
1081
|
{
|
|
770
1082
|
"name": "small"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"name": "xlarge"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "xsmall"
|
|
771
1089
|
}
|
|
772
1090
|
]
|
|
773
1091
|
},
|
|
@@ -779,6 +1097,21 @@
|
|
|
779
1097
|
"name": "target",
|
|
780
1098
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
781
1099
|
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "theme",
|
|
1102
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1103
|
+
"values": [
|
|
1104
|
+
{
|
|
1105
|
+
"name": "ios"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "md"
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"name": "ionic"
|
|
1112
|
+
}
|
|
1113
|
+
]
|
|
1114
|
+
},
|
|
782
1115
|
{
|
|
783
1116
|
"name": "type",
|
|
784
1117
|
"description": "The type of the button.",
|
|
@@ -811,7 +1144,34 @@
|
|
|
811
1144
|
"attributes": [
|
|
812
1145
|
{
|
|
813
1146
|
"name": "collapse",
|
|
814
|
-
"description": "If true, buttons will disappear when its\nparent toolbar has fully collapsed if the toolbar\nis not the first toolbar. If the toolbar is the\nfirst toolbar, the buttons will be hidden and will\nonly be shown once all toolbars have fully collapsed.\n\nOnly applies in `ios`
|
|
1147
|
+
"description": "If true, buttons will disappear when its\nparent toolbar has fully collapsed if the toolbar\nis not the first toolbar. If the toolbar is the\nfirst toolbar, the buttons will be hidden and will\nonly be shown once all toolbars have fully collapsed.\n\nOnly applies in the `ios` theme with `collapse` set to\n`true` on `ion-header`.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"name": "mode",
|
|
1151
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1152
|
+
"values": [
|
|
1153
|
+
{
|
|
1154
|
+
"name": "ios"
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"name": "md"
|
|
1158
|
+
}
|
|
1159
|
+
]
|
|
1160
|
+
},
|
|
1161
|
+
{
|
|
1162
|
+
"name": "theme",
|
|
1163
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1164
|
+
"values": [
|
|
1165
|
+
{
|
|
1166
|
+
"name": "ios"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"name": "md"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"name": "ionic"
|
|
1173
|
+
}
|
|
1174
|
+
]
|
|
815
1175
|
}
|
|
816
1176
|
],
|
|
817
1177
|
"references": [
|
|
@@ -879,7 +1239,7 @@
|
|
|
879
1239
|
},
|
|
880
1240
|
{
|
|
881
1241
|
"name": "mode",
|
|
882
|
-
"description": "The mode determines
|
|
1242
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
883
1243
|
"values": [
|
|
884
1244
|
{
|
|
885
1245
|
"name": "ios"
|
|
@@ -908,10 +1268,40 @@
|
|
|
908
1268
|
}
|
|
909
1269
|
]
|
|
910
1270
|
},
|
|
1271
|
+
{
|
|
1272
|
+
"name": "shape",
|
|
1273
|
+
"description": "Set to `\"soft\"` for a card with slightly rounded corners, `\"round\"` for a card with more\nrounded corners, or `\"rectangular\"` for a card without rounded corners.\nDefaults to `\"round\"`.",
|
|
1274
|
+
"values": [
|
|
1275
|
+
{
|
|
1276
|
+
"name": "rectangular"
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
"name": "round"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"name": "soft"
|
|
1283
|
+
}
|
|
1284
|
+
]
|
|
1285
|
+
},
|
|
911
1286
|
{
|
|
912
1287
|
"name": "target",
|
|
913
1288
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
914
1289
|
},
|
|
1290
|
+
{
|
|
1291
|
+
"name": "theme",
|
|
1292
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1293
|
+
"values": [
|
|
1294
|
+
{
|
|
1295
|
+
"name": "ios"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"name": "md"
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"name": "ionic"
|
|
1302
|
+
}
|
|
1303
|
+
]
|
|
1304
|
+
},
|
|
915
1305
|
{
|
|
916
1306
|
"name": "type",
|
|
917
1307
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -944,13 +1334,28 @@
|
|
|
944
1334
|
"attributes": [
|
|
945
1335
|
{
|
|
946
1336
|
"name": "mode",
|
|
947
|
-
"description": "The mode determines
|
|
1337
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1338
|
+
"values": [
|
|
1339
|
+
{
|
|
1340
|
+
"name": "ios"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"name": "md"
|
|
1344
|
+
}
|
|
1345
|
+
]
|
|
1346
|
+
},
|
|
1347
|
+
{
|
|
1348
|
+
"name": "theme",
|
|
1349
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
948
1350
|
"values": [
|
|
949
1351
|
{
|
|
950
1352
|
"name": "ios"
|
|
951
1353
|
},
|
|
952
1354
|
{
|
|
953
1355
|
"name": "md"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"name": "ionic"
|
|
954
1359
|
}
|
|
955
1360
|
]
|
|
956
1361
|
}
|
|
@@ -1004,19 +1409,34 @@
|
|
|
1004
1409
|
},
|
|
1005
1410
|
{
|
|
1006
1411
|
"name": "mode",
|
|
1007
|
-
"description": "The mode determines
|
|
1412
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1413
|
+
"values": [
|
|
1414
|
+
{
|
|
1415
|
+
"name": "ios"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"name": "md"
|
|
1419
|
+
}
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"name": "theme",
|
|
1424
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1008
1425
|
"values": [
|
|
1009
1426
|
{
|
|
1010
1427
|
"name": "ios"
|
|
1011
1428
|
},
|
|
1012
1429
|
{
|
|
1013
1430
|
"name": "md"
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
"name": "ionic"
|
|
1014
1434
|
}
|
|
1015
1435
|
]
|
|
1016
1436
|
},
|
|
1017
1437
|
{
|
|
1018
1438
|
"name": "translucent",
|
|
1019
|
-
"description": "If `true`, the card header will be translucent.\nOnly applies when the
|
|
1439
|
+
"description": "If `true`, the card header will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
1020
1440
|
}
|
|
1021
1441
|
],
|
|
1022
1442
|
"references": [
|
|
@@ -1068,13 +1488,28 @@
|
|
|
1068
1488
|
},
|
|
1069
1489
|
{
|
|
1070
1490
|
"name": "mode",
|
|
1071
|
-
"description": "The mode determines
|
|
1491
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1492
|
+
"values": [
|
|
1493
|
+
{
|
|
1494
|
+
"name": "ios"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"name": "md"
|
|
1498
|
+
}
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"name": "theme",
|
|
1503
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1072
1504
|
"values": [
|
|
1073
1505
|
{
|
|
1074
1506
|
"name": "ios"
|
|
1075
1507
|
},
|
|
1076
1508
|
{
|
|
1077
1509
|
"name": "md"
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"name": "ionic"
|
|
1078
1513
|
}
|
|
1079
1514
|
]
|
|
1080
1515
|
}
|
|
@@ -1128,13 +1563,28 @@
|
|
|
1128
1563
|
},
|
|
1129
1564
|
{
|
|
1130
1565
|
"name": "mode",
|
|
1131
|
-
"description": "The mode determines
|
|
1566
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1567
|
+
"values": [
|
|
1568
|
+
{
|
|
1569
|
+
"name": "ios"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"name": "md"
|
|
1573
|
+
}
|
|
1574
|
+
]
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"name": "theme",
|
|
1578
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1132
1579
|
"values": [
|
|
1133
1580
|
{
|
|
1134
1581
|
"name": "ios"
|
|
1135
1582
|
},
|
|
1136
1583
|
{
|
|
1137
1584
|
"name": "md"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"name": "ionic"
|
|
1138
1588
|
}
|
|
1139
1589
|
]
|
|
1140
1590
|
}
|
|
@@ -1253,7 +1703,7 @@
|
|
|
1253
1703
|
},
|
|
1254
1704
|
{
|
|
1255
1705
|
"name": "mode",
|
|
1256
|
-
"description": "The mode determines
|
|
1706
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1257
1707
|
"values": [
|
|
1258
1708
|
{
|
|
1259
1709
|
"name": "ios"
|
|
@@ -1271,6 +1721,42 @@
|
|
|
1271
1721
|
"name": "required",
|
|
1272
1722
|
"description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid."
|
|
1273
1723
|
},
|
|
1724
|
+
{
|
|
1725
|
+
"name": "shape",
|
|
1726
|
+
"description": "Set to `\"soft\"` for a checkbox with more rounded corners. Only available when the theme is `\"ionic\"`.",
|
|
1727
|
+
"values": [
|
|
1728
|
+
{
|
|
1729
|
+
"name": "rectangular"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"name": "soft"
|
|
1733
|
+
}
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"name": "size",
|
|
1738
|
+
"description": "Set to `\"small\"` for a checkbox with less height and padding.",
|
|
1739
|
+
"values": [
|
|
1740
|
+
{
|
|
1741
|
+
"name": "small"
|
|
1742
|
+
}
|
|
1743
|
+
]
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"name": "theme",
|
|
1747
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1748
|
+
"values": [
|
|
1749
|
+
{
|
|
1750
|
+
"name": "ios"
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
"name": "md"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
"name": "ionic"
|
|
1757
|
+
}
|
|
1758
|
+
]
|
|
1759
|
+
},
|
|
1274
1760
|
{
|
|
1275
1761
|
"name": "value",
|
|
1276
1762
|
"description": "The value of the checkbox does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a checkbox is analogous to the value of an `<input type=\"checkbox\">`,\nit's only used when the checkbox participates in a native `<form>`."
|
|
@@ -1329,7 +1815,7 @@
|
|
|
1329
1815
|
},
|
|
1330
1816
|
{
|
|
1331
1817
|
"name": "mode",
|
|
1332
|
-
"description": "The mode determines
|
|
1818
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1333
1819
|
"values": [
|
|
1334
1820
|
{
|
|
1335
1821
|
"name": "ios"
|
|
@@ -1342,6 +1828,48 @@
|
|
|
1342
1828
|
{
|
|
1343
1829
|
"name": "outline",
|
|
1344
1830
|
"description": "Display an outline style button."
|
|
1831
|
+
},
|
|
1832
|
+
{
|
|
1833
|
+
"name": "shape",
|
|
1834
|
+
"description": "Set to `\"soft\"` for a chip with slightly rounded corners, `\"round\"` for a chip with fully\nrounded corners, or `\"rectangular\"` for a chip without rounded corners.\nDefaults to `\"round\"` for the `\"ionic\"` theme and `\"soft\"` for all other themes.",
|
|
1835
|
+
"values": [
|
|
1836
|
+
{
|
|
1837
|
+
"name": "rectangular"
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
"name": "round"
|
|
1841
|
+
},
|
|
1842
|
+
{
|
|
1843
|
+
"name": "soft"
|
|
1844
|
+
}
|
|
1845
|
+
]
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
"name": "size",
|
|
1849
|
+
"description": "Set to `\"small\"` for a chip with less height and padding.\n\nDefaults to `\"large\"` for the ionic theme, and undefined for all other themes.",
|
|
1850
|
+
"values": [
|
|
1851
|
+
{
|
|
1852
|
+
"name": "large"
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"name": "small"
|
|
1856
|
+
}
|
|
1857
|
+
]
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
"name": "theme",
|
|
1861
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1862
|
+
"values": [
|
|
1863
|
+
{
|
|
1864
|
+
"name": "ios"
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
"name": "md"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"name": "ionic"
|
|
1871
|
+
}
|
|
1872
|
+
]
|
|
1345
1873
|
}
|
|
1346
1874
|
],
|
|
1347
1875
|
"references": [
|
|
@@ -1358,6 +1886,18 @@
|
|
|
1358
1886
|
"value": ""
|
|
1359
1887
|
},
|
|
1360
1888
|
"attributes": [
|
|
1889
|
+
{
|
|
1890
|
+
"name": "mode",
|
|
1891
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1892
|
+
"values": [
|
|
1893
|
+
{
|
|
1894
|
+
"name": "ios"
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"name": "md"
|
|
1898
|
+
}
|
|
1899
|
+
]
|
|
1900
|
+
},
|
|
1361
1901
|
{
|
|
1362
1902
|
"name": "offset",
|
|
1363
1903
|
"description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available."
|
|
@@ -1453,6 +1993,21 @@
|
|
|
1453
1993
|
{
|
|
1454
1994
|
"name": "size-xs",
|
|
1455
1995
|
"description": "The size of the column for xs screens, in terms of how many columns it should take up out\nof the total available. If `\"auto\"` is passed, the column will be the size of its content."
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"name": "theme",
|
|
1999
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2000
|
+
"values": [
|
|
2001
|
+
{
|
|
2002
|
+
"name": "ios"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"name": "md"
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"name": "ionic"
|
|
2009
|
+
}
|
|
2010
|
+
]
|
|
1456
2011
|
}
|
|
1457
2012
|
],
|
|
1458
2013
|
"references": [
|
|
@@ -1522,6 +2077,18 @@
|
|
|
1522
2077
|
"name": "fullscreen",
|
|
1523
2078
|
"description": "If `true`, the content will scroll behind the headers\nand footers. This effect can easily be seen by setting the toolbar\nto transparent."
|
|
1524
2079
|
},
|
|
2080
|
+
{
|
|
2081
|
+
"name": "mode",
|
|
2082
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2083
|
+
"values": [
|
|
2084
|
+
{
|
|
2085
|
+
"name": "ios"
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"name": "md"
|
|
2089
|
+
}
|
|
2090
|
+
]
|
|
2091
|
+
},
|
|
1525
2092
|
{
|
|
1526
2093
|
"name": "scroll-events",
|
|
1527
2094
|
"description": "Because of performance reasons, ionScroll events are disabled by default, in order to enable them\nand start listening from (ionScroll), set this property to `true`."
|
|
@@ -1533,6 +2100,21 @@
|
|
|
1533
2100
|
{
|
|
1534
2101
|
"name": "scroll-y",
|
|
1535
2102
|
"description": "If you want to disable the content scrolling in the Y axis, set this property to `false`."
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
"name": "theme",
|
|
2106
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2107
|
+
"values": [
|
|
2108
|
+
{
|
|
2109
|
+
"name": "ios"
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"name": "md"
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"name": "ionic"
|
|
2116
|
+
}
|
|
2117
|
+
]
|
|
1536
2118
|
}
|
|
1537
2119
|
],
|
|
1538
2120
|
"references": [
|
|
@@ -1646,7 +2228,7 @@
|
|
|
1646
2228
|
},
|
|
1647
2229
|
{
|
|
1648
2230
|
"name": "mode",
|
|
1649
|
-
"description": "The mode determines
|
|
2231
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1650
2232
|
"values": [
|
|
1651
2233
|
{
|
|
1652
2234
|
"name": "ios"
|
|
@@ -1732,11 +2314,26 @@
|
|
|
1732
2314
|
]
|
|
1733
2315
|
},
|
|
1734
2316
|
{
|
|
1735
|
-
"name": "
|
|
1736
|
-
"description": "The
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
2317
|
+
"name": "theme",
|
|
2318
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2319
|
+
"values": [
|
|
2320
|
+
{
|
|
2321
|
+
"name": "ios"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"name": "md"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"name": "ionic"
|
|
2328
|
+
}
|
|
2329
|
+
]
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
"name": "value",
|
|
2333
|
+
"description": "The value of the datetime as a valid ISO 8601 datetime string.\nThis should be an array of strings only when `multiple=\"true\"`."
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"name": "year-values",
|
|
1740
2337
|
"description": "Values used to create the list of selectable years. By default\nthe year values range between the `min` and `max` datetime inputs. However, to\ncontrol exactly which years to display, the `yearValues` input can take a number, an array\nof numbers, or string of comma separated numbers. For example, to show upcoming and\nrecent leap years, then this input's value would be `yearValues=\"2008,2012,2016,2020,2024\"`."
|
|
1741
2338
|
}
|
|
1742
2339
|
],
|
|
@@ -1797,13 +2394,28 @@
|
|
|
1797
2394
|
},
|
|
1798
2395
|
{
|
|
1799
2396
|
"name": "mode",
|
|
1800
|
-
"description": "The mode determines
|
|
2397
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2398
|
+
"values": [
|
|
2399
|
+
{
|
|
2400
|
+
"name": "ios"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"name": "md"
|
|
2404
|
+
}
|
|
2405
|
+
]
|
|
2406
|
+
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "theme",
|
|
2409
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
1801
2410
|
"values": [
|
|
1802
2411
|
{
|
|
1803
2412
|
"name": "ios"
|
|
1804
2413
|
},
|
|
1805
2414
|
{
|
|
1806
2415
|
"name": "md"
|
|
2416
|
+
},
|
|
2417
|
+
{
|
|
2418
|
+
"name": "ionic"
|
|
1807
2419
|
}
|
|
1808
2420
|
]
|
|
1809
2421
|
}
|
|
@@ -1815,6 +2427,52 @@
|
|
|
1815
2427
|
}
|
|
1816
2428
|
]
|
|
1817
2429
|
},
|
|
2430
|
+
{
|
|
2431
|
+
"name": "ion-divider",
|
|
2432
|
+
"description": {
|
|
2433
|
+
"kind": "markdown",
|
|
2434
|
+
"value": ""
|
|
2435
|
+
},
|
|
2436
|
+
"attributes": [
|
|
2437
|
+
{
|
|
2438
|
+
"name": "inset",
|
|
2439
|
+
"description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`"
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"name": "spacing",
|
|
2443
|
+
"description": "Set to `\"xxsmall\"` for the smallest spacing.\nSet to \"xsmall\" for very small spacing.\nSet to `\"small\"` for small spacing.\nSet to \"medium\" for medium spacing.\nSet to \"large\" for large spacing.\nSet to `\"xlarge\"` for the largest spacing.\n\nDefaults to `\"medium\"`.",
|
|
2444
|
+
"values": [
|
|
2445
|
+
{
|
|
2446
|
+
"name": "large"
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
"name": "medium"
|
|
2450
|
+
},
|
|
2451
|
+
{
|
|
2452
|
+
"name": "small"
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
"name": "xlarge"
|
|
2456
|
+
},
|
|
2457
|
+
{
|
|
2458
|
+
"name": "xsmall"
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"name": "xxlarge"
|
|
2462
|
+
},
|
|
2463
|
+
{
|
|
2464
|
+
"name": "xxsmall"
|
|
2465
|
+
}
|
|
2466
|
+
]
|
|
2467
|
+
}
|
|
2468
|
+
],
|
|
2469
|
+
"references": [
|
|
2470
|
+
{
|
|
2471
|
+
"name": "Source code",
|
|
2472
|
+
"url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/divider/divider.tsx"
|
|
2473
|
+
}
|
|
2474
|
+
]
|
|
2475
|
+
},
|
|
1818
2476
|
{
|
|
1819
2477
|
"name": "ion-fab",
|
|
1820
2478
|
"description": {
|
|
@@ -1845,6 +2503,33 @@
|
|
|
1845
2503
|
}
|
|
1846
2504
|
]
|
|
1847
2505
|
},
|
|
2506
|
+
{
|
|
2507
|
+
"name": "mode",
|
|
2508
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2509
|
+
"values": [
|
|
2510
|
+
{
|
|
2511
|
+
"name": "ios"
|
|
2512
|
+
},
|
|
2513
|
+
{
|
|
2514
|
+
"name": "md"
|
|
2515
|
+
}
|
|
2516
|
+
]
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"name": "theme",
|
|
2520
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2521
|
+
"values": [
|
|
2522
|
+
{
|
|
2523
|
+
"name": "ios"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"name": "md"
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
"name": "ionic"
|
|
2530
|
+
}
|
|
2531
|
+
]
|
|
2532
|
+
},
|
|
1848
2533
|
{
|
|
1849
2534
|
"name": "vertical",
|
|
1850
2535
|
"description": "Where to align the fab vertically in the viewport.",
|
|
@@ -1930,7 +2615,7 @@
|
|
|
1930
2615
|
},
|
|
1931
2616
|
{
|
|
1932
2617
|
"name": "mode",
|
|
1933
|
-
"description": "The mode determines
|
|
2618
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
1934
2619
|
"values": [
|
|
1935
2620
|
{
|
|
1936
2621
|
"name": "ios"
|
|
@@ -1976,9 +2661,24 @@
|
|
|
1976
2661
|
"name": "target",
|
|
1977
2662
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
1978
2663
|
},
|
|
2664
|
+
{
|
|
2665
|
+
"name": "theme",
|
|
2666
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2667
|
+
"values": [
|
|
2668
|
+
{
|
|
2669
|
+
"name": "ios"
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
"name": "md"
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"name": "ionic"
|
|
2676
|
+
}
|
|
2677
|
+
]
|
|
2678
|
+
},
|
|
1979
2679
|
{
|
|
1980
2680
|
"name": "translucent",
|
|
1981
|
-
"description": "If `true`, the fab button will be translucent.\nOnly applies when the
|
|
2681
|
+
"description": "If `true`, the fab button will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
1982
2682
|
},
|
|
1983
2683
|
{
|
|
1984
2684
|
"name": "type",
|
|
@@ -2014,6 +2714,18 @@
|
|
|
2014
2714
|
"name": "activated",
|
|
2015
2715
|
"description": "If `true`, the fab list will show all fab buttons in the list."
|
|
2016
2716
|
},
|
|
2717
|
+
{
|
|
2718
|
+
"name": "mode",
|
|
2719
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2720
|
+
"values": [
|
|
2721
|
+
{
|
|
2722
|
+
"name": "ios"
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"name": "md"
|
|
2726
|
+
}
|
|
2727
|
+
]
|
|
2728
|
+
},
|
|
2017
2729
|
{
|
|
2018
2730
|
"name": "side",
|
|
2019
2731
|
"description": "The side the fab list will show on relative to the main fab button.",
|
|
@@ -2031,6 +2743,21 @@
|
|
|
2031
2743
|
"name": "top"
|
|
2032
2744
|
}
|
|
2033
2745
|
]
|
|
2746
|
+
},
|
|
2747
|
+
{
|
|
2748
|
+
"name": "theme",
|
|
2749
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2750
|
+
"values": [
|
|
2751
|
+
{
|
|
2752
|
+
"name": "ios"
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"name": "md"
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
"name": "ionic"
|
|
2759
|
+
}
|
|
2760
|
+
]
|
|
2034
2761
|
}
|
|
2035
2762
|
],
|
|
2036
2763
|
"references": [
|
|
@@ -2049,7 +2776,7 @@
|
|
|
2049
2776
|
"attributes": [
|
|
2050
2777
|
{
|
|
2051
2778
|
"name": "collapse",
|
|
2052
|
-
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies
|
|
2779
|
+
"description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
|
|
2053
2780
|
"values": [
|
|
2054
2781
|
{
|
|
2055
2782
|
"name": "fade"
|
|
@@ -2058,19 +2785,34 @@
|
|
|
2058
2785
|
},
|
|
2059
2786
|
{
|
|
2060
2787
|
"name": "mode",
|
|
2061
|
-
"description": "The mode determines
|
|
2788
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2789
|
+
"values": [
|
|
2790
|
+
{
|
|
2791
|
+
"name": "ios"
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
"name": "md"
|
|
2795
|
+
}
|
|
2796
|
+
]
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"name": "theme",
|
|
2800
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2062
2801
|
"values": [
|
|
2063
2802
|
{
|
|
2064
2803
|
"name": "ios"
|
|
2065
2804
|
},
|
|
2066
2805
|
{
|
|
2067
2806
|
"name": "md"
|
|
2807
|
+
},
|
|
2808
|
+
{
|
|
2809
|
+
"name": "ionic"
|
|
2068
2810
|
}
|
|
2069
2811
|
]
|
|
2070
2812
|
},
|
|
2071
2813
|
{
|
|
2072
2814
|
"name": "translucent",
|
|
2073
|
-
"description": "If `true`, the footer will be translucent.\nOnly applies when the
|
|
2815
|
+
"description": "If `true`, the footer will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the footer, the `fullscreen`\nattribute needs to be set on the content."
|
|
2074
2816
|
}
|
|
2075
2817
|
],
|
|
2076
2818
|
"references": [
|
|
@@ -2090,6 +2832,33 @@
|
|
|
2090
2832
|
{
|
|
2091
2833
|
"name": "fixed",
|
|
2092
2834
|
"description": "If `true`, the grid will have a fixed width based on the screen size."
|
|
2835
|
+
},
|
|
2836
|
+
{
|
|
2837
|
+
"name": "mode",
|
|
2838
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2839
|
+
"values": [
|
|
2840
|
+
{
|
|
2841
|
+
"name": "ios"
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
"name": "md"
|
|
2845
|
+
}
|
|
2846
|
+
]
|
|
2847
|
+
},
|
|
2848
|
+
{
|
|
2849
|
+
"name": "theme",
|
|
2850
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2851
|
+
"values": [
|
|
2852
|
+
{
|
|
2853
|
+
"name": "ios"
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
"name": "md"
|
|
2857
|
+
},
|
|
2858
|
+
{
|
|
2859
|
+
"name": "ionic"
|
|
2860
|
+
}
|
|
2861
|
+
]
|
|
2093
2862
|
}
|
|
2094
2863
|
],
|
|
2095
2864
|
"references": [
|
|
@@ -2108,7 +2877,7 @@
|
|
|
2108
2877
|
"attributes": [
|
|
2109
2878
|
{
|
|
2110
2879
|
"name": "collapse",
|
|
2111
|
-
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies
|
|
2880
|
+
"description": "Describes the scroll effect that will be applied to the header.\nOnly applies when the theme is `\"ios\"`.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
|
|
2112
2881
|
"values": [
|
|
2113
2882
|
{
|
|
2114
2883
|
"name": "condense"
|
|
@@ -2118,21 +2887,40 @@
|
|
|
2118
2887
|
}
|
|
2119
2888
|
]
|
|
2120
2889
|
},
|
|
2890
|
+
{
|
|
2891
|
+
"name": "divider",
|
|
2892
|
+
"description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes"
|
|
2893
|
+
},
|
|
2121
2894
|
{
|
|
2122
2895
|
"name": "mode",
|
|
2123
|
-
"description": "The mode determines
|
|
2896
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2897
|
+
"values": [
|
|
2898
|
+
{
|
|
2899
|
+
"name": "ios"
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"name": "md"
|
|
2903
|
+
}
|
|
2904
|
+
]
|
|
2905
|
+
},
|
|
2906
|
+
{
|
|
2907
|
+
"name": "theme",
|
|
2908
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2124
2909
|
"values": [
|
|
2125
2910
|
{
|
|
2126
2911
|
"name": "ios"
|
|
2127
2912
|
},
|
|
2128
2913
|
{
|
|
2129
2914
|
"name": "md"
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"name": "ionic"
|
|
2130
2918
|
}
|
|
2131
2919
|
]
|
|
2132
2920
|
},
|
|
2133
2921
|
{
|
|
2134
2922
|
"name": "translucent",
|
|
2135
|
-
"description": "If `true`, the header will be translucent.\nOnly applies when the
|
|
2923
|
+
"description": "If `true`, the header will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility).\n\nNote: In order to scroll content behind the header, the `fullscreen`\nattribute needs to be set on the content."
|
|
2136
2924
|
}
|
|
2137
2925
|
],
|
|
2138
2926
|
"references": [
|
|
@@ -2153,9 +2941,36 @@
|
|
|
2153
2941
|
"name": "alt",
|
|
2154
2942
|
"description": "This attribute defines the alternative text describing the image.\nUsers will see this text displayed if the image URL is wrong,\nthe image is not in one of the supported formats, or if the image is not yet downloaded."
|
|
2155
2943
|
},
|
|
2944
|
+
{
|
|
2945
|
+
"name": "mode",
|
|
2946
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2947
|
+
"values": [
|
|
2948
|
+
{
|
|
2949
|
+
"name": "ios"
|
|
2950
|
+
},
|
|
2951
|
+
{
|
|
2952
|
+
"name": "md"
|
|
2953
|
+
}
|
|
2954
|
+
]
|
|
2955
|
+
},
|
|
2156
2956
|
{
|
|
2157
2957
|
"name": "src",
|
|
2158
2958
|
"description": "The image URL. This attribute is mandatory for the `<img>` element."
|
|
2959
|
+
},
|
|
2960
|
+
{
|
|
2961
|
+
"name": "theme",
|
|
2962
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
2963
|
+
"values": [
|
|
2964
|
+
{
|
|
2965
|
+
"name": "ios"
|
|
2966
|
+
},
|
|
2967
|
+
{
|
|
2968
|
+
"name": "md"
|
|
2969
|
+
},
|
|
2970
|
+
{
|
|
2971
|
+
"name": "ionic"
|
|
2972
|
+
}
|
|
2973
|
+
]
|
|
2159
2974
|
}
|
|
2160
2975
|
],
|
|
2161
2976
|
"references": [
|
|
@@ -2176,6 +2991,18 @@
|
|
|
2176
2991
|
"name": "disabled",
|
|
2177
2992
|
"description": "If `true`, the infinite scroll will be hidden and scroll event listeners\nwill be removed.\n\nSet this to true to disable the infinite scroll from actively\ntrying to receive new data while scrolling. This is useful\nwhen it is known that there is no more data that can be added, and\nthe infinite scroll is no longer needed."
|
|
2178
2993
|
},
|
|
2994
|
+
{
|
|
2995
|
+
"name": "mode",
|
|
2996
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2997
|
+
"values": [
|
|
2998
|
+
{
|
|
2999
|
+
"name": "ios"
|
|
3000
|
+
},
|
|
3001
|
+
{
|
|
3002
|
+
"name": "md"
|
|
3003
|
+
}
|
|
3004
|
+
]
|
|
3005
|
+
},
|
|
2179
3006
|
{
|
|
2180
3007
|
"name": "position",
|
|
2181
3008
|
"description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
|
|
@@ -2188,6 +3015,21 @@
|
|
|
2188
3015
|
}
|
|
2189
3016
|
]
|
|
2190
3017
|
},
|
|
3018
|
+
{
|
|
3019
|
+
"name": "theme",
|
|
3020
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3021
|
+
"values": [
|
|
3022
|
+
{
|
|
3023
|
+
"name": "ios"
|
|
3024
|
+
},
|
|
3025
|
+
{
|
|
3026
|
+
"name": "md"
|
|
3027
|
+
},
|
|
3028
|
+
{
|
|
3029
|
+
"name": "ionic"
|
|
3030
|
+
}
|
|
3031
|
+
]
|
|
3032
|
+
},
|
|
2191
3033
|
{
|
|
2192
3034
|
"name": "threshold",
|
|
2193
3035
|
"description": "The threshold distance from the bottom\nof the content to call the `infinite` output event when scrolled.\nThe threshold value can be either a percent, or\nin pixels. For example, use the value of `10%` for the `infinite`\noutput event to get called when the user has scrolled 10%\nfrom the bottom of the page. Use the value `100px` when the\nscroll is within 100 pixels from the bottom of the page."
|
|
@@ -2243,6 +3085,33 @@
|
|
|
2243
3085
|
{
|
|
2244
3086
|
"name": "loading-text",
|
|
2245
3087
|
"description": "Optional text to display while loading.\n`loadingText` can accept either plaintext or HTML as a string.\nTo display characters normally reserved for HTML, they\nmust be escaped. For example `<Ionic>` would become\n`<Ionic>`\n\nFor more information: [Security Documentation](https://ionicframework.com/docs/faq/security)\n\nThis property accepts custom HTML as a string.\nContent is parsed as plaintext by default.\n`innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config\nbefore custom HTML can be used."
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
"name": "mode",
|
|
3091
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3092
|
+
"values": [
|
|
3093
|
+
{
|
|
3094
|
+
"name": "ios"
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"name": "md"
|
|
3098
|
+
}
|
|
3099
|
+
]
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"name": "theme",
|
|
3103
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3104
|
+
"values": [
|
|
3105
|
+
{
|
|
3106
|
+
"name": "ios"
|
|
3107
|
+
},
|
|
3108
|
+
{
|
|
3109
|
+
"name": "md"
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"name": "ionic"
|
|
3113
|
+
}
|
|
3114
|
+
]
|
|
2246
3115
|
}
|
|
2247
3116
|
],
|
|
2248
3117
|
"references": [
|
|
@@ -2271,157 +3140,157 @@
|
|
|
2271
3140
|
"name": "name"
|
|
2272
3141
|
},
|
|
2273
3142
|
{
|
|
2274
|
-
"name": "
|
|
3143
|
+
"name": "url"
|
|
2275
3144
|
},
|
|
2276
3145
|
{
|
|
2277
|
-
"name": "
|
|
3146
|
+
"name": "off"
|
|
2278
3147
|
},
|
|
2279
3148
|
{
|
|
2280
|
-
"name": "
|
|
3149
|
+
"name": "on"
|
|
2281
3150
|
},
|
|
2282
3151
|
{
|
|
2283
|
-
"name": "
|
|
3152
|
+
"name": "additional-name"
|
|
2284
3153
|
},
|
|
2285
3154
|
{
|
|
2286
|
-
"name": "
|
|
3155
|
+
"name": "address-level1"
|
|
2287
3156
|
},
|
|
2288
3157
|
{
|
|
2289
|
-
"name": "
|
|
3158
|
+
"name": "address-level2"
|
|
2290
3159
|
},
|
|
2291
3160
|
{
|
|
2292
|
-
"name": "
|
|
3161
|
+
"name": "address-level3"
|
|
2293
3162
|
},
|
|
2294
3163
|
{
|
|
2295
|
-
"name": "
|
|
3164
|
+
"name": "address-level4"
|
|
2296
3165
|
},
|
|
2297
3166
|
{
|
|
2298
|
-
"name": "
|
|
3167
|
+
"name": "address-line1"
|
|
2299
3168
|
},
|
|
2300
3169
|
{
|
|
2301
|
-
"name": "
|
|
3170
|
+
"name": "address-line2"
|
|
2302
3171
|
},
|
|
2303
3172
|
{
|
|
2304
|
-
"name": "
|
|
3173
|
+
"name": "address-line3"
|
|
2305
3174
|
},
|
|
2306
3175
|
{
|
|
2307
|
-
"name": "
|
|
3176
|
+
"name": "bday-day"
|
|
2308
3177
|
},
|
|
2309
3178
|
{
|
|
2310
|
-
"name": "
|
|
3179
|
+
"name": "bday-month"
|
|
2311
3180
|
},
|
|
2312
3181
|
{
|
|
2313
|
-
"name": "
|
|
3182
|
+
"name": "bday-year"
|
|
2314
3183
|
},
|
|
2315
3184
|
{
|
|
2316
|
-
"name": "
|
|
3185
|
+
"name": "cc-csc"
|
|
2317
3186
|
},
|
|
2318
3187
|
{
|
|
2319
|
-
"name": "
|
|
3188
|
+
"name": "cc-exp"
|
|
2320
3189
|
},
|
|
2321
3190
|
{
|
|
2322
|
-
"name": "
|
|
3191
|
+
"name": "cc-exp-month"
|
|
2323
3192
|
},
|
|
2324
3193
|
{
|
|
2325
|
-
"name": "
|
|
3194
|
+
"name": "cc-exp-year"
|
|
2326
3195
|
},
|
|
2327
3196
|
{
|
|
2328
|
-
"name": "
|
|
3197
|
+
"name": "cc-family-name"
|
|
2329
3198
|
},
|
|
2330
3199
|
{
|
|
2331
|
-
"name": "
|
|
3200
|
+
"name": "cc-given-name"
|
|
2332
3201
|
},
|
|
2333
3202
|
{
|
|
2334
|
-
"name": "
|
|
3203
|
+
"name": "cc-name"
|
|
2335
3204
|
},
|
|
2336
3205
|
{
|
|
2337
|
-
"name": "
|
|
3206
|
+
"name": "cc-number"
|
|
2338
3207
|
},
|
|
2339
3208
|
{
|
|
2340
|
-
"name": "
|
|
3209
|
+
"name": "cc-type"
|
|
2341
3210
|
},
|
|
2342
3211
|
{
|
|
2343
|
-
"name": "
|
|
3212
|
+
"name": "country"
|
|
2344
3213
|
},
|
|
2345
3214
|
{
|
|
2346
|
-
"name": "
|
|
3215
|
+
"name": "country-name"
|
|
2347
3216
|
},
|
|
2348
3217
|
{
|
|
2349
|
-
"name": "
|
|
3218
|
+
"name": "current-password"
|
|
2350
3219
|
},
|
|
2351
3220
|
{
|
|
2352
|
-
"name": "
|
|
3221
|
+
"name": "family-name"
|
|
2353
3222
|
},
|
|
2354
3223
|
{
|
|
2355
|
-
"name": "
|
|
3224
|
+
"name": "given-name"
|
|
2356
3225
|
},
|
|
2357
3226
|
{
|
|
2358
|
-
"name": "
|
|
3227
|
+
"name": "honorific-prefix"
|
|
2359
3228
|
},
|
|
2360
3229
|
{
|
|
2361
|
-
"name": "
|
|
3230
|
+
"name": "honorific-suffix"
|
|
2362
3231
|
},
|
|
2363
3232
|
{
|
|
2364
|
-
"name": "
|
|
3233
|
+
"name": "new-password"
|
|
2365
3234
|
},
|
|
2366
3235
|
{
|
|
2367
|
-
"name": "
|
|
3236
|
+
"name": "one-time-code"
|
|
2368
3237
|
},
|
|
2369
3238
|
{
|
|
2370
|
-
"name": "
|
|
3239
|
+
"name": "organization"
|
|
2371
3240
|
},
|
|
2372
3241
|
{
|
|
2373
|
-
"name": "
|
|
3242
|
+
"name": "postal-code"
|
|
2374
3243
|
},
|
|
2375
3244
|
{
|
|
2376
|
-
"name": "
|
|
3245
|
+
"name": "street-address"
|
|
2377
3246
|
},
|
|
2378
3247
|
{
|
|
2379
|
-
"name": "
|
|
3248
|
+
"name": "transaction-amount"
|
|
2380
3249
|
},
|
|
2381
3250
|
{
|
|
2382
|
-
"name": "
|
|
3251
|
+
"name": "transaction-currency"
|
|
2383
3252
|
},
|
|
2384
3253
|
{
|
|
2385
|
-
"name": "
|
|
3254
|
+
"name": "username"
|
|
2386
3255
|
},
|
|
2387
3256
|
{
|
|
2388
|
-
"name": "
|
|
3257
|
+
"name": "email"
|
|
2389
3258
|
},
|
|
2390
3259
|
{
|
|
2391
|
-
"name": "
|
|
3260
|
+
"name": "tel"
|
|
2392
3261
|
},
|
|
2393
3262
|
{
|
|
2394
|
-
"name": "
|
|
3263
|
+
"name": "tel-area-code"
|
|
2395
3264
|
},
|
|
2396
3265
|
{
|
|
2397
|
-
"name": "
|
|
3266
|
+
"name": "tel-country-code"
|
|
2398
3267
|
},
|
|
2399
3268
|
{
|
|
2400
|
-
"name": "
|
|
3269
|
+
"name": "tel-extension"
|
|
2401
3270
|
},
|
|
2402
3271
|
{
|
|
2403
|
-
"name": "
|
|
3272
|
+
"name": "tel-local"
|
|
2404
3273
|
},
|
|
2405
3274
|
{
|
|
2406
|
-
"name": "
|
|
3275
|
+
"name": "tel-national"
|
|
2407
3276
|
},
|
|
2408
3277
|
{
|
|
2409
|
-
"name": "
|
|
3278
|
+
"name": "nickname"
|
|
2410
3279
|
},
|
|
2411
3280
|
{
|
|
2412
|
-
"name": "
|
|
3281
|
+
"name": "organization-title"
|
|
2413
3282
|
},
|
|
2414
3283
|
{
|
|
2415
|
-
"name": "
|
|
3284
|
+
"name": "cc-additional-name"
|
|
2416
3285
|
},
|
|
2417
3286
|
{
|
|
2418
|
-
"name": "
|
|
3287
|
+
"name": "language"
|
|
2419
3288
|
},
|
|
2420
3289
|
{
|
|
2421
|
-
"name": "
|
|
3290
|
+
"name": "bday"
|
|
2422
3291
|
},
|
|
2423
3292
|
{
|
|
2424
|
-
"name": "
|
|
3293
|
+
"name": "sex"
|
|
2425
3294
|
},
|
|
2426
3295
|
{
|
|
2427
3296
|
"name": "impp"
|
|
@@ -2537,7 +3406,7 @@
|
|
|
2537
3406
|
},
|
|
2538
3407
|
{
|
|
2539
3408
|
"name": "fill",
|
|
2540
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available
|
|
3409
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available when the theme is `\"md\"`.",
|
|
2541
3410
|
"values": [
|
|
2542
3411
|
{
|
|
2543
3412
|
"name": "outline"
|
|
@@ -2587,7 +3456,7 @@
|
|
|
2587
3456
|
},
|
|
2588
3457
|
{
|
|
2589
3458
|
"name": "label-placement",
|
|
2590
|
-
"description": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the input in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the input in LTR and to the left in RTL.\n`\"floating\"`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.\n`\"stacked\"`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").",
|
|
3459
|
+
"description": "Where to place the label relative to the input.\n`\"start\"`: The label will appear to the left of the input in LTR and to the right in RTL.\n`\"end\"`: The label will appear to the right of the input in LTR and to the left in RTL.\n`\"floating\"`: The label will appear smaller and above the input when the input is focused or it has a value. Otherwise it will appear on top of the input.\n`\"stacked\"`: The label will appear smaller and above the input regardless even when the input is blurred or has no value.\n`\"fixed\"`: The label has the same behavior as `\"start\"` except it also has a fixed width. Long text will be truncated with ellipses (\"...\").\n\nDefaults to \"stacked\" for the ionic theme, or \"start\" for all other themes.\n\nIn the ionic theme, only the values \"stacked\" and \"floating\" are supported.",
|
|
2591
3460
|
"values": [
|
|
2592
3461
|
{
|
|
2593
3462
|
"name": "end"
|
|
@@ -2624,7 +3493,7 @@
|
|
|
2624
3493
|
},
|
|
2625
3494
|
{
|
|
2626
3495
|
"name": "mode",
|
|
2627
|
-
"description": "The mode determines
|
|
3496
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2628
3497
|
"values": [
|
|
2629
3498
|
{
|
|
2630
3499
|
"name": "ios"
|
|
@@ -2660,10 +3529,31 @@
|
|
|
2660
3529
|
},
|
|
2661
3530
|
{
|
|
2662
3531
|
"name": "shape",
|
|
2663
|
-
"description": "
|
|
3532
|
+
"description": "Set to `\"soft\"` for an input with slightly rounded corners, `\"round\"` for an input with fully\nrounded corners, or `\"rectangular\"` for an input without rounded corners.\nDefaults to `\"round\"` for the ionic theme, and `undefined` for all other themes.\nOnly applies when the fill is set to `\"solid\"` or `\"outline\"`.",
|
|
2664
3533
|
"values": [
|
|
3534
|
+
{
|
|
3535
|
+
"name": "rectangular"
|
|
3536
|
+
},
|
|
2665
3537
|
{
|
|
2666
3538
|
"name": "round"
|
|
3539
|
+
},
|
|
3540
|
+
{
|
|
3541
|
+
"name": "soft"
|
|
3542
|
+
}
|
|
3543
|
+
]
|
|
3544
|
+
},
|
|
3545
|
+
{
|
|
3546
|
+
"name": "size",
|
|
3547
|
+
"description": "The size of the input. If \"large\", it will have an increased height. By default the\nsize is medium. This property only applies to the `\"ionic\"` theme.",
|
|
3548
|
+
"values": [
|
|
3549
|
+
{
|
|
3550
|
+
"name": "large"
|
|
3551
|
+
},
|
|
3552
|
+
{
|
|
3553
|
+
"name": "medium"
|
|
3554
|
+
},
|
|
3555
|
+
{
|
|
3556
|
+
"name": "xlarge"
|
|
2667
3557
|
}
|
|
2668
3558
|
]
|
|
2669
3559
|
},
|
|
@@ -2675,6 +3565,21 @@
|
|
|
2675
3565
|
"name": "step",
|
|
2676
3566
|
"description": "Works with the min and max attributes to limit the increments at which a value can be set.\nPossible values are: `\"any\"` or a positive floating point number."
|
|
2677
3567
|
},
|
|
3568
|
+
{
|
|
3569
|
+
"name": "theme",
|
|
3570
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3571
|
+
"values": [
|
|
3572
|
+
{
|
|
3573
|
+
"name": "ios"
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
"name": "md"
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"name": "ionic"
|
|
3580
|
+
}
|
|
3581
|
+
]
|
|
3582
|
+
},
|
|
2678
3583
|
{
|
|
2679
3584
|
"name": "type",
|
|
2680
3585
|
"description": "The type of control to display. The default type is text.",
|
|
@@ -2843,7 +3748,7 @@
|
|
|
2843
3748
|
},
|
|
2844
3749
|
{
|
|
2845
3750
|
"name": "detail",
|
|
2846
|
-
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `
|
|
3751
|
+
"description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `theme`\nis `\"ios\"` and an `href` or `button` property is present."
|
|
2847
3752
|
},
|
|
2848
3753
|
{
|
|
2849
3754
|
"name": "detail-icon",
|
|
@@ -2878,7 +3783,7 @@
|
|
|
2878
3783
|
},
|
|
2879
3784
|
{
|
|
2880
3785
|
"name": "mode",
|
|
2881
|
-
"description": "The mode determines
|
|
3786
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2882
3787
|
"values": [
|
|
2883
3788
|
{
|
|
2884
3789
|
"name": "ios"
|
|
@@ -2911,6 +3816,21 @@
|
|
|
2911
3816
|
"name": "target",
|
|
2912
3817
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
2913
3818
|
},
|
|
3819
|
+
{
|
|
3820
|
+
"name": "theme",
|
|
3821
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3822
|
+
"values": [
|
|
3823
|
+
{
|
|
3824
|
+
"name": "ios"
|
|
3825
|
+
},
|
|
3826
|
+
{
|
|
3827
|
+
"name": "md"
|
|
3828
|
+
},
|
|
3829
|
+
{
|
|
3830
|
+
"name": "ionic"
|
|
3831
|
+
}
|
|
3832
|
+
]
|
|
3833
|
+
},
|
|
2914
3834
|
{
|
|
2915
3835
|
"name": "type",
|
|
2916
3836
|
"description": "The type of the button. Only used when an `onclick` or `button` property is present.",
|
|
@@ -2976,7 +3896,7 @@
|
|
|
2976
3896
|
},
|
|
2977
3897
|
{
|
|
2978
3898
|
"name": "mode",
|
|
2979
|
-
"description": "The mode determines
|
|
3899
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
2980
3900
|
"values": [
|
|
2981
3901
|
{
|
|
2982
3902
|
"name": "ios"
|
|
@@ -2989,6 +3909,21 @@
|
|
|
2989
3909
|
{
|
|
2990
3910
|
"name": "sticky",
|
|
2991
3911
|
"description": "When it's set to `true`, the item-divider will stay visible when it reaches the top\nof the viewport until the next `ion-item-divider` replaces it.\n\nThis feature relies in `position:sticky`:\nhttps://caniuse.com/#feat=css-sticky"
|
|
3912
|
+
},
|
|
3913
|
+
{
|
|
3914
|
+
"name": "theme",
|
|
3915
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3916
|
+
"values": [
|
|
3917
|
+
{
|
|
3918
|
+
"name": "ios"
|
|
3919
|
+
},
|
|
3920
|
+
{
|
|
3921
|
+
"name": "md"
|
|
3922
|
+
},
|
|
3923
|
+
{
|
|
3924
|
+
"name": "ionic"
|
|
3925
|
+
}
|
|
3926
|
+
]
|
|
2992
3927
|
}
|
|
2993
3928
|
],
|
|
2994
3929
|
"references": [
|
|
@@ -3004,7 +3939,35 @@
|
|
|
3004
3939
|
"kind": "markdown",
|
|
3005
3940
|
"value": ""
|
|
3006
3941
|
},
|
|
3007
|
-
"attributes": [
|
|
3942
|
+
"attributes": [
|
|
3943
|
+
{
|
|
3944
|
+
"name": "mode",
|
|
3945
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3946
|
+
"values": [
|
|
3947
|
+
{
|
|
3948
|
+
"name": "ios"
|
|
3949
|
+
},
|
|
3950
|
+
{
|
|
3951
|
+
"name": "md"
|
|
3952
|
+
}
|
|
3953
|
+
]
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
"name": "theme",
|
|
3957
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3958
|
+
"values": [
|
|
3959
|
+
{
|
|
3960
|
+
"name": "ios"
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"name": "md"
|
|
3964
|
+
},
|
|
3965
|
+
{
|
|
3966
|
+
"name": "ionic"
|
|
3967
|
+
}
|
|
3968
|
+
]
|
|
3969
|
+
}
|
|
3970
|
+
],
|
|
3008
3971
|
"references": [
|
|
3009
3972
|
{
|
|
3010
3973
|
"name": "Source code",
|
|
@@ -3070,7 +4033,7 @@
|
|
|
3070
4033
|
},
|
|
3071
4034
|
{
|
|
3072
4035
|
"name": "mode",
|
|
3073
|
-
"description": "The mode determines
|
|
4036
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3074
4037
|
"values": [
|
|
3075
4038
|
{
|
|
3076
4039
|
"name": "ios"
|
|
@@ -3084,10 +4047,40 @@
|
|
|
3084
4047
|
"name": "rel",
|
|
3085
4048
|
"description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
|
|
3086
4049
|
},
|
|
4050
|
+
{
|
|
4051
|
+
"name": "shape",
|
|
4052
|
+
"description": "Set to `\"rectangular\"` for non-rounded corners.\nSet to `\"soft\"` for slightly rounded corners.\nSet to `\"round\"` for fully rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
4053
|
+
"values": [
|
|
4054
|
+
{
|
|
4055
|
+
"name": "rectangular"
|
|
4056
|
+
},
|
|
4057
|
+
{
|
|
4058
|
+
"name": "round"
|
|
4059
|
+
},
|
|
4060
|
+
{
|
|
4061
|
+
"name": "soft"
|
|
4062
|
+
}
|
|
4063
|
+
]
|
|
4064
|
+
},
|
|
3087
4065
|
{
|
|
3088
4066
|
"name": "target",
|
|
3089
4067
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
3090
4068
|
},
|
|
4069
|
+
{
|
|
4070
|
+
"name": "theme",
|
|
4071
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4072
|
+
"values": [
|
|
4073
|
+
{
|
|
4074
|
+
"name": "ios"
|
|
4075
|
+
},
|
|
4076
|
+
{
|
|
4077
|
+
"name": "md"
|
|
4078
|
+
},
|
|
4079
|
+
{
|
|
4080
|
+
"name": "ionic"
|
|
4081
|
+
}
|
|
4082
|
+
]
|
|
4083
|
+
},
|
|
3091
4084
|
{
|
|
3092
4085
|
"name": "type",
|
|
3093
4086
|
"description": "The type of the button.",
|
|
@@ -3118,6 +4111,18 @@
|
|
|
3118
4111
|
"value": ""
|
|
3119
4112
|
},
|
|
3120
4113
|
"attributes": [
|
|
4114
|
+
{
|
|
4115
|
+
"name": "mode",
|
|
4116
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4117
|
+
"values": [
|
|
4118
|
+
{
|
|
4119
|
+
"name": "ios"
|
|
4120
|
+
},
|
|
4121
|
+
{
|
|
4122
|
+
"name": "md"
|
|
4123
|
+
}
|
|
4124
|
+
]
|
|
4125
|
+
},
|
|
3121
4126
|
{
|
|
3122
4127
|
"name": "side",
|
|
3123
4128
|
"description": "The side the option button should be on. Possible values: `\"start\"` and `\"end\"`. If you have multiple `ion-item-options`, a side must be provided for each.",
|
|
@@ -3129,6 +4134,21 @@
|
|
|
3129
4134
|
"name": "start"
|
|
3130
4135
|
}
|
|
3131
4136
|
]
|
|
4137
|
+
},
|
|
4138
|
+
{
|
|
4139
|
+
"name": "theme",
|
|
4140
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4141
|
+
"values": [
|
|
4142
|
+
{
|
|
4143
|
+
"name": "ios"
|
|
4144
|
+
},
|
|
4145
|
+
{
|
|
4146
|
+
"name": "md"
|
|
4147
|
+
},
|
|
4148
|
+
{
|
|
4149
|
+
"name": "ionic"
|
|
4150
|
+
}
|
|
4151
|
+
]
|
|
3132
4152
|
}
|
|
3133
4153
|
],
|
|
3134
4154
|
"references": [
|
|
@@ -3148,6 +4168,33 @@
|
|
|
3148
4168
|
{
|
|
3149
4169
|
"name": "disabled",
|
|
3150
4170
|
"description": "If `true`, the user cannot interact with the sliding item."
|
|
4171
|
+
},
|
|
4172
|
+
{
|
|
4173
|
+
"name": "mode",
|
|
4174
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4175
|
+
"values": [
|
|
4176
|
+
{
|
|
4177
|
+
"name": "ios"
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
"name": "md"
|
|
4181
|
+
}
|
|
4182
|
+
]
|
|
4183
|
+
},
|
|
4184
|
+
{
|
|
4185
|
+
"name": "theme",
|
|
4186
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4187
|
+
"values": [
|
|
4188
|
+
{
|
|
4189
|
+
"name": "ios"
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"name": "md"
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"name": "ionic"
|
|
4196
|
+
}
|
|
4197
|
+
]
|
|
3151
4198
|
}
|
|
3152
4199
|
],
|
|
3153
4200
|
"references": [
|
|
@@ -3199,7 +4246,7 @@
|
|
|
3199
4246
|
},
|
|
3200
4247
|
{
|
|
3201
4248
|
"name": "mode",
|
|
3202
|
-
"description": "The mode determines
|
|
4249
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3203
4250
|
"values": [
|
|
3204
4251
|
{
|
|
3205
4252
|
"name": "ios"
|
|
@@ -3223,14 +4270,29 @@
|
|
|
3223
4270
|
"name": "stacked"
|
|
3224
4271
|
}
|
|
3225
4272
|
]
|
|
3226
|
-
}
|
|
3227
|
-
],
|
|
3228
|
-
"references": [
|
|
4273
|
+
},
|
|
3229
4274
|
{
|
|
3230
|
-
"name": "
|
|
3231
|
-
"
|
|
3232
|
-
|
|
3233
|
-
|
|
4275
|
+
"name": "theme",
|
|
4276
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4277
|
+
"values": [
|
|
4278
|
+
{
|
|
4279
|
+
"name": "ios"
|
|
4280
|
+
},
|
|
4281
|
+
{
|
|
4282
|
+
"name": "md"
|
|
4283
|
+
},
|
|
4284
|
+
{
|
|
4285
|
+
"name": "ionic"
|
|
4286
|
+
}
|
|
4287
|
+
]
|
|
4288
|
+
}
|
|
4289
|
+
],
|
|
4290
|
+
"references": [
|
|
4291
|
+
{
|
|
4292
|
+
"name": "Source code",
|
|
4293
|
+
"url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/label/label.tsx"
|
|
4294
|
+
}
|
|
4295
|
+
]
|
|
3234
4296
|
},
|
|
3235
4297
|
{
|
|
3236
4298
|
"name": "ion-list",
|
|
@@ -3260,13 +4322,43 @@
|
|
|
3260
4322
|
},
|
|
3261
4323
|
{
|
|
3262
4324
|
"name": "mode",
|
|
3263
|
-
"description": "The mode determines
|
|
4325
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4326
|
+
"values": [
|
|
4327
|
+
{
|
|
4328
|
+
"name": "ios"
|
|
4329
|
+
},
|
|
4330
|
+
{
|
|
4331
|
+
"name": "md"
|
|
4332
|
+
}
|
|
4333
|
+
]
|
|
4334
|
+
},
|
|
4335
|
+
{
|
|
4336
|
+
"name": "shape",
|
|
4337
|
+
"description": "Set to `\"soft\"` for slightly rounded corners,\n`\"round\"` for fully rounded corners,\nor `\"rectangular\"` for no rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme\nwhen inset is `true`\ndefaults to `\"rectangular\"` for the `ionic`\ntheme when inset is `false`,\nundefined for all other themes.",
|
|
4338
|
+
"values": [
|
|
4339
|
+
{
|
|
4340
|
+
"name": "rectangular"
|
|
4341
|
+
},
|
|
4342
|
+
{
|
|
4343
|
+
"name": "round"
|
|
4344
|
+
},
|
|
4345
|
+
{
|
|
4346
|
+
"name": "soft"
|
|
4347
|
+
}
|
|
4348
|
+
]
|
|
4349
|
+
},
|
|
4350
|
+
{
|
|
4351
|
+
"name": "theme",
|
|
4352
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3264
4353
|
"values": [
|
|
3265
4354
|
{
|
|
3266
4355
|
"name": "ios"
|
|
3267
4356
|
},
|
|
3268
4357
|
{
|
|
3269
4358
|
"name": "md"
|
|
4359
|
+
},
|
|
4360
|
+
{
|
|
4361
|
+
"name": "ionic"
|
|
3270
4362
|
}
|
|
3271
4363
|
]
|
|
3272
4364
|
}
|
|
@@ -3335,13 +4427,28 @@
|
|
|
3335
4427
|
},
|
|
3336
4428
|
{
|
|
3337
4429
|
"name": "mode",
|
|
3338
|
-
"description": "The mode determines
|
|
4430
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4431
|
+
"values": [
|
|
4432
|
+
{
|
|
4433
|
+
"name": "ios"
|
|
4434
|
+
},
|
|
4435
|
+
{
|
|
4436
|
+
"name": "md"
|
|
4437
|
+
}
|
|
4438
|
+
]
|
|
4439
|
+
},
|
|
4440
|
+
{
|
|
4441
|
+
"name": "theme",
|
|
4442
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3339
4443
|
"values": [
|
|
3340
4444
|
{
|
|
3341
4445
|
"name": "ios"
|
|
3342
4446
|
},
|
|
3343
4447
|
{
|
|
3344
4448
|
"name": "md"
|
|
4449
|
+
},
|
|
4450
|
+
{
|
|
4451
|
+
"name": "ionic"
|
|
3345
4452
|
}
|
|
3346
4453
|
]
|
|
3347
4454
|
}
|
|
@@ -3390,7 +4497,7 @@
|
|
|
3390
4497
|
},
|
|
3391
4498
|
{
|
|
3392
4499
|
"name": "mode",
|
|
3393
|
-
"description": "The mode determines
|
|
4500
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3394
4501
|
"values": [
|
|
3395
4502
|
{
|
|
3396
4503
|
"name": "ios"
|
|
@@ -3437,9 +4544,24 @@
|
|
|
3437
4544
|
}
|
|
3438
4545
|
]
|
|
3439
4546
|
},
|
|
4547
|
+
{
|
|
4548
|
+
"name": "theme",
|
|
4549
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4550
|
+
"values": [
|
|
4551
|
+
{
|
|
4552
|
+
"name": "ios"
|
|
4553
|
+
},
|
|
4554
|
+
{
|
|
4555
|
+
"name": "md"
|
|
4556
|
+
},
|
|
4557
|
+
{
|
|
4558
|
+
"name": "ionic"
|
|
4559
|
+
}
|
|
4560
|
+
]
|
|
4561
|
+
},
|
|
3440
4562
|
{
|
|
3441
4563
|
"name": "translucent",
|
|
3442
|
-
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the
|
|
4564
|
+
"description": "If `true`, the loading indicator will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
3443
4565
|
},
|
|
3444
4566
|
{
|
|
3445
4567
|
"name": "trigger",
|
|
@@ -3476,6 +4598,18 @@
|
|
|
3476
4598
|
"name": "menu-id",
|
|
3477
4599
|
"description": "An id for the menu."
|
|
3478
4600
|
},
|
|
4601
|
+
{
|
|
4602
|
+
"name": "mode",
|
|
4603
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4604
|
+
"values": [
|
|
4605
|
+
{
|
|
4606
|
+
"name": "ios"
|
|
4607
|
+
},
|
|
4608
|
+
{
|
|
4609
|
+
"name": "md"
|
|
4610
|
+
}
|
|
4611
|
+
]
|
|
4612
|
+
},
|
|
3479
4613
|
{
|
|
3480
4614
|
"name": "side",
|
|
3481
4615
|
"description": "Which side of the view the menu should be placed.",
|
|
@@ -3492,6 +4626,21 @@
|
|
|
3492
4626
|
"name": "swipe-gesture",
|
|
3493
4627
|
"description": "If `true`, swiping the menu is enabled."
|
|
3494
4628
|
},
|
|
4629
|
+
{
|
|
4630
|
+
"name": "theme",
|
|
4631
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4632
|
+
"values": [
|
|
4633
|
+
{
|
|
4634
|
+
"name": "ios"
|
|
4635
|
+
},
|
|
4636
|
+
{
|
|
4637
|
+
"name": "md"
|
|
4638
|
+
},
|
|
4639
|
+
{
|
|
4640
|
+
"name": "ionic"
|
|
4641
|
+
}
|
|
4642
|
+
]
|
|
4643
|
+
},
|
|
3495
4644
|
{
|
|
3496
4645
|
"name": "type",
|
|
3497
4646
|
"description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
|
|
@@ -3569,13 +4718,28 @@
|
|
|
3569
4718
|
},
|
|
3570
4719
|
{
|
|
3571
4720
|
"name": "mode",
|
|
3572
|
-
"description": "The mode determines
|
|
4721
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4722
|
+
"values": [
|
|
4723
|
+
{
|
|
4724
|
+
"name": "ios"
|
|
4725
|
+
},
|
|
4726
|
+
{
|
|
4727
|
+
"name": "md"
|
|
4728
|
+
}
|
|
4729
|
+
]
|
|
4730
|
+
},
|
|
4731
|
+
{
|
|
4732
|
+
"name": "theme",
|
|
4733
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3573
4734
|
"values": [
|
|
3574
4735
|
{
|
|
3575
4736
|
"name": "ios"
|
|
3576
4737
|
},
|
|
3577
4738
|
{
|
|
3578
4739
|
"name": "md"
|
|
4740
|
+
},
|
|
4741
|
+
{
|
|
4742
|
+
"name": "ionic"
|
|
3579
4743
|
}
|
|
3580
4744
|
]
|
|
3581
4745
|
},
|
|
@@ -3616,6 +4780,33 @@
|
|
|
3616
4780
|
{
|
|
3617
4781
|
"name": "menu",
|
|
3618
4782
|
"description": "Optional property that maps to a Menu's `menuId` prop.\nCan also be `start` or `end` for the menu side.\nThis is used to find the correct menu to toggle.\n\nIf this property is not used, `ion-menu-toggle` will toggle the\nfirst menu that is active."
|
|
4783
|
+
},
|
|
4784
|
+
{
|
|
4785
|
+
"name": "mode",
|
|
4786
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4787
|
+
"values": [
|
|
4788
|
+
{
|
|
4789
|
+
"name": "ios"
|
|
4790
|
+
},
|
|
4791
|
+
{
|
|
4792
|
+
"name": "md"
|
|
4793
|
+
}
|
|
4794
|
+
]
|
|
4795
|
+
},
|
|
4796
|
+
{
|
|
4797
|
+
"name": "theme",
|
|
4798
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4799
|
+
"values": [
|
|
4800
|
+
{
|
|
4801
|
+
"name": "ios"
|
|
4802
|
+
},
|
|
4803
|
+
{
|
|
4804
|
+
"name": "md"
|
|
4805
|
+
},
|
|
4806
|
+
{
|
|
4807
|
+
"name": "ionic"
|
|
4808
|
+
}
|
|
4809
|
+
]
|
|
3619
4810
|
}
|
|
3620
4811
|
],
|
|
3621
4812
|
"references": [
|
|
@@ -3690,7 +4881,7 @@
|
|
|
3690
4881
|
},
|
|
3691
4882
|
{
|
|
3692
4883
|
"name": "mode",
|
|
3693
|
-
"description": "The mode determines
|
|
4884
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
3694
4885
|
"values": [
|
|
3695
4886
|
{
|
|
3696
4887
|
"name": "ios"
|
|
@@ -3700,10 +4891,40 @@
|
|
|
3700
4891
|
}
|
|
3701
4892
|
]
|
|
3702
4893
|
},
|
|
4894
|
+
{
|
|
4895
|
+
"name": "shape",
|
|
4896
|
+
"description": "Set to `\"soft\"` for a modal with slightly rounded corners,\n`\"round\"` for a modal with fully rounded corners, or `\"rectangular\"`\nfor a modal without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
4897
|
+
"values": [
|
|
4898
|
+
{
|
|
4899
|
+
"name": "rectangular"
|
|
4900
|
+
},
|
|
4901
|
+
{
|
|
4902
|
+
"name": "round"
|
|
4903
|
+
},
|
|
4904
|
+
{
|
|
4905
|
+
"name": "soft"
|
|
4906
|
+
}
|
|
4907
|
+
]
|
|
4908
|
+
},
|
|
3703
4909
|
{
|
|
3704
4910
|
"name": "show-backdrop",
|
|
3705
4911
|
"description": "If `true`, a backdrop will be displayed behind the modal.\nThis property controls whether or not the backdrop\ndarkens the screen when the modal is presented.\nIt does not control whether or not the backdrop\nis active or present in the DOM."
|
|
3706
4912
|
},
|
|
4913
|
+
{
|
|
4914
|
+
"name": "theme",
|
|
4915
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4916
|
+
"values": [
|
|
4917
|
+
{
|
|
4918
|
+
"name": "ios"
|
|
4919
|
+
},
|
|
4920
|
+
{
|
|
4921
|
+
"name": "md"
|
|
4922
|
+
},
|
|
4923
|
+
{
|
|
4924
|
+
"name": "ionic"
|
|
4925
|
+
}
|
|
4926
|
+
]
|
|
4927
|
+
},
|
|
3707
4928
|
{
|
|
3708
4929
|
"name": "trigger",
|
|
3709
4930
|
"description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked."
|
|
@@ -3727,6 +4948,18 @@
|
|
|
3727
4948
|
"name": "animated",
|
|
3728
4949
|
"description": "If `true`, the nav should animate the transition of components."
|
|
3729
4950
|
},
|
|
4951
|
+
{
|
|
4952
|
+
"name": "mode",
|
|
4953
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4954
|
+
"values": [
|
|
4955
|
+
{
|
|
4956
|
+
"name": "ios"
|
|
4957
|
+
},
|
|
4958
|
+
{
|
|
4959
|
+
"name": "md"
|
|
4960
|
+
}
|
|
4961
|
+
]
|
|
4962
|
+
},
|
|
3730
4963
|
{
|
|
3731
4964
|
"name": "root",
|
|
3732
4965
|
"description": "Root NavComponent to load"
|
|
@@ -3734,6 +4967,21 @@
|
|
|
3734
4967
|
{
|
|
3735
4968
|
"name": "swipe-gesture",
|
|
3736
4969
|
"description": "If the nav component should allow for swipe-to-go-back."
|
|
4970
|
+
},
|
|
4971
|
+
{
|
|
4972
|
+
"name": "theme",
|
|
4973
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
4974
|
+
"values": [
|
|
4975
|
+
{
|
|
4976
|
+
"name": "ios"
|
|
4977
|
+
},
|
|
4978
|
+
{
|
|
4979
|
+
"name": "md"
|
|
4980
|
+
},
|
|
4981
|
+
{
|
|
4982
|
+
"name": "ionic"
|
|
4983
|
+
}
|
|
4984
|
+
]
|
|
3737
4985
|
}
|
|
3738
4986
|
],
|
|
3739
4987
|
"references": [
|
|
@@ -3754,6 +5002,18 @@
|
|
|
3754
5002
|
"name": "component",
|
|
3755
5003
|
"description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`."
|
|
3756
5004
|
},
|
|
5005
|
+
{
|
|
5006
|
+
"name": "mode",
|
|
5007
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5008
|
+
"values": [
|
|
5009
|
+
{
|
|
5010
|
+
"name": "ios"
|
|
5011
|
+
},
|
|
5012
|
+
{
|
|
5013
|
+
"name": "md"
|
|
5014
|
+
}
|
|
5015
|
+
]
|
|
5016
|
+
},
|
|
3757
5017
|
{
|
|
3758
5018
|
"name": "router-direction",
|
|
3759
5019
|
"description": "The transition direction when navigating to another page.",
|
|
@@ -3768,6 +5028,21 @@
|
|
|
3768
5028
|
"name": "root"
|
|
3769
5029
|
}
|
|
3770
5030
|
]
|
|
5031
|
+
},
|
|
5032
|
+
{
|
|
5033
|
+
"name": "theme",
|
|
5034
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5035
|
+
"values": [
|
|
5036
|
+
{
|
|
5037
|
+
"name": "ios"
|
|
5038
|
+
},
|
|
5039
|
+
{
|
|
5040
|
+
"name": "md"
|
|
5041
|
+
},
|
|
5042
|
+
{
|
|
5043
|
+
"name": "ionic"
|
|
5044
|
+
}
|
|
5045
|
+
]
|
|
3771
5046
|
}
|
|
3772
5047
|
],
|
|
3773
5048
|
"references": [
|
|
@@ -3819,13 +5094,28 @@
|
|
|
3819
5094
|
},
|
|
3820
5095
|
{
|
|
3821
5096
|
"name": "mode",
|
|
3822
|
-
"description": "The mode determines
|
|
5097
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5098
|
+
"values": [
|
|
5099
|
+
{
|
|
5100
|
+
"name": "ios"
|
|
5101
|
+
},
|
|
5102
|
+
{
|
|
5103
|
+
"name": "md"
|
|
5104
|
+
}
|
|
5105
|
+
]
|
|
5106
|
+
},
|
|
5107
|
+
{
|
|
5108
|
+
"name": "theme",
|
|
5109
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3823
5110
|
"values": [
|
|
3824
5111
|
{
|
|
3825
5112
|
"name": "ios"
|
|
3826
5113
|
},
|
|
3827
5114
|
{
|
|
3828
5115
|
"name": "md"
|
|
5116
|
+
},
|
|
5117
|
+
{
|
|
5118
|
+
"name": "ionic"
|
|
3829
5119
|
}
|
|
3830
5120
|
]
|
|
3831
5121
|
}
|
|
@@ -3846,13 +5136,28 @@
|
|
|
3846
5136
|
"attributes": [
|
|
3847
5137
|
{
|
|
3848
5138
|
"name": "mode",
|
|
3849
|
-
"description": "The mode determines
|
|
5139
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5140
|
+
"values": [
|
|
5141
|
+
{
|
|
5142
|
+
"name": "ios"
|
|
5143
|
+
},
|
|
5144
|
+
{
|
|
5145
|
+
"name": "md"
|
|
5146
|
+
}
|
|
5147
|
+
]
|
|
5148
|
+
},
|
|
5149
|
+
{
|
|
5150
|
+
"name": "theme",
|
|
5151
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3850
5152
|
"values": [
|
|
3851
5153
|
{
|
|
3852
5154
|
"name": "ios"
|
|
3853
5155
|
},
|
|
3854
5156
|
{
|
|
3855
5157
|
"name": "md"
|
|
5158
|
+
},
|
|
5159
|
+
{
|
|
5160
|
+
"name": "ionic"
|
|
3856
5161
|
}
|
|
3857
5162
|
]
|
|
3858
5163
|
}
|
|
@@ -3910,13 +5215,28 @@
|
|
|
3910
5215
|
},
|
|
3911
5216
|
{
|
|
3912
5217
|
"name": "mode",
|
|
3913
|
-
"description": "The mode determines
|
|
5218
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5219
|
+
"values": [
|
|
5220
|
+
{
|
|
5221
|
+
"name": "ios"
|
|
5222
|
+
},
|
|
5223
|
+
{
|
|
5224
|
+
"name": "md"
|
|
5225
|
+
}
|
|
5226
|
+
]
|
|
5227
|
+
},
|
|
5228
|
+
{
|
|
5229
|
+
"name": "theme",
|
|
5230
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
3914
5231
|
"values": [
|
|
3915
5232
|
{
|
|
3916
5233
|
"name": "ios"
|
|
3917
5234
|
},
|
|
3918
5235
|
{
|
|
3919
5236
|
"name": "md"
|
|
5237
|
+
},
|
|
5238
|
+
{
|
|
5239
|
+
"name": "ionic"
|
|
3920
5240
|
}
|
|
3921
5241
|
]
|
|
3922
5242
|
},
|
|
@@ -3977,13 +5297,40 @@
|
|
|
3977
5297
|
"description": "If `true`, the user cannot interact with the picker column option."
|
|
3978
5298
|
},
|
|
3979
5299
|
{
|
|
3980
|
-
"name": "
|
|
3981
|
-
"description": "The
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
|
|
5300
|
+
"name": "mode",
|
|
5301
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5302
|
+
"values": [
|
|
5303
|
+
{
|
|
5304
|
+
"name": "ios"
|
|
5305
|
+
},
|
|
5306
|
+
{
|
|
5307
|
+
"name": "md"
|
|
5308
|
+
}
|
|
5309
|
+
]
|
|
5310
|
+
},
|
|
3985
5311
|
{
|
|
3986
|
-
"name": "
|
|
5312
|
+
"name": "theme",
|
|
5313
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5314
|
+
"values": [
|
|
5315
|
+
{
|
|
5316
|
+
"name": "ios"
|
|
5317
|
+
},
|
|
5318
|
+
{
|
|
5319
|
+
"name": "md"
|
|
5320
|
+
},
|
|
5321
|
+
{
|
|
5322
|
+
"name": "ionic"
|
|
5323
|
+
}
|
|
5324
|
+
]
|
|
5325
|
+
},
|
|
5326
|
+
{
|
|
5327
|
+
"name": "value",
|
|
5328
|
+
"description": "The text value of the option."
|
|
5329
|
+
}
|
|
5330
|
+
],
|
|
5331
|
+
"references": [
|
|
5332
|
+
{
|
|
5333
|
+
"name": "Source code",
|
|
3987
5334
|
"url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/picker-column-option/picker-column-option.tsx"
|
|
3988
5335
|
}
|
|
3989
5336
|
]
|
|
@@ -4021,7 +5368,7 @@
|
|
|
4021
5368
|
},
|
|
4022
5369
|
{
|
|
4023
5370
|
"name": "mode",
|
|
4024
|
-
"description": "The mode determines
|
|
5371
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4025
5372
|
"values": [
|
|
4026
5373
|
{
|
|
4027
5374
|
"name": "ios"
|
|
@@ -4035,6 +5382,21 @@
|
|
|
4035
5382
|
"name": "show-backdrop",
|
|
4036
5383
|
"description": "If `true`, a backdrop will be displayed behind the picker."
|
|
4037
5384
|
},
|
|
5385
|
+
{
|
|
5386
|
+
"name": "theme",
|
|
5387
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5388
|
+
"values": [
|
|
5389
|
+
{
|
|
5390
|
+
"name": "ios"
|
|
5391
|
+
},
|
|
5392
|
+
{
|
|
5393
|
+
"name": "md"
|
|
5394
|
+
},
|
|
5395
|
+
{
|
|
5396
|
+
"name": "ionic"
|
|
5397
|
+
}
|
|
5398
|
+
]
|
|
5399
|
+
},
|
|
4038
5400
|
{
|
|
4039
5401
|
"name": "trigger",
|
|
4040
5402
|
"description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked."
|
|
@@ -4056,7 +5418,7 @@
|
|
|
4056
5418
|
"attributes": [
|
|
4057
5419
|
{
|
|
4058
5420
|
"name": "alignment",
|
|
4059
|
-
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for
|
|
5421
|
+
"description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
|
|
4060
5422
|
"values": [
|
|
4061
5423
|
{
|
|
4062
5424
|
"name": "center"
|
|
@@ -4075,7 +5437,7 @@
|
|
|
4075
5437
|
},
|
|
4076
5438
|
{
|
|
4077
5439
|
"name": "arrow",
|
|
4078
|
-
"description": "If `true`, the popover will display an arrow that points at the\n`reference`
|
|
5440
|
+
"description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme."
|
|
4079
5441
|
},
|
|
4080
5442
|
{
|
|
4081
5443
|
"name": "backdrop-dismiss",
|
|
@@ -4111,7 +5473,7 @@
|
|
|
4111
5473
|
},
|
|
4112
5474
|
{
|
|
4113
5475
|
"name": "mode",
|
|
4114
|
-
"description": "The mode determines
|
|
5476
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4115
5477
|
"values": [
|
|
4116
5478
|
{
|
|
4117
5479
|
"name": "ios"
|
|
@@ -4173,9 +5535,24 @@
|
|
|
4173
5535
|
}
|
|
4174
5536
|
]
|
|
4175
5537
|
},
|
|
5538
|
+
{
|
|
5539
|
+
"name": "theme",
|
|
5540
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5541
|
+
"values": [
|
|
5542
|
+
{
|
|
5543
|
+
"name": "ios"
|
|
5544
|
+
},
|
|
5545
|
+
{
|
|
5546
|
+
"name": "md"
|
|
5547
|
+
},
|
|
5548
|
+
{
|
|
5549
|
+
"name": "ionic"
|
|
5550
|
+
}
|
|
5551
|
+
]
|
|
5552
|
+
},
|
|
4176
5553
|
{
|
|
4177
5554
|
"name": "translucent",
|
|
4178
|
-
"description": "If `true`, the popover will be translucent.\nOnly applies when the
|
|
5555
|
+
"description": "If `true`, the popover will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
4179
5556
|
},
|
|
4180
5557
|
{
|
|
4181
5558
|
"name": "trigger",
|
|
@@ -4250,7 +5627,7 @@
|
|
|
4250
5627
|
},
|
|
4251
5628
|
{
|
|
4252
5629
|
"name": "mode",
|
|
4253
|
-
"description": "The mode determines
|
|
5630
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4254
5631
|
"values": [
|
|
4255
5632
|
{
|
|
4256
5633
|
"name": "ios"
|
|
@@ -4264,6 +5641,33 @@
|
|
|
4264
5641
|
"name": "reversed",
|
|
4265
5642
|
"description": "If true, reverse the progress bar direction."
|
|
4266
5643
|
},
|
|
5644
|
+
{
|
|
5645
|
+
"name": "shape",
|
|
5646
|
+
"description": "Set to `\"round\"` for a progress bar with rounded corners, or `\"rectangular\"`\nfor a progress bar without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
5647
|
+
"values": [
|
|
5648
|
+
{
|
|
5649
|
+
"name": "rectangular"
|
|
5650
|
+
},
|
|
5651
|
+
{
|
|
5652
|
+
"name": "round"
|
|
5653
|
+
}
|
|
5654
|
+
]
|
|
5655
|
+
},
|
|
5656
|
+
{
|
|
5657
|
+
"name": "theme",
|
|
5658
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5659
|
+
"values": [
|
|
5660
|
+
{
|
|
5661
|
+
"name": "ios"
|
|
5662
|
+
},
|
|
5663
|
+
{
|
|
5664
|
+
"name": "md"
|
|
5665
|
+
},
|
|
5666
|
+
{
|
|
5667
|
+
"name": "ionic"
|
|
5668
|
+
}
|
|
5669
|
+
]
|
|
5670
|
+
},
|
|
4267
5671
|
{
|
|
4268
5672
|
"name": "type",
|
|
4269
5673
|
"description": "The state of the progress bar, based on if the time the process takes is known or not.\nDefault options are: `\"determinate\"` (no animation), `\"indeterminate\"` (animate from left to right).",
|
|
@@ -4379,7 +5783,7 @@
|
|
|
4379
5783
|
},
|
|
4380
5784
|
{
|
|
4381
5785
|
"name": "mode",
|
|
4382
|
-
"description": "The mode determines
|
|
5786
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4383
5787
|
"values": [
|
|
4384
5788
|
{
|
|
4385
5789
|
"name": "ios"
|
|
@@ -4393,6 +5797,21 @@
|
|
|
4393
5797
|
"name": "name",
|
|
4394
5798
|
"description": "The name of the control, which is submitted with the form data."
|
|
4395
5799
|
},
|
|
5800
|
+
{
|
|
5801
|
+
"name": "theme",
|
|
5802
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5803
|
+
"values": [
|
|
5804
|
+
{
|
|
5805
|
+
"name": "ios"
|
|
5806
|
+
},
|
|
5807
|
+
{
|
|
5808
|
+
"name": "md"
|
|
5809
|
+
},
|
|
5810
|
+
{
|
|
5811
|
+
"name": "ionic"
|
|
5812
|
+
}
|
|
5813
|
+
]
|
|
5814
|
+
},
|
|
4396
5815
|
{
|
|
4397
5816
|
"name": "value",
|
|
4398
5817
|
"description": "the value of the radio."
|
|
@@ -4428,10 +5847,37 @@
|
|
|
4428
5847
|
"name": "helper-text",
|
|
4429
5848
|
"description": "The helper text to display at the top of the radio group."
|
|
4430
5849
|
},
|
|
5850
|
+
{
|
|
5851
|
+
"name": "mode",
|
|
5852
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5853
|
+
"values": [
|
|
5854
|
+
{
|
|
5855
|
+
"name": "ios"
|
|
5856
|
+
},
|
|
5857
|
+
{
|
|
5858
|
+
"name": "md"
|
|
5859
|
+
}
|
|
5860
|
+
]
|
|
5861
|
+
},
|
|
4431
5862
|
{
|
|
4432
5863
|
"name": "name",
|
|
4433
5864
|
"description": "The name of the control, which is submitted with the form data."
|
|
4434
5865
|
},
|
|
5866
|
+
{
|
|
5867
|
+
"name": "theme",
|
|
5868
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5869
|
+
"values": [
|
|
5870
|
+
{
|
|
5871
|
+
"name": "ios"
|
|
5872
|
+
},
|
|
5873
|
+
{
|
|
5874
|
+
"name": "md"
|
|
5875
|
+
},
|
|
5876
|
+
{
|
|
5877
|
+
"name": "ionic"
|
|
5878
|
+
}
|
|
5879
|
+
]
|
|
5880
|
+
},
|
|
4435
5881
|
{
|
|
4436
5882
|
"name": "value",
|
|
4437
5883
|
"description": "the value of the radio group."
|
|
@@ -4532,7 +5978,7 @@
|
|
|
4532
5978
|
},
|
|
4533
5979
|
{
|
|
4534
5980
|
"name": "mode",
|
|
4535
|
-
"description": "The mode determines
|
|
5981
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4536
5982
|
"values": [
|
|
4537
5983
|
{
|
|
4538
5984
|
"name": "ios"
|
|
@@ -4558,6 +6004,21 @@
|
|
|
4558
6004
|
"name": "step",
|
|
4559
6005
|
"description": "Specifies the value granularity."
|
|
4560
6006
|
},
|
|
6007
|
+
{
|
|
6008
|
+
"name": "theme",
|
|
6009
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6010
|
+
"values": [
|
|
6011
|
+
{
|
|
6012
|
+
"name": "ios"
|
|
6013
|
+
},
|
|
6014
|
+
{
|
|
6015
|
+
"name": "md"
|
|
6016
|
+
},
|
|
6017
|
+
{
|
|
6018
|
+
"name": "ionic"
|
|
6019
|
+
}
|
|
6020
|
+
]
|
|
6021
|
+
},
|
|
4561
6022
|
{
|
|
4562
6023
|
"name": "ticks",
|
|
4563
6024
|
"description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`."
|
|
@@ -4591,7 +6052,7 @@
|
|
|
4591
6052
|
},
|
|
4592
6053
|
{
|
|
4593
6054
|
"name": "mode",
|
|
4594
|
-
"description": "The mode determines
|
|
6055
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4595
6056
|
"values": [
|
|
4596
6057
|
{
|
|
4597
6058
|
"name": "ios"
|
|
@@ -4616,6 +6077,21 @@
|
|
|
4616
6077
|
{
|
|
4617
6078
|
"name": "snapback-duration",
|
|
4618
6079
|
"description": "Time it takes the refresher to snap back to the `refreshing` state.\nDoes not apply when the refresher content uses a spinner,\nenabling the native refresher."
|
|
6080
|
+
},
|
|
6081
|
+
{
|
|
6082
|
+
"name": "theme",
|
|
6083
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6084
|
+
"values": [
|
|
6085
|
+
{
|
|
6086
|
+
"name": "ios"
|
|
6087
|
+
},
|
|
6088
|
+
{
|
|
6089
|
+
"name": "md"
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
"name": "ionic"
|
|
6093
|
+
}
|
|
6094
|
+
]
|
|
4619
6095
|
}
|
|
4620
6096
|
],
|
|
4621
6097
|
"references": [
|
|
@@ -4632,6 +6108,18 @@
|
|
|
4632
6108
|
"value": ""
|
|
4633
6109
|
},
|
|
4634
6110
|
"attributes": [
|
|
6111
|
+
{
|
|
6112
|
+
"name": "mode",
|
|
6113
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6114
|
+
"values": [
|
|
6115
|
+
{
|
|
6116
|
+
"name": "ios"
|
|
6117
|
+
},
|
|
6118
|
+
{
|
|
6119
|
+
"name": "md"
|
|
6120
|
+
}
|
|
6121
|
+
]
|
|
6122
|
+
},
|
|
4635
6123
|
{
|
|
4636
6124
|
"name": "pulling-icon",
|
|
4637
6125
|
"description": "A static icon or a spinner to display when you begin to pull down.\nA spinner name can be provided to gradually show tick marks\nwhen pulling down on iOS devices."
|
|
@@ -4676,6 +6164,21 @@
|
|
|
4676
6164
|
{
|
|
4677
6165
|
"name": "refreshing-text",
|
|
4678
6166
|
"description": "The text you want to display when performing a refresh.\n`refreshingText` can accept either plaintext or HTML as a string.\nTo display characters normally reserved for HTML, they\nmust be escaped. For example `<Ionic>` would become\n`<Ionic>`\n\nFor more information: [Security Documentation](https://ionicframework.com/docs/faq/security)\n\nContent is parsed as plaintext by default.\n`innerHTMLTemplatesEnabled` must be set to `true` in the Ionic config\nbefore custom HTML can be used."
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
"name": "theme",
|
|
6170
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6171
|
+
"values": [
|
|
6172
|
+
{
|
|
6173
|
+
"name": "ios"
|
|
6174
|
+
},
|
|
6175
|
+
{
|
|
6176
|
+
"name": "md"
|
|
6177
|
+
},
|
|
6178
|
+
{
|
|
6179
|
+
"name": "ionic"
|
|
6180
|
+
}
|
|
6181
|
+
]
|
|
4679
6182
|
}
|
|
4680
6183
|
],
|
|
4681
6184
|
"references": [
|
|
@@ -4691,7 +6194,35 @@
|
|
|
4691
6194
|
"kind": "markdown",
|
|
4692
6195
|
"value": ""
|
|
4693
6196
|
},
|
|
4694
|
-
"attributes": [
|
|
6197
|
+
"attributes": [
|
|
6198
|
+
{
|
|
6199
|
+
"name": "mode",
|
|
6200
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6201
|
+
"values": [
|
|
6202
|
+
{
|
|
6203
|
+
"name": "ios"
|
|
6204
|
+
},
|
|
6205
|
+
{
|
|
6206
|
+
"name": "md"
|
|
6207
|
+
}
|
|
6208
|
+
]
|
|
6209
|
+
},
|
|
6210
|
+
{
|
|
6211
|
+
"name": "theme",
|
|
6212
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6213
|
+
"values": [
|
|
6214
|
+
{
|
|
6215
|
+
"name": "ios"
|
|
6216
|
+
},
|
|
6217
|
+
{
|
|
6218
|
+
"name": "md"
|
|
6219
|
+
},
|
|
6220
|
+
{
|
|
6221
|
+
"name": "ionic"
|
|
6222
|
+
}
|
|
6223
|
+
]
|
|
6224
|
+
}
|
|
6225
|
+
],
|
|
4695
6226
|
"references": [
|
|
4696
6227
|
{
|
|
4697
6228
|
"name": "Source code",
|
|
@@ -4709,6 +6240,33 @@
|
|
|
4709
6240
|
{
|
|
4710
6241
|
"name": "disabled",
|
|
4711
6242
|
"description": "If `true`, the reorder will be hidden."
|
|
6243
|
+
},
|
|
6244
|
+
{
|
|
6245
|
+
"name": "mode",
|
|
6246
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6247
|
+
"values": [
|
|
6248
|
+
{
|
|
6249
|
+
"name": "ios"
|
|
6250
|
+
},
|
|
6251
|
+
{
|
|
6252
|
+
"name": "md"
|
|
6253
|
+
}
|
|
6254
|
+
]
|
|
6255
|
+
},
|
|
6256
|
+
{
|
|
6257
|
+
"name": "theme",
|
|
6258
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6259
|
+
"values": [
|
|
6260
|
+
{
|
|
6261
|
+
"name": "ios"
|
|
6262
|
+
},
|
|
6263
|
+
{
|
|
6264
|
+
"name": "md"
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "ionic"
|
|
6268
|
+
}
|
|
6269
|
+
]
|
|
4712
6270
|
}
|
|
4713
6271
|
],
|
|
4714
6272
|
"references": [
|
|
@@ -4725,6 +6283,33 @@
|
|
|
4725
6283
|
"value": ""
|
|
4726
6284
|
},
|
|
4727
6285
|
"attributes": [
|
|
6286
|
+
{
|
|
6287
|
+
"name": "mode",
|
|
6288
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6289
|
+
"values": [
|
|
6290
|
+
{
|
|
6291
|
+
"name": "ios"
|
|
6292
|
+
},
|
|
6293
|
+
{
|
|
6294
|
+
"name": "md"
|
|
6295
|
+
}
|
|
6296
|
+
]
|
|
6297
|
+
},
|
|
6298
|
+
{
|
|
6299
|
+
"name": "theme",
|
|
6300
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6301
|
+
"values": [
|
|
6302
|
+
{
|
|
6303
|
+
"name": "ios"
|
|
6304
|
+
},
|
|
6305
|
+
{
|
|
6306
|
+
"name": "md"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"name": "ionic"
|
|
6310
|
+
}
|
|
6311
|
+
]
|
|
6312
|
+
},
|
|
4728
6313
|
{
|
|
4729
6314
|
"name": "type",
|
|
4730
6315
|
"description": "Sets the type of ripple-effect:\n\n- `bounded`: the ripple effect expands from the user's click position\n- `unbounded`: the ripple effect expands from the center of the button and overflows the container.\n\nNOTE: Surfaces for bounded ripples should have the overflow property set to hidden,\nwhile surfaces for unbounded ripples should have it set to visible.",
|
|
@@ -4756,6 +6341,33 @@
|
|
|
4756
6341
|
"name": "component",
|
|
4757
6342
|
"description": "Name of the component to load/select in the navigation outlet (`ion-tabs`, `ion-nav`)\nwhen the route matches.\n\nThe value of this property is not always the tagname of the component to load,\nin `ion-tabs` it actually refers to the name of the `ion-tab` to select."
|
|
4758
6343
|
},
|
|
6344
|
+
{
|
|
6345
|
+
"name": "mode",
|
|
6346
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6347
|
+
"values": [
|
|
6348
|
+
{
|
|
6349
|
+
"name": "ios"
|
|
6350
|
+
},
|
|
6351
|
+
{
|
|
6352
|
+
"name": "md"
|
|
6353
|
+
}
|
|
6354
|
+
]
|
|
6355
|
+
},
|
|
6356
|
+
{
|
|
6357
|
+
"name": "theme",
|
|
6358
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6359
|
+
"values": [
|
|
6360
|
+
{
|
|
6361
|
+
"name": "ios"
|
|
6362
|
+
},
|
|
6363
|
+
{
|
|
6364
|
+
"name": "md"
|
|
6365
|
+
},
|
|
6366
|
+
{
|
|
6367
|
+
"name": "ionic"
|
|
6368
|
+
}
|
|
6369
|
+
]
|
|
6370
|
+
},
|
|
4759
6371
|
{
|
|
4760
6372
|
"name": "url",
|
|
4761
6373
|
"description": "Relative path that needs to match in order for this route to apply.\n\nAccepts paths similar to expressjs so that you can define parameters\nin the url /foo/:bar where bar would be available in incoming props."
|
|
@@ -4798,10 +6410,37 @@
|
|
|
4798
6410
|
"value": ""
|
|
4799
6411
|
},
|
|
4800
6412
|
"attributes": [
|
|
6413
|
+
{
|
|
6414
|
+
"name": "mode",
|
|
6415
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6416
|
+
"values": [
|
|
6417
|
+
{
|
|
6418
|
+
"name": "ios"
|
|
6419
|
+
},
|
|
6420
|
+
{
|
|
6421
|
+
"name": "md"
|
|
6422
|
+
}
|
|
6423
|
+
]
|
|
6424
|
+
},
|
|
4801
6425
|
{
|
|
4802
6426
|
"name": "root",
|
|
4803
6427
|
"description": "The root path to use when matching URLs. By default, this is set to \"/\", but you can specify\nan alternate prefix for all URL paths."
|
|
4804
6428
|
},
|
|
6429
|
+
{
|
|
6430
|
+
"name": "theme",
|
|
6431
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6432
|
+
"values": [
|
|
6433
|
+
{
|
|
6434
|
+
"name": "ios"
|
|
6435
|
+
},
|
|
6436
|
+
{
|
|
6437
|
+
"name": "md"
|
|
6438
|
+
},
|
|
6439
|
+
{
|
|
6440
|
+
"name": "ionic"
|
|
6441
|
+
}
|
|
6442
|
+
]
|
|
6443
|
+
},
|
|
4805
6444
|
{
|
|
4806
6445
|
"name": "use-hash",
|
|
4807
6446
|
"description": "The router can work in two \"modes\":\n- With hash: `/index.html#/path/to/page`\n- Without hash: `/path/to/page`\n\nUsing one or another might depend in the requirements of your app and/or where it's deployed.\n\nUsually \"hash-less\" navigation works better for SEO and it's more user friendly too, but it might\nrequires additional server-side configuration in order to properly work.\n\nOn the other side hash-navigation is much easier to deploy, it even works over the file protocol.\n\nBy default, this property is `true`, change to `false` to allow hash-less URLs."
|
|
@@ -4858,6 +6497,18 @@
|
|
|
4858
6497
|
"name": "href",
|
|
4859
6498
|
"description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
|
|
4860
6499
|
},
|
|
6500
|
+
{
|
|
6501
|
+
"name": "mode",
|
|
6502
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6503
|
+
"values": [
|
|
6504
|
+
{
|
|
6505
|
+
"name": "ios"
|
|
6506
|
+
},
|
|
6507
|
+
{
|
|
6508
|
+
"name": "md"
|
|
6509
|
+
}
|
|
6510
|
+
]
|
|
6511
|
+
},
|
|
4861
6512
|
{
|
|
4862
6513
|
"name": "rel",
|
|
4863
6514
|
"description": "Specifies the relationship of the target object to the link object.\nThe value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types)."
|
|
@@ -4880,6 +6531,21 @@
|
|
|
4880
6531
|
{
|
|
4881
6532
|
"name": "target",
|
|
4882
6533
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
6534
|
+
},
|
|
6535
|
+
{
|
|
6536
|
+
"name": "theme",
|
|
6537
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6538
|
+
"values": [
|
|
6539
|
+
{
|
|
6540
|
+
"name": "ios"
|
|
6541
|
+
},
|
|
6542
|
+
{
|
|
6543
|
+
"name": "md"
|
|
6544
|
+
},
|
|
6545
|
+
{
|
|
6546
|
+
"name": "ionic"
|
|
6547
|
+
}
|
|
6548
|
+
]
|
|
4883
6549
|
}
|
|
4884
6550
|
],
|
|
4885
6551
|
"references": [
|
|
@@ -4902,7 +6568,7 @@
|
|
|
4902
6568
|
},
|
|
4903
6569
|
{
|
|
4904
6570
|
"name": "mode",
|
|
4905
|
-
"description": "The mode determines
|
|
6571
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
4906
6572
|
"values": [
|
|
4907
6573
|
{
|
|
4908
6574
|
"name": "ios"
|
|
@@ -4911,6 +6577,21 @@
|
|
|
4911
6577
|
"name": "md"
|
|
4912
6578
|
}
|
|
4913
6579
|
]
|
|
6580
|
+
},
|
|
6581
|
+
{
|
|
6582
|
+
"name": "theme",
|
|
6583
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6584
|
+
"values": [
|
|
6585
|
+
{
|
|
6586
|
+
"name": "ios"
|
|
6587
|
+
},
|
|
6588
|
+
{
|
|
6589
|
+
"name": "md"
|
|
6590
|
+
},
|
|
6591
|
+
{
|
|
6592
|
+
"name": "ionic"
|
|
6593
|
+
}
|
|
6594
|
+
]
|
|
4914
6595
|
}
|
|
4915
6596
|
],
|
|
4916
6597
|
"references": [
|
|
@@ -4926,7 +6607,35 @@
|
|
|
4926
6607
|
"kind": "markdown",
|
|
4927
6608
|
"value": ""
|
|
4928
6609
|
},
|
|
4929
|
-
"attributes": [
|
|
6610
|
+
"attributes": [
|
|
6611
|
+
{
|
|
6612
|
+
"name": "mode",
|
|
6613
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6614
|
+
"values": [
|
|
6615
|
+
{
|
|
6616
|
+
"name": "ios"
|
|
6617
|
+
},
|
|
6618
|
+
{
|
|
6619
|
+
"name": "md"
|
|
6620
|
+
}
|
|
6621
|
+
]
|
|
6622
|
+
},
|
|
6623
|
+
{
|
|
6624
|
+
"name": "theme",
|
|
6625
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6626
|
+
"values": [
|
|
6627
|
+
{
|
|
6628
|
+
"name": "ios"
|
|
6629
|
+
},
|
|
6630
|
+
{
|
|
6631
|
+
"name": "md"
|
|
6632
|
+
},
|
|
6633
|
+
{
|
|
6634
|
+
"name": "ionic"
|
|
6635
|
+
}
|
|
6636
|
+
]
|
|
6637
|
+
}
|
|
6638
|
+
],
|
|
4930
6639
|
"references": [
|
|
4931
6640
|
{
|
|
4932
6641
|
"name": "Source code",
|
|
@@ -4957,157 +6666,157 @@
|
|
|
4957
6666
|
"name": "name"
|
|
4958
6667
|
},
|
|
4959
6668
|
{
|
|
4960
|
-
"name": "
|
|
6669
|
+
"name": "url"
|
|
4961
6670
|
},
|
|
4962
6671
|
{
|
|
4963
|
-
"name": "
|
|
6672
|
+
"name": "off"
|
|
4964
6673
|
},
|
|
4965
6674
|
{
|
|
4966
|
-
"name": "
|
|
6675
|
+
"name": "on"
|
|
4967
6676
|
},
|
|
4968
6677
|
{
|
|
4969
|
-
"name": "
|
|
6678
|
+
"name": "additional-name"
|
|
4970
6679
|
},
|
|
4971
6680
|
{
|
|
4972
|
-
"name": "
|
|
6681
|
+
"name": "address-level1"
|
|
4973
6682
|
},
|
|
4974
6683
|
{
|
|
4975
|
-
"name": "
|
|
6684
|
+
"name": "address-level2"
|
|
4976
6685
|
},
|
|
4977
6686
|
{
|
|
4978
|
-
"name": "
|
|
6687
|
+
"name": "address-level3"
|
|
4979
6688
|
},
|
|
4980
6689
|
{
|
|
4981
|
-
"name": "
|
|
6690
|
+
"name": "address-level4"
|
|
4982
6691
|
},
|
|
4983
6692
|
{
|
|
4984
|
-
"name": "
|
|
6693
|
+
"name": "address-line1"
|
|
4985
6694
|
},
|
|
4986
6695
|
{
|
|
4987
|
-
"name": "
|
|
6696
|
+
"name": "address-line2"
|
|
4988
6697
|
},
|
|
4989
6698
|
{
|
|
4990
|
-
"name": "
|
|
6699
|
+
"name": "address-line3"
|
|
4991
6700
|
},
|
|
4992
6701
|
{
|
|
4993
|
-
"name": "
|
|
6702
|
+
"name": "bday-day"
|
|
4994
6703
|
},
|
|
4995
6704
|
{
|
|
4996
|
-
"name": "
|
|
6705
|
+
"name": "bday-month"
|
|
4997
6706
|
},
|
|
4998
6707
|
{
|
|
4999
|
-
"name": "
|
|
6708
|
+
"name": "bday-year"
|
|
5000
6709
|
},
|
|
5001
6710
|
{
|
|
5002
|
-
"name": "
|
|
6711
|
+
"name": "cc-csc"
|
|
5003
6712
|
},
|
|
5004
6713
|
{
|
|
5005
|
-
"name": "
|
|
6714
|
+
"name": "cc-exp"
|
|
5006
6715
|
},
|
|
5007
6716
|
{
|
|
5008
|
-
"name": "
|
|
6717
|
+
"name": "cc-exp-month"
|
|
5009
6718
|
},
|
|
5010
6719
|
{
|
|
5011
|
-
"name": "
|
|
6720
|
+
"name": "cc-exp-year"
|
|
5012
6721
|
},
|
|
5013
6722
|
{
|
|
5014
|
-
"name": "
|
|
6723
|
+
"name": "cc-family-name"
|
|
5015
6724
|
},
|
|
5016
6725
|
{
|
|
5017
|
-
"name": "
|
|
6726
|
+
"name": "cc-given-name"
|
|
5018
6727
|
},
|
|
5019
6728
|
{
|
|
5020
|
-
"name": "
|
|
6729
|
+
"name": "cc-name"
|
|
5021
6730
|
},
|
|
5022
6731
|
{
|
|
5023
|
-
"name": "
|
|
6732
|
+
"name": "cc-number"
|
|
5024
6733
|
},
|
|
5025
6734
|
{
|
|
5026
|
-
"name": "
|
|
6735
|
+
"name": "cc-type"
|
|
5027
6736
|
},
|
|
5028
6737
|
{
|
|
5029
|
-
"name": "
|
|
6738
|
+
"name": "country"
|
|
5030
6739
|
},
|
|
5031
6740
|
{
|
|
5032
|
-
"name": "
|
|
6741
|
+
"name": "country-name"
|
|
5033
6742
|
},
|
|
5034
6743
|
{
|
|
5035
|
-
"name": "
|
|
6744
|
+
"name": "current-password"
|
|
5036
6745
|
},
|
|
5037
6746
|
{
|
|
5038
|
-
"name": "
|
|
6747
|
+
"name": "family-name"
|
|
5039
6748
|
},
|
|
5040
6749
|
{
|
|
5041
|
-
"name": "
|
|
6750
|
+
"name": "given-name"
|
|
5042
6751
|
},
|
|
5043
6752
|
{
|
|
5044
|
-
"name": "
|
|
6753
|
+
"name": "honorific-prefix"
|
|
5045
6754
|
},
|
|
5046
6755
|
{
|
|
5047
|
-
"name": "
|
|
6756
|
+
"name": "honorific-suffix"
|
|
5048
6757
|
},
|
|
5049
6758
|
{
|
|
5050
|
-
"name": "
|
|
6759
|
+
"name": "new-password"
|
|
5051
6760
|
},
|
|
5052
6761
|
{
|
|
5053
|
-
"name": "
|
|
6762
|
+
"name": "one-time-code"
|
|
5054
6763
|
},
|
|
5055
6764
|
{
|
|
5056
|
-
"name": "
|
|
6765
|
+
"name": "organization"
|
|
5057
6766
|
},
|
|
5058
6767
|
{
|
|
5059
|
-
"name": "
|
|
6768
|
+
"name": "postal-code"
|
|
5060
6769
|
},
|
|
5061
6770
|
{
|
|
5062
|
-
"name": "
|
|
6771
|
+
"name": "street-address"
|
|
5063
6772
|
},
|
|
5064
6773
|
{
|
|
5065
|
-
"name": "
|
|
6774
|
+
"name": "transaction-amount"
|
|
5066
6775
|
},
|
|
5067
6776
|
{
|
|
5068
|
-
"name": "
|
|
6777
|
+
"name": "transaction-currency"
|
|
5069
6778
|
},
|
|
5070
6779
|
{
|
|
5071
|
-
"name": "
|
|
6780
|
+
"name": "username"
|
|
5072
6781
|
},
|
|
5073
6782
|
{
|
|
5074
|
-
"name": "
|
|
6783
|
+
"name": "email"
|
|
5075
6784
|
},
|
|
5076
6785
|
{
|
|
5077
|
-
"name": "
|
|
6786
|
+
"name": "tel"
|
|
5078
6787
|
},
|
|
5079
6788
|
{
|
|
5080
|
-
"name": "
|
|
6789
|
+
"name": "tel-area-code"
|
|
5081
6790
|
},
|
|
5082
6791
|
{
|
|
5083
|
-
"name": "
|
|
6792
|
+
"name": "tel-country-code"
|
|
5084
6793
|
},
|
|
5085
6794
|
{
|
|
5086
|
-
"name": "
|
|
6795
|
+
"name": "tel-extension"
|
|
5087
6796
|
},
|
|
5088
6797
|
{
|
|
5089
|
-
"name": "
|
|
6798
|
+
"name": "tel-local"
|
|
5090
6799
|
},
|
|
5091
6800
|
{
|
|
5092
|
-
"name": "
|
|
6801
|
+
"name": "tel-national"
|
|
5093
6802
|
},
|
|
5094
6803
|
{
|
|
5095
|
-
"name": "
|
|
6804
|
+
"name": "nickname"
|
|
5096
6805
|
},
|
|
5097
6806
|
{
|
|
5098
|
-
"name": "
|
|
6807
|
+
"name": "organization-title"
|
|
5099
6808
|
},
|
|
5100
6809
|
{
|
|
5101
|
-
"name": "
|
|
6810
|
+
"name": "cc-additional-name"
|
|
5102
6811
|
},
|
|
5103
6812
|
{
|
|
5104
|
-
"name": "
|
|
6813
|
+
"name": "language"
|
|
5105
6814
|
},
|
|
5106
6815
|
{
|
|
5107
|
-
"name": "
|
|
6816
|
+
"name": "bday"
|
|
5108
6817
|
},
|
|
5109
6818
|
{
|
|
5110
|
-
"name": "
|
|
6819
|
+
"name": "sex"
|
|
5111
6820
|
},
|
|
5112
6821
|
{
|
|
5113
6822
|
"name": "impp"
|
|
@@ -5131,15 +6840,15 @@
|
|
|
5131
6840
|
},
|
|
5132
6841
|
{
|
|
5133
6842
|
"name": "cancel-button-icon",
|
|
5134
|
-
"description": "Set the cancel button icon. Only
|
|
6843
|
+
"description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`."
|
|
5135
6844
|
},
|
|
5136
6845
|
{
|
|
5137
6846
|
"name": "cancel-button-text",
|
|
5138
|
-
"description": "Set the
|
|
6847
|
+
"description": "Set the cancel button text. Only available when the theme is `\"ios\"`."
|
|
5139
6848
|
},
|
|
5140
6849
|
{
|
|
5141
6850
|
"name": "clear-icon",
|
|
5142
|
-
"description": "Set the clear icon. Defaults to
|
|
6851
|
+
"description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme."
|
|
5143
6852
|
},
|
|
5144
6853
|
{
|
|
5145
6854
|
"name": "color",
|
|
@@ -5249,7 +6958,7 @@
|
|
|
5249
6958
|
},
|
|
5250
6959
|
{
|
|
5251
6960
|
"name": "mode",
|
|
5252
|
-
"description": "The mode determines
|
|
6961
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5253
6962
|
"values": [
|
|
5254
6963
|
{
|
|
5255
6964
|
"name": "ios"
|
|
@@ -5269,7 +6978,22 @@
|
|
|
5269
6978
|
},
|
|
5270
6979
|
{
|
|
5271
6980
|
"name": "search-icon",
|
|
5272
|
-
"description": "The icon to use as the search icon. Defaults to
|
|
6981
|
+
"description": "The icon to use as the search icon. Defaults to `\"search-outline\"` in\nthe `\"ios\"` theme and `\"search-sharp\"` in the `\"md\"` and `\"ionic\"` themes.\nIf `false`, no search icon will be displayed."
|
|
6982
|
+
},
|
|
6983
|
+
{
|
|
6984
|
+
"name": "shape",
|
|
6985
|
+
"description": "Set to `\"soft\"` for a searchbar with slightly rounded corners,\n`\"round\"` for a searchbar with fully rounded corners,\nor `\"rectangular\"` for a searchbar without rounded corners.\n\nDefaults to `\"round\"` for the ionic theme, and `undefined` for all other themes.",
|
|
6986
|
+
"values": [
|
|
6987
|
+
{
|
|
6988
|
+
"name": "rectangular"
|
|
6989
|
+
},
|
|
6990
|
+
{
|
|
6991
|
+
"name": "round"
|
|
6992
|
+
},
|
|
6993
|
+
{
|
|
6994
|
+
"name": "soft"
|
|
6995
|
+
}
|
|
6996
|
+
]
|
|
5273
6997
|
},
|
|
5274
6998
|
{
|
|
5275
6999
|
"name": "show-cancel-button",
|
|
@@ -5301,10 +7025,40 @@
|
|
|
5301
7025
|
}
|
|
5302
7026
|
]
|
|
5303
7027
|
},
|
|
7028
|
+
{
|
|
7029
|
+
"name": "size",
|
|
7030
|
+
"description": "Set to `\"large\"` for a searchbar with an increase in height,\nwhile \"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and `undefined` for all other themes.",
|
|
7031
|
+
"values": [
|
|
7032
|
+
{
|
|
7033
|
+
"name": "large"
|
|
7034
|
+
},
|
|
7035
|
+
{
|
|
7036
|
+
"name": "medium"
|
|
7037
|
+
},
|
|
7038
|
+
{
|
|
7039
|
+
"name": "small"
|
|
7040
|
+
}
|
|
7041
|
+
]
|
|
7042
|
+
},
|
|
5304
7043
|
{
|
|
5305
7044
|
"name": "spellcheck",
|
|
5306
7045
|
"description": "If `true`, enable spellcheck on the input."
|
|
5307
7046
|
},
|
|
7047
|
+
{
|
|
7048
|
+
"name": "theme",
|
|
7049
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7050
|
+
"values": [
|
|
7051
|
+
{
|
|
7052
|
+
"name": "ios"
|
|
7053
|
+
},
|
|
7054
|
+
{
|
|
7055
|
+
"name": "md"
|
|
7056
|
+
},
|
|
7057
|
+
{
|
|
7058
|
+
"name": "ionic"
|
|
7059
|
+
}
|
|
7060
|
+
]
|
|
7061
|
+
},
|
|
5308
7062
|
{
|
|
5309
7063
|
"name": "type",
|
|
5310
7064
|
"description": "Set the type of the input.",
|
|
@@ -5390,7 +7144,7 @@
|
|
|
5390
7144
|
},
|
|
5391
7145
|
{
|
|
5392
7146
|
"name": "mode",
|
|
5393
|
-
"description": "The mode determines
|
|
7147
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5394
7148
|
"values": [
|
|
5395
7149
|
{
|
|
5396
7150
|
"name": "ios"
|
|
@@ -5412,6 +7166,21 @@
|
|
|
5412
7166
|
"name": "swipe-gesture",
|
|
5413
7167
|
"description": "If `true`, users will be able to swipe between segment buttons to activate them."
|
|
5414
7168
|
},
|
|
7169
|
+
{
|
|
7170
|
+
"name": "theme",
|
|
7171
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7172
|
+
"values": [
|
|
7173
|
+
{
|
|
7174
|
+
"name": "ios"
|
|
7175
|
+
},
|
|
7176
|
+
{
|
|
7177
|
+
"name": "md"
|
|
7178
|
+
},
|
|
7179
|
+
{
|
|
7180
|
+
"name": "ionic"
|
|
7181
|
+
}
|
|
7182
|
+
]
|
|
7183
|
+
},
|
|
5415
7184
|
{
|
|
5416
7185
|
"name": "value",
|
|
5417
7186
|
"description": "the value of the segment."
|
|
@@ -5465,13 +7234,28 @@
|
|
|
5465
7234
|
},
|
|
5466
7235
|
{
|
|
5467
7236
|
"name": "mode",
|
|
5468
|
-
"description": "The mode determines
|
|
7237
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7238
|
+
"values": [
|
|
7239
|
+
{
|
|
7240
|
+
"name": "ios"
|
|
7241
|
+
},
|
|
7242
|
+
{
|
|
7243
|
+
"name": "md"
|
|
7244
|
+
}
|
|
7245
|
+
]
|
|
7246
|
+
},
|
|
7247
|
+
{
|
|
7248
|
+
"name": "theme",
|
|
7249
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
5469
7250
|
"values": [
|
|
5470
7251
|
{
|
|
5471
7252
|
"name": "ios"
|
|
5472
7253
|
},
|
|
5473
7254
|
{
|
|
5474
7255
|
"name": "md"
|
|
7256
|
+
},
|
|
7257
|
+
{
|
|
7258
|
+
"name": "ionic"
|
|
5475
7259
|
}
|
|
5476
7260
|
]
|
|
5477
7261
|
},
|
|
@@ -5593,11 +7377,11 @@
|
|
|
5593
7377
|
},
|
|
5594
7378
|
{
|
|
5595
7379
|
"name": "expanded-icon",
|
|
5596
|
-
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in
|
|
7380
|
+
"description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in `\"md\"` theme will be disabled. If undefined, `toggleIcon`\nwill be used for when the select is both open and closed."
|
|
5597
7381
|
},
|
|
5598
7382
|
{
|
|
5599
7383
|
"name": "fill",
|
|
5600
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available in
|
|
7384
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available in the `\"md\"` theme.",
|
|
5601
7385
|
"values": [
|
|
5602
7386
|
{
|
|
5603
7387
|
"name": "outline"
|
|
@@ -5675,7 +7459,7 @@
|
|
|
5675
7459
|
},
|
|
5676
7460
|
{
|
|
5677
7461
|
"name": "mode",
|
|
5678
|
-
"description": "The mode determines
|
|
7462
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5679
7463
|
"values": [
|
|
5680
7464
|
{
|
|
5681
7465
|
"name": "ios"
|
|
@@ -5711,16 +7495,52 @@
|
|
|
5711
7495
|
},
|
|
5712
7496
|
{
|
|
5713
7497
|
"name": "shape",
|
|
5714
|
-
"description": "
|
|
7498
|
+
"description": "Set to `\"soft\"` for a select with slightly rounded corners,\n`\"round\"` for a select with fully rounded corners,\nor `\"rectangular\"` for a select without rounded corners.\n\nDefaults to `\"round\"` for the `\"ionic\"` theme, undefined for all other themes.",
|
|
5715
7499
|
"values": [
|
|
7500
|
+
{
|
|
7501
|
+
"name": "rectangular"
|
|
7502
|
+
},
|
|
5716
7503
|
{
|
|
5717
7504
|
"name": "round"
|
|
7505
|
+
},
|
|
7506
|
+
{
|
|
7507
|
+
"name": "soft"
|
|
7508
|
+
}
|
|
7509
|
+
]
|
|
7510
|
+
},
|
|
7511
|
+
{
|
|
7512
|
+
"name": "size",
|
|
7513
|
+
"description": "The size of the select. If \"large\" it will increase the height of the select, while\n\"small\" and \"medium\" provide progressively smaller heights.\n\nDefaults to `\"medium\"` for the ionic theme, and undefined for all other themes.",
|
|
7514
|
+
"values": [
|
|
7515
|
+
{
|
|
7516
|
+
"name": "large"
|
|
7517
|
+
},
|
|
7518
|
+
{
|
|
7519
|
+
"name": "medium"
|
|
7520
|
+
},
|
|
7521
|
+
{
|
|
7522
|
+
"name": "small"
|
|
7523
|
+
}
|
|
7524
|
+
]
|
|
7525
|
+
},
|
|
7526
|
+
{
|
|
7527
|
+
"name": "theme",
|
|
7528
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7529
|
+
"values": [
|
|
7530
|
+
{
|
|
7531
|
+
"name": "ios"
|
|
7532
|
+
},
|
|
7533
|
+
{
|
|
7534
|
+
"name": "md"
|
|
7535
|
+
},
|
|
7536
|
+
{
|
|
7537
|
+
"name": "ionic"
|
|
5718
7538
|
}
|
|
5719
7539
|
]
|
|
5720
7540
|
},
|
|
5721
7541
|
{
|
|
5722
7542
|
"name": "toggle-icon",
|
|
5723
|
-
"description": "The toggle icon to use. Defaults to
|
|
7543
|
+
"description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes."
|
|
5724
7544
|
},
|
|
5725
7545
|
{
|
|
5726
7546
|
"name": "value",
|
|
@@ -5768,6 +7588,33 @@
|
|
|
5768
7588
|
"name": "disabled",
|
|
5769
7589
|
"description": "If `true`, the user cannot interact with the select option. This property does not apply when `interface=\"action-sheet\"` as `ion-action-sheet` does not allow for disabled buttons."
|
|
5770
7590
|
},
|
|
7591
|
+
{
|
|
7592
|
+
"name": "mode",
|
|
7593
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7594
|
+
"values": [
|
|
7595
|
+
{
|
|
7596
|
+
"name": "ios"
|
|
7597
|
+
},
|
|
7598
|
+
{
|
|
7599
|
+
"name": "md"
|
|
7600
|
+
}
|
|
7601
|
+
]
|
|
7602
|
+
},
|
|
7603
|
+
{
|
|
7604
|
+
"name": "theme",
|
|
7605
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7606
|
+
"values": [
|
|
7607
|
+
{
|
|
7608
|
+
"name": "ios"
|
|
7609
|
+
},
|
|
7610
|
+
{
|
|
7611
|
+
"name": "md"
|
|
7612
|
+
},
|
|
7613
|
+
{
|
|
7614
|
+
"name": "ionic"
|
|
7615
|
+
}
|
|
7616
|
+
]
|
|
7617
|
+
},
|
|
5771
7618
|
{
|
|
5772
7619
|
"name": "value",
|
|
5773
7620
|
"description": "The text value of the option."
|
|
@@ -5790,6 +7637,33 @@
|
|
|
5790
7637
|
{
|
|
5791
7638
|
"name": "animated",
|
|
5792
7639
|
"description": "If `true`, the skeleton text will animate."
|
|
7640
|
+
},
|
|
7641
|
+
{
|
|
7642
|
+
"name": "mode",
|
|
7643
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7644
|
+
"values": [
|
|
7645
|
+
{
|
|
7646
|
+
"name": "ios"
|
|
7647
|
+
},
|
|
7648
|
+
{
|
|
7649
|
+
"name": "md"
|
|
7650
|
+
}
|
|
7651
|
+
]
|
|
7652
|
+
},
|
|
7653
|
+
{
|
|
7654
|
+
"name": "theme",
|
|
7655
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7656
|
+
"values": [
|
|
7657
|
+
{
|
|
7658
|
+
"name": "ios"
|
|
7659
|
+
},
|
|
7660
|
+
{
|
|
7661
|
+
"name": "md"
|
|
7662
|
+
},
|
|
7663
|
+
{
|
|
7664
|
+
"name": "ionic"
|
|
7665
|
+
}
|
|
7666
|
+
]
|
|
5793
7667
|
}
|
|
5794
7668
|
],
|
|
5795
7669
|
"references": [
|
|
@@ -5843,6 +7717,18 @@
|
|
|
5843
7717
|
"name": "duration",
|
|
5844
7718
|
"description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner."
|
|
5845
7719
|
},
|
|
7720
|
+
{
|
|
7721
|
+
"name": "mode",
|
|
7722
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7723
|
+
"values": [
|
|
7724
|
+
{
|
|
7725
|
+
"name": "ios"
|
|
7726
|
+
},
|
|
7727
|
+
{
|
|
7728
|
+
"name": "md"
|
|
7729
|
+
}
|
|
7730
|
+
]
|
|
7731
|
+
},
|
|
5846
7732
|
{
|
|
5847
7733
|
"name": "name",
|
|
5848
7734
|
"description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
|
|
@@ -5879,6 +7765,42 @@
|
|
|
5879
7765
|
{
|
|
5880
7766
|
"name": "paused",
|
|
5881
7767
|
"description": "If `true`, the spinner's animation will be paused."
|
|
7768
|
+
},
|
|
7769
|
+
{
|
|
7770
|
+
"name": "size",
|
|
7771
|
+
"description": "Set to `\"xsmall\"` for the smallest size.\nSet to `\"small\"` for a smaller size.\nSet to `\"medium\"` for a medium size.\nSet to `\"large\"` for a large size.\nSet to `\"xlarge\"` for the largest size.\n\nDefaults to `\"xsmall\"` for the `ionic` theme, undefined for all other themes.",
|
|
7772
|
+
"values": [
|
|
7773
|
+
{
|
|
7774
|
+
"name": "large"
|
|
7775
|
+
},
|
|
7776
|
+
{
|
|
7777
|
+
"name": "medium"
|
|
7778
|
+
},
|
|
7779
|
+
{
|
|
7780
|
+
"name": "small"
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"name": "xlarge"
|
|
7784
|
+
},
|
|
7785
|
+
{
|
|
7786
|
+
"name": "xsmall"
|
|
7787
|
+
}
|
|
7788
|
+
]
|
|
7789
|
+
},
|
|
7790
|
+
{
|
|
7791
|
+
"name": "theme",
|
|
7792
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7793
|
+
"values": [
|
|
7794
|
+
{
|
|
7795
|
+
"name": "ios"
|
|
7796
|
+
},
|
|
7797
|
+
{
|
|
7798
|
+
"name": "md"
|
|
7799
|
+
},
|
|
7800
|
+
{
|
|
7801
|
+
"name": "ionic"
|
|
7802
|
+
}
|
|
7803
|
+
]
|
|
5882
7804
|
}
|
|
5883
7805
|
],
|
|
5884
7806
|
"references": [
|
|
@@ -5903,6 +7825,33 @@
|
|
|
5903
7825
|
"name": "disabled",
|
|
5904
7826
|
"description": "If `true`, the split pane will be hidden."
|
|
5905
7827
|
},
|
|
7828
|
+
{
|
|
7829
|
+
"name": "mode",
|
|
7830
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7831
|
+
"values": [
|
|
7832
|
+
{
|
|
7833
|
+
"name": "ios"
|
|
7834
|
+
},
|
|
7835
|
+
{
|
|
7836
|
+
"name": "md"
|
|
7837
|
+
}
|
|
7838
|
+
]
|
|
7839
|
+
},
|
|
7840
|
+
{
|
|
7841
|
+
"name": "theme",
|
|
7842
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7843
|
+
"values": [
|
|
7844
|
+
{
|
|
7845
|
+
"name": "ios"
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"name": "md"
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
"name": "ionic"
|
|
7852
|
+
}
|
|
7853
|
+
]
|
|
7854
|
+
},
|
|
5906
7855
|
{
|
|
5907
7856
|
"name": "when",
|
|
5908
7857
|
"description": "When the split-pane should be shown.\nCan be a CSS media query expression, or a shortcut expression.\nCan also be a boolean expression."
|
|
@@ -5926,9 +7875,36 @@
|
|
|
5926
7875
|
"name": "component",
|
|
5927
7876
|
"description": "The component to display inside of the tab."
|
|
5928
7877
|
},
|
|
7878
|
+
{
|
|
7879
|
+
"name": "mode",
|
|
7880
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
7881
|
+
"values": [
|
|
7882
|
+
{
|
|
7883
|
+
"name": "ios"
|
|
7884
|
+
},
|
|
7885
|
+
{
|
|
7886
|
+
"name": "md"
|
|
7887
|
+
}
|
|
7888
|
+
]
|
|
7889
|
+
},
|
|
5929
7890
|
{
|
|
5930
7891
|
"name": "tab",
|
|
5931
7892
|
"description": "A tab id must be provided for each `ion-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them."
|
|
7893
|
+
},
|
|
7894
|
+
{
|
|
7895
|
+
"name": "theme",
|
|
7896
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
7897
|
+
"values": [
|
|
7898
|
+
{
|
|
7899
|
+
"name": "ios"
|
|
7900
|
+
},
|
|
7901
|
+
{
|
|
7902
|
+
"name": "md"
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
"name": "ionic"
|
|
7906
|
+
}
|
|
7907
|
+
]
|
|
5932
7908
|
}
|
|
5933
7909
|
],
|
|
5934
7910
|
"references": [
|
|
@@ -5978,9 +7954,21 @@
|
|
|
5978
7954
|
}
|
|
5979
7955
|
]
|
|
5980
7956
|
},
|
|
7957
|
+
{
|
|
7958
|
+
"name": "expand",
|
|
7959
|
+
"description": "Set to `\"compact\"` to display a width based on the items\ninside the tab bar. This value will only work for the\n`ionic` theme.\n\nSet to `\"full\"` to display a full width tab bar.\n\nDefaults to `\"full\"`.",
|
|
7960
|
+
"values": [
|
|
7961
|
+
{
|
|
7962
|
+
"name": "compact"
|
|
7963
|
+
},
|
|
7964
|
+
{
|
|
7965
|
+
"name": "full"
|
|
7966
|
+
}
|
|
7967
|
+
]
|
|
7968
|
+
},
|
|
5981
7969
|
{
|
|
5982
7970
|
"name": "mode",
|
|
5983
|
-
"description": "The mode determines
|
|
7971
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
5984
7972
|
"values": [
|
|
5985
7973
|
{
|
|
5986
7974
|
"name": "ios"
|
|
@@ -5994,9 +7982,39 @@
|
|
|
5994
7982
|
"name": "selected-tab",
|
|
5995
7983
|
"description": "The selected tab component"
|
|
5996
7984
|
},
|
|
7985
|
+
{
|
|
7986
|
+
"name": "shape",
|
|
7987
|
+
"description": "Set to `\"soft\"` for a tab bar with slightly rounded corners,\n`\"round\"` for a tab bar with fully rounded corners, or\n`\"rectangular\"` for a tab bar without rounded corners.\n\nDefaults to `\"round\"` for the `\"ionic\"` theme, undefined for all other themes.",
|
|
7988
|
+
"values": [
|
|
7989
|
+
{
|
|
7990
|
+
"name": "rectangular"
|
|
7991
|
+
},
|
|
7992
|
+
{
|
|
7993
|
+
"name": "round"
|
|
7994
|
+
},
|
|
7995
|
+
{
|
|
7996
|
+
"name": "soft"
|
|
7997
|
+
}
|
|
7998
|
+
]
|
|
7999
|
+
},
|
|
8000
|
+
{
|
|
8001
|
+
"name": "theme",
|
|
8002
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8003
|
+
"values": [
|
|
8004
|
+
{
|
|
8005
|
+
"name": "ios"
|
|
8006
|
+
},
|
|
8007
|
+
{
|
|
8008
|
+
"name": "md"
|
|
8009
|
+
},
|
|
8010
|
+
{
|
|
8011
|
+
"name": "ionic"
|
|
8012
|
+
}
|
|
8013
|
+
]
|
|
8014
|
+
},
|
|
5997
8015
|
{
|
|
5998
8016
|
"name": "translucent",
|
|
5999
|
-
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the
|
|
8017
|
+
"description": "If `true`, the tab bar will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
6000
8018
|
}
|
|
6001
8019
|
],
|
|
6002
8020
|
"references": [
|
|
@@ -6051,7 +8069,7 @@
|
|
|
6051
8069
|
},
|
|
6052
8070
|
{
|
|
6053
8071
|
"name": "mode",
|
|
6054
|
-
"description": "The mode determines
|
|
8072
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6055
8073
|
"values": [
|
|
6056
8074
|
{
|
|
6057
8075
|
"name": "ios"
|
|
@@ -6069,6 +8087,21 @@
|
|
|
6069
8087
|
"name": "selected",
|
|
6070
8088
|
"description": "The selected tab component"
|
|
6071
8089
|
},
|
|
8090
|
+
{
|
|
8091
|
+
"name": "shape",
|
|
8092
|
+
"description": "Set to `\"soft\"` for a tab-button with slightly rounded corners,\n`\"round\"` for a tab-button with fully rounded corners, or `\"rectangular\"`\nfor a tab-button without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
8093
|
+
"values": [
|
|
8094
|
+
{
|
|
8095
|
+
"name": "rectangular"
|
|
8096
|
+
},
|
|
8097
|
+
{
|
|
8098
|
+
"name": "round"
|
|
8099
|
+
},
|
|
8100
|
+
{
|
|
8101
|
+
"name": "soft"
|
|
8102
|
+
}
|
|
8103
|
+
]
|
|
8104
|
+
},
|
|
6072
8105
|
{
|
|
6073
8106
|
"name": "tab",
|
|
6074
8107
|
"description": "A tab id must be provided for each `ion-tab`. It's used internally to reference\nthe selected tab or by the router to switch between them."
|
|
@@ -6076,6 +8109,21 @@
|
|
|
6076
8109
|
{
|
|
6077
8110
|
"name": "target",
|
|
6078
8111
|
"description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
|
|
8112
|
+
},
|
|
8113
|
+
{
|
|
8114
|
+
"name": "theme",
|
|
8115
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8116
|
+
"values": [
|
|
8117
|
+
{
|
|
8118
|
+
"name": "ios"
|
|
8119
|
+
},
|
|
8120
|
+
{
|
|
8121
|
+
"name": "md"
|
|
8122
|
+
},
|
|
8123
|
+
{
|
|
8124
|
+
"name": "ionic"
|
|
8125
|
+
}
|
|
8126
|
+
]
|
|
6079
8127
|
}
|
|
6080
8128
|
],
|
|
6081
8129
|
"references": [
|
|
@@ -6091,7 +8139,35 @@
|
|
|
6091
8139
|
"kind": "markdown",
|
|
6092
8140
|
"value": ""
|
|
6093
8141
|
},
|
|
6094
|
-
"attributes": [
|
|
8142
|
+
"attributes": [
|
|
8143
|
+
{
|
|
8144
|
+
"name": "mode",
|
|
8145
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8146
|
+
"values": [
|
|
8147
|
+
{
|
|
8148
|
+
"name": "ios"
|
|
8149
|
+
},
|
|
8150
|
+
{
|
|
8151
|
+
"name": "md"
|
|
8152
|
+
}
|
|
8153
|
+
]
|
|
8154
|
+
},
|
|
8155
|
+
{
|
|
8156
|
+
"name": "theme",
|
|
8157
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8158
|
+
"values": [
|
|
8159
|
+
{
|
|
8160
|
+
"name": "ios"
|
|
8161
|
+
},
|
|
8162
|
+
{
|
|
8163
|
+
"name": "md"
|
|
8164
|
+
},
|
|
8165
|
+
{
|
|
8166
|
+
"name": "ionic"
|
|
8167
|
+
}
|
|
8168
|
+
]
|
|
8169
|
+
}
|
|
8170
|
+
],
|
|
6095
8171
|
"references": [
|
|
6096
8172
|
{
|
|
6097
8173
|
"name": "Source code",
|
|
@@ -6141,13 +8217,28 @@
|
|
|
6141
8217
|
},
|
|
6142
8218
|
{
|
|
6143
8219
|
"name": "mode",
|
|
6144
|
-
"description": "The mode determines
|
|
8220
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8221
|
+
"values": [
|
|
8222
|
+
{
|
|
8223
|
+
"name": "ios"
|
|
8224
|
+
},
|
|
8225
|
+
{
|
|
8226
|
+
"name": "md"
|
|
8227
|
+
}
|
|
8228
|
+
]
|
|
8229
|
+
},
|
|
8230
|
+
{
|
|
8231
|
+
"name": "theme",
|
|
8232
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6145
8233
|
"values": [
|
|
6146
8234
|
{
|
|
6147
8235
|
"name": "ios"
|
|
6148
8236
|
},
|
|
6149
8237
|
{
|
|
6150
8238
|
"name": "md"
|
|
8239
|
+
},
|
|
8240
|
+
{
|
|
8241
|
+
"name": "ionic"
|
|
6151
8242
|
}
|
|
6152
8243
|
]
|
|
6153
8244
|
}
|
|
@@ -6264,7 +8355,7 @@
|
|
|
6264
8355
|
},
|
|
6265
8356
|
{
|
|
6266
8357
|
"name": "fill",
|
|
6267
|
-
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available
|
|
8358
|
+
"description": "The fill for the item. If `\"solid\"` the item will have a background. If\n`\"outline\"` the item will be transparent with a border. Only available when the theme is `\"md\"`.",
|
|
6268
8359
|
"values": [
|
|
6269
8360
|
{
|
|
6270
8361
|
"name": "outline"
|
|
@@ -6343,7 +8434,7 @@
|
|
|
6343
8434
|
},
|
|
6344
8435
|
{
|
|
6345
8436
|
"name": "mode",
|
|
6346
|
-
"description": "The mode determines
|
|
8437
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6347
8438
|
"values": [
|
|
6348
8439
|
{
|
|
6349
8440
|
"name": "ios"
|
|
@@ -6375,10 +8466,31 @@
|
|
|
6375
8466
|
},
|
|
6376
8467
|
{
|
|
6377
8468
|
"name": "shape",
|
|
6378
|
-
"description": "
|
|
8469
|
+
"description": "Set to `\"soft\"` for a textarea with slightly rounded corners,\n`\"round\"` for a textarea with fully rounded corners, or `\"rectangular\"`\nfor a textarea without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
6379
8470
|
"values": [
|
|
8471
|
+
{
|
|
8472
|
+
"name": "rectangular"
|
|
8473
|
+
},
|
|
6380
8474
|
{
|
|
6381
8475
|
"name": "round"
|
|
8476
|
+
},
|
|
8477
|
+
{
|
|
8478
|
+
"name": "soft"
|
|
8479
|
+
}
|
|
8480
|
+
]
|
|
8481
|
+
},
|
|
8482
|
+
{
|
|
8483
|
+
"name": "size",
|
|
8484
|
+
"description": "The size of the textarea. If \"large\" it will increase the height of the textarea, while\n\"small\" and \"medium\" provide progressively smaller heights. The default size is \"medium\".\nThis property only applies to the `\"ionic\"` theme.",
|
|
8485
|
+
"values": [
|
|
8486
|
+
{
|
|
8487
|
+
"name": "large"
|
|
8488
|
+
},
|
|
8489
|
+
{
|
|
8490
|
+
"name": "medium"
|
|
8491
|
+
},
|
|
8492
|
+
{
|
|
8493
|
+
"name": "small"
|
|
6382
8494
|
}
|
|
6383
8495
|
]
|
|
6384
8496
|
},
|
|
@@ -6386,6 +8498,21 @@
|
|
|
6386
8498
|
"name": "spellcheck",
|
|
6387
8499
|
"description": "If `true`, the element will have its spelling and grammar checked."
|
|
6388
8500
|
},
|
|
8501
|
+
{
|
|
8502
|
+
"name": "theme",
|
|
8503
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8504
|
+
"values": [
|
|
8505
|
+
{
|
|
8506
|
+
"name": "ios"
|
|
8507
|
+
},
|
|
8508
|
+
{
|
|
8509
|
+
"name": "md"
|
|
8510
|
+
},
|
|
8511
|
+
{
|
|
8512
|
+
"name": "ionic"
|
|
8513
|
+
}
|
|
8514
|
+
]
|
|
8515
|
+
},
|
|
6389
8516
|
{
|
|
6390
8517
|
"name": "value",
|
|
6391
8518
|
"description": "The value of the textarea."
|
|
@@ -6419,7 +8546,35 @@
|
|
|
6419
8546
|
"kind": "markdown",
|
|
6420
8547
|
"value": ""
|
|
6421
8548
|
},
|
|
6422
|
-
"attributes": [
|
|
8549
|
+
"attributes": [
|
|
8550
|
+
{
|
|
8551
|
+
"name": "mode",
|
|
8552
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8553
|
+
"values": [
|
|
8554
|
+
{
|
|
8555
|
+
"name": "ios"
|
|
8556
|
+
},
|
|
8557
|
+
{
|
|
8558
|
+
"name": "md"
|
|
8559
|
+
}
|
|
8560
|
+
]
|
|
8561
|
+
},
|
|
8562
|
+
{
|
|
8563
|
+
"name": "theme",
|
|
8564
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8565
|
+
"values": [
|
|
8566
|
+
{
|
|
8567
|
+
"name": "ios"
|
|
8568
|
+
},
|
|
8569
|
+
{
|
|
8570
|
+
"name": "md"
|
|
8571
|
+
},
|
|
8572
|
+
{
|
|
8573
|
+
"name": "ionic"
|
|
8574
|
+
}
|
|
8575
|
+
]
|
|
8576
|
+
}
|
|
8577
|
+
],
|
|
6423
8578
|
"references": [
|
|
6424
8579
|
{
|
|
6425
8580
|
"name": "Source code",
|
|
@@ -6467,6 +8622,18 @@
|
|
|
6467
8622
|
}
|
|
6468
8623
|
]
|
|
6469
8624
|
},
|
|
8625
|
+
{
|
|
8626
|
+
"name": "mode",
|
|
8627
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
8628
|
+
"values": [
|
|
8629
|
+
{
|
|
8630
|
+
"name": "ios"
|
|
8631
|
+
},
|
|
8632
|
+
{
|
|
8633
|
+
"name": "md"
|
|
8634
|
+
}
|
|
8635
|
+
]
|
|
8636
|
+
},
|
|
6470
8637
|
{
|
|
6471
8638
|
"name": "size",
|
|
6472
8639
|
"description": "The size of the toolbar title.",
|
|
@@ -6478,6 +8645,21 @@
|
|
|
6478
8645
|
"name": "small"
|
|
6479
8646
|
}
|
|
6480
8647
|
]
|
|
8648
|
+
},
|
|
8649
|
+
{
|
|
8650
|
+
"name": "theme",
|
|
8651
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8652
|
+
"values": [
|
|
8653
|
+
{
|
|
8654
|
+
"name": "ios"
|
|
8655
|
+
},
|
|
8656
|
+
{
|
|
8657
|
+
"name": "md"
|
|
8658
|
+
},
|
|
8659
|
+
{
|
|
8660
|
+
"name": "ionic"
|
|
8661
|
+
}
|
|
8662
|
+
]
|
|
6481
8663
|
}
|
|
6482
8664
|
],
|
|
6483
8665
|
"references": [
|
|
@@ -6573,7 +8755,7 @@
|
|
|
6573
8755
|
},
|
|
6574
8756
|
{
|
|
6575
8757
|
"name": "mode",
|
|
6576
|
-
"description": "The mode determines
|
|
8758
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6577
8759
|
"values": [
|
|
6578
8760
|
{
|
|
6579
8761
|
"name": "ios"
|
|
@@ -6602,6 +8784,21 @@
|
|
|
6602
8784
|
"name": "position-anchor",
|
|
6603
8785
|
"description": "The element to anchor the toast's position to. Can be set as a direct reference\nor the ID of the element. With `position=\"bottom\"`, the toast will sit above the\nchosen element. With `position=\"top\"`, the toast will sit below the chosen element.\nWith `position=\"middle\"`, the value of `positionAnchor` is ignored."
|
|
6604
8786
|
},
|
|
8787
|
+
{
|
|
8788
|
+
"name": "shape",
|
|
8789
|
+
"description": "Set to `\"soft\"` for a toast with slightly rounded corners,\n`\"round\"` for a toast with fully rounded corners, or `\"rectangular\"`\nfor a toast without rounded corners.\n\nDefaults to `\"round\"` for the `ionic` theme, undefined for all other themes.",
|
|
8790
|
+
"values": [
|
|
8791
|
+
{
|
|
8792
|
+
"name": "rectangular"
|
|
8793
|
+
},
|
|
8794
|
+
{
|
|
8795
|
+
"name": "round"
|
|
8796
|
+
},
|
|
8797
|
+
{
|
|
8798
|
+
"name": "soft"
|
|
8799
|
+
}
|
|
8800
|
+
]
|
|
8801
|
+
},
|
|
6605
8802
|
{
|
|
6606
8803
|
"name": "swipe-gesture",
|
|
6607
8804
|
"description": "If set to 'vertical', the Toast can be dismissed with\na swipe gesture. The swipe direction is determined by\nthe value of the `position` property:\n`top`: The Toast can be swiped up to dismiss.\n`bottom`: The Toast can be swiped down to dismiss.\n`middle`: The Toast can be swiped up or down to dismiss.",
|
|
@@ -6611,9 +8808,24 @@
|
|
|
6611
8808
|
}
|
|
6612
8809
|
]
|
|
6613
8810
|
},
|
|
8811
|
+
{
|
|
8812
|
+
"name": "theme",
|
|
8813
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8814
|
+
"values": [
|
|
8815
|
+
{
|
|
8816
|
+
"name": "ios"
|
|
8817
|
+
},
|
|
8818
|
+
{
|
|
8819
|
+
"name": "md"
|
|
8820
|
+
},
|
|
8821
|
+
{
|
|
8822
|
+
"name": "ionic"
|
|
8823
|
+
}
|
|
8824
|
+
]
|
|
8825
|
+
},
|
|
6614
8826
|
{
|
|
6615
8827
|
"name": "translucent",
|
|
6616
|
-
"description": "If `true`, the toast will be translucent.\nOnly applies when the
|
|
8828
|
+
"description": "If `true`, the toast will be translucent.\nOnly applies when the theme is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
|
|
6617
8829
|
},
|
|
6618
8830
|
{
|
|
6619
8831
|
"name": "trigger",
|
|
@@ -6734,7 +8946,7 @@
|
|
|
6734
8946
|
},
|
|
6735
8947
|
{
|
|
6736
8948
|
"name": "mode",
|
|
6737
|
-
"description": "The mode determines
|
|
8949
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
6738
8950
|
"values": [
|
|
6739
8951
|
{
|
|
6740
8952
|
"name": "ios"
|
|
@@ -6752,6 +8964,21 @@
|
|
|
6752
8964
|
"name": "required",
|
|
6753
8965
|
"description": "If true, screen readers will announce it as a required field. This property\nworks only for accessibility purposes, it will not prevent the form from\nsubmitting if the value is invalid."
|
|
6754
8966
|
},
|
|
8967
|
+
{
|
|
8968
|
+
"name": "theme",
|
|
8969
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
8970
|
+
"values": [
|
|
8971
|
+
{
|
|
8972
|
+
"name": "ios"
|
|
8973
|
+
},
|
|
8974
|
+
{
|
|
8975
|
+
"name": "md"
|
|
8976
|
+
},
|
|
8977
|
+
{
|
|
8978
|
+
"name": "ionic"
|
|
8979
|
+
}
|
|
8980
|
+
]
|
|
8981
|
+
},
|
|
6755
8982
|
{
|
|
6756
8983
|
"name": "value",
|
|
6757
8984
|
"description": "The value of the toggle does not mean if it's checked or not, use the `checked`\nproperty for that.\n\nThe value of a toggle is analogous to the value of a `<input type=\"checkbox\">`,\nit's only used when the toggle participates in a native `<form>`."
|
|
@@ -6806,13 +9033,28 @@
|
|
|
6806
9033
|
},
|
|
6807
9034
|
{
|
|
6808
9035
|
"name": "mode",
|
|
6809
|
-
"description": "The mode determines
|
|
9036
|
+
"description": "The mode determines the platform behaviors of the component.",
|
|
9037
|
+
"values": [
|
|
9038
|
+
{
|
|
9039
|
+
"name": "ios"
|
|
9040
|
+
},
|
|
9041
|
+
{
|
|
9042
|
+
"name": "md"
|
|
9043
|
+
}
|
|
9044
|
+
]
|
|
9045
|
+
},
|
|
9046
|
+
{
|
|
9047
|
+
"name": "theme",
|
|
9048
|
+
"description": "The theme determines the visual appearance of the component.",
|
|
6810
9049
|
"values": [
|
|
6811
9050
|
{
|
|
6812
9051
|
"name": "ios"
|
|
6813
9052
|
},
|
|
6814
9053
|
{
|
|
6815
9054
|
"name": "md"
|
|
9055
|
+
},
|
|
9056
|
+
{
|
|
9057
|
+
"name": "ionic"
|
|
6816
9058
|
}
|
|
6817
9059
|
]
|
|
6818
9060
|
}
|