@ionic/core 8.7.6-dev.11759412372.1f332f62 → 8.7.6-dev.11759493293.13f81b9f

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.
Files changed (946) hide show
  1. package/components/action-sheet.js +20 -14
  2. package/components/alert.js +21 -16
  3. package/components/animation.js +1 -1
  4. package/components/backdrop.js +13 -8
  5. package/components/button.js +46 -13
  6. package/components/buttons.js +15 -10
  7. package/components/capacitor.js +1 -1
  8. package/components/caret-down.js +6 -0
  9. package/components/caret-left.js +6 -0
  10. package/components/caret-right.js +6 -0
  11. package/components/checkbox.js +35 -14
  12. package/components/content.js +18 -14
  13. package/components/data.js +14 -11
  14. package/components/focus-visible.js +23 -1
  15. package/components/framework-delegate.js +3 -1
  16. package/components/header.js +32 -18
  17. package/components/helpers.js +42 -3
  18. package/components/icon.js +4 -2
  19. package/components/index5.js +8 -8
  20. package/components/index6.js +1 -1
  21. package/components/index7.js +111 -150
  22. package/components/index8.js +150 -111
  23. package/components/input-shims.js +2 -2
  24. package/components/input.utils.js +1 -1
  25. package/components/ion-accordion-group.js +27 -7
  26. package/components/ion-accordion.js +36 -23
  27. package/components/ion-app.js +15 -78
  28. package/components/ion-avatar.js +62 -7
  29. package/components/ion-back-button.js +32 -22
  30. package/components/ion-badge.js +77 -11
  31. package/components/ion-breadcrumb.js +48 -13
  32. package/components/ion-breadcrumbs.js +12 -7
  33. package/components/ion-card-content.js +14 -9
  34. package/components/ion-card-header.js +13 -8
  35. package/components/ion-card-subtitle.js +12 -7
  36. package/components/ion-card-title.js +12 -7
  37. package/components/ion-card.js +26 -12
  38. package/components/ion-chip.js +57 -10
  39. package/components/ion-col.js +55 -52
  40. package/components/ion-datetime-button.js +12 -7
  41. package/components/ion-datetime.js +106 -27
  42. package/components/ion-divider.d.ts +11 -0
  43. package/components/ion-divider.js +72 -0
  44. package/components/ion-fab-button.js +36 -18
  45. package/components/ion-fab-list.js +9 -7
  46. package/components/ion-fab.js +10 -8
  47. package/components/ion-footer.js +22 -15
  48. package/components/ion-grid.js +9 -7
  49. package/components/ion-img.js +9 -4
  50. package/components/ion-infinite-scroll-content.js +15 -10
  51. package/components/ion-infinite-scroll.js +82 -8
  52. package/components/ion-input-otp.js +13 -8
  53. package/components/ion-input-password-toggle.js +55 -15
  54. package/components/ion-input.js +125 -31
  55. package/components/ion-item-divider.js +12 -7
  56. package/components/ion-item-group.js +12 -7
  57. package/components/ion-item-option.js +40 -11
  58. package/components/ion-item-options.js +14 -9
  59. package/components/ion-item-sliding.js +9 -7
  60. package/components/ion-loading.js +19 -14
  61. package/components/ion-menu-button.js +30 -12
  62. package/components/ion-menu-toggle.js +9 -7
  63. package/components/ion-menu.js +14 -10
  64. package/components/ion-nav-link.js +7 -5
  65. package/components/ion-nav.js +12 -8
  66. package/components/ion-note.js +12 -7
  67. package/components/ion-picker-legacy.js +14 -12
  68. package/components/ion-progress-bar.js +29 -9
  69. package/components/ion-range.js +17 -12
  70. package/components/ion-refresher-content.js +27 -10
  71. package/components/ion-refresher.js +14 -9
  72. package/components/ion-reorder-group.js +9 -7
  73. package/components/ion-reorder.js +34 -7
  74. package/components/ion-route-redirect.js +4 -2
  75. package/components/ion-route.js +7 -5
  76. package/components/ion-router-link.js +11 -9
  77. package/components/ion-router-outlet.js +9 -7
  78. package/components/ion-router.js +4 -2
  79. package/components/ion-row.js +10 -5
  80. package/components/ion-searchbar.js +141 -25
  81. package/components/ion-segment-button.js +14 -9
  82. package/components/ion-segment-content.js +5 -3
  83. package/components/ion-segment-view.js +9 -4
  84. package/components/ion-segment.js +14 -9
  85. package/components/ion-select-option.js +9 -4
  86. package/components/ion-select.js +121 -35
  87. package/components/ion-skeleton-text.js +9 -7
  88. package/components/ion-split-pane.js +15 -10
  89. package/components/ion-tab-bar.js +43 -11
  90. package/components/ion-tab-button.js +29 -9
  91. package/components/ion-tab.js +6 -4
  92. package/components/ion-tabs.js +6 -4
  93. package/components/ion-text.js +9 -7
  94. package/components/ion-textarea.js +57 -14
  95. package/components/ion-thumbnail.js +9 -4
  96. package/components/ion-toast.js +44 -17
  97. package/components/ion-toggle.js +78 -19
  98. package/components/ionic-global.js +349 -15
  99. package/components/ios.transition.js +1 -0
  100. package/components/item.js +44 -17
  101. package/components/keyboard-controller.js +4 -2
  102. package/components/label.js +12 -7
  103. package/components/list-header.js +14 -9
  104. package/components/list.js +31 -8
  105. package/components/list2.js +6 -0
  106. package/components/modal.js +64 -48
  107. package/components/notch-controller.js +1 -1
  108. package/components/overlays.js +13 -27
  109. package/components/picker-column-option.js +12 -7
  110. package/components/picker-column.js +11 -10
  111. package/components/picker-column2.js +8 -6
  112. package/components/picker.js +11 -6
  113. package/components/popover.js +20 -16
  114. package/components/radio-group.js +14 -7
  115. package/components/radio.js +15 -10
  116. package/components/ripple-effect.js +19 -9
  117. package/components/select-modal.js +8 -6
  118. package/components/select-popover.js +12 -4
  119. package/components/spinner.js +35 -10
  120. package/components/status-tap.js +1 -1
  121. package/components/title.js +14 -9
  122. package/components/toolbar.js +157 -11
  123. package/components/x.js +6 -0
  124. package/css/core.css +1 -1
  125. package/css/core.css.map +1 -1
  126. package/css/display.css +1 -1
  127. package/css/display.css.map +1 -1
  128. package/css/flex-utils.css +1 -1
  129. package/css/flex-utils.css.map +1 -1
  130. package/css/float-elements.css.map +1 -1
  131. package/css/global.bundle.css.map +1 -1
  132. package/css/ionic/bundle.ionic.css +1 -0
  133. package/css/ionic/bundle.ionic.css.map +1 -0
  134. package/css/ionic/core.ionic.css +1 -0
  135. package/css/ionic/core.ionic.css.map +1 -0
  136. package/css/ionic/global.bundle.ionic.css +1 -0
  137. package/css/ionic/global.bundle.ionic.css.map +1 -0
  138. package/css/ionic/ionic-swiper.ionic.css +1 -0
  139. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  140. package/css/ionic/link.ionic.css +1 -0
  141. package/css/ionic/link.ionic.css.map +1 -0
  142. package/css/ionic/structure.ionic.css +1 -0
  143. package/css/ionic/structure.ionic.css.map +1 -0
  144. package/css/ionic/typography.ionic.css +1 -0
  145. package/css/ionic/typography.ionic.css.map +1 -0
  146. package/css/ionic/utils.bundle.ionic.css +1 -0
  147. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  148. package/css/ionic-swiper.css +1 -1
  149. package/css/ionic-swiper.css.map +1 -1
  150. package/css/ionic.bundle.css +1 -1
  151. package/css/ionic.bundle.css.map +1 -1
  152. package/css/normalize.css.map +1 -1
  153. package/css/padding.css.map +1 -1
  154. package/css/palettes/dark.always.css.map +1 -1
  155. package/css/palettes/dark.class.css.map +1 -1
  156. package/css/palettes/dark.system.css.map +1 -1
  157. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  158. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  159. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  160. package/css/palettes/high-contrast.always.css.map +1 -1
  161. package/css/palettes/high-contrast.class.css.map +1 -1
  162. package/css/palettes/high-contrast.system.css.map +1 -1
  163. package/css/structure.css.map +1 -1
  164. package/css/text-alignment.css.map +1 -1
  165. package/css/text-transformation.css.map +1 -1
  166. package/css/typography.css.map +1 -1
  167. package/css/utils.bundle.css +1 -1
  168. package/css/utils.bundle.css.map +1 -1
  169. package/dist/cjs/{animation-ZJ1lAkZD.js → animation-BYsP2q5j.js} +3 -3
  170. package/dist/cjs/{app-globals-77ZfuXXk.js → app-globals-CrtAvKxl.js} +1 -1
  171. package/dist/cjs/{button-active-BzZenWWH.js → button-active-CDa7BeCl.js} +2 -2
  172. package/dist/cjs/{capacitor-DmA66EwP.js → capacitor-BMhHF0O5.js} +3 -3
  173. package/dist/cjs/caret-down-vtVgfXIs.js +8 -0
  174. package/dist/cjs/caret-left-CxZXLRv5.js +8 -0
  175. package/dist/cjs/caret-right-CRCgv98E.js +8 -0
  176. package/dist/cjs/{config-CKhELRRu.js → config-C5fsO43a.js} +1 -1
  177. package/dist/cjs/{data-DW6ofvJ8.js → data-MoL8Ckx5.js} +15 -12
  178. package/dist/cjs/{focus-visible-CCvKiLh3.js → focus-visible-BIj-I3-C.js} +24 -0
  179. package/dist/cjs/{framework-delegate-WkyjrnCx.js → framework-delegate-Bwdk9vFS.js} +4 -2
  180. package/dist/cjs/{haptic-ClPPQ_PS.js → haptic-Cy3moXzO.js} +1 -1
  181. package/dist/cjs/{helpers-DgwmcYAu.js → helpers-DnouLczu.js} +42 -3
  182. package/dist/cjs/{index-bGpoPC4u.js → index-Bq6U5NAb.js} +9 -8
  183. package/dist/cjs/{index-DNh170BW.js → index-D6Wc6v08.js} +51 -47
  184. package/dist/cjs/{index-Cc5PNMyz.js → index-DUoP_H1L.js} +2 -2
  185. package/dist/cjs/{index-BzEyuIww.js → index-Dbl8V7hw.js} +4 -4
  186. package/dist/cjs/{index-D24wggHR.js → index-XjN3PjKG.js} +15 -15
  187. package/dist/cjs/index.cjs.js +12 -13
  188. package/dist/cjs/{input-shims-CLI_OrmU.js → input-shims-D6DHFHsE.js} +18 -17
  189. package/dist/cjs/{input.utils-B2hZ5tX6.js → input.utils-BVyJKWft.js} +5 -5
  190. package/dist/cjs/ion-accordion_2.cjs.entry.js +56 -27
  191. package/dist/cjs/ion-action-sheet.cjs.entry.js +22 -19
  192. package/dist/cjs/ion-alert.cjs.entry.js +24 -22
  193. package/dist/cjs/ion-app_8.cjs.entry.js +244 -145
  194. package/dist/cjs/ion-avatar_3.cjs.entry.js +124 -12
  195. package/dist/cjs/ion-back-button.cjs.entry.js +29 -20
  196. package/dist/cjs/ion-backdrop.cjs.entry.js +10 -7
  197. package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +52 -16
  198. package/dist/cjs/ion-button_2.cjs.entry.js +44 -12
  199. package/dist/cjs/ion-card_5.cjs.entry.js +54 -30
  200. package/dist/cjs/ion-checkbox.cjs.entry.js +32 -14
  201. package/dist/cjs/ion-chip.cjs.entry.js +49 -8
  202. package/dist/cjs/ion-col_3.cjs.entry.js +54 -57
  203. package/dist/cjs/ion-datetime-button.cjs.entry.js +12 -8
  204. package/dist/cjs/ion-datetime_3.cjs.entry.js +114 -39
  205. package/dist/cjs/ion-divider.cjs.entry.js +51 -0
  206. package/dist/cjs/ion-fab_3.cjs.entry.js +42 -26
  207. package/dist/cjs/ion-img.cjs.entry.js +8 -4
  208. package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +91 -16
  209. package/dist/cjs/ion-input-otp.cjs.entry.js +12 -8
  210. package/dist/cjs/ion-input-password-toggle.cjs.entry.js +51 -13
  211. package/dist/cjs/ion-input.cjs.entry.js +121 -31
  212. package/dist/cjs/ion-item-option_3.cjs.entry.js +49 -20
  213. package/dist/cjs/ion-item_8.cjs.entry.js +106 -46
  214. package/dist/cjs/ion-loading.cjs.entry.js +19 -17
  215. package/dist/cjs/ion-menu_3.cjs.entry.js +45 -27
  216. package/dist/cjs/ion-modal.cjs.entry.js +103 -90
  217. package/dist/cjs/ion-nav_2.cjs.entry.js +14 -11
  218. package/dist/cjs/ion-picker-column-option.cjs.entry.js +11 -7
  219. package/dist/cjs/ion-picker-column.cjs.entry.js +13 -13
  220. package/dist/cjs/ion-picker.cjs.entry.js +10 -6
  221. package/dist/cjs/ion-popover.cjs.entry.js +19 -18
  222. package/dist/cjs/ion-progress-bar.cjs.entry.js +26 -8
  223. package/dist/cjs/ion-radio_2.cjs.entry.js +23 -14
  224. package/dist/cjs/ion-range.cjs.entry.js +15 -11
  225. package/dist/cjs/ion-refresher_2.cjs.entry.js +38 -20
  226. package/dist/cjs/ion-reorder_2.cjs.entry.js +37 -13
  227. package/dist/cjs/ion-ripple-effect.cjs.entry.js +15 -7
  228. package/dist/cjs/ion-route_4.cjs.entry.js +9 -8
  229. package/dist/cjs/ion-searchbar.cjs.entry.js +135 -22
  230. package/dist/cjs/ion-segment-content.cjs.entry.js +2 -2
  231. package/dist/cjs/ion-segment-view.cjs.entry.js +6 -3
  232. package/dist/cjs/ion-segment_2.cjs.entry.js +22 -15
  233. package/dist/cjs/ion-select-modal.cjs.entry.js +9 -10
  234. package/dist/cjs/ion-select_3.cjs.entry.js +130 -39
  235. package/dist/cjs/ion-spinner.cjs.entry.js +29 -7
  236. package/dist/cjs/ion-split-pane.cjs.entry.js +12 -9
  237. package/dist/cjs/ion-tab-bar_2.cjs.entry.js +66 -21
  238. package/dist/cjs/ion-tab_2.cjs.entry.js +8 -7
  239. package/dist/cjs/ion-text.cjs.entry.js +6 -6
  240. package/dist/cjs/ion-textarea.cjs.entry.js +56 -16
  241. package/dist/cjs/ion-toast.cjs.entry.js +67 -44
  242. package/dist/cjs/ion-toggle.cjs.entry.js +79 -22
  243. package/dist/cjs/ionic-global-DuRUel5m.js +491 -0
  244. package/dist/cjs/ionic.cjs.js +5 -5
  245. package/dist/cjs/{ios.transition-DEitrLlG.js → ios.transition-2wtm_6Ok.js} +7 -5
  246. package/dist/cjs/{keyboard-hHzlEQpk.js → keyboard-C1Ds9WQH.js} +4 -3
  247. package/dist/cjs/{keyboard-UuAS4D_9.js → keyboard-UYQhk8rB.js} +1 -1
  248. package/dist/cjs/{keyboard-controller-GXBiBRKS.js → keyboard-controller-ts0z4BIe.js} +11 -9
  249. package/dist/cjs/list-a-7GSA6K.js +8 -0
  250. package/dist/cjs/loader.cjs.js +4 -4
  251. package/dist/cjs/{md.transition-BHtGC-Wg.js → md.transition-DCNdoS7u.js} +6 -5
  252. package/dist/cjs/{notch-controller-Bf5Rr4R5.js → notch-controller-BX7CnNaL.js} +4 -4
  253. package/dist/cjs/{overlays-CnXxzdUE.js → overlays-pdcfssMG.js} +19 -33
  254. package/dist/cjs/{status-tap-D9YPr62n.js → status-tap-e-hyosXV.js} +4 -3
  255. package/dist/cjs/{swipe-back-C1wRtoww.js → swipe-back-CR060nOX.js} +3 -2
  256. package/dist/cjs/x-BTF99yFH.js +8 -0
  257. package/dist/collection/collection-manifest.json +2 -1
  258. package/dist/collection/components/accordion/accordion.ionic.css +196 -0
  259. package/dist/collection/components/accordion/accordion.ios.css +73 -58
  260. package/dist/collection/components/accordion/accordion.js +40 -30
  261. package/dist/collection/components/accordion/accordion.md.css +67 -59
  262. package/dist/collection/components/accordion-group/accordion-group.ionic.css +93 -0
  263. package/dist/collection/components/accordion-group/accordion-group.ios.css +16 -4
  264. package/dist/collection/components/accordion-group/accordion-group.js +52 -16
  265. package/dist/collection/components/accordion-group/accordion-group.md.css +22 -4
  266. package/dist/collection/components/action-sheet/action-sheet.ios.css +18 -6
  267. package/dist/collection/components/action-sheet/action-sheet.js +31 -32
  268. package/dist/collection/components/action-sheet/action-sheet.md.css +17 -5
  269. package/dist/collection/components/alert/alert.ios.css +19 -1
  270. package/dist/collection/components/alert/alert.js +34 -37
  271. package/dist/collection/components/alert/alert.md.css +19 -1
  272. package/dist/collection/components/app/app.js +15 -78
  273. package/dist/collection/components/avatar/avatar.ionic.css +391 -0
  274. package/dist/collection/components/avatar/avatar.ios.css +7 -33
  275. package/dist/collection/components/avatar/avatar.js +120 -4
  276. package/dist/collection/components/avatar/avatar.md.css +51 -0
  277. package/dist/collection/components/back-button/back-button.ios.css +60 -48
  278. package/dist/collection/components/back-button/back-button.js +37 -30
  279. package/dist/collection/components/back-button/back-button.md.css +60 -48
  280. package/dist/collection/components/backdrop/backdrop.ionic.css +109 -0
  281. package/dist/collection/components/backdrop/backdrop.ios.css +56 -19
  282. package/dist/collection/components/backdrop/backdrop.js +15 -9
  283. package/dist/collection/components/backdrop/backdrop.md.css +56 -19
  284. package/dist/collection/components/badge/badge.ionic.css +275 -0
  285. package/dist/collection/components/badge/badge.ios.css +139 -12
  286. package/dist/collection/components/badge/badge.js +147 -11
  287. package/dist/collection/components/badge/badge.md.css +123 -12
  288. package/dist/collection/components/breadcrumb/breadcrumb.ios.css +20 -8
  289. package/dist/collection/components/breadcrumb/breadcrumb.js +63 -32
  290. package/dist/collection/components/breadcrumb/breadcrumb.md.css +20 -8
  291. package/dist/collection/components/breadcrumbs/breadcrumbs.ios.css +6 -0
  292. package/dist/collection/components/breadcrumbs/breadcrumbs.js +17 -15
  293. package/dist/collection/components/breadcrumbs/breadcrumbs.md.css +6 -0
  294. package/dist/collection/components/button/button.ionic.css +620 -0
  295. package/dist/collection/components/button/button.ios.css +135 -46
  296. package/dist/collection/components/button/button.js +73 -43
  297. package/dist/collection/components/button/button.md.css +126 -50
  298. package/dist/collection/components/buttons/buttons.ionic.css +97 -0
  299. package/dist/collection/components/buttons/buttons.ios.css +59 -7
  300. package/dist/collection/components/buttons/buttons.js +16 -10
  301. package/dist/collection/components/buttons/buttons.md.css +55 -3
  302. package/dist/collection/components/card/card.ionic.css +144 -0
  303. package/dist/collection/components/card/card.ios.css +65 -14
  304. package/dist/collection/components/card/card.js +55 -25
  305. package/dist/collection/components/card/card.md.css +65 -14
  306. package/dist/collection/components/card-content/card-content.ionic.css +92 -0
  307. package/dist/collection/components/card-content/card-content.ios.css +16 -1
  308. package/dist/collection/components/card-content/card-content.js +11 -8
  309. package/dist/collection/components/card-content/card-content.md.css +16 -1
  310. package/dist/collection/components/card-header/card-header.ionic.css +85 -0
  311. package/dist/collection/components/card-header/card-header.ios.css +27 -15
  312. package/dist/collection/components/card-header/card-header.js +16 -13
  313. package/dist/collection/components/card-header/card-header.md.css +27 -15
  314. package/dist/collection/components/card-subtitle/card-subtitle.ionic.css +144 -0
  315. package/dist/collection/components/card-subtitle/card-subtitle.ios.css +12 -0
  316. package/dist/collection/components/card-subtitle/card-subtitle.js +13 -10
  317. package/dist/collection/components/card-subtitle/card-subtitle.md.css +12 -0
  318. package/dist/collection/components/card-title/card-title.ios.css +73 -0
  319. package/dist/collection/components/card-title/card-title.js +13 -10
  320. package/dist/collection/components/card-title/card-title.md.css +73 -0
  321. package/dist/collection/components/checkbox/checkbox.ionic.css +539 -0
  322. package/dist/collection/components/checkbox/checkbox.ios.css +161 -101
  323. package/dist/collection/components/checkbox/checkbox.js +87 -31
  324. package/dist/collection/components/checkbox/checkbox.md.css +162 -102
  325. package/dist/collection/components/chip/chip.ionic.css +228 -0
  326. package/dist/collection/components/chip/chip.ios.css +67 -14
  327. package/dist/collection/components/chip/chip.js +112 -12
  328. package/dist/collection/components/chip/chip.md.css +67 -14
  329. package/dist/collection/components/col/col.css +192 -4
  330. package/dist/collection/components/col/col.js +258 -109
  331. package/dist/collection/components/content/content.css +8 -2
  332. package/dist/collection/components/content/content.js +25 -20
  333. package/dist/collection/components/datetime/datetime.ionic.css +697 -0
  334. package/dist/collection/components/datetime/datetime.ios.css +242 -86
  335. package/dist/collection/components/datetime/datetime.js +134 -60
  336. package/dist/collection/components/datetime/datetime.md.css +242 -86
  337. package/dist/collection/components/datetime/utils/data.js +5 -5
  338. package/dist/collection/components/datetime-button/datetime-button.ios.css +6 -0
  339. package/dist/collection/components/datetime-button/datetime-button.js +15 -12
  340. package/dist/collection/components/datetime-button/datetime-button.md.css +6 -0
  341. package/dist/collection/components/divider/divider.ionic.css +148 -0
  342. package/dist/collection/components/divider/divider.ios.css +87 -0
  343. package/dist/collection/components/divider/divider.js +94 -0
  344. package/dist/collection/components/divider/divider.md.css +87 -0
  345. package/dist/collection/components/fab/fab.css +25 -1
  346. package/dist/collection/components/fab/fab.js +15 -11
  347. package/dist/collection/components/fab-button/fab-button.ios.css +18 -6
  348. package/dist/collection/components/fab-button/fab-button.js +54 -40
  349. package/dist/collection/components/fab-button/fab-button.md.css +20 -8
  350. package/dist/collection/components/fab-list/fab-list.css +12 -0
  351. package/dist/collection/components/fab-list/fab-list.js +11 -7
  352. package/dist/collection/components/footer/footer.ios.css +14 -2
  353. package/dist/collection/components/footer/footer.js +24 -19
  354. package/dist/collection/components/footer/footer.md.css +12 -0
  355. package/dist/collection/components/grid/grid.css +12 -0
  356. package/dist/collection/components/grid/grid.js +10 -6
  357. package/dist/collection/components/header/header.ionic.css +98 -0
  358. package/dist/collection/components/header/header.ios.css +25 -10
  359. package/dist/collection/components/header/header.js +52 -21
  360. package/dist/collection/components/header/header.md.css +23 -8
  361. package/dist/collection/components/img/img.js +12 -6
  362. package/dist/collection/components/infinite-scroll/infinite-scroll.js +103 -8
  363. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.ios.css +12 -0
  364. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +20 -14
  365. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.md.css +12 -0
  366. package/dist/collection/components/input/input.ionic.css +881 -0
  367. package/dist/collection/components/input/input.ios.css +223 -140
  368. package/dist/collection/components/input/input.js +200 -90
  369. package/dist/collection/components/input/input.md.css +193 -212
  370. package/dist/collection/components/input-otp/input-otp.ionic.css +369 -0
  371. package/dist/collection/components/input-otp/input-otp.ios.css +106 -60
  372. package/dist/collection/components/input-otp/input-otp.js +24 -22
  373. package/dist/collection/components/input-otp/input-otp.md.css +106 -60
  374. package/dist/collection/components/input-password-toggle/input-password-toggle.ionic.css +78 -0
  375. package/dist/collection/components/input-password-toggle/input-password-toggle.js +55 -19
  376. package/dist/collection/components/input-password-toggle/input-password-toggle.native.css +61 -0
  377. package/dist/collection/components/item/item.ionic.css +499 -0
  378. package/dist/collection/components/item/item.ios.css +109 -69
  379. package/dist/collection/components/item/item.js +61 -38
  380. package/dist/collection/components/item/item.md.css +120 -68
  381. package/dist/collection/components/item-divider/item-divider.ios.css +18 -0
  382. package/dist/collection/components/item-divider/item-divider.js +14 -11
  383. package/dist/collection/components/item-divider/item-divider.md.css +18 -0
  384. package/dist/collection/components/item-group/item-group.ios.css +12 -0
  385. package/dist/collection/components/item-group/item-group.js +13 -7
  386. package/dist/collection/components/item-group/item-group.md.css +12 -0
  387. package/dist/collection/components/item-option/item-option.ionic.css +278 -0
  388. package/dist/collection/components/item-option/item-option.ios.css +136 -29
  389. package/dist/collection/components/item-option/item-option.js +86 -22
  390. package/dist/collection/components/item-option/item-option.md.css +136 -29
  391. package/dist/collection/components/item-options/item-options.ionic.css +221 -0
  392. package/dist/collection/components/item-options/item-options.ios.css +77 -34
  393. package/dist/collection/components/item-options/item-options.js +14 -8
  394. package/dist/collection/components/item-options/item-options.md.css +77 -34
  395. package/dist/collection/components/item-sliding/item-sliding.css +6 -0
  396. package/dist/collection/components/item-sliding/item-sliding.js +9 -5
  397. package/dist/collection/components/label/label.ios.css +18 -0
  398. package/dist/collection/components/label/label.js +15 -12
  399. package/dist/collection/components/label/label.md.css +18 -0
  400. package/dist/collection/components/list/list.ionic.css +212 -0
  401. package/dist/collection/components/list/list.ios.css +54 -14
  402. package/dist/collection/components/list/list.js +51 -12
  403. package/dist/collection/components/list/list.md.css +56 -16
  404. package/dist/collection/components/list-header/list-header.ionic.css +190 -0
  405. package/dist/collection/components/list-header/list-header.ios.css +82 -38
  406. package/dist/collection/components/list-header/list-header.js +15 -12
  407. package/dist/collection/components/list-header/list-header.md.css +82 -38
  408. package/dist/collection/components/loading/loading.ios.css +13 -1
  409. package/dist/collection/components/loading/loading.js +32 -33
  410. package/dist/collection/components/loading/loading.md.css +13 -1
  411. package/dist/collection/components/menu/menu.ios.css +15 -3
  412. package/dist/collection/components/menu/menu.js +22 -17
  413. package/dist/collection/components/menu/menu.md.css +15 -3
  414. package/dist/collection/components/menu-button/menu-button.ionic.css +236 -0
  415. package/dist/collection/components/menu-button/menu-button.ios.css +48 -14
  416. package/dist/collection/components/menu-button/menu-button.js +33 -17
  417. package/dist/collection/components/menu-button/menu-button.md.css +49 -15
  418. package/dist/collection/components/menu-toggle/menu-toggle.js +11 -8
  419. package/dist/collection/components/modal/animations/sheet.js +8 -2
  420. package/dist/collection/components/modal/gestures/sheet.js +17 -26
  421. package/dist/collection/components/modal/modal.ionic.css +241 -0
  422. package/dist/collection/components/modal/modal.ios.css +174 -70
  423. package/dist/collection/components/modal/modal.js +72 -43
  424. package/dist/collection/components/modal/modal.md.css +174 -70
  425. package/dist/collection/components/nav/nav.css +7 -1
  426. package/dist/collection/components/nav/nav.js +16 -13
  427. package/dist/collection/components/nav-link/nav-link.js +8 -6
  428. package/dist/collection/components/note/note.ios.css +12 -0
  429. package/dist/collection/components/note/note.js +13 -10
  430. package/dist/collection/components/note/note.md.css +12 -0
  431. package/dist/collection/components/picker/picker.ios.css +15 -3
  432. package/dist/collection/components/picker/picker.js +8 -5
  433. package/dist/collection/components/picker/picker.md.css +15 -3
  434. package/dist/collection/components/picker-column/picker-column.css +9 -2
  435. package/dist/collection/components/picker-column/picker-column.js +13 -12
  436. package/dist/collection/components/picker-column-option/picker-column-option.ios.css +6 -0
  437. package/dist/collection/components/picker-column-option/picker-column-option.js +17 -11
  438. package/dist/collection/components/picker-column-option/picker-column-option.md.css +6 -0
  439. package/dist/collection/components/picker-legacy/picker.ios.css +13 -1
  440. package/dist/collection/components/picker-legacy/picker.js +20 -25
  441. package/dist/collection/components/picker-legacy/picker.md.css +13 -1
  442. package/dist/collection/components/picker-legacy-column/picker-column.ios.css +12 -0
  443. package/dist/collection/components/picker-legacy-column/picker-column.js +4 -5
  444. package/dist/collection/components/picker-legacy-column/picker-column.md.css +12 -0
  445. package/dist/collection/components/popover/popover.ios.css +13 -1
  446. package/dist/collection/components/popover/popover.js +45 -48
  447. package/dist/collection/components/popover/popover.md.css +13 -1
  448. package/dist/collection/components/progress-bar/progress-bar.ionic.css +287 -0
  449. package/dist/collection/components/progress-bar/progress-bar.ios.css +48 -17
  450. package/dist/collection/components/progress-bar/progress-bar.js +49 -13
  451. package/dist/collection/components/progress-bar/progress-bar.md.css +48 -17
  452. package/dist/collection/components/radio/radio.ionic.css +422 -0
  453. package/dist/collection/components/radio/radio.ios.css +134 -91
  454. package/dist/collection/components/radio/radio.js +23 -20
  455. package/dist/collection/components/radio/radio.md.css +134 -91
  456. package/dist/collection/components/radio-group/radio-group.ionic.css +125 -0
  457. package/dist/collection/components/radio-group/radio-group.ios.css +42 -18
  458. package/dist/collection/components/radio-group/radio-group.js +23 -15
  459. package/dist/collection/components/radio-group/radio-group.md.css +42 -18
  460. package/dist/collection/components/range/range.ionic.css +563 -0
  461. package/dist/collection/components/range/range.ios.css +128 -85
  462. package/dist/collection/components/range/range.js +31 -29
  463. package/dist/collection/components/range/range.md.css +128 -85
  464. package/dist/collection/components/refresher/refresher.ios.css +14 -1
  465. package/dist/collection/components/refresher/refresher.js +17 -14
  466. package/dist/collection/components/refresher/refresher.md.css +15 -2
  467. package/dist/collection/components/refresher-content/refresher-content.js +36 -15
  468. package/dist/collection/components/reorder/reorder.ios.css +6 -0
  469. package/dist/collection/components/reorder/reorder.js +33 -6
  470. package/dist/collection/components/reorder/reorder.md.css +6 -0
  471. package/dist/collection/components/reorder-group/reorder-group.css +6 -0
  472. package/dist/collection/components/reorder-group/reorder-group.js +9 -5
  473. package/dist/collection/components/ripple-effect/{ripple-effect.css → ripple-effect.common.css} +7 -1
  474. package/dist/collection/components/ripple-effect/ripple-effect.ionic.css +215 -0
  475. package/dist/collection/components/ripple-effect/ripple-effect.js +15 -7
  476. package/dist/collection/components/route/route.js +7 -6
  477. package/dist/collection/components/route-redirect/route-redirect.js +4 -4
  478. package/dist/collection/components/router/router.js +6 -2
  479. package/dist/collection/components/router-link/router-link.css +8 -2
  480. package/dist/collection/components/router-link/router-link.js +18 -15
  481. package/dist/collection/components/router-outlet/router-outlet.css +7 -1
  482. package/dist/collection/components/router-outlet/router-outlet.js +8 -8
  483. package/dist/collection/components/row/row.css +16 -0
  484. package/dist/collection/components/row/row.js +9 -2
  485. package/dist/collection/components/searchbar/searchbar.ionic.css +626 -0
  486. package/dist/collection/components/searchbar/searchbar.ios.css +56 -18
  487. package/dist/collection/components/searchbar/searchbar.js +210 -63
  488. package/dist/collection/components/searchbar/searchbar.md.css +56 -18
  489. package/dist/collection/components/segment/segment.ionic.css +115 -0
  490. package/dist/collection/components/segment/segment.ios.css +45 -2
  491. package/dist/collection/components/segment/segment.js +19 -16
  492. package/dist/collection/components/segment/segment.md.css +45 -2
  493. package/dist/collection/components/segment-button/segment-button.ionic.css +353 -0
  494. package/dist/collection/components/segment-button/segment-button.ios.css +146 -105
  495. package/dist/collection/components/segment-button/segment-button.js +17 -14
  496. package/dist/collection/components/segment-button/segment-button.md.css +148 -107
  497. package/dist/collection/components/segment-content/segment-content.js +1 -1
  498. package/dist/collection/components/segment-view/segment-view.ios.css +6 -0
  499. package/dist/collection/components/segment-view/segment-view.js +7 -5
  500. package/dist/collection/components/segment-view/segment-view.md.css +6 -0
  501. package/dist/collection/components/select/select.ionic.css +763 -0
  502. package/dist/collection/components/select/select.ios.css +315 -176
  503. package/dist/collection/components/select/select.js +189 -86
  504. package/dist/collection/components/select/select.md.css +331 -178
  505. package/dist/collection/components/select-modal/select-modal.ionic.css +123 -0
  506. package/dist/collection/components/select-modal/select-modal.ios.css +18 -0
  507. package/dist/collection/components/select-modal/select-modal.js +7 -8
  508. package/dist/collection/components/select-modal/select-modal.md.css +7 -3
  509. package/dist/collection/components/select-option/select-option.js +12 -5
  510. package/dist/collection/components/select-popover/select-popover.ios.css +18 -0
  511. package/dist/collection/components/select-popover/select-popover.js +20 -13
  512. package/dist/collection/components/select-popover/select-popover.md.css +18 -0
  513. package/dist/collection/components/skeleton-text/skeleton-text.css +6 -0
  514. package/dist/collection/components/skeleton-text/skeleton-text.js +10 -6
  515. package/dist/collection/components/spinner/{spinner.css → spinner.ionic.css} +77 -10
  516. package/dist/collection/components/spinner/spinner.js +54 -13
  517. package/dist/collection/components/spinner/spinner.native.css +198 -0
  518. package/dist/collection/components/split-pane/split-pane.ios.css +20 -2
  519. package/dist/collection/components/split-pane/split-pane.js +18 -12
  520. package/dist/collection/components/split-pane/split-pane.md.css +20 -2
  521. package/dist/collection/components/tab/tab.js +11 -8
  522. package/dist/collection/components/tab-bar/tab-bar.ionic.css +186 -0
  523. package/dist/collection/components/tab-bar/tab-bar.ios.css +71 -43
  524. package/dist/collection/components/tab-bar/tab-bar.js +83 -16
  525. package/dist/collection/components/tab-bar/tab-bar.md.css +71 -43
  526. package/dist/collection/components/tab-button/tab-button.ionic.css +336 -0
  527. package/dist/collection/components/tab-button/tab-button.ios.css +171 -95
  528. package/dist/collection/components/tab-button/tab-button.js +58 -22
  529. package/dist/collection/components/tab-button/tab-button.md.css +137 -93
  530. package/dist/collection/components/tabs/tabs.css +7 -1
  531. package/dist/collection/components/tabs/tabs.js +5 -2
  532. package/dist/collection/components/text/text.css +6 -0
  533. package/dist/collection/components/text/text.js +9 -8
  534. package/dist/collection/components/textarea/textarea.ionic.css +881 -0
  535. package/dist/collection/components/textarea/textarea.ios.css +275 -139
  536. package/dist/collection/components/textarea/textarea.js +118 -59
  537. package/dist/collection/components/textarea/textarea.md.css +288 -140
  538. package/dist/collection/components/thumbnail/thumbnail.css +6 -0
  539. package/dist/collection/components/thumbnail/thumbnail.js +9 -2
  540. package/dist/collection/components/title/title.ionic.css +127 -0
  541. package/dist/collection/components/title/title.ios.css +32 -4
  542. package/dist/collection/components/title/title.js +17 -11
  543. package/dist/collection/components/title/title.md.css +32 -4
  544. package/dist/collection/components/toast/animations/utils.js +1 -1
  545. package/dist/collection/components/toast/toast.ionic.css +394 -0
  546. package/dist/collection/components/toast/toast.ios.css +84 -45
  547. package/dist/collection/components/toast/toast.js +101 -43
  548. package/dist/collection/components/toast/toast.md.css +84 -45
  549. package/dist/collection/components/toggle/toggle.ionic.css +509 -0
  550. package/dist/collection/components/toggle/toggle.ios.css +247 -131
  551. package/dist/collection/components/toggle/toggle.js +90 -35
  552. package/dist/collection/components/toggle/toggle.md.css +244 -131
  553. package/dist/collection/components/toolbar/test/image.svg +1 -0
  554. package/dist/collection/components/toolbar/toolbar.ionic.css +241 -0
  555. package/dist/collection/components/toolbar/toolbar.ios.css +90 -47
  556. package/dist/collection/components/toolbar/toolbar.js +159 -15
  557. package/dist/collection/components/toolbar/toolbar.md.css +90 -47
  558. package/dist/collection/global/ionic-global.js +228 -13
  559. package/dist/collection/utils/focus-visible.js +22 -0
  560. package/dist/collection/utils/framework-delegate.js +3 -1
  561. package/dist/collection/utils/helpers.js +42 -2
  562. package/dist/collection/utils/keyboard/keyboard-controller.js +3 -1
  563. package/dist/collection/utils/menu-controller/animations/overlay.js +3 -3
  564. package/dist/collection/utils/menu-controller/animations/push.js +2 -1
  565. package/dist/collection/utils/menu-controller/animations/reveal.js +2 -1
  566. package/dist/collection/utils/overlays.js +12 -24
  567. package/dist/collection/utils/test/playwright/generator.js +48 -23
  568. package/dist/collection/utils/test/playwright/page/utils/goto.js +14 -5
  569. package/dist/collection/utils/test/playwright/page/utils/set-content.js +24 -3
  570. package/dist/collection/utils/transition/ios.transition.js +1 -0
  571. package/dist/docs.json +8169 -426
  572. package/dist/esm/{animation-BvhAtgca.js → animation-DGDOQ6ES.js} +2 -2
  573. package/dist/esm/{app-globals-CvLYUxE9.js → app-globals-BNKecRVD.js} +1 -1
  574. package/dist/esm/{button-active-DBUPuLNw.js → button-active-C_l8DIlb.js} +2 -2
  575. package/dist/esm/{capacitor-CFERIeaU.js → capacitor-CiBLEyrT.js} +1 -1
  576. package/dist/esm/caret-down-D1t981Ih.js +6 -0
  577. package/dist/esm/caret-left-fIOYmaqA.js +6 -0
  578. package/dist/esm/caret-right-BYSs-jZz.js +6 -0
  579. package/dist/esm/{config-Dx_6wPIJ.js → config-mCdtaoPe.js} +1 -1
  580. package/dist/esm/{data-CKHMWxfe.js → data-DFCY8gnk.js} +15 -12
  581. package/dist/esm/{focus-visible-BmVRXR1y.js → focus-visible-vXpMhGrs.js} +23 -1
  582. package/dist/esm/{framework-delegate-BLEBgH06.js → framework-delegate-D2mUP0WI.js} +4 -2
  583. package/dist/esm/{haptic-DzAMWJuk.js → haptic-7RTk38ue.js} +1 -1
  584. package/dist/esm/{helpers-8KSQQGQy.js → helpers-Bsml3FcE.js} +42 -3
  585. package/dist/esm/{index-7UbSlv7N.js → index-BpFi2B8W.js} +2 -2
  586. package/dist/esm/{index-4DxY6_gG.js → index-C8IsBmNU.js} +51 -47
  587. package/dist/esm/{index-DV3sJJW8.js → index-COG0_eom.js} +1 -1
  588. package/dist/esm/{index-CXSTcaAW.js → index-DWD4QoaP.js} +11 -11
  589. package/dist/esm/{index-Dp7GXH1z.js → index-Djo-Eq70.js} +4 -4
  590. package/dist/esm/{index-C6WeRr09.js → index-rXea6WR_.js} +4 -3
  591. package/dist/esm/index.js +12 -13
  592. package/dist/esm/{input-shims-C4KDnhxb.js → input-shims-Bz3HiPwU.js} +7 -6
  593. package/dist/esm/{input.utils-be4gBvVY.js → input.utils-BQAE1QTA.js} +3 -3
  594. package/dist/esm/ion-accordion_2.entry.js +57 -28
  595. package/dist/esm/ion-action-sheet.entry.js +22 -19
  596. package/dist/esm/ion-alert.entry.js +24 -22
  597. package/dist/esm/ion-app_8.entry.js +244 -145
  598. package/dist/esm/ion-avatar_3.entry.js +125 -13
  599. package/dist/esm/ion-back-button.entry.js +30 -21
  600. package/dist/esm/ion-backdrop.entry.js +10 -7
  601. package/dist/esm/ion-breadcrumb_2.entry.js +53 -17
  602. package/dist/esm/ion-button_2.entry.js +44 -12
  603. package/dist/esm/ion-card_5.entry.js +54 -30
  604. package/dist/esm/ion-checkbox.entry.js +32 -14
  605. package/dist/esm/ion-chip.entry.js +49 -8
  606. package/dist/esm/ion-col_3.entry.js +54 -57
  607. package/dist/esm/ion-datetime-button.entry.js +12 -8
  608. package/dist/esm/ion-datetime_3.entry.js +115 -40
  609. package/dist/esm/ion-divider.entry.js +49 -0
  610. package/dist/esm/ion-fab_3.entry.js +43 -27
  611. package/dist/esm/ion-img.entry.js +8 -4
  612. package/dist/esm/ion-infinite-scroll_2.entry.js +91 -16
  613. package/dist/esm/ion-input-otp.entry.js +12 -8
  614. package/dist/esm/ion-input-password-toggle.entry.js +52 -14
  615. package/dist/esm/ion-input.entry.js +122 -32
  616. package/dist/esm/ion-item-option_3.entry.js +49 -20
  617. package/dist/esm/ion-item_8.entry.js +107 -47
  618. package/dist/esm/ion-loading.entry.js +19 -17
  619. package/dist/esm/ion-menu_3.entry.js +46 -28
  620. package/dist/esm/ion-modal.entry.js +64 -51
  621. package/dist/esm/ion-nav_2.entry.js +14 -11
  622. package/dist/esm/ion-picker-column-option.entry.js +11 -7
  623. package/dist/esm/ion-picker-column.entry.js +12 -12
  624. package/dist/esm/ion-picker.entry.js +10 -6
  625. package/dist/esm/ion-popover.entry.js +19 -18
  626. package/dist/esm/ion-progress-bar.entry.js +26 -8
  627. package/dist/esm/ion-radio_2.entry.js +23 -14
  628. package/dist/esm/ion-range.entry.js +15 -11
  629. package/dist/esm/ion-refresher_2.entry.js +39 -21
  630. package/dist/esm/ion-reorder_2.entry.js +38 -14
  631. package/dist/esm/ion-ripple-effect.entry.js +15 -7
  632. package/dist/esm/ion-route_4.entry.js +9 -8
  633. package/dist/esm/ion-searchbar.entry.js +137 -24
  634. package/dist/esm/ion-segment-content.entry.js +2 -2
  635. package/dist/esm/ion-segment-view.entry.js +6 -3
  636. package/dist/esm/ion-segment_2.entry.js +22 -15
  637. package/dist/esm/ion-select-modal.entry.js +9 -10
  638. package/dist/esm/ion-select_3.entry.js +131 -40
  639. package/dist/esm/ion-spinner.entry.js +29 -7
  640. package/dist/esm/ion-split-pane.entry.js +12 -9
  641. package/dist/esm/ion-tab-bar_2.entry.js +66 -21
  642. package/dist/esm/ion-tab_2.entry.js +8 -7
  643. package/dist/esm/ion-text.entry.js +6 -6
  644. package/dist/esm/ion-textarea.entry.js +56 -16
  645. package/dist/esm/ion-toast.entry.js +42 -19
  646. package/dist/esm/ion-toggle.entry.js +80 -23
  647. package/dist/esm/ionic-global-2R0iPB51.js +480 -0
  648. package/dist/esm/ionic.js +6 -6
  649. package/dist/esm/{ios.transition-eAEkgVAv.js → ios.transition-cQ5XYp4s.js} +7 -5
  650. package/dist/esm/{keyboard-ywgs5efA.js → keyboard-DuUgrXrK.js} +4 -3
  651. package/dist/esm/{keyboard-CUw4ekVy.js → keyboard-WCK1pWfR.js} +1 -1
  652. package/dist/esm/{keyboard-controller-BaaVITYt.js → keyboard-controller-Bc4alOiF.js} +5 -3
  653. package/dist/esm/list-Dhi5xtNS.js +6 -0
  654. package/dist/esm/loader.js +5 -5
  655. package/dist/esm/{md.transition-D8TeJ_Pz.js → md.transition-CYFYc3-3.js} +6 -5
  656. package/dist/esm/{notch-controller-lb417-kU.js → notch-controller-DO30Bsls.js} +2 -2
  657. package/dist/esm/{overlays-C6lqoZ8M.js → overlays-Da_6xSKI.js} +16 -30
  658. package/dist/esm/{status-tap-pATNXEtr.js → status-tap-DXVlluKS.js} +4 -3
  659. package/dist/esm/{swipe-back-B2YfOHRM.js → swipe-back-DNhAt9fY.js} +3 -2
  660. package/dist/esm/x-BDqjX7Z_.js +6 -0
  661. package/dist/html.html-data.json +2549 -455
  662. package/dist/ionic/index.esm.js +1 -1
  663. package/dist/ionic/ionic.esm.js +1 -1
  664. package/dist/ionic/p--8Ga2Cg0.js +4 -0
  665. package/dist/ionic/p-16c5a01c.entry.js +4 -0
  666. package/dist/ionic/p-1f981d06.entry.js +4 -0
  667. package/dist/ionic/p-22c02aea.entry.js +4 -0
  668. package/dist/ionic/p-23e4b68a.entry.js +4 -0
  669. package/dist/ionic/p-28571945.entry.js +4 -0
  670. package/dist/ionic/p-2bab0853.entry.js +4 -0
  671. package/dist/ionic/p-2e19a4dd.entry.js +4 -0
  672. package/dist/ionic/p-2e900f67.entry.js +4 -0
  673. package/dist/ionic/p-31f13e98.entry.js +4 -0
  674. package/dist/ionic/p-3622a9ea.entry.js +4 -0
  675. package/dist/ionic/p-3a6a92ab.entry.js +4 -0
  676. package/dist/ionic/p-3cb3d194.entry.js +4 -0
  677. package/dist/ionic/p-418e4330.entry.js +4 -0
  678. package/dist/ionic/p-4261dc5d.entry.js +4 -0
  679. package/dist/ionic/p-4e13d498.entry.js +4 -0
  680. package/dist/ionic/p-55e2352e.entry.js +4 -0
  681. package/dist/ionic/p-56a9319e.entry.js +4 -0
  682. package/dist/ionic/p-59a79bd9.entry.js +4 -0
  683. package/dist/ionic/p-59e6c978.entry.js +4 -0
  684. package/dist/ionic/p-642b022d.entry.js +4 -0
  685. package/dist/ionic/p-64385b66.entry.js +4 -0
  686. package/dist/ionic/p-66397fac.entry.js +4 -0
  687. package/dist/ionic/p-66d094b2.entry.js +4 -0
  688. package/dist/ionic/p-6fac73e6.entry.js +4 -0
  689. package/dist/ionic/p-7d450184.entry.js +4 -0
  690. package/dist/ionic/p-81770a5c.entry.js +4 -0
  691. package/dist/ionic/p-844bd58c.entry.js +4 -0
  692. package/dist/ionic/p-86b82096.entry.js +4 -0
  693. package/dist/ionic/p-87678140.entry.js +4 -0
  694. package/dist/ionic/p-88ef6829.entry.js +4 -0
  695. package/dist/ionic/p-89743bba.entry.js +4 -0
  696. package/dist/ionic/p-90320028.entry.js +4 -0
  697. package/dist/ionic/p-916685a9.entry.js +4 -0
  698. package/dist/ionic/p-91966afa.entry.js +4 -0
  699. package/dist/ionic/p-B-N4FEiY.js +4 -0
  700. package/dist/ionic/{p-BhNEp2QP.js → p-B3uz75uZ.js} +1 -1
  701. package/dist/ionic/p-BDqjX7Z_.js +4 -0
  702. package/dist/ionic/p-BRd1Ag6P.js +4 -0
  703. package/dist/ionic/p-BYSs-jZz.js +4 -0
  704. package/dist/ionic/{p-B1xocg0A.js → p-BbT4IAlw.js} +1 -1
  705. package/dist/ionic/p-BiTKUjko.js +4 -0
  706. package/dist/ionic/p-C8IsBmNU.js +5 -0
  707. package/dist/ionic/p-CK1xn1Nt.js +4 -0
  708. package/dist/ionic/p-CK4YXTyz.js +4 -0
  709. package/dist/ionic/{p-DV3sJJW8.js → p-COG0_eom.js} +1 -1
  710. package/dist/ionic/p-CeO9Shc9.js +4 -0
  711. package/dist/ionic/{p-DCuOL88l.js → p-Cm5sQeXL.js} +1 -1
  712. package/dist/ionic/p-D1t981Ih.js +4 -0
  713. package/dist/ionic/{p-CWvl4RPO.js → p-DBaOCAfc.js} +1 -1
  714. package/dist/ionic/p-DHCQ1qFC.js +4 -0
  715. package/dist/ionic/p-DPNSAVjP.js +4 -0
  716. package/dist/ionic/p-D_8SMvQ3.js +4 -0
  717. package/dist/ionic/{p-EnaLTYYj.js → p-DbQ5QkTP.js} +1 -1
  718. package/dist/ionic/p-DdaOdN_z.js +4 -0
  719. package/dist/ionic/p-Dhi5xtNS.js +4 -0
  720. package/dist/ionic/p-Dq8ap6AD.js +4 -0
  721. package/dist/ionic/p-Dv5UHqHj.js +4 -0
  722. package/dist/ionic/{p-CKvCXMs9.js → p-DxFexTIr.js} +1 -1
  723. package/dist/ionic/p-DyaKZbAH.js +4 -0
  724. package/dist/ionic/{p-DiZPU8BH.js → p-HpOiAvpC.js} +1 -1
  725. package/dist/ionic/{p-D13Eaw-8.js → p-Q7JLYEUZ.js} +1 -1
  726. package/dist/ionic/p-W-2TssC9.js +4 -0
  727. package/dist/ionic/p-a1128f7f.entry.js +4 -0
  728. package/dist/ionic/p-a57c0cce.entry.js +4 -0
  729. package/dist/ionic/p-acb9905c.entry.js +4 -0
  730. package/dist/ionic/p-b2291ef0.entry.js +4 -0
  731. package/dist/ionic/p-bf461512.entry.js +4 -0
  732. package/dist/ionic/p-c289efa5.entry.js +4 -0
  733. package/dist/ionic/p-c2f738d2.entry.js +4 -0
  734. package/dist/ionic/p-c775e3c0.entry.js +4 -0
  735. package/dist/ionic/p-ce510c06.entry.js +4 -0
  736. package/dist/ionic/p-cea1ee31.entry.js +4 -0
  737. package/dist/ionic/p-d1c60c1c.entry.js +4 -0
  738. package/dist/ionic/p-db90b95a.entry.js +4 -0
  739. package/dist/ionic/p-dcfb2b1d.entry.js +4 -0
  740. package/dist/ionic/p-e2171c27.entry.js +4 -0
  741. package/dist/ionic/p-e28d6a81.entry.js +4 -0
  742. package/dist/ionic/p-ec02238a.entry.js +4 -0
  743. package/dist/ionic/p-ecc8aebb.entry.js +4 -0
  744. package/dist/ionic/p-f3de58bd.entry.js +4 -0
  745. package/dist/ionic/p-fIOYmaqA.js +4 -0
  746. package/dist/ionic/p-ff757a50.entry.js +4 -0
  747. package/dist/ionic/p-szCM2gDt.js +4 -0
  748. package/dist/ionic/p-vXpMhGrs.js +4 -0
  749. package/dist/ionic/p-vpXGWZiy.js +4 -0
  750. package/dist/types/components/accordion/accordion.d.ts +5 -3
  751. package/dist/types/components/accordion-group/accordion-group.d.ts +12 -1
  752. package/dist/types/components/action-sheet/action-sheet-interface.d.ts +3 -7
  753. package/dist/types/components/action-sheet/action-sheet.d.ts +3 -2
  754. package/dist/types/components/alert/alert-interface.d.ts +3 -7
  755. package/dist/types/components/alert/alert.d.ts +3 -2
  756. package/dist/types/components/app/app.d.ts +4 -2
  757. package/dist/types/components/avatar/avatar.d.ts +32 -0
  758. package/dist/types/components/back-button/back-button.d.ts +2 -1
  759. package/dist/types/components/backdrop/backdrop.d.ts +4 -0
  760. package/dist/types/components/badge/badge.d.ts +34 -1
  761. package/dist/types/components/breadcrumb/breadcrumb.d.ts +4 -1
  762. package/dist/types/components/breadcrumbs/breadcrumbs.d.ts +2 -2
  763. package/dist/types/components/button/button.d.ts +19 -6
  764. package/dist/types/components/buttons/buttons.d.ts +5 -1
  765. package/dist/types/components/card/card.d.ts +8 -1
  766. package/dist/types/components/card-content/card-content.d.ts +2 -1
  767. package/dist/types/components/card-header/card-header.d.ts +3 -2
  768. package/dist/types/components/card-subtitle/card-subtitle.d.ts +2 -1
  769. package/dist/types/components/card-title/card-title.d.ts +2 -1
  770. package/dist/types/components/checkbox/checkbox.d.ts +14 -4
  771. package/dist/types/components/chip/chip.d.ts +26 -1
  772. package/dist/types/components/col/col.d.ts +52 -5
  773. package/dist/types/components/content/content.d.ts +3 -0
  774. package/dist/types/components/datetime/datetime.d.ts +26 -1
  775. package/dist/types/components/datetime/utils/data.d.ts +5 -5
  776. package/dist/types/components/datetime-button/datetime-button.d.ts +2 -1
  777. package/dist/types/components/divider/divider.d.ts +20 -0
  778. package/dist/types/components/fab/fab.d.ts +4 -0
  779. package/dist/types/components/fab-button/fab-button.d.ts +5 -3
  780. package/dist/types/components/fab-list/fab-list.d.ts +4 -0
  781. package/dist/types/components/footer/footer.d.ts +4 -3
  782. package/dist/types/components/grid/grid.d.ts +4 -0
  783. package/dist/types/components/header/header.d.ts +9 -3
  784. package/dist/types/components/img/img.d.ts +3 -0
  785. package/dist/types/components/infinite-scroll/infinite-scroll.d.ts +21 -0
  786. package/dist/types/components/infinite-scroll-content/infinite-scroll-content.d.ts +4 -0
  787. package/dist/types/components/input/input.d.ts +31 -5
  788. package/dist/types/components/input-password-toggle/input-password-toggle.d.ts +2 -0
  789. package/dist/types/components/item/item.d.ts +11 -4
  790. package/dist/types/components/item-divider/item-divider.d.ts +2 -1
  791. package/dist/types/components/item-group/item-group.d.ts +4 -0
  792. package/dist/types/components/item-option/item-option.d.ts +18 -1
  793. package/dist/types/components/item-options/item-options.d.ts +4 -0
  794. package/dist/types/components/item-sliding/item-sliding.d.ts +4 -0
  795. package/dist/types/components/label/label.d.ts +2 -1
  796. package/dist/types/components/list/list.d.ts +15 -1
  797. package/dist/types/components/list-header/list-header.d.ts +2 -1
  798. package/dist/types/components/loading/loading-interface.d.ts +2 -7
  799. package/dist/types/components/loading/loading.d.ts +3 -2
  800. package/dist/types/components/menu/menu.d.ts +3 -0
  801. package/dist/types/components/menu-button/menu-button.d.ts +3 -1
  802. package/dist/types/components/menu-toggle/menu-toggle.d.ts +3 -0
  803. package/dist/types/components/modal/gestures/sheet.d.ts +1 -1
  804. package/dist/types/components/modal/modal-interface.d.ts +4 -7
  805. package/dist/types/components/modal/modal.d.ts +11 -1
  806. package/dist/types/components/nav/nav-interface.d.ts +9 -1
  807. package/dist/types/components/nav/nav.d.ts +5 -1
  808. package/dist/types/components/nav-link/nav-link.d.ts +4 -0
  809. package/dist/types/components/note/note.d.ts +2 -1
  810. package/dist/types/components/picker/picker.d.ts +2 -1
  811. package/dist/types/components/picker-column/picker-column.d.ts +2 -1
  812. package/dist/types/components/picker-column-option/picker-column-option.d.ts +4 -0
  813. package/dist/types/components/picker-legacy/picker.d.ts +2 -1
  814. package/dist/types/components/popover/popover-interface.d.ts +3 -6
  815. package/dist/types/components/popover/popover.d.ts +6 -5
  816. package/dist/types/components/progress-bar/progress-bar.d.ts +10 -1
  817. package/dist/types/components/radio/radio.d.ts +2 -1
  818. package/dist/types/components/radio-group/radio-group.d.ts +4 -0
  819. package/dist/types/components/range/range.d.ts +2 -1
  820. package/dist/types/components/refresher/refresher.d.ts +2 -1
  821. package/dist/types/components/refresher-content/refresher-content.d.ts +4 -0
  822. package/dist/types/components/reorder/reorder.d.ts +9 -0
  823. package/dist/types/components/reorder-group/reorder-group.d.ts +4 -0
  824. package/dist/types/components/ripple-effect/ripple-effect.d.ts +4 -0
  825. package/dist/types/components/route/route.d.ts +4 -0
  826. package/dist/types/components/router/router.d.ts +4 -0
  827. package/dist/types/components/router-link/router-link.d.ts +4 -0
  828. package/dist/types/components/router-outlet/router-outlet.d.ts +4 -1
  829. package/dist/types/components/row/row.d.ts +4 -0
  830. package/dist/types/components/searchbar/searchbar.d.ts +51 -9
  831. package/dist/types/components/segment/segment.d.ts +2 -1
  832. package/dist/types/components/segment-button/segment-button.d.ts +2 -1
  833. package/dist/types/components/select/select.d.ts +41 -13
  834. package/dist/types/components/select-option/select-option.d.ts +4 -0
  835. package/dist/types/components/select-popover/select-popover.d.ts +3 -0
  836. package/dist/types/components/skeleton-text/skeleton-text.d.ts +4 -0
  837. package/dist/types/components/spinner/spinner.d.ts +15 -0
  838. package/dist/types/components/split-pane/split-pane.d.ts +4 -0
  839. package/dist/types/components/tab/tab.d.ts +4 -0
  840. package/dist/types/components/tab-bar/tab-bar.d.ts +22 -2
  841. package/dist/types/components/tab-button/tab-button.d.ts +11 -1
  842. package/dist/types/components/tabs/tabs.d.ts +3 -0
  843. package/dist/types/components/text/text.d.ts +2 -1
  844. package/dist/types/components/textarea/textarea.d.ts +17 -4
  845. package/dist/types/components/thumbnail/thumbnail.d.ts +4 -0
  846. package/dist/types/components/title/title.d.ts +4 -0
  847. package/dist/types/components/toast/animations/utils.d.ts +2 -2
  848. package/dist/types/components/toast/toast-interface.d.ts +3 -7
  849. package/dist/types/components/toast/toast.d.ts +19 -2
  850. package/dist/types/components/toggle/toggle.d.ts +15 -1
  851. package/dist/types/components/toolbar/toolbar.d.ts +20 -3
  852. package/dist/types/components.d.ts +1593 -196
  853. package/dist/types/global/ionic-global.d.ts +27 -2
  854. package/dist/types/interface.d.ts +3 -0
  855. package/dist/types/stencil-public-runtime.d.ts +39 -2
  856. package/dist/types/utils/config.d.ts +106 -2
  857. package/dist/types/utils/focus-visible.d.ts +13 -0
  858. package/dist/types/utils/helpers.d.ts +11 -0
  859. package/dist/types/utils/overlays-interface.d.ts +31 -1
  860. package/dist/types/utils/test/playwright/generator.d.ts +31 -2
  861. package/hydrate/index.d.ts +2 -0
  862. package/hydrate/index.js +2971 -1090
  863. package/hydrate/index.mjs +2971 -1090
  864. package/package.json +10 -5
  865. package/components/hardware-back-button.js +0 -115
  866. package/components/index9.js +0 -7
  867. package/dist/cjs/hardware-back-button-BxdNu76F.js +0 -121
  868. package/dist/cjs/index-DkNv4J_i.js +0 -10
  869. package/dist/cjs/ionic-global-UI5YPSi-.js +0 -151
  870. package/dist/esm/hardware-back-button-Dhbd-23H.js +0 -115
  871. package/dist/esm/index-ZjP4CjeZ.js +0 -7
  872. package/dist/esm/ionic-global-CTSyufhF.js +0 -146
  873. package/dist/ionic/p-0f396661.entry.js +0 -4
  874. package/dist/ionic/p-1191a2d9.entry.js +0 -4
  875. package/dist/ionic/p-148bdf18.entry.js +0 -4
  876. package/dist/ionic/p-16116947.entry.js +0 -4
  877. package/dist/ionic/p-19f80390.entry.js +0 -4
  878. package/dist/ionic/p-1a91f317.entry.js +0 -4
  879. package/dist/ionic/p-1bbd0a23.entry.js +0 -4
  880. package/dist/ionic/p-24cfbd94.entry.js +0 -4
  881. package/dist/ionic/p-2cb0f39f.entry.js +0 -4
  882. package/dist/ionic/p-2d199573.entry.js +0 -4
  883. package/dist/ionic/p-3392f558.entry.js +0 -4
  884. package/dist/ionic/p-349fc921.entry.js +0 -4
  885. package/dist/ionic/p-3624b640.entry.js +0 -4
  886. package/dist/ionic/p-36a54836.entry.js +0 -4
  887. package/dist/ionic/p-37074de0.entry.js +0 -4
  888. package/dist/ionic/p-39ed3212.entry.js +0 -4
  889. package/dist/ionic/p-3ea6a927.entry.js +0 -4
  890. package/dist/ionic/p-40d56a51.entry.js +0 -4
  891. package/dist/ionic/p-44e3b33a.entry.js +0 -4
  892. package/dist/ionic/p-4DxY6_gG.js +0 -5
  893. package/dist/ionic/p-4cc97550.entry.js +0 -4
  894. package/dist/ionic/p-4f2c5845.entry.js +0 -4
  895. package/dist/ionic/p-528af4e6.entry.js +0 -4
  896. package/dist/ionic/p-54dec9b1.entry.js +0 -4
  897. package/dist/ionic/p-55ea7dfc.entry.js +0 -4
  898. package/dist/ionic/p-56a91276.entry.js +0 -4
  899. package/dist/ionic/p-5a1f919a.entry.js +0 -4
  900. package/dist/ionic/p-5c976c00.entry.js +0 -4
  901. package/dist/ionic/p-6383afc2.entry.js +0 -4
  902. package/dist/ionic/p-7a53f04c.entry.js +0 -4
  903. package/dist/ionic/p-7b12d853.entry.js +0 -4
  904. package/dist/ionic/p-7da05504.entry.js +0 -4
  905. package/dist/ionic/p-8888efe4.entry.js +0 -4
  906. package/dist/ionic/p-8cdb4ff5.entry.js +0 -4
  907. package/dist/ionic/p-9ddf2620.entry.js +0 -4
  908. package/dist/ionic/p-9eeaBrnk.js +0 -4
  909. package/dist/ionic/p-B5MDSrGg.js +0 -4
  910. package/dist/ionic/p-BB-JoKGB.js +0 -4
  911. package/dist/ionic/p-BHGXdud8.js +0 -4
  912. package/dist/ionic/p-BW3pge-V.js +0 -4
  913. package/dist/ionic/p-BmVRXR1y.js +0 -4
  914. package/dist/ionic/p-Br3vSlYh.js +0 -4
  915. package/dist/ionic/p-C-Cct-6D.js +0 -4
  916. package/dist/ionic/p-C4I6B3uV.js +0 -4
  917. package/dist/ionic/p-C87oPMMF.js +0 -4
  918. package/dist/ionic/p-C8d2ebIg.js +0 -4
  919. package/dist/ionic/p-CIGNaXM1.js +0 -4
  920. package/dist/ionic/p-CtWGkNnJ.js +0 -4
  921. package/dist/ionic/p-CvaZMP6T.js +0 -4
  922. package/dist/ionic/p-D2fQU_qK.js +0 -4
  923. package/dist/ionic/p-DAfH9Iif.js +0 -4
  924. package/dist/ionic/p-DJKvq7vb.js +0 -4
  925. package/dist/ionic/p-Dm_oBkW1.js +0 -4
  926. package/dist/ionic/p-LaGjiAVo.js +0 -4
  927. package/dist/ionic/p-ZjP4CjeZ.js +0 -4
  928. package/dist/ionic/p-a00ad0f2.entry.js +0 -4
  929. package/dist/ionic/p-a81be128.entry.js +0 -4
  930. package/dist/ionic/p-afeb9df6.entry.js +0 -4
  931. package/dist/ionic/p-b21fce9d.entry.js +0 -4
  932. package/dist/ionic/p-b292804d.entry.js +0 -4
  933. package/dist/ionic/p-b7c1a16e.entry.js +0 -4
  934. package/dist/ionic/p-bc9f9032.entry.js +0 -4
  935. package/dist/ionic/p-bf81a468.entry.js +0 -4
  936. package/dist/ionic/p-cde6d39b.entry.js +0 -4
  937. package/dist/ionic/p-d04d66fc.entry.js +0 -4
  938. package/dist/ionic/p-d3df6032.entry.js +0 -4
  939. package/dist/ionic/p-dbba38cf.entry.js +0 -4
  940. package/dist/ionic/p-e6c3214c.entry.js +0 -4
  941. package/dist/ionic/p-e6c465ff.entry.js +0 -4
  942. package/dist/ionic/p-ec76fec4.entry.js +0 -4
  943. package/dist/ionic/p-ee2e35a6.entry.js +0 -4
  944. package/dist/ionic/p-f7db572a.entry.js +0 -4
  945. package/dist/ionic/p-f9eb54ee.entry.js +0 -4
  946. /package/dist/collection/components/{input-password-toggle/input-password-toggle.css → refresher-content/refresher-content.css} +0 -0
@@ -14,7 +14,7 @@
14
14
  },
15
15
  {
16
16
  "name": "mode",
17
- "description": "The mode determines which platform styles to use.",
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 which platform styles to use.",
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\"`"
@@ -130,26 +175,14 @@
130
175
  "name": "backdrop-dismiss",
131
176
  "description": "If `true`, the action sheet will be dismissed when the backdrop is clicked."
132
177
  },
133
- {
134
- "name": "buttons",
135
- "description": "An array of buttons for the action sheet."
136
- },
137
178
  {
138
179
  "name": "css-class",
139
180
  "description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces."
140
181
  },
141
- {
142
- "name": "enter-animation",
143
- "description": "Animation to use when the action sheet is presented."
144
- },
145
182
  {
146
183
  "name": "header",
147
184
  "description": "Title for the action sheet."
148
185
  },
149
- {
150
- "name": "html-attributes",
151
- "description": "Additional attributes to pass to the action sheet."
152
- },
153
186
  {
154
187
  "name": "is-open",
155
188
  "description": "If `true`, the action sheet will open. If `false`, the action sheet will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the actionSheetController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe action sheet dismisses. You will need to do that in your code."
@@ -158,13 +191,9 @@
158
191
  "name": "keyboard-close",
159
192
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
160
193
  },
161
- {
162
- "name": "leave-animation",
163
- "description": "Animation to use when the action sheet is dismissed."
164
- },
165
194
  {
166
195
  "name": "mode",
167
- "description": "The mode determines which platform styles to use.",
196
+ "description": "The mode determines the platform behaviors of the component.",
168
197
  "values": [
169
198
  {
170
199
  "name": "ios"
@@ -178,9 +207,24 @@
178
207
  "name": "sub-header",
179
208
  "description": "Subtitle for the action sheet."
180
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
+ },
181
225
  {
182
226
  "name": "translucent",
183
- "description": "If `true`, the action sheet will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
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)."
184
228
  },
185
229
  {
186
230
  "name": "trigger",
@@ -209,30 +253,14 @@
209
253
  "name": "backdrop-dismiss",
210
254
  "description": "If `true`, the alert will be dismissed when the backdrop is clicked."
211
255
  },
212
- {
213
- "name": "buttons",
214
- "description": "Array of buttons to be added to the alert."
215
- },
216
256
  {
217
257
  "name": "css-class",
218
258
  "description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces."
219
259
  },
220
- {
221
- "name": "enter-animation",
222
- "description": "Animation to use when the alert is presented."
223
- },
224
260
  {
225
261
  "name": "header",
226
262
  "description": "The main title in the heading of the alert."
227
263
  },
228
- {
229
- "name": "html-attributes",
230
- "description": "Additional attributes to pass to the alert."
231
- },
232
- {
233
- "name": "inputs",
234
- "description": "Array of input to show in the alert."
235
- },
236
264
  {
237
265
  "name": "is-open",
238
266
  "description": "If `true`, the alert will open. If `false`, the alert will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the alertController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe alert dismisses. You will need to do that in your code."
@@ -241,17 +269,13 @@
241
269
  "name": "keyboard-close",
242
270
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
243
271
  },
244
- {
245
- "name": "leave-animation",
246
- "description": "Animation to use when the alert is dismissed."
247
- },
248
272
  {
249
273
  "name": "message",
250
274
  "description": "The main message to be displayed in the alert.\n`message` 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`&lt;Ionic&gt;`\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."
251
275
  },
252
276
  {
253
277
  "name": "mode",
254
- "description": "The mode determines which platform styles to use.",
278
+ "description": "The mode determines the platform behaviors of the component.",
255
279
  "values": [
256
280
  {
257
281
  "name": "ios"
@@ -265,9 +289,24 @@
265
289
  "name": "sub-header",
266
290
  "description": "The subtitle in the heading of the alert. Displayed under the title."
267
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
+ },
268
307
  {
269
308
  "name": "translucent",
270
- "description": "If `true`, the alert will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
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)."
271
310
  },
272
311
  {
273
312
  "name": "trigger",
@@ -287,7 +326,35 @@
287
326
  "kind": "markdown",
288
327
  "value": ""
289
328
  },
290
- "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
+ ],
291
358
  "references": [
292
359
  {
293
360
  "name": "Source code",
@@ -301,7 +368,78 @@
301
368
  "kind": "markdown",
302
369
  "value": ""
303
370
  },
304
- "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
+ ],
305
443
  "references": [
306
444
  {
307
445
  "name": "Source code",
@@ -363,7 +501,7 @@
363
501
  },
364
502
  {
365
503
  "name": "mode",
366
- "description": "The mode determines which platform styles to use.",
504
+ "description": "The mode determines the platform behaviors of the component.",
367
505
  "values": [
368
506
  {
369
507
  "name": "ios"
@@ -373,14 +511,25 @@
373
511
  }
374
512
  ]
375
513
  },
376
- {
377
- "name": "router-animation",
378
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page."
379
- },
380
514
  {
381
515
  "name": "text",
382
516
  "description": "The text to display in the back button."
383
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
+ },
384
533
  {
385
534
  "name": "type",
386
535
  "description": "The type of the button.",
@@ -411,6 +560,18 @@
411
560
  "value": ""
412
561
  },
413
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
+ },
414
575
  {
415
576
  "name": "stop-propagation",
416
577
  "description": "If `true`, the backdrop will stop propagation on tap."
@@ -419,6 +580,21 @@
419
580
  "name": "tappable",
420
581
  "description": "If `true`, the backdrop will can be clicked and will emit the `ionBackdropTap` event."
421
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
+ },
422
598
  {
423
599
  "name": "visible",
424
600
  "description": "If `true`, the backdrop will be visible."
@@ -471,9 +647,21 @@
471
647
  }
472
648
  ]
473
649
  },
650
+ {
651
+ "name": "hue",
652
+ "description": "Set to `\"bold\"` for a badge with vibrant, bold colors or to `\"subtle\"` for\na badge with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
653
+ "values": [
654
+ {
655
+ "name": "bold"
656
+ },
657
+ {
658
+ "name": "subtle"
659
+ }
660
+ ]
661
+ },
474
662
  {
475
663
  "name": "mode",
476
- "description": "The mode determines which platform styles to use.",
664
+ "description": "The mode determines the platform behaviors of the component.",
477
665
  "values": [
478
666
  {
479
667
  "name": "ios"
@@ -482,38 +670,89 @@
482
670
  "name": "md"
483
671
  }
484
672
  ]
485
- }
486
- ],
487
- "references": [
488
- {
489
- "name": "Source code",
490
- "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/badge/badge.tsx"
491
- }
492
- ]
493
- },
494
- {
495
- "name": "ion-breadcrumb",
496
- "description": {
497
- "kind": "markdown",
498
- "value": ""
499
- },
500
- "attributes": [
501
- {
502
- "name": "active",
503
- "description": "If `true`, the breadcrumb will take on a different look to show that\nit is the currently active breadcrumb. Defaults to `true` for the\nlast breadcrumb if it is not set on any."
504
673
  },
505
674
  {
506
- "name": "color",
507
- "description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
675
+ "name": "shape",
676
+ "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.",
508
677
  "values": [
509
678
  {
510
- "name": "danger"
511
- },
512
- {
513
- "name": "dark"
514
- },
679
+ "name": "soft"
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "name": "size",
685
+ "description": "Set to `\"small\"` for a small badge.\nSet to `\"medium\"` for a medium badge.\nSet to `\"large\"` for a large badge, when it is empty (no text or icon).\n\nDefaults to `\"small\"` for the `ionic` theme, undefined for all other themes.",
686
+ "values": [
515
687
  {
516
- "name": "light"
688
+ "name": "large"
689
+ },
690
+ {
691
+ "name": "medium"
692
+ },
693
+ {
694
+ "name": "small"
695
+ }
696
+ ]
697
+ },
698
+ {
699
+ "name": "theme",
700
+ "description": "The theme determines the visual appearance of the component.",
701
+ "values": [
702
+ {
703
+ "name": "ios"
704
+ },
705
+ {
706
+ "name": "md"
707
+ },
708
+ {
709
+ "name": "ionic"
710
+ }
711
+ ]
712
+ },
713
+ {
714
+ "name": "vertical",
715
+ "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.",
716
+ "values": [
717
+ {
718
+ "name": "bottom"
719
+ },
720
+ {
721
+ "name": "top"
722
+ }
723
+ ]
724
+ }
725
+ ],
726
+ "references": [
727
+ {
728
+ "name": "Source code",
729
+ "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/badge/badge.tsx"
730
+ }
731
+ ]
732
+ },
733
+ {
734
+ "name": "ion-breadcrumb",
735
+ "description": {
736
+ "kind": "markdown",
737
+ "value": ""
738
+ },
739
+ "attributes": [
740
+ {
741
+ "name": "active",
742
+ "description": "If `true`, the breadcrumb will take on a different look to show that\nit is the currently active breadcrumb. Defaults to `true` for the\nlast breadcrumb if it is not set on any."
743
+ },
744
+ {
745
+ "name": "color",
746
+ "description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
747
+ "values": [
748
+ {
749
+ "name": "danger"
750
+ },
751
+ {
752
+ "name": "dark"
753
+ },
754
+ {
755
+ "name": "light"
517
756
  },
518
757
  {
519
758
  "name": "medium"
@@ -549,7 +788,7 @@
549
788
  },
550
789
  {
551
790
  "name": "mode",
552
- "description": "The mode determines which platform styles to use.",
791
+ "description": "The mode determines the platform behaviors of the component.",
553
792
  "values": [
554
793
  {
555
794
  "name": "ios"
@@ -563,10 +802,6 @@
563
802
  "name": "rel",
564
803
  "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)."
565
804
  },
566
- {
567
- "name": "router-animation",
568
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
569
- },
570
805
  {
571
806
  "name": "router-direction",
572
807
  "description": "When using a router, it specifies the transition direction when navigating to\nanother page using `href`.",
@@ -589,6 +824,21 @@
589
824
  {
590
825
  "name": "target",
591
826
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
827
+ },
828
+ {
829
+ "name": "theme",
830
+ "description": "The theme determines the visual appearance of the component.",
831
+ "values": [
832
+ {
833
+ "name": "ios"
834
+ },
835
+ {
836
+ "name": "md"
837
+ },
838
+ {
839
+ "name": "ionic"
840
+ }
841
+ ]
592
842
  }
593
843
  ],
594
844
  "references": [
@@ -652,13 +902,28 @@
652
902
  },
653
903
  {
654
904
  "name": "mode",
655
- "description": "The mode determines which platform styles to use.",
905
+ "description": "The mode determines the platform behaviors of the component.",
906
+ "values": [
907
+ {
908
+ "name": "ios"
909
+ },
910
+ {
911
+ "name": "md"
912
+ }
913
+ ]
914
+ },
915
+ {
916
+ "name": "theme",
917
+ "description": "The theme determines the visual appearance of the component.",
656
918
  "values": [
657
919
  {
658
920
  "name": "ios"
659
921
  },
660
922
  {
661
923
  "name": "md"
924
+ },
925
+ {
926
+ "name": "ionic"
662
927
  }
663
928
  ]
664
929
  }
@@ -762,7 +1027,7 @@
762
1027
  },
763
1028
  {
764
1029
  "name": "mode",
765
- "description": "The mode determines which platform styles to use.",
1030
+ "description": "The mode determines the platform behaviors of the component.",
766
1031
  "values": [
767
1032
  {
768
1033
  "name": "ios"
@@ -776,10 +1041,6 @@
776
1041
  "name": "rel",
777
1042
  "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)."
778
1043
  },
779
- {
780
- "name": "router-animation",
781
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
782
- },
783
1044
  {
784
1045
  "name": "router-direction",
785
1046
  "description": "When using a router, it specifies the transition direction when navigating to\nanother page using `href`.",
@@ -797,16 +1058,22 @@
797
1058
  },
798
1059
  {
799
1060
  "name": "shape",
800
- "description": "Set to `\"round\"` for a button with more rounded corners.",
1061
+ "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.",
801
1062
  "values": [
1063
+ {
1064
+ "name": "rectangular"
1065
+ },
802
1066
  {
803
1067
  "name": "round"
1068
+ },
1069
+ {
1070
+ "name": "soft"
804
1071
  }
805
1072
  ]
806
1073
  },
807
1074
  {
808
1075
  "name": "size",
809
- "description": "Set to `\"small\"` for a button with less height and padding, to `\"default\"`\nfor a button with the default height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
1076
+ "description": "Set to `\"small\"` for a button with less height and padding, to `\"medium\"`\nfor a button with the medium height and padding, or to `\"large\"` for a button\nwith more height and padding. By default the size is unset, unless the button\nis inside of an item, where the size is `\"small\"` by default. Set the size to\n`\"default\"` inside of an item to make it a standard size button.",
810
1077
  "values": [
811
1078
  {
812
1079
  "name": "default"
@@ -814,6 +1081,9 @@
814
1081
  {
815
1082
  "name": "large"
816
1083
  },
1084
+ {
1085
+ "name": "medium"
1086
+ },
817
1087
  {
818
1088
  "name": "small"
819
1089
  }
@@ -827,6 +1097,21 @@
827
1097
  "name": "target",
828
1098
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
829
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
+ },
830
1115
  {
831
1116
  "name": "type",
832
1117
  "description": "The type of the button.",
@@ -859,7 +1144,34 @@
859
1144
  "attributes": [
860
1145
  {
861
1146
  "name": "collapse",
862
- "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` mode 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)"
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
+ ]
863
1175
  }
864
1176
  ],
865
1177
  "references": [
@@ -927,7 +1239,7 @@
927
1239
  },
928
1240
  {
929
1241
  "name": "mode",
930
- "description": "The mode determines which platform styles to use.",
1242
+ "description": "The mode determines the platform behaviors of the component.",
931
1243
  "values": [
932
1244
  {
933
1245
  "name": "ios"
@@ -941,10 +1253,6 @@
941
1253
  "name": "rel",
942
1254
  "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)."
943
1255
  },
944
- {
945
- "name": "router-animation",
946
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
947
- },
948
1256
  {
949
1257
  "name": "router-direction",
950
1258
  "description": "When using a router, it specifies the transition direction when navigating to\nanother page using `href`.",
@@ -960,10 +1268,40 @@
960
1268
  }
961
1269
  ]
962
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
+ },
963
1286
  {
964
1287
  "name": "target",
965
1288
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
966
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
+ },
967
1305
  {
968
1306
  "name": "type",
969
1307
  "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
@@ -996,13 +1334,28 @@
996
1334
  "attributes": [
997
1335
  {
998
1336
  "name": "mode",
999
- "description": "The mode determines which platform styles to use.",
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.",
1000
1350
  "values": [
1001
1351
  {
1002
1352
  "name": "ios"
1003
1353
  },
1004
1354
  {
1005
1355
  "name": "md"
1356
+ },
1357
+ {
1358
+ "name": "ionic"
1006
1359
  }
1007
1360
  ]
1008
1361
  }
@@ -1056,19 +1409,34 @@
1056
1409
  },
1057
1410
  {
1058
1411
  "name": "mode",
1059
- "description": "The mode determines which platform styles to use.",
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.",
1060
1425
  "values": [
1061
1426
  {
1062
1427
  "name": "ios"
1063
1428
  },
1064
1429
  {
1065
1430
  "name": "md"
1431
+ },
1432
+ {
1433
+ "name": "ionic"
1066
1434
  }
1067
1435
  ]
1068
1436
  },
1069
1437
  {
1070
1438
  "name": "translucent",
1071
- "description": "If `true`, the card header will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
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)."
1072
1440
  }
1073
1441
  ],
1074
1442
  "references": [
@@ -1120,13 +1488,28 @@
1120
1488
  },
1121
1489
  {
1122
1490
  "name": "mode",
1123
- "description": "The mode determines which platform styles to use.",
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.",
1124
1504
  "values": [
1125
1505
  {
1126
1506
  "name": "ios"
1127
1507
  },
1128
1508
  {
1129
1509
  "name": "md"
1510
+ },
1511
+ {
1512
+ "name": "ionic"
1130
1513
  }
1131
1514
  ]
1132
1515
  }
@@ -1180,13 +1563,28 @@
1180
1563
  },
1181
1564
  {
1182
1565
  "name": "mode",
1183
- "description": "The mode determines which platform styles to use.",
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.",
1184
1579
  "values": [
1185
1580
  {
1186
1581
  "name": "ios"
1187
1582
  },
1188
1583
  {
1189
1584
  "name": "md"
1585
+ },
1586
+ {
1587
+ "name": "ionic"
1190
1588
  }
1191
1589
  ]
1192
1590
  }
@@ -1305,7 +1703,7 @@
1305
1703
  },
1306
1704
  {
1307
1705
  "name": "mode",
1308
- "description": "The mode determines which platform styles to use.",
1706
+ "description": "The mode determines the platform behaviors of the component.",
1309
1707
  "values": [
1310
1708
  {
1311
1709
  "name": "ios"
@@ -1323,6 +1721,42 @@
1323
1721
  "name": "required",
1324
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."
1325
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
+ },
1326
1760
  {
1327
1761
  "name": "value",
1328
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>`."
@@ -1380,20 +1814,74 @@
1380
1814
  "description": "If `true`, the user cannot interact with the chip."
1381
1815
  },
1382
1816
  {
1383
- "name": "mode",
1384
- "description": "The mode determines which platform styles to use.",
1817
+ "name": "hue",
1818
+ "description": "Set to `\"bold\"` for a chip with vibrant, bold colors or to `\"subtle\"` for\na chip with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
1385
1819
  "values": [
1386
1820
  {
1387
- "name": "ios"
1821
+ "name": "bold"
1388
1822
  },
1389
1823
  {
1390
- "name": "md"
1824
+ "name": "subtle"
1391
1825
  }
1392
1826
  ]
1393
1827
  },
1394
1828
  {
1395
- "name": "outline",
1829
+ "name": "mode",
1830
+ "description": "The mode determines the platform behaviors of the component.",
1831
+ "values": [
1832
+ {
1833
+ "name": "ios"
1834
+ },
1835
+ {
1836
+ "name": "md"
1837
+ }
1838
+ ]
1839
+ },
1840
+ {
1841
+ "name": "outline",
1396
1842
  "description": "Display an outline style button."
1843
+ },
1844
+ {
1845
+ "name": "shape",
1846
+ "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.",
1847
+ "values": [
1848
+ {
1849
+ "name": "rectangular"
1850
+ },
1851
+ {
1852
+ "name": "round"
1853
+ },
1854
+ {
1855
+ "name": "soft"
1856
+ }
1857
+ ]
1858
+ },
1859
+ {
1860
+ "name": "size",
1861
+ "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.",
1862
+ "values": [
1863
+ {
1864
+ "name": "large"
1865
+ },
1866
+ {
1867
+ "name": "small"
1868
+ }
1869
+ ]
1870
+ },
1871
+ {
1872
+ "name": "theme",
1873
+ "description": "The theme determines the visual appearance of the component.",
1874
+ "values": [
1875
+ {
1876
+ "name": "ios"
1877
+ },
1878
+ {
1879
+ "name": "md"
1880
+ },
1881
+ {
1882
+ "name": "ionic"
1883
+ }
1884
+ ]
1397
1885
  }
1398
1886
  ],
1399
1887
  "references": [
@@ -1410,6 +1898,18 @@
1410
1898
  "value": ""
1411
1899
  },
1412
1900
  "attributes": [
1901
+ {
1902
+ "name": "mode",
1903
+ "description": "The mode determines the platform behaviors of the component.",
1904
+ "values": [
1905
+ {
1906
+ "name": "ios"
1907
+ },
1908
+ {
1909
+ "name": "md"
1910
+ }
1911
+ ]
1912
+ },
1413
1913
  {
1414
1914
  "name": "offset",
1415
1915
  "description": "The amount to offset the column, in terms of how many columns it should shift to the end\nof the total available."
@@ -1434,6 +1934,30 @@
1434
1934
  "name": "offset-xs",
1435
1935
  "description": "The amount to offset the column for xs screens, in terms of how many columns it should shift\nto the end of the total available."
1436
1936
  },
1937
+ {
1938
+ "name": "order",
1939
+ "description": "The order of the column, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1940
+ },
1941
+ {
1942
+ "name": "order-lg",
1943
+ "description": "The order of the column for lg screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1944
+ },
1945
+ {
1946
+ "name": "order-md",
1947
+ "description": "The order of the column for md screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1948
+ },
1949
+ {
1950
+ "name": "order-sm",
1951
+ "description": "The order of the column for sm screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1952
+ },
1953
+ {
1954
+ "name": "order-xl",
1955
+ "description": "The order of the column for xl screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1956
+ },
1957
+ {
1958
+ "name": "order-xs",
1959
+ "description": "The order of the column for xs screens, in terms of where the column should position itself in the columns renderer.\nIf no value is passed, the column order implicit value will be the order in the html structure."
1960
+ },
1437
1961
  {
1438
1962
  "name": "pull",
1439
1963
  "description": "The amount to pull the column, in terms of how many columns it should shift to the start of\nthe total available."
@@ -1505,6 +2029,21 @@
1505
2029
  {
1506
2030
  "name": "size-xs",
1507
2031
  "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."
2032
+ },
2033
+ {
2034
+ "name": "theme",
2035
+ "description": "The theme determines the visual appearance of the component.",
2036
+ "values": [
2037
+ {
2038
+ "name": "ios"
2039
+ },
2040
+ {
2041
+ "name": "md"
2042
+ },
2043
+ {
2044
+ "name": "ionic"
2045
+ }
2046
+ ]
1508
2047
  }
1509
2048
  ],
1510
2049
  "references": [
@@ -1574,6 +2113,18 @@
1574
2113
  "name": "fullscreen",
1575
2114
  "description": "If `true`, the content will scroll behind the headers\nand footers. This effect can easily be seen by setting the toolbar\nto transparent."
1576
2115
  },
2116
+ {
2117
+ "name": "mode",
2118
+ "description": "The mode determines the platform behaviors of the component.",
2119
+ "values": [
2120
+ {
2121
+ "name": "ios"
2122
+ },
2123
+ {
2124
+ "name": "md"
2125
+ }
2126
+ ]
2127
+ },
1577
2128
  {
1578
2129
  "name": "scroll-events",
1579
2130
  "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`."
@@ -1585,6 +2136,21 @@
1585
2136
  {
1586
2137
  "name": "scroll-y",
1587
2138
  "description": "If you want to disable the content scrolling in the Y axis, set this property to `false`."
2139
+ },
2140
+ {
2141
+ "name": "theme",
2142
+ "description": "The theme determines the visual appearance of the component.",
2143
+ "values": [
2144
+ {
2145
+ "name": "ios"
2146
+ },
2147
+ {
2148
+ "name": "md"
2149
+ },
2150
+ {
2151
+ "name": "ionic"
2152
+ }
2153
+ ]
1588
2154
  }
1589
2155
  ],
1590
2156
  "references": [
@@ -1658,14 +2224,6 @@
1658
2224
  "name": "first-day-of-week",
1659
2225
  "description": "The first day of the week to use for `ion-datetime`. The\ndefault value is `0` and represents Sunday."
1660
2226
  },
1661
- {
1662
- "name": "format-options",
1663
- "description": "Formatting options for dates and times.\nShould include a 'date' and/or 'time' object, each of which is of type [Intl.DateTimeFormatOptions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#options)."
1664
- },
1665
- {
1666
- "name": "highlighted-dates",
1667
- "description": "Used to apply custom text and background colors to specific dates.\n\nCan be either an array of objects containing ISO strings and colors,\nor a callback that receives an ISO string and returns the colors.\n\nOnly applies to the `date`, `date-time`, and `time-date` presentations,\nwith `preferWheel=\"false\"`."
1668
- },
1669
2227
  {
1670
2228
  "name": "hour-cycle",
1671
2229
  "description": "The hour cycle of the `ion-datetime`. If no value is set, this is\nspecified by the current locale.",
@@ -1688,10 +2246,6 @@
1688
2246
  "name": "hour-values",
1689
2247
  "description": "Values used to create the list of selectable hours. By default\nthe hour values range from `0` to `23` for 24-hour, or `1` to `12` for 12-hour. However,\nto control exactly which hours to display, the `hourValues` input can take a number, an\narray of numbers, or a string of comma separated numbers."
1690
2248
  },
1691
- {
1692
- "name": "is-date-enabled",
1693
- "description": "Returns if an individual date (calendar day) is enabled or disabled.\n\nIf `true`, the day will be enabled/interactive.\nIf `false`, the day will be disabled/non-interactive.\n\nThe function accepts an ISO 8601 date string of a given day.\nBy default, all days are enabled. Developers can use this function\nto write custom logic to disable certain days.\n\nThe function is called for each rendered calendar day, for the previous, current and next month.\nCustom implementations should be optimized for performance to avoid jank."
1694
- },
1695
2249
  {
1696
2250
  "name": "locale",
1697
2251
  "description": "The locale to use for `ion-datetime`. This\nimpacts month and day name formatting.\nThe `\"default\"` value refers to the default\nlocale set by your device."
@@ -1710,7 +2264,7 @@
1710
2264
  },
1711
2265
  {
1712
2266
  "name": "mode",
1713
- "description": "The mode determines which platform styles to use.",
2267
+ "description": "The mode determines the platform behaviors of the component.",
1714
2268
  "values": [
1715
2269
  {
1716
2270
  "name": "ios"
@@ -1800,8 +2354,19 @@
1800
2354
  ]
1801
2355
  },
1802
2356
  {
1803
- "name": "title-selected-dates-formatter",
1804
- "description": "A callback used to format the header text that shows how many\ndates are selected. Only used if there are 0 or more than 1\nselected (i.e. unused for exactly 1). By default, the header\ntext is set to \"numberOfDates days\".\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback."
2357
+ "name": "theme",
2358
+ "description": "The theme determines the visual appearance of the component.",
2359
+ "values": [
2360
+ {
2361
+ "name": "ios"
2362
+ },
2363
+ {
2364
+ "name": "md"
2365
+ },
2366
+ {
2367
+ "name": "ionic"
2368
+ }
2369
+ ]
1805
2370
  },
1806
2371
  {
1807
2372
  "name": "value",
@@ -1869,13 +2434,28 @@
1869
2434
  },
1870
2435
  {
1871
2436
  "name": "mode",
1872
- "description": "The mode determines which platform styles to use.",
2437
+ "description": "The mode determines the platform behaviors of the component.",
2438
+ "values": [
2439
+ {
2440
+ "name": "ios"
2441
+ },
2442
+ {
2443
+ "name": "md"
2444
+ }
2445
+ ]
2446
+ },
2447
+ {
2448
+ "name": "theme",
2449
+ "description": "The theme determines the visual appearance of the component.",
1873
2450
  "values": [
1874
2451
  {
1875
2452
  "name": "ios"
1876
2453
  },
1877
2454
  {
1878
2455
  "name": "md"
2456
+ },
2457
+ {
2458
+ "name": "ionic"
1879
2459
  }
1880
2460
  ]
1881
2461
  }
@@ -1887,6 +2467,52 @@
1887
2467
  }
1888
2468
  ]
1889
2469
  },
2470
+ {
2471
+ "name": "ion-divider",
2472
+ "description": {
2473
+ "kind": "markdown",
2474
+ "value": ""
2475
+ },
2476
+ "attributes": [
2477
+ {
2478
+ "name": "inset",
2479
+ "description": "If `true`, the divider will have horizontal margins\nBy default, it's `false`"
2480
+ },
2481
+ {
2482
+ "name": "spacing",
2483
+ "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\"`.",
2484
+ "values": [
2485
+ {
2486
+ "name": "large"
2487
+ },
2488
+ {
2489
+ "name": "medium"
2490
+ },
2491
+ {
2492
+ "name": "small"
2493
+ },
2494
+ {
2495
+ "name": "xlarge"
2496
+ },
2497
+ {
2498
+ "name": "xsmall"
2499
+ },
2500
+ {
2501
+ "name": "xxlarge"
2502
+ },
2503
+ {
2504
+ "name": "xxsmall"
2505
+ }
2506
+ ]
2507
+ }
2508
+ ],
2509
+ "references": [
2510
+ {
2511
+ "name": "Source code",
2512
+ "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/divider/divider.tsx"
2513
+ }
2514
+ ]
2515
+ },
1890
2516
  {
1891
2517
  "name": "ion-fab",
1892
2518
  "description": {
@@ -1917,6 +2543,33 @@
1917
2543
  }
1918
2544
  ]
1919
2545
  },
2546
+ {
2547
+ "name": "mode",
2548
+ "description": "The mode determines the platform behaviors of the component.",
2549
+ "values": [
2550
+ {
2551
+ "name": "ios"
2552
+ },
2553
+ {
2554
+ "name": "md"
2555
+ }
2556
+ ]
2557
+ },
2558
+ {
2559
+ "name": "theme",
2560
+ "description": "The theme determines the visual appearance of the component.",
2561
+ "values": [
2562
+ {
2563
+ "name": "ios"
2564
+ },
2565
+ {
2566
+ "name": "md"
2567
+ },
2568
+ {
2569
+ "name": "ionic"
2570
+ }
2571
+ ]
2572
+ },
1920
2573
  {
1921
2574
  "name": "vertical",
1922
2575
  "description": "Where to align the fab vertically in the viewport.",
@@ -2002,7 +2655,7 @@
2002
2655
  },
2003
2656
  {
2004
2657
  "name": "mode",
2005
- "description": "The mode determines which platform styles to use.",
2658
+ "description": "The mode determines the platform behaviors of the component.",
2006
2659
  "values": [
2007
2660
  {
2008
2661
  "name": "ios"
@@ -2016,10 +2669,6 @@
2016
2669
  "name": "rel",
2017
2670
  "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)."
2018
2671
  },
2019
- {
2020
- "name": "router-animation",
2021
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
2022
- },
2023
2672
  {
2024
2673
  "name": "router-direction",
2025
2674
  "description": "When using a router, it specifies the transition direction when navigating to\nanother page using `href`.",
@@ -2052,9 +2701,24 @@
2052
2701
  "name": "target",
2053
2702
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
2054
2703
  },
2704
+ {
2705
+ "name": "theme",
2706
+ "description": "The theme determines the visual appearance of the component.",
2707
+ "values": [
2708
+ {
2709
+ "name": "ios"
2710
+ },
2711
+ {
2712
+ "name": "md"
2713
+ },
2714
+ {
2715
+ "name": "ionic"
2716
+ }
2717
+ ]
2718
+ },
2055
2719
  {
2056
2720
  "name": "translucent",
2057
- "description": "If `true`, the fab button will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
2721
+ "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)."
2058
2722
  },
2059
2723
  {
2060
2724
  "name": "type",
@@ -2090,6 +2754,18 @@
2090
2754
  "name": "activated",
2091
2755
  "description": "If `true`, the fab list will show all fab buttons in the list."
2092
2756
  },
2757
+ {
2758
+ "name": "mode",
2759
+ "description": "The mode determines the platform behaviors of the component.",
2760
+ "values": [
2761
+ {
2762
+ "name": "ios"
2763
+ },
2764
+ {
2765
+ "name": "md"
2766
+ }
2767
+ ]
2768
+ },
2093
2769
  {
2094
2770
  "name": "side",
2095
2771
  "description": "The side the fab list will show on relative to the main fab button.",
@@ -2107,6 +2783,21 @@
2107
2783
  "name": "top"
2108
2784
  }
2109
2785
  ]
2786
+ },
2787
+ {
2788
+ "name": "theme",
2789
+ "description": "The theme determines the visual appearance of the component.",
2790
+ "values": [
2791
+ {
2792
+ "name": "ios"
2793
+ },
2794
+ {
2795
+ "name": "md"
2796
+ },
2797
+ {
2798
+ "name": "ionic"
2799
+ }
2800
+ ]
2110
2801
  }
2111
2802
  ],
2112
2803
  "references": [
@@ -2125,7 +2816,7 @@
2125
2816
  "attributes": [
2126
2817
  {
2127
2818
  "name": "collapse",
2128
- "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies in iOS mode.",
2819
+ "description": "Describes the scroll effect that will be applied to the footer.\nOnly applies when the theme is `\"ios\"`.",
2129
2820
  "values": [
2130
2821
  {
2131
2822
  "name": "fade"
@@ -2134,19 +2825,34 @@
2134
2825
  },
2135
2826
  {
2136
2827
  "name": "mode",
2137
- "description": "The mode determines which platform styles to use.",
2828
+ "description": "The mode determines the platform behaviors of the component.",
2829
+ "values": [
2830
+ {
2831
+ "name": "ios"
2832
+ },
2833
+ {
2834
+ "name": "md"
2835
+ }
2836
+ ]
2837
+ },
2838
+ {
2839
+ "name": "theme",
2840
+ "description": "The theme determines the visual appearance of the component.",
2138
2841
  "values": [
2139
2842
  {
2140
2843
  "name": "ios"
2141
2844
  },
2142
2845
  {
2143
2846
  "name": "md"
2847
+ },
2848
+ {
2849
+ "name": "ionic"
2144
2850
  }
2145
2851
  ]
2146
2852
  },
2147
2853
  {
2148
2854
  "name": "translucent",
2149
- "description": "If `true`, the footer will be translucent.\nOnly applies when the mode 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."
2855
+ "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."
2150
2856
  }
2151
2857
  ],
2152
2858
  "references": [
@@ -2166,14 +2872,41 @@
2166
2872
  {
2167
2873
  "name": "fixed",
2168
2874
  "description": "If `true`, the grid will have a fixed width based on the screen size."
2169
- }
2170
- ],
2171
- "references": [
2875
+ },
2172
2876
  {
2173
- "name": "Source code",
2174
- "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/grid/grid.tsx"
2175
- }
2176
- ]
2877
+ "name": "mode",
2878
+ "description": "The mode determines the platform behaviors of the component.",
2879
+ "values": [
2880
+ {
2881
+ "name": "ios"
2882
+ },
2883
+ {
2884
+ "name": "md"
2885
+ }
2886
+ ]
2887
+ },
2888
+ {
2889
+ "name": "theme",
2890
+ "description": "The theme determines the visual appearance of the component.",
2891
+ "values": [
2892
+ {
2893
+ "name": "ios"
2894
+ },
2895
+ {
2896
+ "name": "md"
2897
+ },
2898
+ {
2899
+ "name": "ionic"
2900
+ }
2901
+ ]
2902
+ }
2903
+ ],
2904
+ "references": [
2905
+ {
2906
+ "name": "Source code",
2907
+ "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/grid/grid.tsx"
2908
+ }
2909
+ ]
2177
2910
  },
2178
2911
  {
2179
2912
  "name": "ion-header",
@@ -2184,7 +2917,7 @@
2184
2917
  "attributes": [
2185
2918
  {
2186
2919
  "name": "collapse",
2187
- "description": "Describes the scroll effect that will be applied to the header.\nOnly applies in iOS mode.\n\nTypically used for [Collapsible Large Titles](https://ionicframework.com/docs/api/title#collapsible-large-titles)",
2920
+ "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)",
2188
2921
  "values": [
2189
2922
  {
2190
2923
  "name": "condense"
@@ -2194,9 +2927,13 @@
2194
2927
  }
2195
2928
  ]
2196
2929
  },
2930
+ {
2931
+ "name": "divider",
2932
+ "description": "If `true`, the header will have a line at the bottom.\nTODO(ROU-10855): add support for this prop on ios/md themes"
2933
+ },
2197
2934
  {
2198
2935
  "name": "mode",
2199
- "description": "The mode determines which platform styles to use.",
2936
+ "description": "The mode determines the platform behaviors of the component.",
2200
2937
  "values": [
2201
2938
  {
2202
2939
  "name": "ios"
@@ -2206,9 +2943,24 @@
2206
2943
  }
2207
2944
  ]
2208
2945
  },
2946
+ {
2947
+ "name": "theme",
2948
+ "description": "The theme determines the visual appearance of the component.",
2949
+ "values": [
2950
+ {
2951
+ "name": "ios"
2952
+ },
2953
+ {
2954
+ "name": "md"
2955
+ },
2956
+ {
2957
+ "name": "ionic"
2958
+ }
2959
+ ]
2960
+ },
2209
2961
  {
2210
2962
  "name": "translucent",
2211
- "description": "If `true`, the header will be translucent.\nOnly applies when the mode 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."
2963
+ "description": "If `true`, the header will be translucent.\nOnly applies when the theme is `\"ios\"` or `\"ionic\"` 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."
2212
2964
  }
2213
2965
  ],
2214
2966
  "references": [
@@ -2229,9 +2981,36 @@
2229
2981
  "name": "alt",
2230
2982
  "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."
2231
2983
  },
2984
+ {
2985
+ "name": "mode",
2986
+ "description": "The mode determines the platform behaviors of the component.",
2987
+ "values": [
2988
+ {
2989
+ "name": "ios"
2990
+ },
2991
+ {
2992
+ "name": "md"
2993
+ }
2994
+ ]
2995
+ },
2232
2996
  {
2233
2997
  "name": "src",
2234
2998
  "description": "The image URL. This attribute is mandatory for the `<img>` element."
2999
+ },
3000
+ {
3001
+ "name": "theme",
3002
+ "description": "The theme determines the visual appearance of the component.",
3003
+ "values": [
3004
+ {
3005
+ "name": "ios"
3006
+ },
3007
+ {
3008
+ "name": "md"
3009
+ },
3010
+ {
3011
+ "name": "ionic"
3012
+ }
3013
+ ]
2235
3014
  }
2236
3015
  ],
2237
3016
  "references": [
@@ -2252,6 +3031,18 @@
2252
3031
  "name": "disabled",
2253
3032
  "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."
2254
3033
  },
3034
+ {
3035
+ "name": "mode",
3036
+ "description": "The mode determines the platform behaviors of the component.",
3037
+ "values": [
3038
+ {
3039
+ "name": "ios"
3040
+ },
3041
+ {
3042
+ "name": "md"
3043
+ }
3044
+ ]
3045
+ },
2255
3046
  {
2256
3047
  "name": "position",
2257
3048
  "description": "The position of the infinite scroll element.\nThe value can be either `top` or `bottom`.",
@@ -2264,6 +3055,25 @@
2264
3055
  }
2265
3056
  ]
2266
3057
  },
3058
+ {
3059
+ "name": "preserve-rerender-scroll-position",
3060
+ "description": "If `true`, the infinite scroll will preserve the scroll position\nwhen the content is re-rendered. This is useful when the content is\nre-rendered with new keys, and the scroll position should be preserved."
3061
+ },
3062
+ {
3063
+ "name": "theme",
3064
+ "description": "The theme determines the visual appearance of the component.",
3065
+ "values": [
3066
+ {
3067
+ "name": "ios"
3068
+ },
3069
+ {
3070
+ "name": "md"
3071
+ },
3072
+ {
3073
+ "name": "ionic"
3074
+ }
3075
+ ]
3076
+ },
2267
3077
  {
2268
3078
  "name": "threshold",
2269
3079
  "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."
@@ -2319,6 +3129,33 @@
2319
3129
  {
2320
3130
  "name": "loading-text",
2321
3131
  "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`&lt;Ionic&gt;`\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."
3132
+ },
3133
+ {
3134
+ "name": "mode",
3135
+ "description": "The mode determines the platform behaviors of the component.",
3136
+ "values": [
3137
+ {
3138
+ "name": "ios"
3139
+ },
3140
+ {
3141
+ "name": "md"
3142
+ }
3143
+ ]
3144
+ },
3145
+ {
3146
+ "name": "theme",
3147
+ "description": "The theme determines the visual appearance of the component.",
3148
+ "values": [
3149
+ {
3150
+ "name": "ios"
3151
+ },
3152
+ {
3153
+ "name": "md"
3154
+ },
3155
+ {
3156
+ "name": "ionic"
3157
+ }
3158
+ ]
2322
3159
  }
2323
3160
  ],
2324
3161
  "references": [
@@ -2346,80 +3183,74 @@
2346
3183
  {
2347
3184
  "name": "name"
2348
3185
  },
2349
- {
2350
- "name": "email"
2351
- },
2352
- {
2353
- "name": "tel"
2354
- },
2355
3186
  {
2356
3187
  "name": "url"
2357
3188
  },
2358
3189
  {
2359
- "name": "on"
3190
+ "name": "off"
2360
3191
  },
2361
3192
  {
2362
- "name": "off"
3193
+ "name": "on"
2363
3194
  },
2364
3195
  {
2365
- "name": "honorific-prefix"
3196
+ "name": "additional-name"
2366
3197
  },
2367
3198
  {
2368
- "name": "given-name"
3199
+ "name": "address-level1"
2369
3200
  },
2370
3201
  {
2371
- "name": "additional-name"
3202
+ "name": "address-level2"
2372
3203
  },
2373
3204
  {
2374
- "name": "family-name"
3205
+ "name": "address-level3"
2375
3206
  },
2376
3207
  {
2377
- "name": "honorific-suffix"
3208
+ "name": "address-level4"
2378
3209
  },
2379
3210
  {
2380
- "name": "nickname"
3211
+ "name": "address-line1"
2381
3212
  },
2382
3213
  {
2383
- "name": "username"
3214
+ "name": "address-line2"
2384
3215
  },
2385
3216
  {
2386
- "name": "new-password"
3217
+ "name": "address-line3"
2387
3218
  },
2388
3219
  {
2389
- "name": "current-password"
3220
+ "name": "bday-day"
2390
3221
  },
2391
3222
  {
2392
- "name": "one-time-code"
3223
+ "name": "bday-month"
2393
3224
  },
2394
3225
  {
2395
- "name": "organization-title"
3226
+ "name": "bday-year"
2396
3227
  },
2397
3228
  {
2398
- "name": "organization"
3229
+ "name": "cc-csc"
2399
3230
  },
2400
3231
  {
2401
- "name": "street-address"
3232
+ "name": "cc-exp"
2402
3233
  },
2403
3234
  {
2404
- "name": "address-line1"
3235
+ "name": "cc-exp-month"
2405
3236
  },
2406
3237
  {
2407
- "name": "address-line2"
3238
+ "name": "cc-exp-year"
2408
3239
  },
2409
3240
  {
2410
- "name": "address-line3"
3241
+ "name": "cc-family-name"
2411
3242
  },
2412
3243
  {
2413
- "name": "address-level4"
3244
+ "name": "cc-given-name"
2414
3245
  },
2415
3246
  {
2416
- "name": "address-level3"
3247
+ "name": "cc-name"
2417
3248
  },
2418
3249
  {
2419
- "name": "address-level2"
3250
+ "name": "cc-number"
2420
3251
  },
2421
3252
  {
2422
- "name": "address-level1"
3253
+ "name": "cc-type"
2423
3254
  },
2424
3255
  {
2425
3256
  "name": "country"
@@ -2428,76 +3259,82 @@
2428
3259
  "name": "country-name"
2429
3260
  },
2430
3261
  {
2431
- "name": "postal-code"
3262
+ "name": "current-password"
2432
3263
  },
2433
3264
  {
2434
- "name": "cc-name"
3265
+ "name": "family-name"
2435
3266
  },
2436
3267
  {
2437
- "name": "cc-given-name"
3268
+ "name": "given-name"
2438
3269
  },
2439
3270
  {
2440
- "name": "cc-additional-name"
3271
+ "name": "honorific-prefix"
2441
3272
  },
2442
3273
  {
2443
- "name": "cc-family-name"
3274
+ "name": "honorific-suffix"
2444
3275
  },
2445
3276
  {
2446
- "name": "cc-number"
3277
+ "name": "new-password"
2447
3278
  },
2448
3279
  {
2449
- "name": "cc-exp"
3280
+ "name": "one-time-code"
2450
3281
  },
2451
3282
  {
2452
- "name": "cc-exp-month"
3283
+ "name": "organization"
2453
3284
  },
2454
3285
  {
2455
- "name": "cc-exp-year"
3286
+ "name": "postal-code"
2456
3287
  },
2457
3288
  {
2458
- "name": "cc-csc"
3289
+ "name": "street-address"
2459
3290
  },
2460
3291
  {
2461
- "name": "cc-type"
3292
+ "name": "transaction-amount"
2462
3293
  },
2463
3294
  {
2464
3295
  "name": "transaction-currency"
2465
3296
  },
2466
3297
  {
2467
- "name": "transaction-amount"
3298
+ "name": "username"
2468
3299
  },
2469
3300
  {
2470
- "name": "language"
3301
+ "name": "email"
2471
3302
  },
2472
3303
  {
2473
- "name": "bday"
3304
+ "name": "tel"
2474
3305
  },
2475
3306
  {
2476
- "name": "bday-day"
3307
+ "name": "tel-area-code"
2477
3308
  },
2478
3309
  {
2479
- "name": "bday-month"
3310
+ "name": "tel-country-code"
2480
3311
  },
2481
3312
  {
2482
- "name": "bday-year"
3313
+ "name": "tel-extension"
2483
3314
  },
2484
3315
  {
2485
- "name": "sex"
3316
+ "name": "tel-local"
2486
3317
  },
2487
3318
  {
2488
- "name": "tel-country-code"
3319
+ "name": "tel-national"
2489
3320
  },
2490
3321
  {
2491
- "name": "tel-national"
3322
+ "name": "nickname"
2492
3323
  },
2493
3324
  {
2494
- "name": "tel-area-code"
3325
+ "name": "organization-title"
2495
3326
  },
2496
3327
  {
2497
- "name": "tel-local"
3328
+ "name": "cc-additional-name"
2498
3329
  },
2499
3330
  {
2500
- "name": "tel-extension"
3331
+ "name": "language"
3332
+ },
3333
+ {
3334
+ "name": "bday"
3335
+ },
3336
+ {
3337
+ "name": "sex"
2501
3338
  },
2502
3339
  {
2503
3340
  "name": "impp"
@@ -2572,10 +3409,6 @@
2572
3409
  "name": "counter",
2573
3410
  "description": "If `true`, a character counter will display the ratio of characters used and the total character limit. Developers must also set the `maxlength` property for the counter to be calculated correctly."
2574
3411
  },
2575
- {
2576
- "name": "counter-formatter",
2577
- "description": "A callback used to format the counter text.\nBy default the counter text is set to \"itemLength / maxLength\".\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback."
2578
- },
2579
3412
  {
2580
3413
  "name": "debounce",
2581
3414
  "description": "Set the amount of time, in milliseconds, to wait to trigger the `ionInput` event after each keystroke."
@@ -2617,7 +3450,7 @@
2617
3450
  },
2618
3451
  {
2619
3452
  "name": "fill",
2620
- "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 `md` mode.",
3453
+ "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\"`.",
2621
3454
  "values": [
2622
3455
  {
2623
3456
  "name": "outline"
@@ -2667,7 +3500,7 @@
2667
3500
  },
2668
3501
  {
2669
3502
  "name": "label-placement",
2670
- "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 (\"...\").",
3503
+ "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.",
2671
3504
  "values": [
2672
3505
  {
2673
3506
  "name": "end"
@@ -2704,7 +3537,7 @@
2704
3537
  },
2705
3538
  {
2706
3539
  "name": "mode",
2707
- "description": "The mode determines which platform styles to use.",
3540
+ "description": "The mode determines the platform behaviors of the component.",
2708
3541
  "values": [
2709
3542
  {
2710
3543
  "name": "ios"
@@ -2740,10 +3573,31 @@
2740
3573
  },
2741
3574
  {
2742
3575
  "name": "shape",
2743
- "description": "The shape of the input. If \"round\" it will have an increased border radius.",
3576
+ "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\"`.",
2744
3577
  "values": [
3578
+ {
3579
+ "name": "rectangular"
3580
+ },
2745
3581
  {
2746
3582
  "name": "round"
3583
+ },
3584
+ {
3585
+ "name": "soft"
3586
+ }
3587
+ ]
3588
+ },
3589
+ {
3590
+ "name": "size",
3591
+ "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.",
3592
+ "values": [
3593
+ {
3594
+ "name": "large"
3595
+ },
3596
+ {
3597
+ "name": "medium"
3598
+ },
3599
+ {
3600
+ "name": "xlarge"
2747
3601
  }
2748
3602
  ]
2749
3603
  },
@@ -2755,6 +3609,21 @@
2755
3609
  "name": "step",
2756
3610
  "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."
2757
3611
  },
3612
+ {
3613
+ "name": "theme",
3614
+ "description": "The theme determines the visual appearance of the component.",
3615
+ "values": [
3616
+ {
3617
+ "name": "ios"
3618
+ },
3619
+ {
3620
+ "name": "md"
3621
+ },
3622
+ {
3623
+ "name": "ionic"
3624
+ }
3625
+ ]
3626
+ },
2758
3627
  {
2759
3628
  "name": "type",
2760
3629
  "description": "The type of control to display. The default type is text.",
@@ -3083,7 +3952,7 @@
3083
3952
  },
3084
3953
  {
3085
3954
  "name": "detail",
3086
- "description": "If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode`\nis `ios` and an `href` or `button` property is present."
3955
+ "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."
3087
3956
  },
3088
3957
  {
3089
3958
  "name": "detail-icon",
@@ -3118,7 +3987,7 @@
3118
3987
  },
3119
3988
  {
3120
3989
  "name": "mode",
3121
- "description": "The mode determines which platform styles to use.",
3990
+ "description": "The mode determines the platform behaviors of the component.",
3122
3991
  "values": [
3123
3992
  {
3124
3993
  "name": "ios"
@@ -3132,10 +4001,6 @@
3132
4001
  "name": "rel",
3133
4002
  "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)."
3134
4003
  },
3135
- {
3136
- "name": "router-animation",
3137
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
3138
- },
3139
4004
  {
3140
4005
  "name": "router-direction",
3141
4006
  "description": "When using a router, it specifies the transition direction when navigating to\nanother page using `href`.",
@@ -3156,8 +4021,23 @@
3156
4021
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
3157
4022
  },
3158
4023
  {
3159
- "name": "type",
3160
- "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
4024
+ "name": "theme",
4025
+ "description": "The theme determines the visual appearance of the component.",
4026
+ "values": [
4027
+ {
4028
+ "name": "ios"
4029
+ },
4030
+ {
4031
+ "name": "md"
4032
+ },
4033
+ {
4034
+ "name": "ionic"
4035
+ }
4036
+ ]
4037
+ },
4038
+ {
4039
+ "name": "type",
4040
+ "description": "The type of the button. Only used when an `onclick` or `button` property is present.",
3161
4041
  "values": [
3162
4042
  {
3163
4043
  "name": "button"
@@ -3220,7 +4100,7 @@
3220
4100
  },
3221
4101
  {
3222
4102
  "name": "mode",
3223
- "description": "The mode determines which platform styles to use.",
4103
+ "description": "The mode determines the platform behaviors of the component.",
3224
4104
  "values": [
3225
4105
  {
3226
4106
  "name": "ios"
@@ -3233,6 +4113,21 @@
3233
4113
  {
3234
4114
  "name": "sticky",
3235
4115
  "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"
4116
+ },
4117
+ {
4118
+ "name": "theme",
4119
+ "description": "The theme determines the visual appearance of the component.",
4120
+ "values": [
4121
+ {
4122
+ "name": "ios"
4123
+ },
4124
+ {
4125
+ "name": "md"
4126
+ },
4127
+ {
4128
+ "name": "ionic"
4129
+ }
4130
+ ]
3236
4131
  }
3237
4132
  ],
3238
4133
  "references": [
@@ -3248,7 +4143,35 @@
3248
4143
  "kind": "markdown",
3249
4144
  "value": ""
3250
4145
  },
3251
- "attributes": [],
4146
+ "attributes": [
4147
+ {
4148
+ "name": "mode",
4149
+ "description": "The mode determines the platform behaviors of the component.",
4150
+ "values": [
4151
+ {
4152
+ "name": "ios"
4153
+ },
4154
+ {
4155
+ "name": "md"
4156
+ }
4157
+ ]
4158
+ },
4159
+ {
4160
+ "name": "theme",
4161
+ "description": "The theme determines the visual appearance of the component.",
4162
+ "values": [
4163
+ {
4164
+ "name": "ios"
4165
+ },
4166
+ {
4167
+ "name": "md"
4168
+ },
4169
+ {
4170
+ "name": "ionic"
4171
+ }
4172
+ ]
4173
+ }
4174
+ ],
3252
4175
  "references": [
3253
4176
  {
3254
4177
  "name": "Source code",
@@ -3312,9 +4235,21 @@
3312
4235
  "name": "href",
3313
4236
  "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
3314
4237
  },
4238
+ {
4239
+ "name": "hue",
4240
+ "description": "Set to `\"bold\"` for an option with vibrant, bold colors or to `\"subtle\"` for\nan option with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
4241
+ "values": [
4242
+ {
4243
+ "name": "bold"
4244
+ },
4245
+ {
4246
+ "name": "subtle"
4247
+ }
4248
+ ]
4249
+ },
3315
4250
  {
3316
4251
  "name": "mode",
3317
- "description": "The mode determines which platform styles to use.",
4252
+ "description": "The mode determines the platform behaviors of the component.",
3318
4253
  "values": [
3319
4254
  {
3320
4255
  "name": "ios"
@@ -3328,10 +4263,40 @@
3328
4263
  "name": "rel",
3329
4264
  "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)."
3330
4265
  },
4266
+ {
4267
+ "name": "shape",
4268
+ "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.",
4269
+ "values": [
4270
+ {
4271
+ "name": "rectangular"
4272
+ },
4273
+ {
4274
+ "name": "round"
4275
+ },
4276
+ {
4277
+ "name": "soft"
4278
+ }
4279
+ ]
4280
+ },
3331
4281
  {
3332
4282
  "name": "target",
3333
4283
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
3334
4284
  },
4285
+ {
4286
+ "name": "theme",
4287
+ "description": "The theme determines the visual appearance of the component.",
4288
+ "values": [
4289
+ {
4290
+ "name": "ios"
4291
+ },
4292
+ {
4293
+ "name": "md"
4294
+ },
4295
+ {
4296
+ "name": "ionic"
4297
+ }
4298
+ ]
4299
+ },
3335
4300
  {
3336
4301
  "name": "type",
3337
4302
  "description": "The type of the button.",
@@ -3362,6 +4327,18 @@
3362
4327
  "value": ""
3363
4328
  },
3364
4329
  "attributes": [
4330
+ {
4331
+ "name": "mode",
4332
+ "description": "The mode determines the platform behaviors of the component.",
4333
+ "values": [
4334
+ {
4335
+ "name": "ios"
4336
+ },
4337
+ {
4338
+ "name": "md"
4339
+ }
4340
+ ]
4341
+ },
3365
4342
  {
3366
4343
  "name": "side",
3367
4344
  "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.",
@@ -3373,6 +4350,21 @@
3373
4350
  "name": "start"
3374
4351
  }
3375
4352
  ]
4353
+ },
4354
+ {
4355
+ "name": "theme",
4356
+ "description": "The theme determines the visual appearance of the component.",
4357
+ "values": [
4358
+ {
4359
+ "name": "ios"
4360
+ },
4361
+ {
4362
+ "name": "md"
4363
+ },
4364
+ {
4365
+ "name": "ionic"
4366
+ }
4367
+ ]
3376
4368
  }
3377
4369
  ],
3378
4370
  "references": [
@@ -3392,6 +4384,33 @@
3392
4384
  {
3393
4385
  "name": "disabled",
3394
4386
  "description": "If `true`, the user cannot interact with the sliding item."
4387
+ },
4388
+ {
4389
+ "name": "mode",
4390
+ "description": "The mode determines the platform behaviors of the component.",
4391
+ "values": [
4392
+ {
4393
+ "name": "ios"
4394
+ },
4395
+ {
4396
+ "name": "md"
4397
+ }
4398
+ ]
4399
+ },
4400
+ {
4401
+ "name": "theme",
4402
+ "description": "The theme determines the visual appearance of the component.",
4403
+ "values": [
4404
+ {
4405
+ "name": "ios"
4406
+ },
4407
+ {
4408
+ "name": "md"
4409
+ },
4410
+ {
4411
+ "name": "ionic"
4412
+ }
4413
+ ]
3395
4414
  }
3396
4415
  ],
3397
4416
  "references": [
@@ -3443,7 +4462,7 @@
3443
4462
  },
3444
4463
  {
3445
4464
  "name": "mode",
3446
- "description": "The mode determines which platform styles to use.",
4465
+ "description": "The mode determines the platform behaviors of the component.",
3447
4466
  "values": [
3448
4467
  {
3449
4468
  "name": "ios"
@@ -3467,6 +4486,21 @@
3467
4486
  "name": "stacked"
3468
4487
  }
3469
4488
  ]
4489
+ },
4490
+ {
4491
+ "name": "theme",
4492
+ "description": "The theme determines the visual appearance of the component.",
4493
+ "values": [
4494
+ {
4495
+ "name": "ios"
4496
+ },
4497
+ {
4498
+ "name": "md"
4499
+ },
4500
+ {
4501
+ "name": "ionic"
4502
+ }
4503
+ ]
3470
4504
  }
3471
4505
  ],
3472
4506
  "references": [
@@ -3504,13 +4538,43 @@
3504
4538
  },
3505
4539
  {
3506
4540
  "name": "mode",
3507
- "description": "The mode determines which platform styles to use.",
4541
+ "description": "The mode determines the platform behaviors of the component.",
4542
+ "values": [
4543
+ {
4544
+ "name": "ios"
4545
+ },
4546
+ {
4547
+ "name": "md"
4548
+ }
4549
+ ]
4550
+ },
4551
+ {
4552
+ "name": "shape",
4553
+ "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.",
4554
+ "values": [
4555
+ {
4556
+ "name": "rectangular"
4557
+ },
4558
+ {
4559
+ "name": "round"
4560
+ },
4561
+ {
4562
+ "name": "soft"
4563
+ }
4564
+ ]
4565
+ },
4566
+ {
4567
+ "name": "theme",
4568
+ "description": "The theme determines the visual appearance of the component.",
3508
4569
  "values": [
3509
4570
  {
3510
4571
  "name": "ios"
3511
4572
  },
3512
4573
  {
3513
4574
  "name": "md"
4575
+ },
4576
+ {
4577
+ "name": "ionic"
3514
4578
  }
3515
4579
  ]
3516
4580
  }
@@ -3579,13 +4643,28 @@
3579
4643
  },
3580
4644
  {
3581
4645
  "name": "mode",
3582
- "description": "The mode determines which platform styles to use.",
4646
+ "description": "The mode determines the platform behaviors of the component.",
4647
+ "values": [
4648
+ {
4649
+ "name": "ios"
4650
+ },
4651
+ {
4652
+ "name": "md"
4653
+ }
4654
+ ]
4655
+ },
4656
+ {
4657
+ "name": "theme",
4658
+ "description": "The theme determines the visual appearance of the component.",
3583
4659
  "values": [
3584
4660
  {
3585
4661
  "name": "ios"
3586
4662
  },
3587
4663
  {
3588
4664
  "name": "md"
4665
+ },
4666
+ {
4667
+ "name": "ionic"
3589
4668
  }
3590
4669
  ]
3591
4670
  }
@@ -3620,14 +4699,6 @@
3620
4699
  "name": "duration",
3621
4700
  "description": "Number of milliseconds to wait before dismissing the loading indicator."
3622
4701
  },
3623
- {
3624
- "name": "enter-animation",
3625
- "description": "Animation to use when the loading indicator is presented."
3626
- },
3627
- {
3628
- "name": "html-attributes",
3629
- "description": "Additional attributes to pass to the loader."
3630
- },
3631
4702
  {
3632
4703
  "name": "is-open",
3633
4704
  "description": "If `true`, the loading indicator will open. If `false`, the loading indicator will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the loadingController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe loading indicator dismisses. You will need to do that in your code."
@@ -3636,17 +4707,13 @@
3636
4707
  "name": "keyboard-close",
3637
4708
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
3638
4709
  },
3639
- {
3640
- "name": "leave-animation",
3641
- "description": "Animation to use when the loading indicator is dismissed."
3642
- },
3643
4710
  {
3644
4711
  "name": "message",
3645
4712
  "description": "Optional text content to display in the loading indicator.\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."
3646
4713
  },
3647
4714
  {
3648
4715
  "name": "mode",
3649
- "description": "The mode determines which platform styles to use.",
4716
+ "description": "The mode determines the platform behaviors of the component.",
3650
4717
  "values": [
3651
4718
  {
3652
4719
  "name": "ios"
@@ -3693,9 +4760,24 @@
3693
4760
  }
3694
4761
  ]
3695
4762
  },
4763
+ {
4764
+ "name": "theme",
4765
+ "description": "The theme determines the visual appearance of the component.",
4766
+ "values": [
4767
+ {
4768
+ "name": "ios"
4769
+ },
4770
+ {
4771
+ "name": "md"
4772
+ },
4773
+ {
4774
+ "name": "ionic"
4775
+ }
4776
+ ]
4777
+ },
3696
4778
  {
3697
4779
  "name": "translucent",
3698
- "description": "If `true`, the loading indicator will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
4780
+ "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)."
3699
4781
  },
3700
4782
  {
3701
4783
  "name": "trigger",
@@ -3732,6 +4814,18 @@
3732
4814
  "name": "menu-id",
3733
4815
  "description": "An id for the menu."
3734
4816
  },
4817
+ {
4818
+ "name": "mode",
4819
+ "description": "The mode determines the platform behaviors of the component.",
4820
+ "values": [
4821
+ {
4822
+ "name": "ios"
4823
+ },
4824
+ {
4825
+ "name": "md"
4826
+ }
4827
+ ]
4828
+ },
3735
4829
  {
3736
4830
  "name": "side",
3737
4831
  "description": "Which side of the view the menu should be placed.",
@@ -3748,6 +4842,21 @@
3748
4842
  "name": "swipe-gesture",
3749
4843
  "description": "If `true`, swiping the menu is enabled."
3750
4844
  },
4845
+ {
4846
+ "name": "theme",
4847
+ "description": "The theme determines the visual appearance of the component.",
4848
+ "values": [
4849
+ {
4850
+ "name": "ios"
4851
+ },
4852
+ {
4853
+ "name": "md"
4854
+ },
4855
+ {
4856
+ "name": "ionic"
4857
+ }
4858
+ ]
4859
+ },
3751
4860
  {
3752
4861
  "name": "type",
3753
4862
  "description": "The display type of the menu.\nAvailable options: `\"overlay\"`, `\"reveal\"`, `\"push\"`.",
@@ -3825,13 +4934,28 @@
3825
4934
  },
3826
4935
  {
3827
4936
  "name": "mode",
3828
- "description": "The mode determines which platform styles to use.",
4937
+ "description": "The mode determines the platform behaviors of the component.",
4938
+ "values": [
4939
+ {
4940
+ "name": "ios"
4941
+ },
4942
+ {
4943
+ "name": "md"
4944
+ }
4945
+ ]
4946
+ },
4947
+ {
4948
+ "name": "theme",
4949
+ "description": "The theme determines the visual appearance of the component.",
3829
4950
  "values": [
3830
4951
  {
3831
4952
  "name": "ios"
3832
4953
  },
3833
4954
  {
3834
4955
  "name": "md"
4956
+ },
4957
+ {
4958
+ "name": "ionic"
3835
4959
  }
3836
4960
  ]
3837
4961
  },
@@ -3872,20 +4996,47 @@
3872
4996
  {
3873
4997
  "name": "menu",
3874
4998
  "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."
3875
- }
3876
- ],
3877
- "references": [
4999
+ },
3878
5000
  {
3879
- "name": "Source code",
3880
- "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/menu-toggle/menu-toggle.tsx"
3881
- }
3882
- ]
3883
- },
3884
- {
3885
- "name": "ion-modal",
3886
- "description": {
3887
- "kind": "markdown",
3888
- "value": ""
5001
+ "name": "mode",
5002
+ "description": "The mode determines the platform behaviors of the component.",
5003
+ "values": [
5004
+ {
5005
+ "name": "ios"
5006
+ },
5007
+ {
5008
+ "name": "md"
5009
+ }
5010
+ ]
5011
+ },
5012
+ {
5013
+ "name": "theme",
5014
+ "description": "The theme determines the visual appearance of the component.",
5015
+ "values": [
5016
+ {
5017
+ "name": "ios"
5018
+ },
5019
+ {
5020
+ "name": "md"
5021
+ },
5022
+ {
5023
+ "name": "ionic"
5024
+ }
5025
+ ]
5026
+ }
5027
+ ],
5028
+ "references": [
5029
+ {
5030
+ "name": "Source code",
5031
+ "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/menu-toggle/menu-toggle.tsx"
5032
+ }
5033
+ ]
5034
+ },
5035
+ {
5036
+ "name": "ion-modal",
5037
+ "description": {
5038
+ "kind": "markdown",
5039
+ "value": ""
3889
5040
  },
3890
5041
  "attributes": [
3891
5042
  {
@@ -3900,18 +5051,10 @@
3900
5051
  "name": "backdrop-dismiss",
3901
5052
  "description": "If `true`, the modal will be dismissed when the backdrop is clicked."
3902
5053
  },
3903
- {
3904
- "name": "breakpoints",
3905
- "description": "The breakpoints to use when creating a sheet modal. Each value in the\narray must be a decimal between 0 and 1 where 0 indicates the modal is fully\nclosed and 1 indicates the modal is fully open. Values are relative\nto the height of the modal, not the height of the screen. One of the values in this\narray must be the value of the `initialBreakpoint` property.\nFor example: [0, .25, .5, 1]"
3906
- },
3907
5054
  {
3908
5055
  "name": "can-dismiss",
3909
5056
  "description": "Determines whether or not a modal can dismiss\nwhen calling the `dismiss` method.\n\nIf the value is `true` or the value's function returns `true`, the modal will close when trying to dismiss.\nIf the value is `false` or the value's function returns `false`, the modal will not close when trying to dismiss.\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback."
3910
5057
  },
3911
- {
3912
- "name": "enter-animation",
3913
- "description": "Animation to use when the modal is presented."
3914
- },
3915
5058
  {
3916
5059
  "name": "expand-to-scroll",
3917
5060
  "description": "Controls whether scrolling or dragging within the sheet modal expands\nit to a larger breakpoint. This only takes effect when `breakpoints`\nand `initialBreakpoint` are set.\n\nIf `true`, scrolling or dragging anywhere in the modal will first expand\nit to the next breakpoint. Once fully expanded, scrolling will affect the\ncontent.\nIf `false`, scrolling will always affect the content. The modal will\nonly expand when dragging the header or handle. The modal will close when\ndragging the header or handle. It can also be closed when dragging the\ncontent, but only if the content is scrolled to the top."
@@ -3936,10 +5079,6 @@
3936
5079
  }
3937
5080
  ]
3938
5081
  },
3939
- {
3940
- "name": "html-attributes",
3941
- "description": "Additional attributes to pass to the modal."
3942
- },
3943
5082
  {
3944
5083
  "name": "initial-breakpoint",
3945
5084
  "description": "A decimal value between 0 and 1 that indicates the\ninitial point the modal will open at when creating a\nsheet modal. This value must also be listed in the\n`breakpoints` array."
@@ -3956,13 +5095,9 @@
3956
5095
  "name": "keyboard-close",
3957
5096
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
3958
5097
  },
3959
- {
3960
- "name": "leave-animation",
3961
- "description": "Animation to use when the modal is dismissed."
3962
- },
3963
5098
  {
3964
5099
  "name": "mode",
3965
- "description": "The mode determines which platform styles to use.",
5100
+ "description": "The mode determines the platform behaviors of the component.",
3966
5101
  "values": [
3967
5102
  {
3968
5103
  "name": "ios"
@@ -3973,13 +5108,39 @@
3973
5108
  ]
3974
5109
  },
3975
5110
  {
3976
- "name": "presenting-element",
3977
- "description": "The element that presented the modal. This is used for card presentation effects\nand for stacking multiple modals on top of each other. Only applies in iOS mode."
5111
+ "name": "shape",
5112
+ "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.",
5113
+ "values": [
5114
+ {
5115
+ "name": "rectangular"
5116
+ },
5117
+ {
5118
+ "name": "round"
5119
+ },
5120
+ {
5121
+ "name": "soft"
5122
+ }
5123
+ ]
3978
5124
  },
3979
5125
  {
3980
5126
  "name": "show-backdrop",
3981
5127
  "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."
3982
5128
  },
5129
+ {
5130
+ "name": "theme",
5131
+ "description": "The theme determines the visual appearance of the component.",
5132
+ "values": [
5133
+ {
5134
+ "name": "ios"
5135
+ },
5136
+ {
5137
+ "name": "md"
5138
+ },
5139
+ {
5140
+ "name": "ionic"
5141
+ }
5142
+ ]
5143
+ },
3983
5144
  {
3984
5145
  "name": "trigger",
3985
5146
  "description": "An ID corresponding to the trigger element that\ncauses the modal to open when clicked."
@@ -4004,20 +5165,39 @@
4004
5165
  "description": "If `true`, the nav should animate the transition of components."
4005
5166
  },
4006
5167
  {
4007
- "name": "animation",
4008
- "description": "By default `ion-nav` animates transition between pages based in the mode (ios or material design).\nHowever, this property allows to create custom transition using `AnimationBuilder` functions."
5168
+ "name": "mode",
5169
+ "description": "The mode determines the platform behaviors of the component.",
5170
+ "values": [
5171
+ {
5172
+ "name": "ios"
5173
+ },
5174
+ {
5175
+ "name": "md"
5176
+ }
5177
+ ]
4009
5178
  },
4010
5179
  {
4011
5180
  "name": "root",
4012
5181
  "description": "Root NavComponent to load"
4013
5182
  },
4014
- {
4015
- "name": "root-params",
4016
- "description": "Any parameters for the root component"
4017
- },
4018
5183
  {
4019
5184
  "name": "swipe-gesture",
4020
5185
  "description": "If the nav component should allow for swipe-to-go-back."
5186
+ },
5187
+ {
5188
+ "name": "theme",
5189
+ "description": "The theme determines the visual appearance of the component.",
5190
+ "values": [
5191
+ {
5192
+ "name": "ios"
5193
+ },
5194
+ {
5195
+ "name": "md"
5196
+ },
5197
+ {
5198
+ "name": "ionic"
5199
+ }
5200
+ ]
4021
5201
  }
4022
5202
  ],
4023
5203
  "references": [
@@ -4039,12 +5219,16 @@
4039
5219
  "description": "Component to navigate to. Only used if the `routerDirection` is `\"forward\"` or `\"root\"`."
4040
5220
  },
4041
5221
  {
4042
- "name": "component-props",
4043
- "description": "Data you want to pass to the component as props. Only used if the `\"routerDirection\"` is `\"forward\"` or `\"root\"`."
4044
- },
4045
- {
4046
- "name": "router-animation",
4047
- "description": "The transition animation when navigating to another page."
5222
+ "name": "mode",
5223
+ "description": "The mode determines the platform behaviors of the component.",
5224
+ "values": [
5225
+ {
5226
+ "name": "ios"
5227
+ },
5228
+ {
5229
+ "name": "md"
5230
+ }
5231
+ ]
4048
5232
  },
4049
5233
  {
4050
5234
  "name": "router-direction",
@@ -4060,6 +5244,21 @@
4060
5244
  "name": "root"
4061
5245
  }
4062
5246
  ]
5247
+ },
5248
+ {
5249
+ "name": "theme",
5250
+ "description": "The theme determines the visual appearance of the component.",
5251
+ "values": [
5252
+ {
5253
+ "name": "ios"
5254
+ },
5255
+ {
5256
+ "name": "md"
5257
+ },
5258
+ {
5259
+ "name": "ionic"
5260
+ }
5261
+ ]
4063
5262
  }
4064
5263
  ],
4065
5264
  "references": [
@@ -4111,13 +5310,28 @@
4111
5310
  },
4112
5311
  {
4113
5312
  "name": "mode",
4114
- "description": "The mode determines which platform styles to use.",
5313
+ "description": "The mode determines the platform behaviors of the component.",
5314
+ "values": [
5315
+ {
5316
+ "name": "ios"
5317
+ },
5318
+ {
5319
+ "name": "md"
5320
+ }
5321
+ ]
5322
+ },
5323
+ {
5324
+ "name": "theme",
5325
+ "description": "The theme determines the visual appearance of the component.",
4115
5326
  "values": [
4116
5327
  {
4117
5328
  "name": "ios"
4118
5329
  },
4119
5330
  {
4120
5331
  "name": "md"
5332
+ },
5333
+ {
5334
+ "name": "ionic"
4121
5335
  }
4122
5336
  ]
4123
5337
  }
@@ -4138,7 +5352,7 @@
4138
5352
  "attributes": [
4139
5353
  {
4140
5354
  "name": "mode",
4141
- "description": "The mode determines which platform styles to use.",
5355
+ "description": "The mode determines the platform behaviors of the component.",
4142
5356
  "values": [
4143
5357
  {
4144
5358
  "name": "ios"
@@ -4147,6 +5361,21 @@
4147
5361
  "name": "md"
4148
5362
  }
4149
5363
  ]
5364
+ },
5365
+ {
5366
+ "name": "theme",
5367
+ "description": "The theme determines the visual appearance of the component.",
5368
+ "values": [
5369
+ {
5370
+ "name": "ios"
5371
+ },
5372
+ {
5373
+ "name": "md"
5374
+ },
5375
+ {
5376
+ "name": "ionic"
5377
+ }
5378
+ ]
4150
5379
  }
4151
5380
  ],
4152
5381
  "references": [
@@ -4202,13 +5431,28 @@
4202
5431
  },
4203
5432
  {
4204
5433
  "name": "mode",
4205
- "description": "The mode determines which platform styles to use.",
5434
+ "description": "The mode determines the platform behaviors of the component.",
5435
+ "values": [
5436
+ {
5437
+ "name": "ios"
5438
+ },
5439
+ {
5440
+ "name": "md"
5441
+ }
5442
+ ]
5443
+ },
5444
+ {
5445
+ "name": "theme",
5446
+ "description": "The theme determines the visual appearance of the component.",
4206
5447
  "values": [
4207
5448
  {
4208
5449
  "name": "ios"
4209
5450
  },
4210
5451
  {
4211
5452
  "name": "md"
5453
+ },
5454
+ {
5455
+ "name": "ionic"
4212
5456
  }
4213
5457
  ]
4214
5458
  },
@@ -4268,6 +5512,33 @@
4268
5512
  "name": "disabled",
4269
5513
  "description": "If `true`, the user cannot interact with the picker column option."
4270
5514
  },
5515
+ {
5516
+ "name": "mode",
5517
+ "description": "The mode determines the platform behaviors of the component.",
5518
+ "values": [
5519
+ {
5520
+ "name": "ios"
5521
+ },
5522
+ {
5523
+ "name": "md"
5524
+ }
5525
+ ]
5526
+ },
5527
+ {
5528
+ "name": "theme",
5529
+ "description": "The theme determines the visual appearance of the component.",
5530
+ "values": [
5531
+ {
5532
+ "name": "ios"
5533
+ },
5534
+ {
5535
+ "name": "md"
5536
+ },
5537
+ {
5538
+ "name": "ionic"
5539
+ }
5540
+ ]
5541
+ },
4271
5542
  {
4272
5543
  "name": "value",
4273
5544
  "description": "The text value of the option."
@@ -4295,14 +5566,6 @@
4295
5566
  "name": "backdrop-dismiss",
4296
5567
  "description": "If `true`, the picker will be dismissed when the backdrop is clicked."
4297
5568
  },
4298
- {
4299
- "name": "buttons",
4300
- "description": "Array of buttons to be displayed at the top of the picker."
4301
- },
4302
- {
4303
- "name": "columns",
4304
- "description": "Array of columns to be displayed in the picker."
4305
- },
4306
5569
  {
4307
5570
  "name": "css-class",
4308
5571
  "description": "Additional classes to apply for custom CSS. If multiple classes are\nprovided they should be separated by spaces."
@@ -4311,14 +5574,6 @@
4311
5574
  "name": "duration",
4312
5575
  "description": "Number of milliseconds to wait before dismissing the picker."
4313
5576
  },
4314
- {
4315
- "name": "enter-animation",
4316
- "description": "Animation to use when the picker is presented."
4317
- },
4318
- {
4319
- "name": "html-attributes",
4320
- "description": "Additional attributes to pass to the picker."
4321
- },
4322
5577
  {
4323
5578
  "name": "is-open",
4324
5579
  "description": "If `true`, the picker will open. If `false`, the picker will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the pickerController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe picker dismisses. You will need to do that in your code."
@@ -4327,13 +5582,9 @@
4327
5582
  "name": "keyboard-close",
4328
5583
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
4329
5584
  },
4330
- {
4331
- "name": "leave-animation",
4332
- "description": "Animation to use when the picker is dismissed."
4333
- },
4334
5585
  {
4335
5586
  "name": "mode",
4336
- "description": "The mode determines which platform styles to use.",
5587
+ "description": "The mode determines the platform behaviors of the component.",
4337
5588
  "values": [
4338
5589
  {
4339
5590
  "name": "ios"
@@ -4347,6 +5598,21 @@
4347
5598
  "name": "show-backdrop",
4348
5599
  "description": "If `true`, a backdrop will be displayed behind the picker."
4349
5600
  },
5601
+ {
5602
+ "name": "theme",
5603
+ "description": "The theme determines the visual appearance of the component.",
5604
+ "values": [
5605
+ {
5606
+ "name": "ios"
5607
+ },
5608
+ {
5609
+ "name": "md"
5610
+ },
5611
+ {
5612
+ "name": "ionic"
5613
+ }
5614
+ ]
5615
+ },
4350
5616
  {
4351
5617
  "name": "trigger",
4352
5618
  "description": "An ID corresponding to the trigger element that\ncauses the picker to open when clicked."
@@ -4368,7 +5634,7 @@
4368
5634
  "attributes": [
4369
5635
  {
4370
5636
  "name": "alignment",
4371
- "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `ios` mode, and `\"start\"` for `md` mode.",
5637
+ "description": "Describes how to align the popover content with the `reference` point.\nDefaults to `\"center\"` for `\"ios\"` theme, and `\"start\"` for `\"md\"` theme.",
4372
5638
  "values": [
4373
5639
  {
4374
5640
  "name": "center"
@@ -4387,7 +5653,7 @@
4387
5653
  },
4388
5654
  {
4389
5655
  "name": "arrow",
4390
- "description": "If `true`, the popover will display an arrow that points at the\n`reference` when running in `ios` mode. Does not apply in `md` mode."
5656
+ "description": "If `true`, the popover will display an arrow that points at the\n`reference` on `\"ios\"` theme."
4391
5657
  },
4392
5658
  {
4393
5659
  "name": "backdrop-dismiss",
@@ -4397,18 +5663,10 @@
4397
5663
  "name": "component",
4398
5664
  "description": "The component to display inside of the popover.\nYou only need to use this if you are not using\na JavaScript framework. Otherwise, you can just\nslot your component inside of `ion-popover`."
4399
5665
  },
4400
- {
4401
- "name": "component-props",
4402
- "description": "The data to pass to the popover component.\nYou only need to use this if you are not using\na JavaScript framework. Otherwise, you can just\nset the props directly on your component."
4403
- },
4404
5666
  {
4405
5667
  "name": "dismiss-on-select",
4406
5668
  "description": "If `true`, the popover will be automatically\ndismissed when the content has been clicked."
4407
5669
  },
4408
- {
4409
- "name": "enter-animation",
4410
- "description": "Animation to use when the popover is presented."
4411
- },
4412
5670
  {
4413
5671
  "name": "event",
4414
5672
  "description": "The event to pass to the popover animation."
@@ -4417,10 +5675,6 @@
4417
5675
  "name": "focus-trap",
4418
5676
  "description": "If `true`, focus will not be allowed to move outside of this overlay.\nIf `false`, focus will be allowed to move outside of the overlay.\n\nIn most scenarios this property should remain set to `true`. Setting\nthis property to `false` can cause severe accessibility issues as users\nrelying on assistive technologies may be able to move focus into\na confusing state. We recommend only setting this to `false` when\nabsolutely necessary.\n\nDevelopers may want to consider disabling focus trapping if this\noverlay presents a non-Ionic overlay from a 3rd party library.\nDevelopers would disable focus trapping on the Ionic overlay\nwhen presenting the 3rd party overlay and then re-enable\nfocus trapping when dismissing the 3rd party overlay and moving\nfocus back to the Ionic overlay."
4419
5677
  },
4420
- {
4421
- "name": "html-attributes",
4422
- "description": "Additional attributes to pass to the popover."
4423
- },
4424
5678
  {
4425
5679
  "name": "is-open",
4426
5680
  "description": "If `true`, the popover will open. If `false`, the popover will close.\nUse this if you need finer grained control over presentation, otherwise\njust use the popoverController or the `trigger` property.\nNote: `isOpen` will not automatically be set back to `false` when\nthe popover dismisses. You will need to do that in your code."
@@ -4433,13 +5687,9 @@
4433
5687
  "name": "keyboard-close",
4434
5688
  "description": "If `true`, the keyboard will be automatically dismissed when the overlay is presented."
4435
5689
  },
4436
- {
4437
- "name": "leave-animation",
4438
- "description": "Animation to use when the popover is dismissed."
4439
- },
4440
5690
  {
4441
5691
  "name": "mode",
4442
- "description": "The mode determines which platform styles to use.",
5692
+ "description": "The mode determines the platform behaviors of the component.",
4443
5693
  "values": [
4444
5694
  {
4445
5695
  "name": "ios"
@@ -4501,9 +5751,24 @@
4501
5751
  }
4502
5752
  ]
4503
5753
  },
5754
+ {
5755
+ "name": "theme",
5756
+ "description": "The theme determines the visual appearance of the component.",
5757
+ "values": [
5758
+ {
5759
+ "name": "ios"
5760
+ },
5761
+ {
5762
+ "name": "md"
5763
+ },
5764
+ {
5765
+ "name": "ionic"
5766
+ }
5767
+ ]
5768
+ },
4504
5769
  {
4505
5770
  "name": "translucent",
4506
- "description": "If `true`, the popover will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
5771
+ "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)."
4507
5772
  },
4508
5773
  {
4509
5774
  "name": "trigger",
@@ -4578,7 +5843,7 @@
4578
5843
  },
4579
5844
  {
4580
5845
  "name": "mode",
4581
- "description": "The mode determines which platform styles to use.",
5846
+ "description": "The mode determines the platform behaviors of the component.",
4582
5847
  "values": [
4583
5848
  {
4584
5849
  "name": "ios"
@@ -4592,6 +5857,33 @@
4592
5857
  "name": "reversed",
4593
5858
  "description": "If true, reverse the progress bar direction."
4594
5859
  },
5860
+ {
5861
+ "name": "shape",
5862
+ "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.",
5863
+ "values": [
5864
+ {
5865
+ "name": "rectangular"
5866
+ },
5867
+ {
5868
+ "name": "round"
5869
+ }
5870
+ ]
5871
+ },
5872
+ {
5873
+ "name": "theme",
5874
+ "description": "The theme determines the visual appearance of the component.",
5875
+ "values": [
5876
+ {
5877
+ "name": "ios"
5878
+ },
5879
+ {
5880
+ "name": "md"
5881
+ },
5882
+ {
5883
+ "name": "ionic"
5884
+ }
5885
+ ]
5886
+ },
4595
5887
  {
4596
5888
  "name": "type",
4597
5889
  "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).",
@@ -4707,7 +5999,7 @@
4707
5999
  },
4708
6000
  {
4709
6001
  "name": "mode",
4710
- "description": "The mode determines which platform styles to use.",
6002
+ "description": "The mode determines the platform behaviors of the component.",
4711
6003
  "values": [
4712
6004
  {
4713
6005
  "name": "ios"
@@ -4722,17 +6014,32 @@
4722
6014
  "description": "The name of the control, which is submitted with the form data."
4723
6015
  },
4724
6016
  {
4725
- "name": "value",
4726
- "description": "the value of the radio."
4727
- }
4728
- ],
4729
- "references": [
4730
- {
4731
- "name": "Source code",
4732
- "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/radio/radio.tsx"
4733
- }
4734
- ]
4735
- },
6017
+ "name": "theme",
6018
+ "description": "The theme determines the visual appearance of the component.",
6019
+ "values": [
6020
+ {
6021
+ "name": "ios"
6022
+ },
6023
+ {
6024
+ "name": "md"
6025
+ },
6026
+ {
6027
+ "name": "ionic"
6028
+ }
6029
+ ]
6030
+ },
6031
+ {
6032
+ "name": "value",
6033
+ "description": "the value of the radio."
6034
+ }
6035
+ ],
6036
+ "references": [
6037
+ {
6038
+ "name": "Source code",
6039
+ "url": "https:/github.com/ionic-team/ionic-framework/tree/main/core/src/components/radio/radio.tsx"
6040
+ }
6041
+ ]
6042
+ },
4736
6043
  {
4737
6044
  "name": "ion-radio-group",
4738
6045
  "description": {
@@ -4756,10 +6063,37 @@
4756
6063
  "name": "helper-text",
4757
6064
  "description": "The helper text to display at the top of the radio group."
4758
6065
  },
6066
+ {
6067
+ "name": "mode",
6068
+ "description": "The mode determines the platform behaviors of the component.",
6069
+ "values": [
6070
+ {
6071
+ "name": "ios"
6072
+ },
6073
+ {
6074
+ "name": "md"
6075
+ }
6076
+ ]
6077
+ },
4759
6078
  {
4760
6079
  "name": "name",
4761
6080
  "description": "The name of the control, which is submitted with the form data."
4762
6081
  },
6082
+ {
6083
+ "name": "theme",
6084
+ "description": "The theme determines the visual appearance of the component.",
6085
+ "values": [
6086
+ {
6087
+ "name": "ios"
6088
+ },
6089
+ {
6090
+ "name": "md"
6091
+ },
6092
+ {
6093
+ "name": "ionic"
6094
+ }
6095
+ ]
6096
+ },
4763
6097
  {
4764
6098
  "name": "value",
4765
6099
  "description": "the value of the radio group."
@@ -4860,7 +6194,7 @@
4860
6194
  },
4861
6195
  {
4862
6196
  "name": "mode",
4863
- "description": "The mode determines which platform styles to use.",
6197
+ "description": "The mode determines the platform behaviors of the component.",
4864
6198
  "values": [
4865
6199
  {
4866
6200
  "name": "ios"
@@ -4878,10 +6212,6 @@
4878
6212
  "name": "pin",
4879
6213
  "description": "If `true`, a pin with integer value is shown when the knob\nis pressed."
4880
6214
  },
4881
- {
4882
- "name": "pin-formatter",
4883
- "description": "A callback used to format the pin text.\nBy default the pin text is set to `Math.round(value)`.\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback."
4884
- },
4885
6215
  {
4886
6216
  "name": "snaps",
4887
6217
  "description": "If `true`, the knob snaps to tick marks evenly spaced based\non the step property value."
@@ -4890,6 +6220,21 @@
4890
6220
  "name": "step",
4891
6221
  "description": "Specifies the value granularity."
4892
6222
  },
6223
+ {
6224
+ "name": "theme",
6225
+ "description": "The theme determines the visual appearance of the component.",
6226
+ "values": [
6227
+ {
6228
+ "name": "ios"
6229
+ },
6230
+ {
6231
+ "name": "md"
6232
+ },
6233
+ {
6234
+ "name": "ionic"
6235
+ }
6236
+ ]
6237
+ },
4893
6238
  {
4894
6239
  "name": "ticks",
4895
6240
  "description": "If `true`, tick marks are displayed based on the step value.\nOnly applies when `snaps` is `true`."
@@ -4923,7 +6268,7 @@
4923
6268
  },
4924
6269
  {
4925
6270
  "name": "mode",
4926
- "description": "The mode determines which platform styles to use.",
6271
+ "description": "The mode determines the platform behaviors of the component.",
4927
6272
  "values": [
4928
6273
  {
4929
6274
  "name": "ios"
@@ -4948,6 +6293,21 @@
4948
6293
  {
4949
6294
  "name": "snapback-duration",
4950
6295
  "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."
6296
+ },
6297
+ {
6298
+ "name": "theme",
6299
+ "description": "The theme determines the visual appearance of the component.",
6300
+ "values": [
6301
+ {
6302
+ "name": "ios"
6303
+ },
6304
+ {
6305
+ "name": "md"
6306
+ },
6307
+ {
6308
+ "name": "ionic"
6309
+ }
6310
+ ]
4951
6311
  }
4952
6312
  ],
4953
6313
  "references": [
@@ -4964,6 +6324,18 @@
4964
6324
  "value": ""
4965
6325
  },
4966
6326
  "attributes": [
6327
+ {
6328
+ "name": "mode",
6329
+ "description": "The mode determines the platform behaviors of the component.",
6330
+ "values": [
6331
+ {
6332
+ "name": "ios"
6333
+ },
6334
+ {
6335
+ "name": "md"
6336
+ }
6337
+ ]
6338
+ },
4967
6339
  {
4968
6340
  "name": "pulling-icon",
4969
6341
  "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."
@@ -5008,6 +6380,21 @@
5008
6380
  {
5009
6381
  "name": "refreshing-text",
5010
6382
  "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`&lt;Ionic&gt;`\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."
6383
+ },
6384
+ {
6385
+ "name": "theme",
6386
+ "description": "The theme determines the visual appearance of the component.",
6387
+ "values": [
6388
+ {
6389
+ "name": "ios"
6390
+ },
6391
+ {
6392
+ "name": "md"
6393
+ },
6394
+ {
6395
+ "name": "ionic"
6396
+ }
6397
+ ]
5011
6398
  }
5012
6399
  ],
5013
6400
  "references": [
@@ -5023,7 +6410,35 @@
5023
6410
  "kind": "markdown",
5024
6411
  "value": ""
5025
6412
  },
5026
- "attributes": [],
6413
+ "attributes": [
6414
+ {
6415
+ "name": "mode",
6416
+ "description": "The mode determines the platform behaviors of the component.",
6417
+ "values": [
6418
+ {
6419
+ "name": "ios"
6420
+ },
6421
+ {
6422
+ "name": "md"
6423
+ }
6424
+ ]
6425
+ },
6426
+ {
6427
+ "name": "theme",
6428
+ "description": "The theme determines the visual appearance of the component.",
6429
+ "values": [
6430
+ {
6431
+ "name": "ios"
6432
+ },
6433
+ {
6434
+ "name": "md"
6435
+ },
6436
+ {
6437
+ "name": "ionic"
6438
+ }
6439
+ ]
6440
+ }
6441
+ ],
5027
6442
  "references": [
5028
6443
  {
5029
6444
  "name": "Source code",
@@ -5041,6 +6456,33 @@
5041
6456
  {
5042
6457
  "name": "disabled",
5043
6458
  "description": "If `true`, the reorder will be hidden."
6459
+ },
6460
+ {
6461
+ "name": "mode",
6462
+ "description": "The mode determines the platform behaviors of the component.",
6463
+ "values": [
6464
+ {
6465
+ "name": "ios"
6466
+ },
6467
+ {
6468
+ "name": "md"
6469
+ }
6470
+ ]
6471
+ },
6472
+ {
6473
+ "name": "theme",
6474
+ "description": "The theme determines the visual appearance of the component.",
6475
+ "values": [
6476
+ {
6477
+ "name": "ios"
6478
+ },
6479
+ {
6480
+ "name": "md"
6481
+ },
6482
+ {
6483
+ "name": "ionic"
6484
+ }
6485
+ ]
5044
6486
  }
5045
6487
  ],
5046
6488
  "references": [
@@ -5057,6 +6499,33 @@
5057
6499
  "value": ""
5058
6500
  },
5059
6501
  "attributes": [
6502
+ {
6503
+ "name": "mode",
6504
+ "description": "The mode determines the platform behaviors of the component.",
6505
+ "values": [
6506
+ {
6507
+ "name": "ios"
6508
+ },
6509
+ {
6510
+ "name": "md"
6511
+ }
6512
+ ]
6513
+ },
6514
+ {
6515
+ "name": "theme",
6516
+ "description": "The theme determines the visual appearance of the component.",
6517
+ "values": [
6518
+ {
6519
+ "name": "ios"
6520
+ },
6521
+ {
6522
+ "name": "md"
6523
+ },
6524
+ {
6525
+ "name": "ionic"
6526
+ }
6527
+ ]
6528
+ },
5060
6529
  {
5061
6530
  "name": "type",
5062
6531
  "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.",
@@ -5084,21 +6553,36 @@
5084
6553
  "value": ""
5085
6554
  },
5086
6555
  "attributes": [
5087
- {
5088
- "name": "before-enter",
5089
- "description": "A navigation hook that is fired when the route tries to enter.\nReturning `true` allows the navigation to proceed, while returning\n`false` causes it to be cancelled. Returning a `NavigationHookOptions`\nobject causes the router to redirect to the path specified."
5090
- },
5091
- {
5092
- "name": "before-leave",
5093
- "description": "A navigation hook that is fired when the route tries to leave.\nReturning `true` allows the navigation to proceed, while returning\n`false` causes it to be cancelled. Returning a `NavigationHookOptions`\nobject causes the router to redirect to the path specified."
5094
- },
5095
6556
  {
5096
6557
  "name": "component",
5097
6558
  "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."
5098
6559
  },
5099
6560
  {
5100
- "name": "component-props",
5101
- "description": "A key value `{ 'red': true, 'blue': 'white'}` containing props that should be passed\nto the defined component when rendered."
6561
+ "name": "mode",
6562
+ "description": "The mode determines the platform behaviors of the component.",
6563
+ "values": [
6564
+ {
6565
+ "name": "ios"
6566
+ },
6567
+ {
6568
+ "name": "md"
6569
+ }
6570
+ ]
6571
+ },
6572
+ {
6573
+ "name": "theme",
6574
+ "description": "The theme determines the visual appearance of the component.",
6575
+ "values": [
6576
+ {
6577
+ "name": "ios"
6578
+ },
6579
+ {
6580
+ "name": "md"
6581
+ },
6582
+ {
6583
+ "name": "ionic"
6584
+ }
6585
+ ]
5102
6586
  },
5103
6587
  {
5104
6588
  "name": "url",
@@ -5142,10 +6626,37 @@
5142
6626
  "value": ""
5143
6627
  },
5144
6628
  "attributes": [
6629
+ {
6630
+ "name": "mode",
6631
+ "description": "The mode determines the platform behaviors of the component.",
6632
+ "values": [
6633
+ {
6634
+ "name": "ios"
6635
+ },
6636
+ {
6637
+ "name": "md"
6638
+ }
6639
+ ]
6640
+ },
5145
6641
  {
5146
6642
  "name": "root",
5147
6643
  "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."
5148
6644
  },
6645
+ {
6646
+ "name": "theme",
6647
+ "description": "The theme determines the visual appearance of the component.",
6648
+ "values": [
6649
+ {
6650
+ "name": "ios"
6651
+ },
6652
+ {
6653
+ "name": "md"
6654
+ },
6655
+ {
6656
+ "name": "ionic"
6657
+ }
6658
+ ]
6659
+ },
5149
6660
  {
5150
6661
  "name": "use-hash",
5151
6662
  "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."
@@ -5203,12 +6714,20 @@
5203
6714
  "description": "Contains a URL or a URL fragment that the hyperlink points to.\nIf this property is set, an anchor tag will be rendered."
5204
6715
  },
5205
6716
  {
5206
- "name": "rel",
5207
- "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)."
6717
+ "name": "mode",
6718
+ "description": "The mode determines the platform behaviors of the component.",
6719
+ "values": [
6720
+ {
6721
+ "name": "ios"
6722
+ },
6723
+ {
6724
+ "name": "md"
6725
+ }
6726
+ ]
5208
6727
  },
5209
6728
  {
5210
- "name": "router-animation",
5211
- "description": "When using a router, it specifies the transition animation when navigating to\nanother page using `href`."
6729
+ "name": "rel",
6730
+ "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)."
5212
6731
  },
5213
6732
  {
5214
6733
  "name": "router-direction",
@@ -5228,6 +6747,21 @@
5228
6747
  {
5229
6748
  "name": "target",
5230
6749
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
6750
+ },
6751
+ {
6752
+ "name": "theme",
6753
+ "description": "The theme determines the visual appearance of the component.",
6754
+ "values": [
6755
+ {
6756
+ "name": "ios"
6757
+ },
6758
+ {
6759
+ "name": "md"
6760
+ },
6761
+ {
6762
+ "name": "ionic"
6763
+ }
6764
+ ]
5231
6765
  }
5232
6766
  ],
5233
6767
  "references": [
@@ -5249,18 +6783,29 @@
5249
6783
  "description": "If `true`, the router-outlet should animate the transition of components."
5250
6784
  },
5251
6785
  {
5252
- "name": "animation",
5253
- "description": "This property allows to create custom transition using AnimationBuilder functions."
6786
+ "name": "mode",
6787
+ "description": "The mode determines the platform behaviors of the component.",
6788
+ "values": [
6789
+ {
6790
+ "name": "ios"
6791
+ },
6792
+ {
6793
+ "name": "md"
6794
+ }
6795
+ ]
5254
6796
  },
5255
6797
  {
5256
- "name": "mode",
5257
- "description": "The mode determines which platform styles to use.",
6798
+ "name": "theme",
6799
+ "description": "The theme determines the visual appearance of the component.",
5258
6800
  "values": [
5259
6801
  {
5260
6802
  "name": "ios"
5261
6803
  },
5262
6804
  {
5263
6805
  "name": "md"
6806
+ },
6807
+ {
6808
+ "name": "ionic"
5264
6809
  }
5265
6810
  ]
5266
6811
  }
@@ -5278,7 +6823,35 @@
5278
6823
  "kind": "markdown",
5279
6824
  "value": ""
5280
6825
  },
5281
- "attributes": [],
6826
+ "attributes": [
6827
+ {
6828
+ "name": "mode",
6829
+ "description": "The mode determines the platform behaviors of the component.",
6830
+ "values": [
6831
+ {
6832
+ "name": "ios"
6833
+ },
6834
+ {
6835
+ "name": "md"
6836
+ }
6837
+ ]
6838
+ },
6839
+ {
6840
+ "name": "theme",
6841
+ "description": "The theme determines the visual appearance of the component.",
6842
+ "values": [
6843
+ {
6844
+ "name": "ios"
6845
+ },
6846
+ {
6847
+ "name": "md"
6848
+ },
6849
+ {
6850
+ "name": "ionic"
6851
+ }
6852
+ ]
6853
+ }
6854
+ ],
5282
6855
  "references": [
5283
6856
  {
5284
6857
  "name": "Source code",
@@ -5308,80 +6881,74 @@
5308
6881
  {
5309
6882
  "name": "name"
5310
6883
  },
5311
- {
5312
- "name": "email"
5313
- },
5314
- {
5315
- "name": "tel"
5316
- },
5317
6884
  {
5318
6885
  "name": "url"
5319
6886
  },
5320
6887
  {
5321
- "name": "on"
6888
+ "name": "off"
5322
6889
  },
5323
6890
  {
5324
- "name": "off"
6891
+ "name": "on"
5325
6892
  },
5326
6893
  {
5327
- "name": "honorific-prefix"
6894
+ "name": "additional-name"
5328
6895
  },
5329
6896
  {
5330
- "name": "given-name"
6897
+ "name": "address-level1"
5331
6898
  },
5332
6899
  {
5333
- "name": "additional-name"
6900
+ "name": "address-level2"
5334
6901
  },
5335
6902
  {
5336
- "name": "family-name"
6903
+ "name": "address-level3"
5337
6904
  },
5338
6905
  {
5339
- "name": "honorific-suffix"
6906
+ "name": "address-level4"
5340
6907
  },
5341
6908
  {
5342
- "name": "nickname"
6909
+ "name": "address-line1"
5343
6910
  },
5344
6911
  {
5345
- "name": "username"
6912
+ "name": "address-line2"
5346
6913
  },
5347
6914
  {
5348
- "name": "new-password"
6915
+ "name": "address-line3"
5349
6916
  },
5350
6917
  {
5351
- "name": "current-password"
6918
+ "name": "bday-day"
5352
6919
  },
5353
6920
  {
5354
- "name": "one-time-code"
6921
+ "name": "bday-month"
5355
6922
  },
5356
6923
  {
5357
- "name": "organization-title"
6924
+ "name": "bday-year"
5358
6925
  },
5359
6926
  {
5360
- "name": "organization"
6927
+ "name": "cc-csc"
5361
6928
  },
5362
6929
  {
5363
- "name": "street-address"
6930
+ "name": "cc-exp"
5364
6931
  },
5365
6932
  {
5366
- "name": "address-line1"
6933
+ "name": "cc-exp-month"
5367
6934
  },
5368
6935
  {
5369
- "name": "address-line2"
6936
+ "name": "cc-exp-year"
5370
6937
  },
5371
6938
  {
5372
- "name": "address-line3"
6939
+ "name": "cc-family-name"
5373
6940
  },
5374
6941
  {
5375
- "name": "address-level4"
6942
+ "name": "cc-given-name"
5376
6943
  },
5377
6944
  {
5378
- "name": "address-level3"
6945
+ "name": "cc-name"
5379
6946
  },
5380
6947
  {
5381
- "name": "address-level2"
6948
+ "name": "cc-number"
5382
6949
  },
5383
6950
  {
5384
- "name": "address-level1"
6951
+ "name": "cc-type"
5385
6952
  },
5386
6953
  {
5387
6954
  "name": "country"
@@ -5390,76 +6957,82 @@
5390
6957
  "name": "country-name"
5391
6958
  },
5392
6959
  {
5393
- "name": "postal-code"
6960
+ "name": "current-password"
5394
6961
  },
5395
6962
  {
5396
- "name": "cc-name"
6963
+ "name": "family-name"
5397
6964
  },
5398
6965
  {
5399
- "name": "cc-given-name"
6966
+ "name": "given-name"
5400
6967
  },
5401
6968
  {
5402
- "name": "cc-additional-name"
6969
+ "name": "honorific-prefix"
5403
6970
  },
5404
6971
  {
5405
- "name": "cc-family-name"
6972
+ "name": "honorific-suffix"
5406
6973
  },
5407
6974
  {
5408
- "name": "cc-number"
6975
+ "name": "new-password"
5409
6976
  },
5410
6977
  {
5411
- "name": "cc-exp"
6978
+ "name": "one-time-code"
5412
6979
  },
5413
6980
  {
5414
- "name": "cc-exp-month"
6981
+ "name": "organization"
5415
6982
  },
5416
6983
  {
5417
- "name": "cc-exp-year"
6984
+ "name": "postal-code"
5418
6985
  },
5419
6986
  {
5420
- "name": "cc-csc"
6987
+ "name": "street-address"
5421
6988
  },
5422
6989
  {
5423
- "name": "cc-type"
6990
+ "name": "transaction-amount"
5424
6991
  },
5425
6992
  {
5426
6993
  "name": "transaction-currency"
5427
6994
  },
5428
6995
  {
5429
- "name": "transaction-amount"
6996
+ "name": "username"
6997
+ },
6998
+ {
6999
+ "name": "email"
7000
+ },
7001
+ {
7002
+ "name": "tel"
5430
7003
  },
5431
7004
  {
5432
- "name": "language"
7005
+ "name": "tel-area-code"
5433
7006
  },
5434
7007
  {
5435
- "name": "bday"
7008
+ "name": "tel-country-code"
5436
7009
  },
5437
7010
  {
5438
- "name": "bday-day"
7011
+ "name": "tel-extension"
5439
7012
  },
5440
7013
  {
5441
- "name": "bday-month"
7014
+ "name": "tel-local"
5442
7015
  },
5443
7016
  {
5444
- "name": "bday-year"
7017
+ "name": "tel-national"
5445
7018
  },
5446
7019
  {
5447
- "name": "sex"
7020
+ "name": "nickname"
5448
7021
  },
5449
7022
  {
5450
- "name": "tel-country-code"
7023
+ "name": "organization-title"
5451
7024
  },
5452
7025
  {
5453
- "name": "tel-national"
7026
+ "name": "cc-additional-name"
5454
7027
  },
5455
7028
  {
5456
- "name": "tel-area-code"
7029
+ "name": "language"
5457
7030
  },
5458
7031
  {
5459
- "name": "tel-local"
7032
+ "name": "bday"
5460
7033
  },
5461
7034
  {
5462
- "name": "tel-extension"
7035
+ "name": "sex"
5463
7036
  },
5464
7037
  {
5465
7038
  "name": "impp"
@@ -5483,15 +7056,15 @@
5483
7056
  },
5484
7057
  {
5485
7058
  "name": "cancel-button-icon",
5486
- "description": "Set the cancel button icon. Only applies to `md` mode.\nDefaults to `arrow-back-sharp`."
7059
+ "description": "Set the cancel button icon. Only available when the theme is `\"md\"`.\nDefaults to `\"arrow-back-sharp\"`."
5487
7060
  },
5488
7061
  {
5489
7062
  "name": "cancel-button-text",
5490
- "description": "Set the cancel button text. Only applies to `ios` mode."
7063
+ "description": "Set the cancel button text. Only available when the theme is `\"ios\"`."
5491
7064
  },
5492
7065
  {
5493
7066
  "name": "clear-icon",
5494
- "description": "Set the clear icon. Defaults to `close-circle` for `ios` and `close-sharp` for `md`."
7067
+ "description": "Set the clear icon. Defaults to `\"close-circle\"` for `\"ios\"` theme and `\"close-sharp\"` for `\"md\"` and `\"ionic\"` theme."
5495
7068
  },
5496
7069
  {
5497
7070
  "name": "color",
@@ -5601,7 +7174,7 @@
5601
7174
  },
5602
7175
  {
5603
7176
  "name": "mode",
5604
- "description": "The mode determines which platform styles to use.",
7177
+ "description": "The mode determines the platform behaviors of the component.",
5605
7178
  "values": [
5606
7179
  {
5607
7180
  "name": "ios"
@@ -5621,7 +7194,22 @@
5621
7194
  },
5622
7195
  {
5623
7196
  "name": "search-icon",
5624
- "description": "The icon to use as the search icon. Defaults to `search-outline` in\n`ios` mode and `search-sharp` in `md` mode."
7197
+ "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."
7198
+ },
7199
+ {
7200
+ "name": "shape",
7201
+ "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.",
7202
+ "values": [
7203
+ {
7204
+ "name": "rectangular"
7205
+ },
7206
+ {
7207
+ "name": "round"
7208
+ },
7209
+ {
7210
+ "name": "soft"
7211
+ }
7212
+ ]
5625
7213
  },
5626
7214
  {
5627
7215
  "name": "show-cancel-button",
@@ -5653,10 +7241,40 @@
5653
7241
  }
5654
7242
  ]
5655
7243
  },
7244
+ {
7245
+ "name": "size",
7246
+ "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.",
7247
+ "values": [
7248
+ {
7249
+ "name": "large"
7250
+ },
7251
+ {
7252
+ "name": "medium"
7253
+ },
7254
+ {
7255
+ "name": "small"
7256
+ }
7257
+ ]
7258
+ },
5656
7259
  {
5657
7260
  "name": "spellcheck",
5658
7261
  "description": "If `true`, enable spellcheck on the input."
5659
7262
  },
7263
+ {
7264
+ "name": "theme",
7265
+ "description": "The theme determines the visual appearance of the component.",
7266
+ "values": [
7267
+ {
7268
+ "name": "ios"
7269
+ },
7270
+ {
7271
+ "name": "md"
7272
+ },
7273
+ {
7274
+ "name": "ionic"
7275
+ }
7276
+ ]
7277
+ },
5660
7278
  {
5661
7279
  "name": "type",
5662
7280
  "description": "Set the type of the input.",
@@ -5742,7 +7360,7 @@
5742
7360
  },
5743
7361
  {
5744
7362
  "name": "mode",
5745
- "description": "The mode determines which platform styles to use.",
7363
+ "description": "The mode determines the platform behaviors of the component.",
5746
7364
  "values": [
5747
7365
  {
5748
7366
  "name": "ios"
@@ -5764,6 +7382,21 @@
5764
7382
  "name": "swipe-gesture",
5765
7383
  "description": "If `true`, users will be able to swipe between segment buttons to activate them."
5766
7384
  },
7385
+ {
7386
+ "name": "theme",
7387
+ "description": "The theme determines the visual appearance of the component.",
7388
+ "values": [
7389
+ {
7390
+ "name": "ios"
7391
+ },
7392
+ {
7393
+ "name": "md"
7394
+ },
7395
+ {
7396
+ "name": "ionic"
7397
+ }
7398
+ ]
7399
+ },
5767
7400
  {
5768
7401
  "name": "value",
5769
7402
  "description": "the value of the segment."
@@ -5817,13 +7450,28 @@
5817
7450
  },
5818
7451
  {
5819
7452
  "name": "mode",
5820
- "description": "The mode determines which platform styles to use.",
7453
+ "description": "The mode determines the platform behaviors of the component.",
7454
+ "values": [
7455
+ {
7456
+ "name": "ios"
7457
+ },
7458
+ {
7459
+ "name": "md"
7460
+ }
7461
+ ]
7462
+ },
7463
+ {
7464
+ "name": "theme",
7465
+ "description": "The theme determines the visual appearance of the component.",
5821
7466
  "values": [
5822
7467
  {
5823
7468
  "name": "ios"
5824
7469
  },
5825
7470
  {
5826
7471
  "name": "md"
7472
+ },
7473
+ {
7474
+ "name": "ionic"
5827
7475
  }
5828
7476
  ]
5829
7477
  },
@@ -5945,11 +7593,11 @@
5945
7593
  },
5946
7594
  {
5947
7595
  "name": "expanded-icon",
5948
- "description": "The toggle icon to show when the select is open. If defined, the icon\nrotation behavior in `md` mode will be disabled. If undefined, `toggleIcon`\nwill be used for when the select is both open and closed."
7596
+ "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."
5949
7597
  },
5950
7598
  {
5951
7599
  "name": "fill",
5952
- "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 `md` mode.",
7600
+ "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.",
5953
7601
  "values": [
5954
7602
  {
5955
7603
  "name": "outline"
@@ -6027,7 +7675,7 @@
6027
7675
  },
6028
7676
  {
6029
7677
  "name": "mode",
6030
- "description": "The mode determines which platform styles to use.",
7678
+ "description": "The mode determines the platform behaviors of the component.",
6031
7679
  "values": [
6032
7680
  {
6033
7681
  "name": "ios"
@@ -6063,16 +7711,52 @@
6063
7711
  },
6064
7712
  {
6065
7713
  "name": "shape",
6066
- "description": "The shape of the select. If \"round\" it will have an increased border radius.",
7714
+ "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.",
6067
7715
  "values": [
7716
+ {
7717
+ "name": "rectangular"
7718
+ },
6068
7719
  {
6069
7720
  "name": "round"
7721
+ },
7722
+ {
7723
+ "name": "soft"
7724
+ }
7725
+ ]
7726
+ },
7727
+ {
7728
+ "name": "size",
7729
+ "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.",
7730
+ "values": [
7731
+ {
7732
+ "name": "large"
7733
+ },
7734
+ {
7735
+ "name": "medium"
7736
+ },
7737
+ {
7738
+ "name": "small"
7739
+ }
7740
+ ]
7741
+ },
7742
+ {
7743
+ "name": "theme",
7744
+ "description": "The theme determines the visual appearance of the component.",
7745
+ "values": [
7746
+ {
7747
+ "name": "ios"
7748
+ },
7749
+ {
7750
+ "name": "md"
7751
+ },
7752
+ {
7753
+ "name": "ionic"
6070
7754
  }
6071
7755
  ]
6072
7756
  },
6073
7757
  {
6074
7758
  "name": "toggle-icon",
6075
- "description": "The toggle icon to use. Defaults to `chevronExpand` for `ios` mode,\nor `caretDownSharp` for `md` mode."
7759
+ "description": "The toggle icon to use. Defaults to `\"chevronExpand\"` for the `\"ios\"` theme,\nor `\"caretDownSharp\"` for the `\"md\"` and `\"ionic\"` themes."
6076
7760
  },
6077
7761
  {
6078
7762
  "name": "value",
@@ -6100,10 +7784,6 @@
6100
7784
  {
6101
7785
  "name": "multiple",
6102
7786
  "description": ""
6103
- },
6104
- {
6105
- "name": "options",
6106
- "description": ""
6107
7787
  }
6108
7788
  ],
6109
7789
  "references": [
@@ -6124,6 +7804,33 @@
6124
7804
  "name": "disabled",
6125
7805
  "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."
6126
7806
  },
7807
+ {
7808
+ "name": "mode",
7809
+ "description": "The mode determines the platform behaviors of the component.",
7810
+ "values": [
7811
+ {
7812
+ "name": "ios"
7813
+ },
7814
+ {
7815
+ "name": "md"
7816
+ }
7817
+ ]
7818
+ },
7819
+ {
7820
+ "name": "theme",
7821
+ "description": "The theme determines the visual appearance of the component.",
7822
+ "values": [
7823
+ {
7824
+ "name": "ios"
7825
+ },
7826
+ {
7827
+ "name": "md"
7828
+ },
7829
+ {
7830
+ "name": "ionic"
7831
+ }
7832
+ ]
7833
+ },
6127
7834
  {
6128
7835
  "name": "value",
6129
7836
  "description": "The text value of the option."
@@ -6146,6 +7853,33 @@
6146
7853
  {
6147
7854
  "name": "animated",
6148
7855
  "description": "If `true`, the skeleton text will animate."
7856
+ },
7857
+ {
7858
+ "name": "mode",
7859
+ "description": "The mode determines the platform behaviors of the component.",
7860
+ "values": [
7861
+ {
7862
+ "name": "ios"
7863
+ },
7864
+ {
7865
+ "name": "md"
7866
+ }
7867
+ ]
7868
+ },
7869
+ {
7870
+ "name": "theme",
7871
+ "description": "The theme determines the visual appearance of the component.",
7872
+ "values": [
7873
+ {
7874
+ "name": "ios"
7875
+ },
7876
+ {
7877
+ "name": "md"
7878
+ },
7879
+ {
7880
+ "name": "ionic"
7881
+ }
7882
+ ]
6149
7883
  }
6150
7884
  ],
6151
7885
  "references": [
@@ -6199,6 +7933,18 @@
6199
7933
  "name": "duration",
6200
7934
  "description": "Duration of the spinner animation in milliseconds. The default varies based on the spinner."
6201
7935
  },
7936
+ {
7937
+ "name": "mode",
7938
+ "description": "The mode determines the platform behaviors of the component.",
7939
+ "values": [
7940
+ {
7941
+ "name": "ios"
7942
+ },
7943
+ {
7944
+ "name": "md"
7945
+ }
7946
+ ]
7947
+ },
6202
7948
  {
6203
7949
  "name": "name",
6204
7950
  "description": "The name of the SVG spinner to use. If a name is not provided, the platform's default\nspinner will be used.",
@@ -6235,6 +7981,42 @@
6235
7981
  {
6236
7982
  "name": "paused",
6237
7983
  "description": "If `true`, the spinner's animation will be paused."
7984
+ },
7985
+ {
7986
+ "name": "size",
7987
+ "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.",
7988
+ "values": [
7989
+ {
7990
+ "name": "large"
7991
+ },
7992
+ {
7993
+ "name": "medium"
7994
+ },
7995
+ {
7996
+ "name": "small"
7997
+ },
7998
+ {
7999
+ "name": "xlarge"
8000
+ },
8001
+ {
8002
+ "name": "xsmall"
8003
+ }
8004
+ ]
8005
+ },
8006
+ {
8007
+ "name": "theme",
8008
+ "description": "The theme determines the visual appearance of the component.",
8009
+ "values": [
8010
+ {
8011
+ "name": "ios"
8012
+ },
8013
+ {
8014
+ "name": "md"
8015
+ },
8016
+ {
8017
+ "name": "ionic"
8018
+ }
8019
+ ]
6238
8020
  }
6239
8021
  ],
6240
8022
  "references": [
@@ -6259,6 +8041,33 @@
6259
8041
  "name": "disabled",
6260
8042
  "description": "If `true`, the split pane will be hidden."
6261
8043
  },
8044
+ {
8045
+ "name": "mode",
8046
+ "description": "The mode determines the platform behaviors of the component.",
8047
+ "values": [
8048
+ {
8049
+ "name": "ios"
8050
+ },
8051
+ {
8052
+ "name": "md"
8053
+ }
8054
+ ]
8055
+ },
8056
+ {
8057
+ "name": "theme",
8058
+ "description": "The theme determines the visual appearance of the component.",
8059
+ "values": [
8060
+ {
8061
+ "name": "ios"
8062
+ },
8063
+ {
8064
+ "name": "md"
8065
+ },
8066
+ {
8067
+ "name": "ionic"
8068
+ }
8069
+ ]
8070
+ },
6262
8071
  {
6263
8072
  "name": "when",
6264
8073
  "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."
@@ -6282,9 +8091,36 @@
6282
8091
  "name": "component",
6283
8092
  "description": "The component to display inside of the tab."
6284
8093
  },
8094
+ {
8095
+ "name": "mode",
8096
+ "description": "The mode determines the platform behaviors of the component.",
8097
+ "values": [
8098
+ {
8099
+ "name": "ios"
8100
+ },
8101
+ {
8102
+ "name": "md"
8103
+ }
8104
+ ]
8105
+ },
6285
8106
  {
6286
8107
  "name": "tab",
6287
8108
  "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."
8109
+ },
8110
+ {
8111
+ "name": "theme",
8112
+ "description": "The theme determines the visual appearance of the component.",
8113
+ "values": [
8114
+ {
8115
+ "name": "ios"
8116
+ },
8117
+ {
8118
+ "name": "md"
8119
+ },
8120
+ {
8121
+ "name": "ionic"
8122
+ }
8123
+ ]
6288
8124
  }
6289
8125
  ],
6290
8126
  "references": [
@@ -6334,9 +8170,21 @@
6334
8170
  }
6335
8171
  ]
6336
8172
  },
8173
+ {
8174
+ "name": "expand",
8175
+ "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\"`.",
8176
+ "values": [
8177
+ {
8178
+ "name": "compact"
8179
+ },
8180
+ {
8181
+ "name": "full"
8182
+ }
8183
+ ]
8184
+ },
6337
8185
  {
6338
8186
  "name": "mode",
6339
- "description": "The mode determines which platform styles to use.",
8187
+ "description": "The mode determines the platform behaviors of the component.",
6340
8188
  "values": [
6341
8189
  {
6342
8190
  "name": "ios"
@@ -6350,9 +8198,39 @@
6350
8198
  "name": "selected-tab",
6351
8199
  "description": "The selected tab component"
6352
8200
  },
8201
+ {
8202
+ "name": "shape",
8203
+ "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.",
8204
+ "values": [
8205
+ {
8206
+ "name": "rectangular"
8207
+ },
8208
+ {
8209
+ "name": "round"
8210
+ },
8211
+ {
8212
+ "name": "soft"
8213
+ }
8214
+ ]
8215
+ },
8216
+ {
8217
+ "name": "theme",
8218
+ "description": "The theme determines the visual appearance of the component.",
8219
+ "values": [
8220
+ {
8221
+ "name": "ios"
8222
+ },
8223
+ {
8224
+ "name": "md"
8225
+ },
8226
+ {
8227
+ "name": "ionic"
8228
+ }
8229
+ ]
8230
+ },
6353
8231
  {
6354
8232
  "name": "translucent",
6355
- "description": "If `true`, the tab bar will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
8233
+ "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)."
6356
8234
  }
6357
8235
  ],
6358
8236
  "references": [
@@ -6407,7 +8285,7 @@
6407
8285
  },
6408
8286
  {
6409
8287
  "name": "mode",
6410
- "description": "The mode determines which platform styles to use.",
8288
+ "description": "The mode determines the platform behaviors of the component.",
6411
8289
  "values": [
6412
8290
  {
6413
8291
  "name": "ios"
@@ -6425,6 +8303,21 @@
6425
8303
  "name": "selected",
6426
8304
  "description": "The selected tab component"
6427
8305
  },
8306
+ {
8307
+ "name": "shape",
8308
+ "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.",
8309
+ "values": [
8310
+ {
8311
+ "name": "rectangular"
8312
+ },
8313
+ {
8314
+ "name": "round"
8315
+ },
8316
+ {
8317
+ "name": "soft"
8318
+ }
8319
+ ]
8320
+ },
6428
8321
  {
6429
8322
  "name": "tab",
6430
8323
  "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."
@@ -6432,6 +8325,21 @@
6432
8325
  {
6433
8326
  "name": "target",
6434
8327
  "description": "Specifies where to display the linked URL.\nOnly applies when an `href` is provided.\nSpecial keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`."
8328
+ },
8329
+ {
8330
+ "name": "theme",
8331
+ "description": "The theme determines the visual appearance of the component.",
8332
+ "values": [
8333
+ {
8334
+ "name": "ios"
8335
+ },
8336
+ {
8337
+ "name": "md"
8338
+ },
8339
+ {
8340
+ "name": "ionic"
8341
+ }
8342
+ ]
6435
8343
  }
6436
8344
  ],
6437
8345
  "references": [
@@ -6447,7 +8355,35 @@
6447
8355
  "kind": "markdown",
6448
8356
  "value": ""
6449
8357
  },
6450
- "attributes": [],
8358
+ "attributes": [
8359
+ {
8360
+ "name": "mode",
8361
+ "description": "The mode determines the platform behaviors of the component.",
8362
+ "values": [
8363
+ {
8364
+ "name": "ios"
8365
+ },
8366
+ {
8367
+ "name": "md"
8368
+ }
8369
+ ]
8370
+ },
8371
+ {
8372
+ "name": "theme",
8373
+ "description": "The theme determines the visual appearance of the component.",
8374
+ "values": [
8375
+ {
8376
+ "name": "ios"
8377
+ },
8378
+ {
8379
+ "name": "md"
8380
+ },
8381
+ {
8382
+ "name": "ionic"
8383
+ }
8384
+ ]
8385
+ }
8386
+ ],
6451
8387
  "references": [
6452
8388
  {
6453
8389
  "name": "Source code",
@@ -6497,13 +8433,28 @@
6497
8433
  },
6498
8434
  {
6499
8435
  "name": "mode",
6500
- "description": "The mode determines which platform styles to use.",
8436
+ "description": "The mode determines the platform behaviors of the component.",
8437
+ "values": [
8438
+ {
8439
+ "name": "ios"
8440
+ },
8441
+ {
8442
+ "name": "md"
8443
+ }
8444
+ ]
8445
+ },
8446
+ {
8447
+ "name": "theme",
8448
+ "description": "The theme determines the visual appearance of the component.",
6501
8449
  "values": [
6502
8450
  {
6503
8451
  "name": "ios"
6504
8452
  },
6505
8453
  {
6506
8454
  "name": "md"
8455
+ },
8456
+ {
8457
+ "name": "ionic"
6507
8458
  }
6508
8459
  ]
6509
8460
  }
@@ -6579,10 +8530,6 @@
6579
8530
  "name": "counter",
6580
8531
  "description": "If `true`, a character counter will display the ratio of characters used and the total character limit.\nDevelopers must also set the `maxlength` property for the counter to be calculated correctly."
6581
8532
  },
6582
- {
6583
- "name": "counter-formatter",
6584
- "description": "A callback used to format the counter text.\nBy default the counter text is set to \"itemLength / maxLength\".\n\nSee https://ionicframework.com/docs/troubleshooting/runtime#accessing-this\nif you need to access `this` from within the callback."
6585
- },
6586
8533
  {
6587
8534
  "name": "debounce",
6588
8535
  "description": "Set the amount of time, in milliseconds, to wait to trigger the `ionInput` event after each keystroke."
@@ -6624,7 +8571,7 @@
6624
8571
  },
6625
8572
  {
6626
8573
  "name": "fill",
6627
- "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 `md` mode.",
8574
+ "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\"`.",
6628
8575
  "values": [
6629
8576
  {
6630
8577
  "name": "outline"
@@ -6703,7 +8650,7 @@
6703
8650
  },
6704
8651
  {
6705
8652
  "name": "mode",
6706
- "description": "The mode determines which platform styles to use.",
8653
+ "description": "The mode determines the platform behaviors of the component.",
6707
8654
  "values": [
6708
8655
  {
6709
8656
  "name": "ios"
@@ -6735,10 +8682,31 @@
6735
8682
  },
6736
8683
  {
6737
8684
  "name": "shape",
6738
- "description": "The shape of the textarea. If \"round\" it will have an increased border radius.",
8685
+ "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.",
6739
8686
  "values": [
8687
+ {
8688
+ "name": "rectangular"
8689
+ },
6740
8690
  {
6741
8691
  "name": "round"
8692
+ },
8693
+ {
8694
+ "name": "soft"
8695
+ }
8696
+ ]
8697
+ },
8698
+ {
8699
+ "name": "size",
8700
+ "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.",
8701
+ "values": [
8702
+ {
8703
+ "name": "large"
8704
+ },
8705
+ {
8706
+ "name": "medium"
8707
+ },
8708
+ {
8709
+ "name": "small"
6742
8710
  }
6743
8711
  ]
6744
8712
  },
@@ -6746,6 +8714,21 @@
6746
8714
  "name": "spellcheck",
6747
8715
  "description": "If `true`, the element will have its spelling and grammar checked."
6748
8716
  },
8717
+ {
8718
+ "name": "theme",
8719
+ "description": "The theme determines the visual appearance of the component.",
8720
+ "values": [
8721
+ {
8722
+ "name": "ios"
8723
+ },
8724
+ {
8725
+ "name": "md"
8726
+ },
8727
+ {
8728
+ "name": "ionic"
8729
+ }
8730
+ ]
8731
+ },
6749
8732
  {
6750
8733
  "name": "value",
6751
8734
  "description": "The value of the textarea."
@@ -6779,7 +8762,35 @@
6779
8762
  "kind": "markdown",
6780
8763
  "value": ""
6781
8764
  },
6782
- "attributes": [],
8765
+ "attributes": [
8766
+ {
8767
+ "name": "mode",
8768
+ "description": "The mode determines the platform behaviors of the component.",
8769
+ "values": [
8770
+ {
8771
+ "name": "ios"
8772
+ },
8773
+ {
8774
+ "name": "md"
8775
+ }
8776
+ ]
8777
+ },
8778
+ {
8779
+ "name": "theme",
8780
+ "description": "The theme determines the visual appearance of the component.",
8781
+ "values": [
8782
+ {
8783
+ "name": "ios"
8784
+ },
8785
+ {
8786
+ "name": "md"
8787
+ },
8788
+ {
8789
+ "name": "ionic"
8790
+ }
8791
+ ]
8792
+ }
8793
+ ],
6783
8794
  "references": [
6784
8795
  {
6785
8796
  "name": "Source code",
@@ -6827,6 +8838,18 @@
6827
8838
  }
6828
8839
  ]
6829
8840
  },
8841
+ {
8842
+ "name": "mode",
8843
+ "description": "The mode determines the platform behaviors of the component.",
8844
+ "values": [
8845
+ {
8846
+ "name": "ios"
8847
+ },
8848
+ {
8849
+ "name": "md"
8850
+ }
8851
+ ]
8852
+ },
6830
8853
  {
6831
8854
  "name": "size",
6832
8855
  "description": "The size of the toolbar title.",
@@ -6838,6 +8861,21 @@
6838
8861
  "name": "small"
6839
8862
  }
6840
8863
  ]
8864
+ },
8865
+ {
8866
+ "name": "theme",
8867
+ "description": "The theme determines the visual appearance of the component.",
8868
+ "values": [
8869
+ {
8870
+ "name": "ios"
8871
+ },
8872
+ {
8873
+ "name": "md"
8874
+ },
8875
+ {
8876
+ "name": "ionic"
8877
+ }
8878
+ ]
6841
8879
  }
6842
8880
  ],
6843
8881
  "references": [
@@ -6858,10 +8896,6 @@
6858
8896
  "name": "animated",
6859
8897
  "description": "If `true`, the toast will animate."
6860
8898
  },
6861
- {
6862
- "name": "buttons",
6863
- "description": "An array of buttons for the toast."
6864
- },
6865
8899
  {
6866
8900
  "name": "color",
6867
8901
  "description": "The color to use from your application's color palette.\nDefault options are: `\"primary\"`, `\"secondary\"`, `\"tertiary\"`, `\"success\"`, `\"warning\"`, `\"danger\"`, `\"light\"`, `\"medium\"`, and `\"dark\"`.\nFor more information on colors, see [theming](/docs/theming/basics).",
@@ -6903,17 +8937,21 @@
6903
8937
  "name": "duration",
6904
8938
  "description": "How many milliseconds to wait before hiding the toast. By default, it will show\nuntil `dismiss()` is called."
6905
8939
  },
6906
- {
6907
- "name": "enter-animation",
6908
- "description": "Animation to use when the toast is presented."
6909
- },
6910
8940
  {
6911
8941
  "name": "header",
6912
8942
  "description": "Header to be shown in the toast."
6913
8943
  },
6914
8944
  {
6915
- "name": "html-attributes",
6916
- "description": "Additional attributes to pass to the toast."
8945
+ "name": "hue",
8946
+ "description": "Set to `\"bold\"` for a toast with vibrant, bold colors or to `\"subtle\"` for\na toast with muted, subtle colors.\n\nOnly applies to the `ionic` theme.",
8947
+ "values": [
8948
+ {
8949
+ "name": "bold"
8950
+ },
8951
+ {
8952
+ "name": "subtle"
8953
+ }
8954
+ ]
6917
8955
  },
6918
8956
  {
6919
8957
  "name": "icon",
@@ -6939,17 +8977,13 @@
6939
8977
  }
6940
8978
  ]
6941
8979
  },
6942
- {
6943
- "name": "leave-animation",
6944
- "description": "Animation to use when the toast is dismissed."
6945
- },
6946
8980
  {
6947
8981
  "name": "message",
6948
8982
  "description": "Message to be shown in the toast.\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."
6949
8983
  },
6950
8984
  {
6951
8985
  "name": "mode",
6952
- "description": "The mode determines which platform styles to use.",
8986
+ "description": "The mode determines the platform behaviors of the component.",
6953
8987
  "values": [
6954
8988
  {
6955
8989
  "name": "ios"
@@ -6978,6 +9012,21 @@
6978
9012
  "name": "position-anchor",
6979
9013
  "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."
6980
9014
  },
9015
+ {
9016
+ "name": "shape",
9017
+ "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.",
9018
+ "values": [
9019
+ {
9020
+ "name": "rectangular"
9021
+ },
9022
+ {
9023
+ "name": "round"
9024
+ },
9025
+ {
9026
+ "name": "soft"
9027
+ }
9028
+ ]
9029
+ },
6981
9030
  {
6982
9031
  "name": "swipe-gesture",
6983
9032
  "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.",
@@ -6987,9 +9036,24 @@
6987
9036
  }
6988
9037
  ]
6989
9038
  },
9039
+ {
9040
+ "name": "theme",
9041
+ "description": "The theme determines the visual appearance of the component.",
9042
+ "values": [
9043
+ {
9044
+ "name": "ios"
9045
+ },
9046
+ {
9047
+ "name": "md"
9048
+ },
9049
+ {
9050
+ "name": "ionic"
9051
+ }
9052
+ ]
9053
+ },
6990
9054
  {
6991
9055
  "name": "translucent",
6992
- "description": "If `true`, the toast will be translucent.\nOnly applies when the mode is `\"ios\"` and the device supports\n[`backdrop-filter`](https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter#Browser_compatibility)."
9056
+ "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)."
6993
9057
  },
6994
9058
  {
6995
9059
  "name": "trigger",
@@ -7110,7 +9174,7 @@
7110
9174
  },
7111
9175
  {
7112
9176
  "name": "mode",
7113
- "description": "The mode determines which platform styles to use.",
9177
+ "description": "The mode determines the platform behaviors of the component.",
7114
9178
  "values": [
7115
9179
  {
7116
9180
  "name": "ios"
@@ -7128,6 +9192,21 @@
7128
9192
  "name": "required",
7129
9193
  "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."
7130
9194
  },
9195
+ {
9196
+ "name": "theme",
9197
+ "description": "The theme determines the visual appearance of the component.",
9198
+ "values": [
9199
+ {
9200
+ "name": "ios"
9201
+ },
9202
+ {
9203
+ "name": "md"
9204
+ },
9205
+ {
9206
+ "name": "ionic"
9207
+ }
9208
+ ]
9209
+ },
7131
9210
  {
7132
9211
  "name": "value",
7133
9212
  "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>`."
@@ -7182,13 +9261,28 @@
7182
9261
  },
7183
9262
  {
7184
9263
  "name": "mode",
7185
- "description": "The mode determines which platform styles to use.",
9264
+ "description": "The mode determines the platform behaviors of the component.",
9265
+ "values": [
9266
+ {
9267
+ "name": "ios"
9268
+ },
9269
+ {
9270
+ "name": "md"
9271
+ }
9272
+ ]
9273
+ },
9274
+ {
9275
+ "name": "theme",
9276
+ "description": "The theme determines the visual appearance of the component.",
7186
9277
  "values": [
7187
9278
  {
7188
9279
  "name": "ios"
7189
9280
  },
7190
9281
  {
7191
9282
  "name": "md"
9283
+ },
9284
+ {
9285
+ "name": "ionic"
7192
9286
  }
7193
9287
  ]
7194
9288
  }