@ionic/core 8.7.5-nightly.20250924 → 8.7.6-dev.11758808200.14faa1a0

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 (930) hide show
  1. package/components/action-sheet.js +13 -9
  2. package/components/alert.js +14 -11
  3. package/components/animation.js +1 -1
  4. package/components/backdrop.js +9 -6
  5. package/components/button.js +41 -10
  6. package/components/buttons.js +11 -8
  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 +31 -12
  12. package/components/content.js +14 -12
  13. package/components/data.js +5 -5
  14. package/components/focus-visible.js +23 -1
  15. package/components/framework-delegate.js +3 -1
  16. package/components/header.js +28 -16
  17. package/components/helpers.js +42 -3
  18. package/components/index5.js +8 -8
  19. package/components/index6.js +1 -1
  20. package/components/index7.js +111 -150
  21. package/components/index8.js +150 -111
  22. package/components/input-shims.js +2 -2
  23. package/components/input.utils.js +1 -1
  24. package/components/ion-accordion-group.js +23 -5
  25. package/components/ion-accordion.js +32 -21
  26. package/components/ion-app.js +12 -77
  27. package/components/ion-avatar.js +58 -5
  28. package/components/ion-back-button.js +27 -19
  29. package/components/ion-badge.js +73 -9
  30. package/components/ion-breadcrumb.js +43 -10
  31. package/components/ion-breadcrumbs.js +8 -5
  32. package/components/ion-card-content.js +10 -7
  33. package/components/ion-card-header.js +9 -6
  34. package/components/ion-card-subtitle.js +8 -5
  35. package/components/ion-card-title.js +8 -5
  36. package/components/ion-card.js +21 -9
  37. package/components/ion-chip.js +53 -8
  38. package/components/ion-col.js +51 -50
  39. package/components/ion-datetime-button.js +8 -5
  40. package/components/ion-datetime.js +98 -21
  41. package/components/ion-divider.d.ts +11 -0
  42. package/components/ion-divider.js +70 -0
  43. package/components/ion-fab-button.js +31 -15
  44. package/components/ion-fab-list.js +5 -5
  45. package/components/ion-fab.js +6 -6
  46. package/components/ion-footer.js +18 -13
  47. package/components/ion-grid.js +5 -5
  48. package/components/ion-img.js +5 -2
  49. package/components/ion-infinite-scroll-content.js +11 -8
  50. package/components/ion-infinite-scroll.js +78 -6
  51. package/components/ion-input-otp.js +9 -6
  52. package/components/ion-input-password-toggle.js +51 -13
  53. package/components/ion-input.js +120 -28
  54. package/components/ion-item-divider.js +8 -5
  55. package/components/ion-item-group.js +8 -5
  56. package/components/ion-item-option.js +36 -9
  57. package/components/ion-item-options.js +10 -7
  58. package/components/ion-item-sliding.js +5 -5
  59. package/components/ion-loading.js +12 -9
  60. package/components/ion-menu-button.js +26 -10
  61. package/components/ion-menu-toggle.js +5 -5
  62. package/components/ion-menu.js +10 -8
  63. package/components/ion-nav-link.js +1 -1
  64. package/components/ion-nav.js +7 -5
  65. package/components/ion-note.js +8 -5
  66. package/components/ion-picker-legacy.js +7 -7
  67. package/components/ion-progress-bar.js +25 -7
  68. package/components/ion-range.js +12 -9
  69. package/components/ion-refresher-content.js +23 -8
  70. package/components/ion-refresher.js +10 -7
  71. package/components/ion-reorder-group.js +5 -5
  72. package/components/ion-reorder.js +30 -5
  73. package/components/ion-router-link.js +6 -6
  74. package/components/ion-router-outlet.js +4 -4
  75. package/components/ion-row.js +6 -3
  76. package/components/ion-searchbar.js +137 -23
  77. package/components/ion-segment-button.js +10 -7
  78. package/components/ion-segment-content.js +1 -1
  79. package/components/ion-segment-view.js +5 -2
  80. package/components/ion-segment.js +10 -7
  81. package/components/ion-select-option.js +5 -2
  82. package/components/ion-select.js +117 -33
  83. package/components/ion-skeleton-text.js +5 -5
  84. package/components/ion-split-pane.js +11 -8
  85. package/components/ion-tab-bar.js +39 -9
  86. package/components/ion-tab-button.js +25 -7
  87. package/components/ion-tab.js +2 -2
  88. package/components/ion-tabs.js +2 -2
  89. package/components/ion-text.js +5 -5
  90. package/components/ion-textarea.js +52 -11
  91. package/components/ion-thumbnail.js +5 -2
  92. package/components/ion-toast.js +37 -12
  93. package/components/ion-toggle.js +74 -17
  94. package/components/ionic-global.js +349 -15
  95. package/components/ios.transition.js +1 -0
  96. package/components/item.js +39 -14
  97. package/components/keyboard-controller.js +4 -2
  98. package/components/label.js +8 -5
  99. package/components/list-header.js +10 -7
  100. package/components/list.js +27 -6
  101. package/components/list2.js +6 -0
  102. package/components/modal.js +60 -22
  103. package/components/notch-controller.js +1 -1
  104. package/components/overlays.js +42 -21
  105. package/components/picker-column-option.js +8 -5
  106. package/components/picker-column.js +7 -8
  107. package/components/picker-column2.js +4 -4
  108. package/components/picker.js +7 -4
  109. package/components/popover.js +12 -9
  110. package/components/radio-group.js +10 -5
  111. package/components/radio.js +11 -8
  112. package/components/ripple-effect.js +15 -7
  113. package/components/select-modal.js +4 -4
  114. package/components/select-popover.js +8 -2
  115. package/components/spinner.js +31 -8
  116. package/components/status-tap.js +1 -1
  117. package/components/title.js +10 -7
  118. package/components/toolbar.js +153 -9
  119. package/components/x.js +6 -0
  120. package/css/core.css +1 -1
  121. package/css/core.css.map +1 -1
  122. package/css/display.css +1 -1
  123. package/css/display.css.map +1 -1
  124. package/css/flex-utils.css +1 -1
  125. package/css/flex-utils.css.map +1 -1
  126. package/css/float-elements.css.map +1 -1
  127. package/css/global.bundle.css.map +1 -1
  128. package/css/ionic/bundle.ionic.css +1 -0
  129. package/css/ionic/bundle.ionic.css.map +1 -0
  130. package/css/ionic/core.ionic.css +1 -0
  131. package/css/ionic/core.ionic.css.map +1 -0
  132. package/css/ionic/global.bundle.ionic.css +1 -0
  133. package/css/ionic/global.bundle.ionic.css.map +1 -0
  134. package/css/ionic/ionic-swiper.ionic.css +1 -0
  135. package/css/ionic/ionic-swiper.ionic.css.map +1 -0
  136. package/css/ionic/link.ionic.css +1 -0
  137. package/css/ionic/link.ionic.css.map +1 -0
  138. package/css/ionic/structure.ionic.css +1 -0
  139. package/css/ionic/structure.ionic.css.map +1 -0
  140. package/css/ionic/typography.ionic.css +1 -0
  141. package/css/ionic/typography.ionic.css.map +1 -0
  142. package/css/ionic/utils.bundle.ionic.css +1 -0
  143. package/css/ionic/utils.bundle.ionic.css.map +1 -0
  144. package/css/ionic-swiper.css +1 -1
  145. package/css/ionic-swiper.css.map +1 -1
  146. package/css/ionic.bundle.css +1 -1
  147. package/css/ionic.bundle.css.map +1 -1
  148. package/css/normalize.css.map +1 -1
  149. package/css/padding.css.map +1 -1
  150. package/css/palettes/dark.always.css.map +1 -1
  151. package/css/palettes/dark.class.css.map +1 -1
  152. package/css/palettes/dark.system.css.map +1 -1
  153. package/css/palettes/high-contrast-dark.always.css.map +1 -1
  154. package/css/palettes/high-contrast-dark.class.css.map +1 -1
  155. package/css/palettes/high-contrast-dark.system.css.map +1 -1
  156. package/css/palettes/high-contrast.always.css.map +1 -1
  157. package/css/palettes/high-contrast.class.css.map +1 -1
  158. package/css/palettes/high-contrast.system.css.map +1 -1
  159. package/css/structure.css.map +1 -1
  160. package/css/text-alignment.css.map +1 -1
  161. package/css/text-transformation.css.map +1 -1
  162. package/css/typography.css.map +1 -1
  163. package/css/utils.bundle.css +1 -1
  164. package/css/utils.bundle.css.map +1 -1
  165. package/dist/cjs/{animation-ZJ1lAkZD.js → animation-BXRtNUgm.js} +2 -2
  166. package/dist/cjs/{app-globals-77ZfuXXk.js → app-globals-x_8DXqdl.js} +1 -1
  167. package/dist/cjs/{button-active-BzZenWWH.js → button-active-BcEaeF5Y.js} +1 -1
  168. package/dist/cjs/{capacitor-DmA66EwP.js → capacitor-CVcQYFDK.js} +3 -3
  169. package/dist/cjs/caret-down-vtVgfXIs.js +8 -0
  170. package/dist/cjs/caret-left-CxZXLRv5.js +8 -0
  171. package/dist/cjs/caret-right-CRCgv98E.js +8 -0
  172. package/dist/cjs/{data-DW6ofvJ8.js → data-Crxp8jrQ.js} +5 -5
  173. package/dist/cjs/{focus-visible-CCvKiLh3.js → focus-visible-BIj-I3-C.js} +24 -0
  174. package/dist/cjs/{framework-delegate-WkyjrnCx.js → framework-delegate-D94PxJL6.js} +4 -2
  175. package/dist/cjs/{haptic-ClPPQ_PS.js → haptic-r0GBrUII.js} +1 -1
  176. package/dist/cjs/{helpers-DgwmcYAu.js → helpers-CYFB2_7O.js} +41 -2
  177. package/dist/cjs/{index-D24wggHR.js → index-DgkpUJvi.js} +15 -15
  178. package/dist/cjs/{index-BzEyuIww.js → index-DkmXWuZ7.js} +3 -3
  179. package/dist/cjs/{index-Cc5PNMyz.js → index-DsE1tD-q.js} +1 -1
  180. package/dist/cjs/{index-bGpoPC4u.js → index-MoROIJ3n.js} +8 -7
  181. package/dist/cjs/index.cjs.js +10 -11
  182. package/dist/cjs/{input-shims-CLI_OrmU.js → input-shims-temHXqvt.js} +17 -16
  183. package/dist/cjs/{input.utils-B2hZ5tX6.js → input.utils-8JmSrYpP.js} +5 -5
  184. package/dist/cjs/ion-accordion_2.cjs.entry.js +55 -26
  185. package/dist/cjs/ion-action-sheet.cjs.entry.js +21 -18
  186. package/dist/cjs/ion-alert.cjs.entry.js +22 -20
  187. package/dist/cjs/ion-app_8.cjs.entry.js +243 -144
  188. package/dist/cjs/ion-avatar_3.cjs.entry.js +123 -11
  189. package/dist/cjs/ion-back-button.cjs.entry.js +28 -19
  190. package/dist/cjs/ion-backdrop.cjs.entry.js +9 -6
  191. package/dist/cjs/ion-breadcrumb_2.cjs.entry.js +51 -15
  192. package/dist/cjs/ion-button_2.cjs.entry.js +43 -11
  193. package/dist/cjs/ion-card_5.cjs.entry.js +53 -29
  194. package/dist/cjs/ion-checkbox.cjs.entry.js +31 -13
  195. package/dist/cjs/ion-chip.cjs.entry.js +48 -7
  196. package/dist/cjs/ion-col_3.cjs.entry.js +53 -56
  197. package/dist/cjs/ion-datetime-button.cjs.entry.js +11 -7
  198. package/dist/cjs/ion-datetime_3.cjs.entry.js +113 -38
  199. package/dist/cjs/ion-divider.cjs.entry.js +51 -0
  200. package/dist/cjs/ion-fab_3.cjs.entry.js +41 -25
  201. package/dist/cjs/ion-img.cjs.entry.js +7 -3
  202. package/dist/cjs/ion-infinite-scroll_2.cjs.entry.js +89 -14
  203. package/dist/cjs/ion-input-otp.cjs.entry.js +11 -7
  204. package/dist/cjs/ion-input-password-toggle.cjs.entry.js +50 -12
  205. package/dist/cjs/ion-input.cjs.entry.js +120 -30
  206. package/dist/cjs/ion-item-option_3.cjs.entry.js +48 -19
  207. package/dist/cjs/ion-item_8.cjs.entry.js +105 -45
  208. package/dist/cjs/ion-loading.cjs.entry.js +17 -15
  209. package/dist/cjs/ion-menu_3.cjs.entry.js +44 -26
  210. package/dist/cjs/ion-modal.cjs.entry.js +108 -71
  211. package/dist/cjs/ion-nav_2.cjs.entry.js +13 -10
  212. package/dist/cjs/ion-picker-column-option.cjs.entry.js +10 -6
  213. package/dist/cjs/ion-picker-column.cjs.entry.js +12 -12
  214. package/dist/cjs/ion-picker.cjs.entry.js +9 -5
  215. package/dist/cjs/ion-popover.cjs.entry.js +18 -16
  216. package/dist/cjs/ion-progress-bar.cjs.entry.js +25 -7
  217. package/dist/cjs/ion-radio_2.cjs.entry.js +22 -13
  218. package/dist/cjs/ion-range.cjs.entry.js +14 -10
  219. package/dist/cjs/ion-refresher_2.cjs.entry.js +36 -18
  220. package/dist/cjs/ion-reorder_2.cjs.entry.js +36 -12
  221. package/dist/cjs/ion-ripple-effect.cjs.entry.js +14 -6
  222. package/dist/cjs/ion-route_4.cjs.entry.js +8 -7
  223. package/dist/cjs/ion-searchbar.cjs.entry.js +134 -21
  224. package/dist/cjs/ion-segment-content.cjs.entry.js +1 -1
  225. package/dist/cjs/ion-segment-view.cjs.entry.js +5 -2
  226. package/dist/cjs/ion-segment_2.cjs.entry.js +21 -14
  227. package/dist/cjs/ion-select-modal.cjs.entry.js +8 -9
  228. package/dist/cjs/ion-select_3.cjs.entry.js +129 -38
  229. package/dist/cjs/ion-spinner.cjs.entry.js +28 -6
  230. package/dist/cjs/ion-split-pane.cjs.entry.js +11 -8
  231. package/dist/cjs/ion-tab-bar_2.cjs.entry.js +65 -20
  232. package/dist/cjs/ion-tab_2.cjs.entry.js +7 -6
  233. package/dist/cjs/ion-text.cjs.entry.js +5 -5
  234. package/dist/cjs/ion-textarea.cjs.entry.js +55 -15
  235. package/dist/cjs/ion-toast.cjs.entry.js +66 -43
  236. package/dist/cjs/ion-toggle.cjs.entry.js +78 -21
  237. package/dist/cjs/ionic-global-RZLbse4y.js +491 -0
  238. package/dist/cjs/ionic.cjs.js +3 -3
  239. package/dist/cjs/{ios.transition-DEitrLlG.js → ios.transition-CWI22viS.js} +6 -4
  240. package/dist/cjs/{keyboard-UuAS4D_9.js → keyboard-BZdohzZu.js} +1 -1
  241. package/dist/cjs/{keyboard-hHzlEQpk.js → keyboard-ByZ4Ulg3.js} +4 -3
  242. package/dist/cjs/{keyboard-controller-GXBiBRKS.js → keyboard-controller-B-dr5t4a.js} +11 -9
  243. package/dist/cjs/list-a-7GSA6K.js +8 -0
  244. package/dist/cjs/loader.cjs.js +3 -3
  245. package/dist/cjs/{md.transition-BHtGC-Wg.js → md.transition-BxMmPf_q.js} +5 -4
  246. package/dist/cjs/{notch-controller-Bf5Rr4R5.js → notch-controller-BmjMp6Co.js} +4 -4
  247. package/dist/cjs/{overlays-v_jc1Hok.js → overlays-DEgXBxFs.js} +47 -26
  248. package/dist/cjs/{status-tap-D9YPr62n.js → status-tap-D-MulHQM.js} +3 -2
  249. package/dist/cjs/{swipe-back-C1wRtoww.js → swipe-back-C5W5r-1A.js} +2 -1
  250. package/dist/cjs/x-BTF99yFH.js +8 -0
  251. package/dist/collection/collection-manifest.json +1 -0
  252. package/dist/collection/components/accordion/accordion.ionic.css +196 -0
  253. package/dist/collection/components/accordion/accordion.ios.css +73 -58
  254. package/dist/collection/components/accordion/accordion.js +36 -26
  255. package/dist/collection/components/accordion/accordion.md.css +67 -59
  256. package/dist/collection/components/accordion-group/accordion-group.ionic.css +93 -0
  257. package/dist/collection/components/accordion-group/accordion-group.ios.css +16 -4
  258. package/dist/collection/components/accordion-group/accordion-group.js +44 -8
  259. package/dist/collection/components/accordion-group/accordion-group.md.css +22 -4
  260. package/dist/collection/components/action-sheet/action-sheet.ios.css +18 -6
  261. package/dist/collection/components/action-sheet/action-sheet.js +15 -11
  262. package/dist/collection/components/action-sheet/action-sheet.md.css +17 -5
  263. package/dist/collection/components/alert/alert.ios.css +19 -1
  264. package/dist/collection/components/alert/alert.js +16 -13
  265. package/dist/collection/components/alert/alert.md.css +19 -1
  266. package/dist/collection/components/app/app.js +15 -78
  267. package/dist/collection/components/avatar/avatar.ionic.css +391 -0
  268. package/dist/collection/components/avatar/avatar.ios.css +7 -33
  269. package/dist/collection/components/avatar/avatar.js +120 -4
  270. package/dist/collection/components/avatar/avatar.md.css +51 -0
  271. package/dist/collection/components/back-button/back-button.ios.css +60 -48
  272. package/dist/collection/components/back-button/back-button.js +27 -19
  273. package/dist/collection/components/back-button/back-button.md.css +60 -48
  274. package/dist/collection/components/backdrop/backdrop.ionic.css +109 -0
  275. package/dist/collection/components/backdrop/backdrop.ios.css +56 -19
  276. package/dist/collection/components/backdrop/backdrop.js +12 -6
  277. package/dist/collection/components/backdrop/backdrop.md.css +56 -19
  278. package/dist/collection/components/badge/badge.ionic.css +275 -0
  279. package/dist/collection/components/badge/badge.ios.css +139 -12
  280. package/dist/collection/components/badge/badge.js +145 -9
  281. package/dist/collection/components/badge/badge.md.css +123 -12
  282. package/dist/collection/components/breadcrumb/breadcrumb.ios.css +20 -8
  283. package/dist/collection/components/breadcrumb/breadcrumb.js +43 -11
  284. package/dist/collection/components/breadcrumb/breadcrumb.md.css +20 -8
  285. package/dist/collection/components/breadcrumbs/breadcrumbs.ios.css +6 -0
  286. package/dist/collection/components/breadcrumbs/breadcrumbs.js +11 -9
  287. package/dist/collection/components/breadcrumbs/breadcrumbs.md.css +6 -0
  288. package/dist/collection/components/button/button.ionic.css +620 -0
  289. package/dist/collection/components/button/button.ios.css +135 -46
  290. package/dist/collection/components/button/button.js +48 -17
  291. package/dist/collection/components/button/button.md.css +126 -50
  292. package/dist/collection/components/buttons/buttons.ionic.css +97 -0
  293. package/dist/collection/components/buttons/buttons.ios.css +59 -7
  294. package/dist/collection/components/buttons/buttons.js +15 -9
  295. package/dist/collection/components/buttons/buttons.md.css +55 -3
  296. package/dist/collection/components/card/card.ionic.css +144 -0
  297. package/dist/collection/components/card/card.ios.css +65 -14
  298. package/dist/collection/components/card/card.js +41 -10
  299. package/dist/collection/components/card/card.md.css +65 -14
  300. package/dist/collection/components/card-content/card-content.ionic.css +92 -0
  301. package/dist/collection/components/card-content/card-content.ios.css +16 -1
  302. package/dist/collection/components/card-content/card-content.js +11 -8
  303. package/dist/collection/components/card-content/card-content.md.css +16 -1
  304. package/dist/collection/components/card-header/card-header.ionic.css +85 -0
  305. package/dist/collection/components/card-header/card-header.ios.css +27 -15
  306. package/dist/collection/components/card-header/card-header.js +13 -10
  307. package/dist/collection/components/card-header/card-header.md.css +27 -15
  308. package/dist/collection/components/card-subtitle/card-subtitle.ionic.css +144 -0
  309. package/dist/collection/components/card-subtitle/card-subtitle.ios.css +12 -0
  310. package/dist/collection/components/card-subtitle/card-subtitle.js +11 -8
  311. package/dist/collection/components/card-subtitle/card-subtitle.md.css +12 -0
  312. package/dist/collection/components/card-title/card-title.ios.css +73 -0
  313. package/dist/collection/components/card-title/card-title.js +11 -8
  314. package/dist/collection/components/card-title/card-title.md.css +73 -0
  315. package/dist/collection/components/checkbox/checkbox.ionic.css +539 -0
  316. package/dist/collection/components/checkbox/checkbox.ios.css +161 -101
  317. package/dist/collection/components/checkbox/checkbox.js +70 -14
  318. package/dist/collection/components/checkbox/checkbox.md.css +162 -102
  319. package/dist/collection/components/chip/chip.ionic.css +228 -0
  320. package/dist/collection/components/chip/chip.ios.css +67 -14
  321. package/dist/collection/components/chip/chip.js +108 -8
  322. package/dist/collection/components/chip/chip.md.css +67 -14
  323. package/dist/collection/components/col/col.css +192 -4
  324. package/dist/collection/components/col/col.js +210 -61
  325. package/dist/collection/components/content/content.css +8 -2
  326. package/dist/collection/components/content/content.js +16 -11
  327. package/dist/collection/components/datetime/datetime.ionic.css +697 -0
  328. package/dist/collection/components/datetime/datetime.ios.css +242 -86
  329. package/dist/collection/components/datetime/datetime.js +98 -20
  330. package/dist/collection/components/datetime/datetime.md.css +242 -86
  331. package/dist/collection/components/datetime/utils/data.js +5 -5
  332. package/dist/collection/components/datetime-button/datetime-button.ios.css +6 -0
  333. package/dist/collection/components/datetime-button/datetime-button.js +11 -8
  334. package/dist/collection/components/datetime-button/datetime-button.md.css +6 -0
  335. package/dist/collection/components/divider/divider.ionic.css +148 -0
  336. package/dist/collection/components/divider/divider.ios.css +87 -0
  337. package/dist/collection/components/divider/divider.js +94 -0
  338. package/dist/collection/components/divider/divider.md.css +87 -0
  339. package/dist/collection/components/fab/fab.css +25 -1
  340. package/dist/collection/components/fab/fab.js +9 -5
  341. package/dist/collection/components/fab-button/fab-button.ios.css +18 -6
  342. package/dist/collection/components/fab-button/fab-button.js +36 -21
  343. package/dist/collection/components/fab-button/fab-button.md.css +20 -8
  344. package/dist/collection/components/fab-list/fab-list.css +12 -0
  345. package/dist/collection/components/fab-list/fab-list.js +9 -5
  346. package/dist/collection/components/footer/footer.ios.css +14 -2
  347. package/dist/collection/components/footer/footer.js +21 -16
  348. package/dist/collection/components/footer/footer.md.css +12 -0
  349. package/dist/collection/components/grid/grid.css +12 -0
  350. package/dist/collection/components/grid/grid.js +9 -5
  351. package/dist/collection/components/header/header.ionic.css +98 -0
  352. package/dist/collection/components/header/header.ios.css +25 -10
  353. package/dist/collection/components/header/header.js +49 -18
  354. package/dist/collection/components/header/header.md.css +23 -8
  355. package/dist/collection/components/img/img.js +8 -2
  356. package/dist/collection/components/infinite-scroll/infinite-scroll.js +100 -5
  357. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.ios.css +12 -0
  358. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.js +16 -10
  359. package/dist/collection/components/infinite-scroll-content/infinite-scroll-content.md.css +12 -0
  360. package/dist/collection/components/input/input.ionic.css +881 -0
  361. package/dist/collection/components/input/input.ios.css +223 -140
  362. package/dist/collection/components/input/input.js +149 -38
  363. package/dist/collection/components/input/input.md.css +193 -212
  364. package/dist/collection/components/input-otp/input-otp.ionic.css +369 -0
  365. package/dist/collection/components/input-otp/input-otp.ios.css +106 -60
  366. package/dist/collection/components/input-otp/input-otp.js +7 -5
  367. package/dist/collection/components/input-otp/input-otp.md.css +106 -60
  368. package/dist/collection/components/input-password-toggle/input-password-toggle.ionic.css +78 -0
  369. package/dist/collection/components/input-password-toggle/input-password-toggle.js +48 -12
  370. package/dist/collection/components/input-password-toggle/input-password-toggle.native.css +61 -0
  371. package/dist/collection/components/item/item.ionic.css +499 -0
  372. package/dist/collection/components/item/item.ios.css +109 -69
  373. package/dist/collection/components/item/item.js +43 -19
  374. package/dist/collection/components/item/item.md.css +120 -68
  375. package/dist/collection/components/item-divider/item-divider.ios.css +18 -0
  376. package/dist/collection/components/item-divider/item-divider.js +11 -8
  377. package/dist/collection/components/item-divider/item-divider.md.css +18 -0
  378. package/dist/collection/components/item-group/item-group.ios.css +12 -0
  379. package/dist/collection/components/item-group/item-group.js +13 -7
  380. package/dist/collection/components/item-group/item-group.md.css +12 -0
  381. package/dist/collection/components/item-option/item-option.ionic.css +278 -0
  382. package/dist/collection/components/item-option/item-option.ios.css +136 -29
  383. package/dist/collection/components/item-option/item-option.js +73 -9
  384. package/dist/collection/components/item-option/item-option.md.css +136 -29
  385. package/dist/collection/components/item-options/item-options.ionic.css +221 -0
  386. package/dist/collection/components/item-options/item-options.ios.css +77 -34
  387. package/dist/collection/components/item-options/item-options.js +13 -7
  388. package/dist/collection/components/item-options/item-options.md.css +77 -34
  389. package/dist/collection/components/item-sliding/item-sliding.css +6 -0
  390. package/dist/collection/components/item-sliding/item-sliding.js +8 -4
  391. package/dist/collection/components/label/label.ios.css +18 -0
  392. package/dist/collection/components/label/label.js +11 -8
  393. package/dist/collection/components/label/label.md.css +18 -0
  394. package/dist/collection/components/list/list.ionic.css +212 -0
  395. package/dist/collection/components/list/list.ios.css +54 -14
  396. package/dist/collection/components/list/list.js +48 -9
  397. package/dist/collection/components/list/list.md.css +56 -16
  398. package/dist/collection/components/list-header/list-header.ionic.css +190 -0
  399. package/dist/collection/components/list-header/list-header.ios.css +82 -38
  400. package/dist/collection/components/list-header/list-header.js +11 -8
  401. package/dist/collection/components/list-header/list-header.md.css +82 -38
  402. package/dist/collection/components/loading/loading.ios.css +13 -1
  403. package/dist/collection/components/loading/loading.js +14 -11
  404. package/dist/collection/components/loading/loading.md.css +13 -1
  405. package/dist/collection/components/menu/menu.ios.css +15 -3
  406. package/dist/collection/components/menu/menu.js +12 -7
  407. package/dist/collection/components/menu/menu.md.css +15 -3
  408. package/dist/collection/components/menu-button/menu-button.ionic.css +236 -0
  409. package/dist/collection/components/menu-button/menu-button.ios.css +48 -14
  410. package/dist/collection/components/menu-button/menu-button.js +26 -10
  411. package/dist/collection/components/menu-button/menu-button.md.css +49 -15
  412. package/dist/collection/components/menu-toggle/menu-toggle.js +8 -5
  413. package/dist/collection/components/modal/animations/sheet.js +8 -2
  414. package/dist/collection/components/modal/gestures/sheet.js +22 -8
  415. package/dist/collection/components/modal/modal.ionic.css +241 -0
  416. package/dist/collection/components/modal/modal.ios.css +174 -70
  417. package/dist/collection/components/modal/modal.js +48 -11
  418. package/dist/collection/components/modal/modal.md.css +174 -70
  419. package/dist/collection/components/nav/nav.css +7 -1
  420. package/dist/collection/components/nav/nav.js +11 -5
  421. package/dist/collection/components/nav-link/nav-link.js +5 -1
  422. package/dist/collection/components/note/note.ios.css +12 -0
  423. package/dist/collection/components/note/note.js +11 -8
  424. package/dist/collection/components/note/note.md.css +12 -0
  425. package/dist/collection/components/picker/picker.ios.css +15 -3
  426. package/dist/collection/components/picker/picker.js +8 -5
  427. package/dist/collection/components/picker/picker.md.css +15 -3
  428. package/dist/collection/components/picker-column/picker-column.css +9 -2
  429. package/dist/collection/components/picker-column/picker-column.js +8 -7
  430. package/dist/collection/components/picker-column-option/picker-column-option.ios.css +6 -0
  431. package/dist/collection/components/picker-column-option/picker-column-option.js +13 -7
  432. package/dist/collection/components/picker-column-option/picker-column-option.md.css +6 -0
  433. package/dist/collection/components/picker-legacy/picker.ios.css +13 -1
  434. package/dist/collection/components/picker-legacy/picker.js +7 -6
  435. package/dist/collection/components/picker-legacy/picker.md.css +13 -1
  436. package/dist/collection/components/picker-legacy-column/picker-column.ios.css +12 -0
  437. package/dist/collection/components/picker-legacy-column/picker-column.js +4 -4
  438. package/dist/collection/components/picker-legacy-column/picker-column.md.css +12 -0
  439. package/dist/collection/components/popover/popover.ios.css +13 -1
  440. package/dist/collection/components/popover/popover.js +17 -14
  441. package/dist/collection/components/popover/popover.md.css +13 -1
  442. package/dist/collection/components/progress-bar/progress-bar.ionic.css +287 -0
  443. package/dist/collection/components/progress-bar/progress-bar.ios.css +48 -17
  444. package/dist/collection/components/progress-bar/progress-bar.js +43 -7
  445. package/dist/collection/components/progress-bar/progress-bar.md.css +48 -17
  446. package/dist/collection/components/radio/radio.ionic.css +422 -0
  447. package/dist/collection/components/radio/radio.ios.css +134 -91
  448. package/dist/collection/components/radio/radio.js +12 -9
  449. package/dist/collection/components/radio/radio.md.css +134 -91
  450. package/dist/collection/components/radio-group/radio-group.ionic.css +125 -0
  451. package/dist/collection/components/radio-group/radio-group.ios.css +42 -18
  452. package/dist/collection/components/radio-group/radio-group.js +13 -5
  453. package/dist/collection/components/radio-group/radio-group.md.css +42 -18
  454. package/dist/collection/components/range/range.ionic.css +563 -0
  455. package/dist/collection/components/range/range.ios.css +128 -85
  456. package/dist/collection/components/range/range.js +12 -9
  457. package/dist/collection/components/range/range.md.css +128 -85
  458. package/dist/collection/components/refresher/refresher.ios.css +14 -1
  459. package/dist/collection/components/refresher/refresher.js +11 -8
  460. package/dist/collection/components/refresher/refresher.md.css +15 -2
  461. package/dist/collection/components/refresher-content/refresher-content.js +28 -7
  462. package/dist/collection/components/reorder/reorder.ios.css +6 -0
  463. package/dist/collection/components/reorder/reorder.js +33 -6
  464. package/dist/collection/components/reorder/reorder.md.css +6 -0
  465. package/dist/collection/components/reorder-group/reorder-group.css +6 -0
  466. package/dist/collection/components/reorder-group/reorder-group.js +8 -4
  467. package/dist/collection/components/ripple-effect/{ripple-effect.css → ripple-effect.common.css} +7 -1
  468. package/dist/collection/components/ripple-effect/ripple-effect.ionic.css +215 -0
  469. package/dist/collection/components/ripple-effect/ripple-effect.js +14 -6
  470. package/dist/collection/components/route/route.js +4 -0
  471. package/dist/collection/components/router/router.js +4 -0
  472. package/dist/collection/components/router-link/router-link.css +8 -2
  473. package/dist/collection/components/router-link/router-link.js +9 -5
  474. package/dist/collection/components/router-outlet/router-outlet.css +7 -1
  475. package/dist/collection/components/router-outlet/router-outlet.js +6 -3
  476. package/dist/collection/components/row/row.css +16 -0
  477. package/dist/collection/components/row/row.js +9 -2
  478. package/dist/collection/components/searchbar/searchbar.ionic.css +626 -0
  479. package/dist/collection/components/searchbar/searchbar.ios.css +56 -18
  480. package/dist/collection/components/searchbar/searchbar.js +181 -34
  481. package/dist/collection/components/searchbar/searchbar.md.css +56 -18
  482. package/dist/collection/components/segment/segment.ionic.css +115 -0
  483. package/dist/collection/components/segment/segment.ios.css +45 -2
  484. package/dist/collection/components/segment/segment.js +11 -8
  485. package/dist/collection/components/segment/segment.md.css +45 -2
  486. package/dist/collection/components/segment-button/segment-button.ionic.css +353 -0
  487. package/dist/collection/components/segment-button/segment-button.ios.css +146 -105
  488. package/dist/collection/components/segment-button/segment-button.js +11 -8
  489. package/dist/collection/components/segment-button/segment-button.md.css +148 -107
  490. package/dist/collection/components/segment-content/segment-content.js +1 -1
  491. package/dist/collection/components/segment-view/segment-view.ios.css +6 -0
  492. package/dist/collection/components/segment-view/segment-view.js +6 -4
  493. package/dist/collection/components/segment-view/segment-view.md.css +6 -0
  494. package/dist/collection/components/select/select.ionic.css +763 -0
  495. package/dist/collection/components/select/select.ios.css +315 -176
  496. package/dist/collection/components/select/select.js +157 -54
  497. package/dist/collection/components/select/select.md.css +331 -178
  498. package/dist/collection/components/select-modal/select-modal.ionic.css +123 -0
  499. package/dist/collection/components/select-modal/select-modal.ios.css +18 -0
  500. package/dist/collection/components/select-modal/select-modal.js +3 -3
  501. package/dist/collection/components/select-modal/select-modal.md.css +7 -3
  502. package/dist/collection/components/select-option/select-option.js +9 -2
  503. package/dist/collection/components/select-popover/select-popover.ios.css +18 -0
  504. package/dist/collection/components/select-popover/select-popover.js +12 -4
  505. package/dist/collection/components/select-popover/select-popover.md.css +18 -0
  506. package/dist/collection/components/skeleton-text/skeleton-text.css +6 -0
  507. package/dist/collection/components/skeleton-text/skeleton-text.js +9 -5
  508. package/dist/collection/components/spinner/{spinner.css → spinner.ionic.css} +77 -10
  509. package/dist/collection/components/spinner/spinner.js +47 -6
  510. package/dist/collection/components/spinner/spinner.native.css +198 -0
  511. package/dist/collection/components/split-pane/split-pane.ios.css +20 -2
  512. package/dist/collection/components/split-pane/split-pane.js +14 -8
  513. package/dist/collection/components/split-pane/split-pane.md.css +20 -2
  514. package/dist/collection/components/tab/tab.js +6 -2
  515. package/dist/collection/components/tab-bar/tab-bar.ionic.css +186 -0
  516. package/dist/collection/components/tab-bar/tab-bar.ios.css +71 -43
  517. package/dist/collection/components/tab-bar/tab-bar.js +78 -11
  518. package/dist/collection/components/tab-bar/tab-bar.md.css +71 -43
  519. package/dist/collection/components/tab-button/tab-button.ionic.css +336 -0
  520. package/dist/collection/components/tab-button/tab-button.ios.css +171 -95
  521. package/dist/collection/components/tab-button/tab-button.js +44 -8
  522. package/dist/collection/components/tab-button/tab-button.md.css +137 -93
  523. package/dist/collection/components/tabs/tabs.css +7 -1
  524. package/dist/collection/components/tabs/tabs.js +4 -1
  525. package/dist/collection/components/text/text.css +6 -0
  526. package/dist/collection/components/text/text.js +7 -6
  527. package/dist/collection/components/textarea/textarea.ionic.css +828 -0
  528. package/dist/collection/components/textarea/textarea.ios.css +275 -139
  529. package/dist/collection/components/textarea/textarea.js +76 -16
  530. package/dist/collection/components/textarea/textarea.md.css +288 -140
  531. package/dist/collection/components/thumbnail/thumbnail.css +6 -0
  532. package/dist/collection/components/thumbnail/thumbnail.js +9 -2
  533. package/dist/collection/components/title/title.ionic.css +127 -0
  534. package/dist/collection/components/title/title.ios.css +32 -4
  535. package/dist/collection/components/title/title.js +13 -7
  536. package/dist/collection/components/title/title.md.css +32 -4
  537. package/dist/collection/components/toast/animations/utils.js +1 -1
  538. package/dist/collection/components/toast/toast.ionic.css +394 -0
  539. package/dist/collection/components/toast/toast.ios.css +84 -45
  540. package/dist/collection/components/toast/toast.js +75 -12
  541. package/dist/collection/components/toast/toast.md.css +84 -45
  542. package/dist/collection/components/toggle/toggle.ionic.css +509 -0
  543. package/dist/collection/components/toggle/toggle.ios.css +247 -131
  544. package/dist/collection/components/toggle/toggle.js +73 -18
  545. package/dist/collection/components/toggle/toggle.md.css +244 -131
  546. package/dist/collection/components/toolbar/test/image.svg +1 -0
  547. package/dist/collection/components/toolbar/toolbar.ionic.css +241 -0
  548. package/dist/collection/components/toolbar/toolbar.ios.css +90 -47
  549. package/dist/collection/components/toolbar/toolbar.js +157 -13
  550. package/dist/collection/components/toolbar/toolbar.md.css +90 -47
  551. package/dist/collection/global/ionic-global.js +228 -13
  552. package/dist/collection/utils/focus-visible.js +22 -0
  553. package/dist/collection/utils/framework-delegate.js +3 -1
  554. package/dist/collection/utils/helpers.js +42 -2
  555. package/dist/collection/utils/keyboard/keyboard-controller.js +3 -1
  556. package/dist/collection/utils/menu-controller/animations/overlay.js +3 -3
  557. package/dist/collection/utils/menu-controller/animations/push.js +2 -1
  558. package/dist/collection/utils/menu-controller/animations/reveal.js +2 -1
  559. package/dist/collection/utils/overlays.js +41 -18
  560. package/dist/collection/utils/test/playwright/generator.js +48 -23
  561. package/dist/collection/utils/test/playwright/page/utils/goto.js +14 -5
  562. package/dist/collection/utils/test/playwright/page/utils/set-content.js +24 -3
  563. package/dist/collection/utils/transition/ios.transition.js +1 -0
  564. package/dist/docs.json +8168 -372
  565. package/dist/esm/{animation-BvhAtgca.js → animation-DPqVg3gl.js} +1 -1
  566. package/dist/esm/{app-globals-CvLYUxE9.js → app-globals-dJs8dVUB.js} +1 -1
  567. package/dist/esm/{button-active-DBUPuLNw.js → button-active-BMINdWv6.js} +1 -1
  568. package/dist/esm/{capacitor-CFERIeaU.js → capacitor--DL1MVFW.js} +1 -1
  569. package/dist/esm/caret-down-D1t981Ih.js +6 -0
  570. package/dist/esm/caret-left-fIOYmaqA.js +6 -0
  571. package/dist/esm/caret-right-BYSs-jZz.js +6 -0
  572. package/dist/esm/{data-CKHMWxfe.js → data-slRmoEWk.js} +5 -5
  573. package/dist/esm/{focus-visible-BmVRXR1y.js → focus-visible-vXpMhGrs.js} +23 -1
  574. package/dist/esm/{framework-delegate-BLEBgH06.js → framework-delegate-C3AU0AA6.js} +4 -2
  575. package/dist/esm/{haptic-DzAMWJuk.js → haptic-BWDWI-Xh.js} +1 -1
  576. package/dist/esm/{helpers-8KSQQGQy.js → helpers-CKng-4WP.js} +42 -3
  577. package/dist/esm/{index-CXSTcaAW.js → index-BwfAv3fK.js} +10 -10
  578. package/dist/esm/{index-7UbSlv7N.js → index-C21kdpyw.js} +1 -1
  579. package/dist/esm/{index-DV3sJJW8.js → index-COG0_eom.js} +1 -1
  580. package/dist/esm/{index-Dp7GXH1z.js → index-DLYqkEhn.js} +3 -3
  581. package/dist/esm/{index-C6WeRr09.js → index-jNq9q9I-.js} +3 -2
  582. package/dist/esm/index.js +10 -11
  583. package/dist/esm/{input-shims-C4KDnhxb.js → input-shims-Dt4HUCHS.js} +6 -5
  584. package/dist/esm/{input.utils-be4gBvVY.js → input.utils-D7U0b1bK.js} +2 -2
  585. package/dist/esm/ion-accordion_2.entry.js +56 -27
  586. package/dist/esm/ion-action-sheet.entry.js +21 -18
  587. package/dist/esm/ion-alert.entry.js +22 -20
  588. package/dist/esm/ion-app_8.entry.js +244 -145
  589. package/dist/esm/ion-avatar_3.entry.js +125 -13
  590. package/dist/esm/ion-back-button.entry.js +29 -20
  591. package/dist/esm/ion-backdrop.entry.js +9 -6
  592. package/dist/esm/ion-breadcrumb_2.entry.js +53 -17
  593. package/dist/esm/ion-button_2.entry.js +43 -11
  594. package/dist/esm/ion-card_5.entry.js +53 -29
  595. package/dist/esm/ion-checkbox.entry.js +31 -13
  596. package/dist/esm/ion-chip.entry.js +49 -8
  597. package/dist/esm/ion-col_3.entry.js +54 -57
  598. package/dist/esm/ion-datetime-button.entry.js +11 -7
  599. package/dist/esm/ion-datetime_3.entry.js +115 -40
  600. package/dist/esm/ion-divider.entry.js +49 -0
  601. package/dist/esm/ion-fab_3.entry.js +43 -27
  602. package/dist/esm/ion-img.entry.js +7 -3
  603. package/dist/esm/ion-infinite-scroll_2.entry.js +89 -14
  604. package/dist/esm/ion-input-otp.entry.js +11 -7
  605. package/dist/esm/ion-input-password-toggle.entry.js +52 -14
  606. package/dist/esm/ion-input.entry.js +122 -32
  607. package/dist/esm/ion-item-option_3.entry.js +48 -19
  608. package/dist/esm/ion-item_8.entry.js +107 -47
  609. package/dist/esm/ion-loading.entry.js +17 -15
  610. package/dist/esm/ion-menu_3.entry.js +45 -27
  611. package/dist/esm/ion-modal.entry.js +68 -31
  612. package/dist/esm/ion-nav_2.entry.js +13 -10
  613. package/dist/esm/ion-picker-column-option.entry.js +10 -6
  614. package/dist/esm/ion-picker-column.entry.js +11 -11
  615. package/dist/esm/ion-picker.entry.js +9 -5
  616. package/dist/esm/ion-popover.entry.js +18 -16
  617. package/dist/esm/ion-progress-bar.entry.js +25 -7
  618. package/dist/esm/ion-radio_2.entry.js +22 -13
  619. package/dist/esm/ion-range.entry.js +14 -10
  620. package/dist/esm/ion-refresher_2.entry.js +37 -19
  621. package/dist/esm/ion-reorder_2.entry.js +38 -14
  622. package/dist/esm/ion-ripple-effect.entry.js +14 -6
  623. package/dist/esm/ion-route_4.entry.js +8 -7
  624. package/dist/esm/ion-searchbar.entry.js +137 -24
  625. package/dist/esm/ion-segment-content.entry.js +1 -1
  626. package/dist/esm/ion-segment-view.entry.js +5 -2
  627. package/dist/esm/ion-segment_2.entry.js +21 -14
  628. package/dist/esm/ion-select-modal.entry.js +8 -9
  629. package/dist/esm/ion-select_3.entry.js +131 -40
  630. package/dist/esm/ion-spinner.entry.js +28 -6
  631. package/dist/esm/ion-split-pane.entry.js +11 -8
  632. package/dist/esm/ion-tab-bar_2.entry.js +65 -20
  633. package/dist/esm/ion-tab_2.entry.js +7 -6
  634. package/dist/esm/ion-text.entry.js +5 -5
  635. package/dist/esm/ion-textarea.entry.js +55 -15
  636. package/dist/esm/ion-toast.entry.js +40 -17
  637. package/dist/esm/ion-toggle.entry.js +79 -22
  638. package/dist/esm/ionic-global-Dtd5Ma5B.js +480 -0
  639. package/dist/esm/ionic.js +3 -3
  640. package/dist/esm/{ios.transition-eAEkgVAv.js → ios.transition-CJcl_IUo.js} +6 -4
  641. package/dist/esm/{keyboard-CUw4ekVy.js → keyboard-Ce5NGRb7.js} +1 -1
  642. package/dist/esm/{keyboard-ywgs5efA.js → keyboard-DP1KnX1o.js} +4 -3
  643. package/dist/esm/{keyboard-controller-BaaVITYt.js → keyboard-controller-CN0dsogH.js} +5 -3
  644. package/dist/esm/list-Dhi5xtNS.js +6 -0
  645. package/dist/esm/loader.js +3 -3
  646. package/dist/esm/{md.transition-D8TeJ_Pz.js → md.transition-DUO570OK.js} +5 -4
  647. package/dist/esm/{notch-controller-lb417-kU.js → notch-controller-BZq2fbxL.js} +2 -2
  648. package/dist/esm/{overlays-BJaRj3Rj.js → overlays-D3rE6lyd.js} +44 -23
  649. package/dist/esm/{status-tap-pATNXEtr.js → status-tap-Bux-fh_w.js} +3 -2
  650. package/dist/esm/{swipe-back-B2YfOHRM.js → swipe-back-Dp-f6VSv.js} +2 -1
  651. package/dist/esm/x-BDqjX7Z_.js +6 -0
  652. package/dist/html.html-data.json +2532 -226
  653. package/dist/ionic/index.esm.js +1 -1
  654. package/dist/ionic/ionic.esm.js +1 -1
  655. package/dist/ionic/p-04b8cb11.entry.js +4 -0
  656. package/dist/ionic/p-07317db2.entry.js +4 -0
  657. package/dist/ionic/p-0b1386bf.entry.js +4 -0
  658. package/dist/ionic/p-0cfa2478.entry.js +4 -0
  659. package/dist/ionic/p-123f6dde.entry.js +4 -0
  660. package/dist/ionic/p-18660f23.entry.js +4 -0
  661. package/dist/ionic/p-1ac3754e.entry.js +4 -0
  662. package/dist/ionic/p-1acc1bfe.entry.js +4 -0
  663. package/dist/ionic/p-1d614d1a.entry.js +4 -0
  664. package/dist/ionic/p-21bad9c2.entry.js +4 -0
  665. package/dist/ionic/p-240c6a46.entry.js +4 -0
  666. package/dist/ionic/p-25cc812f.entry.js +4 -0
  667. package/dist/ionic/p-3ed15202.entry.js +4 -0
  668. package/dist/ionic/p-3ee8f3e6.entry.js +4 -0
  669. package/dist/ionic/p-3f22a9de.entry.js +4 -0
  670. package/dist/ionic/p-4cc76b1d.entry.js +4 -0
  671. package/dist/ionic/{p-B1xocg0A.js → p-4ivCEBy1.js} +1 -1
  672. package/dist/ionic/p-525895e0.entry.js +4 -0
  673. package/dist/ionic/p-554acf2b.entry.js +4 -0
  674. package/dist/ionic/p-59c4a194.entry.js +4 -0
  675. package/dist/ionic/p-5f0c7c62.entry.js +4 -0
  676. package/dist/ionic/p-69a244b5.entry.js +4 -0
  677. package/dist/ionic/p-742203d9.entry.js +4 -0
  678. package/dist/ionic/p-75b29611.entry.js +4 -0
  679. package/dist/ionic/p-7ead7a67.entry.js +4 -0
  680. package/dist/ionic/p-7f1c8070.entry.js +4 -0
  681. package/dist/ionic/p-845e0158.entry.js +4 -0
  682. package/dist/ionic/p-848ad9ae.entry.js +4 -0
  683. package/dist/ionic/p-8870c2f9.entry.js +4 -0
  684. package/dist/ionic/p-8cd4a868.entry.js +4 -0
  685. package/dist/ionic/p-907ac173.entry.js +4 -0
  686. package/dist/ionic/p-95621a36.entry.js +4 -0
  687. package/dist/ionic/p-9V8nrHFC.js +4 -0
  688. package/dist/ionic/p-9e575e4e.entry.js +4 -0
  689. package/dist/ionic/p-BDqjX7Z_.js +4 -0
  690. package/dist/ionic/p-BFFank6B.js +4 -0
  691. package/dist/ionic/{p-CWvl4RPO.js → p-BISSkhkA.js} +1 -1
  692. package/dist/ionic/p-BJGh_obi.js +4 -0
  693. package/dist/ionic/p-BYSs-jZz.js +4 -0
  694. package/dist/ionic/{p-CKvCXMs9.js → p-BYYLxYDJ.js} +1 -1
  695. package/dist/ionic/p-Bh0_z73h.js +4 -0
  696. package/dist/ionic/p-BpaeL4Lk.js +4 -0
  697. package/dist/ionic/{p-DiZPU8BH.js → p-BqMzjJ9X.js} +1 -1
  698. package/dist/ionic/{p-DV3sJJW8.js → p-COG0_eom.js} +1 -1
  699. package/dist/ionic/{p-C87oPMMF.js → p-CVVzZviS.js} +1 -1
  700. package/dist/ionic/p-CZEwJt85.js +4 -0
  701. package/dist/ionic/p-Cdv0TJ6-.js +4 -0
  702. package/dist/ionic/{p-BhNEp2QP.js → p-CjpktT3Z.js} +1 -1
  703. package/dist/ionic/p-CqYDGaCK.js +4 -0
  704. package/dist/ionic/p-D-m6MIML.js +4 -0
  705. package/dist/ionic/p-D1t981Ih.js +4 -0
  706. package/dist/ionic/{p-DCuOL88l.js → p-D8VpGXAu.js} +1 -1
  707. package/dist/ionic/p-DBzcL_sL.js +4 -0
  708. package/dist/ionic/p-DO7doFVM.js +4 -0
  709. package/dist/ionic/p-Dhi5xtNS.js +4 -0
  710. package/dist/ionic/p-DpBID_Du.js +4 -0
  711. package/dist/ionic/p-DuV7rU9I.js +4 -0
  712. package/dist/ionic/p-EG6i47Uw.js +4 -0
  713. package/dist/ionic/{p-D13Eaw-8.js → p-EwG_P2X9.js} +1 -1
  714. package/dist/ionic/p-Ex5J81sy.js +4 -0
  715. package/dist/ionic/{p-BHGXdud8.js → p-KY_2sl5b.js} +1 -1
  716. package/dist/ionic/p-a3ea0e64.entry.js +4 -0
  717. package/dist/ionic/p-a5893690.entry.js +4 -0
  718. package/dist/ionic/p-b269fb6b.entry.js +4 -0
  719. package/dist/ionic/p-b2aa3ff0.entry.js +4 -0
  720. package/dist/ionic/p-bbf5ed24.entry.js +4 -0
  721. package/dist/ionic/p-bd10b777.entry.js +4 -0
  722. package/dist/ionic/p-c85fd449.entry.js +4 -0
  723. package/dist/ionic/p-c9736360.entry.js +4 -0
  724. package/dist/ionic/p-cdcc3ffe.entry.js +4 -0
  725. package/dist/ionic/p-cef8eac8.entry.js +4 -0
  726. package/dist/ionic/p-d04293de.entry.js +4 -0
  727. package/dist/ionic/p-daf54858.entry.js +4 -0
  728. package/dist/ionic/p-df97e7d5.entry.js +4 -0
  729. package/dist/ionic/p-e0a689ea.entry.js +4 -0
  730. package/dist/ionic/p-e1ee9df4.entry.js +4 -0
  731. package/dist/ionic/p-e25b2e94.entry.js +4 -0
  732. package/dist/ionic/p-e53f3a62.entry.js +4 -0
  733. package/dist/ionic/p-ec96366b.entry.js +4 -0
  734. package/dist/ionic/p-ed071a41.entry.js +4 -0
  735. package/dist/ionic/p-f4d11cbb.entry.js +4 -0
  736. package/dist/ionic/p-fIOYmaqA.js +4 -0
  737. package/dist/ionic/p-ff5aa778.entry.js +4 -0
  738. package/dist/ionic/p-vXpMhGrs.js +4 -0
  739. package/dist/types/components/accordion/accordion.d.ts +5 -3
  740. package/dist/types/components/accordion-group/accordion-group.d.ts +12 -1
  741. package/dist/types/components/action-sheet/action-sheet-interface.d.ts +3 -7
  742. package/dist/types/components/action-sheet/action-sheet.d.ts +3 -2
  743. package/dist/types/components/alert/alert-interface.d.ts +3 -7
  744. package/dist/types/components/alert/alert.d.ts +3 -2
  745. package/dist/types/components/app/app.d.ts +4 -2
  746. package/dist/types/components/avatar/avatar.d.ts +32 -0
  747. package/dist/types/components/back-button/back-button.d.ts +2 -1
  748. package/dist/types/components/backdrop/backdrop.d.ts +4 -0
  749. package/dist/types/components/badge/badge.d.ts +34 -1
  750. package/dist/types/components/breadcrumb/breadcrumb.d.ts +4 -1
  751. package/dist/types/components/breadcrumbs/breadcrumbs.d.ts +2 -2
  752. package/dist/types/components/button/button.d.ts +19 -6
  753. package/dist/types/components/buttons/buttons.d.ts +5 -1
  754. package/dist/types/components/card/card.d.ts +8 -1
  755. package/dist/types/components/card-content/card-content.d.ts +2 -1
  756. package/dist/types/components/card-header/card-header.d.ts +3 -2
  757. package/dist/types/components/card-subtitle/card-subtitle.d.ts +2 -1
  758. package/dist/types/components/card-title/card-title.d.ts +2 -1
  759. package/dist/types/components/checkbox/checkbox.d.ts +14 -4
  760. package/dist/types/components/chip/chip.d.ts +26 -1
  761. package/dist/types/components/col/col.d.ts +52 -5
  762. package/dist/types/components/content/content.d.ts +3 -0
  763. package/dist/types/components/datetime/datetime.d.ts +26 -1
  764. package/dist/types/components/datetime/utils/data.d.ts +5 -5
  765. package/dist/types/components/datetime-button/datetime-button.d.ts +2 -1
  766. package/dist/types/components/divider/divider.d.ts +20 -0
  767. package/dist/types/components/fab/fab.d.ts +4 -0
  768. package/dist/types/components/fab-button/fab-button.d.ts +5 -3
  769. package/dist/types/components/fab-list/fab-list.d.ts +4 -0
  770. package/dist/types/components/footer/footer.d.ts +4 -3
  771. package/dist/types/components/grid/grid.d.ts +4 -0
  772. package/dist/types/components/header/header.d.ts +9 -3
  773. package/dist/types/components/img/img.d.ts +3 -0
  774. package/dist/types/components/infinite-scroll/infinite-scroll.d.ts +21 -0
  775. package/dist/types/components/infinite-scroll-content/infinite-scroll-content.d.ts +4 -0
  776. package/dist/types/components/input/input.d.ts +31 -5
  777. package/dist/types/components/input-password-toggle/input-password-toggle.d.ts +2 -0
  778. package/dist/types/components/item/item.d.ts +11 -4
  779. package/dist/types/components/item-divider/item-divider.d.ts +2 -1
  780. package/dist/types/components/item-group/item-group.d.ts +4 -0
  781. package/dist/types/components/item-option/item-option.d.ts +18 -1
  782. package/dist/types/components/item-options/item-options.d.ts +4 -0
  783. package/dist/types/components/item-sliding/item-sliding.d.ts +4 -0
  784. package/dist/types/components/label/label.d.ts +2 -1
  785. package/dist/types/components/list/list.d.ts +15 -1
  786. package/dist/types/components/list-header/list-header.d.ts +2 -1
  787. package/dist/types/components/loading/loading-interface.d.ts +2 -7
  788. package/dist/types/components/loading/loading.d.ts +3 -2
  789. package/dist/types/components/menu/menu.d.ts +3 -0
  790. package/dist/types/components/menu-button/menu-button.d.ts +3 -1
  791. package/dist/types/components/menu-toggle/menu-toggle.d.ts +3 -0
  792. package/dist/types/components/modal/gestures/sheet.d.ts +1 -1
  793. package/dist/types/components/modal/modal-interface.d.ts +4 -7
  794. package/dist/types/components/modal/modal.d.ts +11 -1
  795. package/dist/types/components/nav/nav-interface.d.ts +9 -1
  796. package/dist/types/components/nav/nav.d.ts +5 -1
  797. package/dist/types/components/nav-link/nav-link.d.ts +4 -0
  798. package/dist/types/components/note/note.d.ts +2 -1
  799. package/dist/types/components/picker/picker.d.ts +2 -1
  800. package/dist/types/components/picker-column/picker-column.d.ts +2 -1
  801. package/dist/types/components/picker-column-option/picker-column-option.d.ts +4 -0
  802. package/dist/types/components/picker-legacy/picker.d.ts +2 -1
  803. package/dist/types/components/popover/popover-interface.d.ts +3 -6
  804. package/dist/types/components/popover/popover.d.ts +6 -5
  805. package/dist/types/components/progress-bar/progress-bar.d.ts +10 -1
  806. package/dist/types/components/radio/radio.d.ts +2 -1
  807. package/dist/types/components/radio-group/radio-group.d.ts +4 -0
  808. package/dist/types/components/range/range.d.ts +2 -1
  809. package/dist/types/components/refresher/refresher.d.ts +2 -1
  810. package/dist/types/components/refresher-content/refresher-content.d.ts +4 -0
  811. package/dist/types/components/reorder/reorder.d.ts +9 -0
  812. package/dist/types/components/reorder-group/reorder-group.d.ts +4 -0
  813. package/dist/types/components/ripple-effect/ripple-effect.d.ts +4 -0
  814. package/dist/types/components/route/route.d.ts +4 -0
  815. package/dist/types/components/router/router.d.ts +4 -0
  816. package/dist/types/components/router-link/router-link.d.ts +4 -0
  817. package/dist/types/components/router-outlet/router-outlet.d.ts +4 -1
  818. package/dist/types/components/row/row.d.ts +4 -0
  819. package/dist/types/components/searchbar/searchbar.d.ts +51 -9
  820. package/dist/types/components/segment/segment.d.ts +2 -1
  821. package/dist/types/components/segment-button/segment-button.d.ts +2 -1
  822. package/dist/types/components/select/select.d.ts +41 -13
  823. package/dist/types/components/select-option/select-option.d.ts +4 -0
  824. package/dist/types/components/select-popover/select-popover.d.ts +3 -0
  825. package/dist/types/components/skeleton-text/skeleton-text.d.ts +4 -0
  826. package/dist/types/components/spinner/spinner.d.ts +15 -0
  827. package/dist/types/components/split-pane/split-pane.d.ts +4 -0
  828. package/dist/types/components/tab/tab.d.ts +4 -0
  829. package/dist/types/components/tab-bar/tab-bar.d.ts +22 -2
  830. package/dist/types/components/tab-button/tab-button.d.ts +11 -1
  831. package/dist/types/components/tabs/tabs.d.ts +3 -0
  832. package/dist/types/components/text/text.d.ts +2 -1
  833. package/dist/types/components/textarea/textarea.d.ts +17 -4
  834. package/dist/types/components/thumbnail/thumbnail.d.ts +4 -0
  835. package/dist/types/components/title/title.d.ts +4 -0
  836. package/dist/types/components/toast/animations/utils.d.ts +2 -2
  837. package/dist/types/components/toast/toast-interface.d.ts +3 -7
  838. package/dist/types/components/toast/toast.d.ts +19 -2
  839. package/dist/types/components/toggle/toggle.d.ts +15 -1
  840. package/dist/types/components/toolbar/toolbar.d.ts +20 -3
  841. package/dist/types/components.d.ts +1593 -196
  842. package/dist/types/global/ionic-global.d.ts +27 -2
  843. package/dist/types/interface.d.ts +3 -0
  844. package/dist/types/utils/config.d.ts +106 -2
  845. package/dist/types/utils/focus-visible.d.ts +13 -0
  846. package/dist/types/utils/helpers.d.ts +11 -0
  847. package/dist/types/utils/overlays-interface.d.ts +31 -1
  848. package/dist/types/utils/test/playwright/generator.d.ts +31 -2
  849. package/hydrate/index.js +2890 -957
  850. package/hydrate/index.mjs +2890 -957
  851. package/package.json +10 -5
  852. package/components/hardware-back-button.js +0 -115
  853. package/components/index9.js +0 -7
  854. package/dist/cjs/hardware-back-button-BxdNu76F.js +0 -121
  855. package/dist/cjs/index-DkNv4J_i.js +0 -10
  856. package/dist/cjs/ionic-global-UI5YPSi-.js +0 -151
  857. package/dist/esm/hardware-back-button-Dhbd-23H.js +0 -115
  858. package/dist/esm/index-ZjP4CjeZ.js +0 -7
  859. package/dist/esm/ionic-global-CTSyufhF.js +0 -146
  860. package/dist/ionic/p-095073c6.entry.js +0 -4
  861. package/dist/ionic/p-0f396661.entry.js +0 -4
  862. package/dist/ionic/p-1191a2d9.entry.js +0 -4
  863. package/dist/ionic/p-148bdf18.entry.js +0 -4
  864. package/dist/ionic/p-16116947.entry.js +0 -4
  865. package/dist/ionic/p-19f80390.entry.js +0 -4
  866. package/dist/ionic/p-1a91f317.entry.js +0 -4
  867. package/dist/ionic/p-1ab0fc21.entry.js +0 -4
  868. package/dist/ionic/p-1bbd0a23.entry.js +0 -4
  869. package/dist/ionic/p-2060feb1.entry.js +0 -4
  870. package/dist/ionic/p-22a0f820.entry.js +0 -4
  871. package/dist/ionic/p-2cb0f39f.entry.js +0 -4
  872. package/dist/ionic/p-3392f558.entry.js +0 -4
  873. package/dist/ionic/p-349fc921.entry.js +0 -4
  874. package/dist/ionic/p-3624b640.entry.js +0 -4
  875. package/dist/ionic/p-36a54836.entry.js +0 -4
  876. package/dist/ionic/p-39ed3212.entry.js +0 -4
  877. package/dist/ionic/p-40d56a51.entry.js +0 -4
  878. package/dist/ionic/p-44e3b33a.entry.js +0 -4
  879. package/dist/ionic/p-4f2c5845.entry.js +0 -4
  880. package/dist/ionic/p-528af4e6.entry.js +0 -4
  881. package/dist/ionic/p-54dec9b1.entry.js +0 -4
  882. package/dist/ionic/p-5a9be5a3.entry.js +0 -4
  883. package/dist/ionic/p-5c976c00.entry.js +0 -4
  884. package/dist/ionic/p-60ff6bf6.entry.js +0 -4
  885. package/dist/ionic/p-6383afc2.entry.js +0 -4
  886. package/dist/ionic/p-7a53f04c.entry.js +0 -4
  887. package/dist/ionic/p-7b12d853.entry.js +0 -4
  888. package/dist/ionic/p-7da05504.entry.js +0 -4
  889. package/dist/ionic/p-8888efe4.entry.js +0 -4
  890. package/dist/ionic/p-89c2e0a3.entry.js +0 -4
  891. package/dist/ionic/p-8cdb4ff5.entry.js +0 -4
  892. package/dist/ionic/p-9ddf2620.entry.js +0 -4
  893. package/dist/ionic/p-9eeaBrnk.js +0 -4
  894. package/dist/ionic/p-B5MDSrGg.js +0 -4
  895. package/dist/ionic/p-BB-JoKGB.js +0 -4
  896. package/dist/ionic/p-BmVRXR1y.js +0 -4
  897. package/dist/ionic/p-Br3vSlYh.js +0 -4
  898. package/dist/ionic/p-C-Cct-6D.js +0 -4
  899. package/dist/ionic/p-C4I6B3uV.js +0 -4
  900. package/dist/ionic/p-C8d2ebIg.js +0 -4
  901. package/dist/ionic/p-CIGNaXM1.js +0 -4
  902. package/dist/ionic/p-CoDfkBuk.js +0 -4
  903. package/dist/ionic/p-CtWGkNnJ.js +0 -4
  904. package/dist/ionic/p-CvaZMP6T.js +0 -4
  905. package/dist/ionic/p-D2fQU_qK.js +0 -4
  906. package/dist/ionic/p-DAfH9Iif.js +0 -4
  907. package/dist/ionic/p-DJKvq7vb.js +0 -4
  908. package/dist/ionic/p-Dm_oBkW1.js +0 -4
  909. package/dist/ionic/p-LaGjiAVo.js +0 -4
  910. package/dist/ionic/p-ZjP4CjeZ.js +0 -4
  911. package/dist/ionic/p-a00ad0f2.entry.js +0 -4
  912. package/dist/ionic/p-a81be128.entry.js +0 -4
  913. package/dist/ionic/p-afeb9df6.entry.js +0 -4
  914. package/dist/ionic/p-b17f0554.entry.js +0 -4
  915. package/dist/ionic/p-b292804d.entry.js +0 -4
  916. package/dist/ionic/p-bc9f9032.entry.js +0 -4
  917. package/dist/ionic/p-bf81a468.entry.js +0 -4
  918. package/dist/ionic/p-cd93c119.entry.js +0 -4
  919. package/dist/ionic/p-cde6d39b.entry.js +0 -4
  920. package/dist/ionic/p-d04d66fc.entry.js +0 -4
  921. package/dist/ionic/p-d3df6032.entry.js +0 -4
  922. package/dist/ionic/p-dbba38cf.entry.js +0 -4
  923. package/dist/ionic/p-dc8d0bb9.entry.js +0 -4
  924. package/dist/ionic/p-e6c3214c.entry.js +0 -4
  925. package/dist/ionic/p-e6c465ff.entry.js +0 -4
  926. package/dist/ionic/p-ec76fec4.entry.js +0 -4
  927. package/dist/ionic/p-ee2e35a6.entry.js +0 -4
  928. package/dist/ionic/p-f7db572a.entry.js +0 -4
  929. package/dist/ionic/p-f9eb54ee.entry.js +0 -4
  930. /package/dist/collection/components/{input-password-toggle/input-password-toggle.css → refresher-content/refresher-content.css} +0 -0
@@ -0,0 +1,828 @@
1
+ /**
2
+ * Convert a pixels given value into rem
3
+ *
4
+ * @param pixels - Value in pixels to be converted (i.e. px)
5
+ * @param context (optional) - Baseline value
6
+ */
7
+ /**
8
+ * A heuristic that applies CSS to tablet
9
+ * viewports.
10
+ *
11
+ * Usage:
12
+ * @include tablet-viewport() {
13
+ * :host {
14
+ * background-color: green;
15
+ * }
16
+ * }
17
+ */
18
+ /**
19
+ * A heuristic that applies CSS to mobile
20
+ * viewports (i.e. phones, not tablets).
21
+ *
22
+ * Usage:
23
+ * @include mobile-viewport() {
24
+ * :host {
25
+ * background-color: blue;
26
+ * }
27
+ * }
28
+ */
29
+ /**
30
+ * Convert a font size to a dynamic font size.
31
+ * Fonts that participate in Dynamic Type should use
32
+ * dynamic font sizes.
33
+ * @param size - The initial font size including the unit (i.e. px or pt)
34
+ * @param unit (optional) - The unit to convert to. Use this if you want to
35
+ * convert to a unit other than $baselineUnit.
36
+ */
37
+ /**
38
+ * Convert a font size to a dynamic font size but impose
39
+ * a maximum font size.
40
+ * @param size - The initial font size including the unit (i.e. px or pt)
41
+ * @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
42
+ * @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
43
+ * convert to a unit other than $baselineUnit.
44
+ */
45
+ /**
46
+ * Convert a font size to a dynamic font size but impose
47
+ * a minimum font size.
48
+ * @param size - The initial font size including the unit (i.e. px or pt)
49
+ * @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
50
+ * @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
51
+ * convert to a unit other than $baselineUnit.
52
+ */
53
+ /**
54
+ * Convert a font size to a dynamic font size but impose
55
+ * maximum and minimum font sizes.
56
+ * @param size - The initial font size including the unit (i.e. px or pt)
57
+ * @param minScale - The minimum scale of the font (i.e. 0.8 for a minimum 80% scale).
58
+ * @param maxScale - The maximum scale of the font (i.e. 2.5 for a maximum 250% scale).
59
+ * @param unit (optional) - The unit to convert the initial font size to. Use this if you want to
60
+ * convert to a unit other than $baselineUnit.
61
+ */
62
+ /**
63
+ * A heuristic that applies CSS to tablet
64
+ * viewports.
65
+ *
66
+ * Usage:
67
+ * @include tablet-viewport() {
68
+ * :host {
69
+ * background-color: green;
70
+ * }
71
+ * }
72
+ */
73
+ /**
74
+ * A heuristic that applies CSS to mobile
75
+ * viewports (i.e. phones, not tablets).
76
+ *
77
+ * Usage:
78
+ * @include mobile-viewport() {
79
+ * :host {
80
+ * background-color: blue;
81
+ * }
82
+ * }
83
+ */
84
+ :host {
85
+ /**
86
+ * @prop --background: Background of the textarea
87
+ *
88
+ * @prop --border-radius: Border radius of the textarea
89
+ * @prop --border-color: Color of the border below the textarea when using helper text, error text, or counter
90
+ * @prop --border-radius: Radius of the textarea border. A large radius may display unevenly when using fill="outline"; if needed, use shape="round" instead or increase --padding-start.
91
+ * @prop --border-style: Style of the border below the textarea when using helper text, error text, or counter
92
+ * @prop --border-width: Width of the border below the textarea when using helper text, error text, or counter
93
+ *
94
+ * @prop --color: Color of the text
95
+ *
96
+ * @prop --placeholder-color: Color of the placeholder text
97
+ * @prop --placeholder-font-style: Style of the placeholder text
98
+ * @prop --placeholder-font-weight: Weight of the placeholder text
99
+ * @prop --placeholder-opacity: Opacity of the placeholder text
100
+ *
101
+ * @prop --highlight-height: The height of the highlight on the textarea. Only applies to md mode.
102
+ * @prop --highlight-color-focused: The color of the highlight on the textarea when focused
103
+ * @prop --highlight-color-valid: The color of the highlight on the textarea when valid
104
+ * @prop --highlight-color-invalid: The color of the highlight on the textarea when invalid
105
+ *
106
+ * @prop --padding-top: Top padding of the textarea
107
+ * @prop --padding-end: Right padding if direction is left-to-right, and left padding if direction is right-to-left of the textarea
108
+ * @prop --padding-bottom: Bottom padding of the textarea
109
+ * @prop --padding-start: Left padding if direction is left-to-right, and right padding if direction is right-to-left of the textarea
110
+ */
111
+ --background: initial;
112
+ --color: initial;
113
+ --placeholder-color: initial;
114
+ --placeholder-font-style: initial;
115
+ --placeholder-font-weight: initial;
116
+ --padding-top: 0;
117
+ --padding-end: 0;
118
+ --padding-start: 0;
119
+ --border-radius: 0;
120
+ --border-style: solid;
121
+ /**
122
+ * This is a private API that is used to switch
123
+ * out the highlight color based on the state
124
+ * of the component without having to write
125
+ * different selectors for different fill variants.
126
+ */
127
+ --highlight-color: var(--highlight-color-focused);
128
+ display: block;
129
+ position: relative;
130
+ width: 100%;
131
+ color: var(--color);
132
+ box-sizing: border-box;
133
+ }
134
+
135
+ /**
136
+ * When the cols property is set we should
137
+ * respect that width instead of defaulting
138
+ * to taking up the entire line.
139
+ * Requires both the cols and autoGrow
140
+ * properties to be reflected as attributes
141
+ * on the host.
142
+ *
143
+ * cols does not work with autoGrow because
144
+ * autoGrow would prevent line breaks from naturally
145
+ * occurring until the textarea takes up the entire line width.
146
+ */
147
+ :host([cols]:not([auto-grow])) {
148
+ width: fit-content;
149
+ }
150
+
151
+ :host(.ion-color) {
152
+ background: initial;
153
+ }
154
+
155
+ :host-context(ion-item) {
156
+ align-self: baseline;
157
+ }
158
+
159
+ :host-context(ion-item)[slot=start],
160
+ :host-context(ion-item)[slot=end] {
161
+ width: auto;
162
+ }
163
+
164
+ .native-textarea {
165
+ margin-left: 0;
166
+ margin-right: 0;
167
+ margin-top: 0;
168
+ margin-bottom: 0;
169
+ padding-left: 0;
170
+ padding-right: 0;
171
+ padding-top: 0;
172
+ padding-bottom: 0;
173
+ display: block;
174
+ position: relative;
175
+ flex: 1;
176
+ width: 100%;
177
+ max-width: 100%;
178
+ max-height: 100%;
179
+ border: 0;
180
+ outline: none;
181
+ background: transparent;
182
+ white-space: pre-wrap;
183
+ /**
184
+ * This ensures the textarea
185
+ * remains on top of any decoration
186
+ * that we render (particularly the
187
+ * outline border when fill="outline").
188
+ * If we did not do this then Axe would
189
+ * be unable to determine the color
190
+ * contrast of the textarea.
191
+ */
192
+ z-index: 1;
193
+ box-sizing: border-box;
194
+ resize: none;
195
+ appearance: none;
196
+ }
197
+ .native-textarea::placeholder {
198
+ padding-left: 0;
199
+ padding-right: 0;
200
+ padding-top: 0;
201
+ padding-bottom: 0;
202
+ color: var(--placeholder-color);
203
+ font-family: inherit;
204
+ font-style: var(--placeholder-font-style);
205
+ font-weight: var(--placeholder-font-weight);
206
+ opacity: var(--placeholder-opacity);
207
+ }
208
+
209
+ .native-textarea {
210
+ color: inherit;
211
+ font-family: inherit;
212
+ font-size: inherit;
213
+ font-style: inherit;
214
+ font-weight: inherit;
215
+ letter-spacing: inherit;
216
+ text-align: inherit;
217
+ text-decoration: inherit;
218
+ text-indent: inherit;
219
+ text-overflow: inherit;
220
+ text-transform: inherit;
221
+ grid-area: 1/1/2/2;
222
+ word-break: break-word;
223
+ }
224
+
225
+ .cloned-input {
226
+ top: 0;
227
+ bottom: 0;
228
+ position: absolute;
229
+ pointer-events: none;
230
+ }
231
+ .cloned-input {
232
+ inset-inline-start: 0;
233
+ }
234
+
235
+ /**
236
+ * The cloned input needs to be disabled on
237
+ * Android otherwise the viewport will still
238
+ * shift when running scroll assist.
239
+ */
240
+ .cloned-input:disabled {
241
+ opacity: 1;
242
+ }
243
+
244
+ :host([auto-grow]) .cloned-input {
245
+ height: 100%;
246
+ }
247
+
248
+ :host([auto-grow]) .native-textarea {
249
+ overflow: hidden;
250
+ }
251
+
252
+ .textarea-wrapper {
253
+ -webkit-padding-start: var(--padding-start);
254
+ padding-inline-start: var(--padding-start);
255
+ -webkit-padding-end: var(--padding-end);
256
+ padding-inline-end: var(--padding-end);
257
+ padding-top: 0px;
258
+ padding-bottom: 0px;
259
+ border-radius: var(--border-radius);
260
+ display: flex;
261
+ position: relative;
262
+ flex-grow: 1;
263
+ align-items: flex-start;
264
+ height: inherit;
265
+ min-height: inherit;
266
+ transition: background-color 15ms linear;
267
+ background: var(--background);
268
+ line-height: normal;
269
+ }
270
+
271
+ .native-wrapper {
272
+ position: relative;
273
+ width: 100%;
274
+ height: 100%;
275
+ }
276
+
277
+ :host(.has-focus) textarea {
278
+ caret-color: var(--highlight-color);
279
+ }
280
+
281
+ .native-wrapper {
282
+ display: grid;
283
+ min-width: inherit;
284
+ max-width: inherit;
285
+ /**
286
+ * This avoids a WebKit bug where
287
+ * the height of the inner textarea
288
+ * is incorrect and flows outside the
289
+ * parent container: https://bugs.webkit.org/show_bug.cgi?id=256781
290
+ * TODO FW-4734
291
+ */
292
+ grid-auto-rows: 100%;
293
+ }
294
+ .native-wrapper::after {
295
+ white-space: pre-wrap;
296
+ content: attr(data-replicated-value) " ";
297
+ visibility: hidden;
298
+ }
299
+
300
+ .native-wrapper::after {
301
+ padding-left: 0;
302
+ padding-right: 0;
303
+ padding-top: var(--padding-top);
304
+ padding-bottom: var(--padding-bottom);
305
+ margin-left: 0;
306
+ margin-right: 0;
307
+ margin-top: 0;
308
+ margin-bottom: 0;
309
+ border-radius: var(--border-radius);
310
+ /**
311
+ * Note: Do not use @include text-inherit()
312
+ * as that sets white-space: inherit
313
+ * Instead, we use white-space: pre-wrap above.
314
+ */
315
+ color: inherit;
316
+ font-family: inherit;
317
+ font-size: inherit;
318
+ font-style: inherit;
319
+ font-weight: inherit;
320
+ letter-spacing: inherit;
321
+ text-align: inherit;
322
+ text-decoration: inherit;
323
+ text-indent: inherit;
324
+ text-overflow: inherit;
325
+ text-transform: inherit;
326
+ grid-area: 1/1/2/2;
327
+ word-break: break-word;
328
+ }
329
+
330
+ .textarea-wrapper-inner {
331
+ display: flex;
332
+ width: 100%;
333
+ min-height: inherit;
334
+ }
335
+
336
+ :host(.ion-touched.ion-invalid) {
337
+ --highlight-color: var(--highlight-color-invalid);
338
+ }
339
+
340
+ /**
341
+ * The component highlight is only shown
342
+ * on focus, so we can safely set the valid
343
+ * color state when touched/valid. If we
344
+ * set it when .has-focus is present then
345
+ * the highlight color would change
346
+ * from the valid color to the component's
347
+ * color during the transition after the
348
+ * component loses focus.
349
+ */
350
+ :host(.ion-valid) {
351
+ --highlight-color: var(--highlight-color-valid);
352
+ }
353
+
354
+ .textarea-bottom {
355
+ display: flex;
356
+ justify-content: space-between;
357
+ border-top: var(--border-width) var(--border-style) var(--border-color);
358
+ white-space: normal;
359
+ }
360
+
361
+ /**
362
+ * If the textarea has a validity state, the
363
+ * border and label should reflect that as a color.
364
+ */
365
+ :host(.has-focus.ion-valid),
366
+ :host(.ion-touched.ion-invalid) {
367
+ --border-color: var(--highlight-color);
368
+ }
369
+
370
+ /**
371
+ * Error text should only be shown when .ion-invalid is
372
+ * present on the textarea. Otherwise the helper text should
373
+ * be shown.
374
+ */
375
+ .textarea-bottom .error-text {
376
+ display: none;
377
+ color: var(--highlight-color-invalid);
378
+ }
379
+
380
+ .textarea-bottom .helper-text {
381
+ display: block;
382
+ }
383
+
384
+ :host(.ion-touched.ion-invalid) .textarea-bottom .error-text {
385
+ display: block;
386
+ }
387
+
388
+ :host(.ion-touched.ion-invalid) .textarea-bottom .helper-text {
389
+ display: none;
390
+ }
391
+
392
+ .textarea-bottom .counter {
393
+ /**
394
+ * Counter should always be at
395
+ * the end of the container even
396
+ * when no helper/error texts are used.
397
+ */
398
+ -webkit-margin-start: auto;
399
+ margin-inline-start: auto;
400
+ white-space: nowrap;
401
+ }
402
+
403
+ .label-text-wrapper {
404
+ -webkit-padding-start: 0px;
405
+ padding-inline-start: 0px;
406
+ -webkit-padding-end: 0px;
407
+ padding-inline-end: 0px;
408
+ padding-top: var(--padding-top);
409
+ padding-bottom: var(--padding-bottom);
410
+ /**
411
+ * This ensures that double tapping this text
412
+ * clicks the <label> and focuses the textarea
413
+ * when a screen reader is enabled.
414
+ */
415
+ pointer-events: none;
416
+ }
417
+
418
+ /**
419
+ * We need to use two elements instead of
420
+ * one. The .label-text-wrapper is responsible
421
+ * for centering the label text vertically regardless
422
+ * of the textarea height using flexbox.
423
+ *
424
+ * The .label-text element is responsible for controlling
425
+ * overflow when label-placement="fixed".
426
+ * We want the ellipses to show up when the
427
+ * fixed label overflows, but text-overflow: ellipsis only
428
+ * works on block-level elements. A flex item is
429
+ * considered blockified (https://www.w3.org/TR/css-display-3/#blockify).
430
+ */
431
+ .label-text,
432
+ ::slotted([slot=label]) {
433
+ text-overflow: ellipsis;
434
+ white-space: nowrap;
435
+ overflow: hidden;
436
+ }
437
+
438
+ /**
439
+ * If no label text is placed into the slot
440
+ * then the element should be hidden otherwise
441
+ * there will be additional margins added.
442
+ */
443
+ .label-text-wrapper-hidden,
444
+ .textarea-outline-notch-hidden {
445
+ display: none;
446
+ }
447
+
448
+ /**
449
+ * Label is on the left of the textarea in LTR and
450
+ * on the right in RTL.
451
+ */
452
+ :host(.textarea-label-placement-start) .textarea-wrapper {
453
+ flex-direction: row;
454
+ }
455
+
456
+ /**
457
+ * Label is on the right of the textarea in LTR and
458
+ * on the left in RTL.
459
+ */
460
+ :host(.textarea-label-placement-end) .textarea-wrapper {
461
+ flex-direction: row-reverse;
462
+ }
463
+
464
+ /**
465
+ * Stacked: Label sits above the textarea and is scaled down.
466
+ * Floating: Label sits over the textarea when the textarea has no
467
+ * value and is blurred. Label sits above the textarea and is scaled
468
+ * down when the textarea is focused or has a value.
469
+ *
470
+ */
471
+ :host(.textarea-label-placement-stacked) .textarea-wrapper,
472
+ :host(.textarea-label-placement-floating) .textarea-wrapper {
473
+ flex-direction: column;
474
+ align-items: start;
475
+ }
476
+
477
+ /**
478
+ * Ensures that the label animates
479
+ * up and to the left in LTR or
480
+ * up and to the right in RTL.
481
+ */
482
+ :host(.textarea-label-placement-stacked) .label-text-wrapper,
483
+ :host(.textarea-label-placement-floating) .label-text-wrapper {
484
+ transform-origin: left top;
485
+ -webkit-padding-start: 0px;
486
+ padding-inline-start: 0px;
487
+ -webkit-padding-end: 0px;
488
+ padding-inline-end: 0px;
489
+ padding-top: 0px;
490
+ padding-bottom: 0px;
491
+ max-width: 100%;
492
+ /**
493
+ * The 2 ensures the label
494
+ * remains on top of any browser
495
+ * autofill background too.
496
+ */
497
+ z-index: 2;
498
+ }
499
+ :host-context([dir=rtl]):host(.textarea-label-placement-stacked) .label-text-wrapper, :host-context([dir=rtl]).textarea-label-placement-stacked .label-text-wrapper, :host-context([dir=rtl]):host(.textarea-label-placement-floating) .label-text-wrapper, :host-context([dir=rtl]).textarea-label-placement-floating .label-text-wrapper {
500
+ transform-origin: right top;
501
+ }
502
+
503
+ @supports selector(:dir(rtl)) {
504
+ :host(.textarea-label-placement-stacked:dir(rtl)) .label-text-wrapper, :host(.textarea-label-placement-floating:dir(rtl)) .label-text-wrapper {
505
+ transform-origin: right top;
506
+ }
507
+ }
508
+
509
+ /**
510
+ * Ensures the textarea does not
511
+ * overlap the label.
512
+ */
513
+ :host(.textarea-label-placement-stacked) textarea,
514
+ :host(.textarea-label-placement-floating) textarea,
515
+ :host(.textarea-label-placement-stacked[auto-grow]) .native-wrapper::after,
516
+ :host(.textarea-label-placement-floating[auto-grow]) .native-wrapper::after {
517
+ -webkit-margin-start: 0px;
518
+ margin-inline-start: 0px;
519
+ -webkit-margin-end: 0px;
520
+ margin-inline-end: 0px;
521
+ margin-top: 8px;
522
+ margin-bottom: 0px;
523
+ }
524
+
525
+ /**
526
+ * This makes the label sit over the textarea
527
+ * when the textarea is blurred and has no value.
528
+ */
529
+ :host(.textarea-label-placement-floating) .label-text-wrapper {
530
+ transform: translateY(100%) scale(1);
531
+ }
532
+
533
+ /**
534
+ * The textarea should be hidden when the label
535
+ * is on top of the textarea. This prevents the label
536
+ * from overlapping any placeholder value.
537
+ */
538
+ :host(.textarea-label-placement-floating) textarea {
539
+ opacity: 0;
540
+ }
541
+
542
+ :host(.has-focus.textarea-label-placement-floating) textarea,
543
+ :host(.has-value.textarea-label-placement-floating) textarea {
544
+ opacity: 1;
545
+ }
546
+
547
+ .start-slot-wrapper,
548
+ .end-slot-wrapper {
549
+ display: flex;
550
+ flex-shrink: 0;
551
+ align-self: start;
552
+ }
553
+
554
+ :host(.textarea-fill-outline) {
555
+ --border-width: var(--token-border-size-025, var(--token-scale-025, 1px));
556
+ --border-color: var(--token-primitives-neutral-500, #a2a2a2);
557
+ }
558
+
559
+ :host(.textarea-fill-outline) .textarea-wrapper {
560
+ background: initial;
561
+ }
562
+
563
+ :host(.textarea-fill-outline) .textarea-wrapper-inner {
564
+ /**
565
+ * The border should be relative to the inner wrapper
566
+ * so that it does not include the label.
567
+ */
568
+ position: relative;
569
+ }
570
+
571
+ :host(.textarea-fill-outline) .textarea-outline {
572
+ right: 0;
573
+ left: 0;
574
+ top: 0;
575
+ bottom: 0;
576
+ border-radius: var(--border-radius);
577
+ position: absolute;
578
+ width: 100%;
579
+ height: 100%;
580
+ pointer-events: none;
581
+ border: var(--border-width) var(--border-style) var(--border-color);
582
+ background: var(--background);
583
+ }
584
+
585
+ /**
586
+ * The bottom content should never have
587
+ * a border with the outline style.
588
+ */
589
+ :host(.textarea-fill-outline) .textarea-bottom {
590
+ border-top: none;
591
+ }
592
+
593
+ :host(.textarea-fill-outline) textarea {
594
+ margin-top: var(--token-space-100, var(--token-scale-100, 4px));
595
+ }
596
+
597
+ :host(.textarea-fill-outline.has-focus) {
598
+ --border-width: var(--token-border-size-050, var(--token-scale-050, 2px));
599
+ }
600
+
601
+ :host {
602
+ --border-color: var(--token-primitives-neutral-500, #a2a2a2);
603
+ --color: var(--token-text-default, var(--token-primitives-neutral-1200, #242424));
604
+ --highlight-color-valid: var(--token-semantics-success-900, var(--token-primitives-green-900, #126f23));
605
+ --highlight-color-invalid: var(--token-semantics-danger-800, var(--token-primitives-red-800, #bf2222));
606
+ --highlight-color-focused: var(--ion-color-primary, var(--token-bg-primary-base-default, var(--token-semantics-primary-base, var(--token-semantics-primary-700, var(--token-primitives-blue-700, #105cef)))));
607
+ --placeholder-color: var(--token-primitives-neutral-800, #626262);
608
+ --placeholder-opacity: 1;
609
+ --background: var(--token-bg-surface-default, var(--token-primitives-base-white, #ffffff));
610
+ --padding-bottom: var(--token-space-200, var(--token-scale-200, 8px));
611
+ font-size: var(--token-font-size-350, 0.875rem);
612
+ font-weight: var(--token-font-weight-regular, 400);
613
+ letter-spacing: var(--token-font-letter-spacing-0, 0%);
614
+ line-height: var(--token-font-line-height-600, var(--token-scale-600, 24px));
615
+ text-decoration: none;
616
+ text-transform: none;
617
+ }
618
+
619
+ :host(.ion-color) {
620
+ --highlight-color-focused: var(--ion-color-base);
621
+ }
622
+
623
+ .textarea-wrapper-inner {
624
+ height: 0;
625
+ }
626
+
627
+ :host(.textarea-size-small) .textarea-wrapper-inner {
628
+ --padding-top: var(--token-space-200, var(--token-scale-200, 8px));
629
+ --padding-end: var(--token-space-300, var(--token-scale-300, 12px));
630
+ --padding-bottom: var(--token-space-200, var(--token-scale-200, 8px));
631
+ --padding-start: var(--token-space-300, var(--token-scale-300, 12px));
632
+ min-height: var(--token-scale-2800, 112px);
633
+ }
634
+
635
+ :host(.textarea-size-medium) .textarea-wrapper-inner {
636
+ --padding-top: var(--token-space-300, var(--token-scale-300, 12px));
637
+ --padding-end: var(--token-space-400, var(--token-scale-400, 16px));
638
+ --padding-bottom: var(--token-space-300, var(--token-scale-300, 12px));
639
+ --padding-start: var(--token-space-400, var(--token-scale-400, 16px));
640
+ min-height: var(--token-scale-3400, 136px);
641
+ }
642
+
643
+ :host(.textarea-size-large) .textarea-wrapper-inner {
644
+ --padding-top: var(--token-space-400, var(--token-scale-400, 16px));
645
+ --padding-end: var(--token-space-500, var(--token-scale-500, 20px));
646
+ --padding-bottom: var(--token-space-400, var(--token-scale-400, 16px));
647
+ --padding-start: var(--token-space-500, var(--token-scale-500, 20px));
648
+ min-height: var(--token-scale-3600, 144px);
649
+ }
650
+
651
+ :host(.textarea-shape-soft) {
652
+ --border-radius: var(--token-border-radius-200, var(--token-scale-200, 8px));
653
+ }
654
+
655
+ :host(.textarea-shape-round) {
656
+ --border-radius: var(--token-border-radius-400, var(--token-scale-400, 16px));
657
+ }
658
+
659
+ :host(.textarea-shape-rectangular) {
660
+ --border-radius: var(--token-border-radius-0, var(--token-scale-0, 0px));
661
+ }
662
+
663
+ .textarea-wrapper {
664
+ gap: var(--token-space-100, var(--token-scale-100, 4px));
665
+ }
666
+
667
+ .textarea-wrapper-inner {
668
+ -webkit-padding-start: var(--padding-start);
669
+ padding-inline-start: var(--padding-start);
670
+ -webkit-padding-end: var(--padding-end);
671
+ padding-inline-end: var(--padding-end);
672
+ padding-top: var(--padding-top);
673
+ padding-bottom: var(--padding-bottom);
674
+ }
675
+
676
+ :host([auto-grow]) .textarea-wrapper-inner {
677
+ height: auto;
678
+ }
679
+
680
+ :host([auto-grow]) .native-wrapper {
681
+ min-height: inherit;
682
+ max-height: inherit;
683
+ }
684
+
685
+ .label-text-wrapper {
686
+ font-size: var(--token-font-size-300, 0.75rem);
687
+ font-weight: var(--token-font-weight-medium, 500);
688
+ letter-spacing: var(--token-font-letter-spacing-0, 0%);
689
+ line-height: var(--token-font-line-height-500, var(--token-scale-500, 20px));
690
+ text-decoration: none;
691
+ text-transform: none;
692
+ max-width: var(--token-scale-5000, 200px);
693
+ transition: color var(--token-transition-time-150, 150ms) var(--token-transition-curve-expressive, cubic-bezier(0.4, 0, 0.2, 1)), transform var(--token-transition-time-150, 150ms) var(--token-transition-curve-expressive, cubic-bezier(0.4, 0, 0.2, 1));
694
+ color: var(--token-primitives-neutral-1000, #3b3b3b);
695
+ }
696
+
697
+ :host(.label-floating) .label-text-wrapper {
698
+ transform: none;
699
+ }
700
+
701
+ ion-icon {
702
+ color: var(--token-primitives-neutral-800, #626262);
703
+ font-size: var(--token-scale-400, 16px);
704
+ }
705
+
706
+ .start-slot-wrapper,
707
+ .end-slot-wrapper {
708
+ margin-top: var(--token-space-050, var(--token-scale-050, 2px));
709
+ }
710
+
711
+ .textarea-bottom {
712
+ -webkit-padding-start: var(--padding-start);
713
+ padding-inline-start: var(--padding-start);
714
+ -webkit-padding-end: var(--padding-end);
715
+ padding-inline-end: var(--padding-end);
716
+ padding-top: var(--token-space-100, var(--token-scale-100, 4px));
717
+ font-size: var(--token-font-size-300, 0.75rem);
718
+ font-weight: var(--token-font-weight-medium, 500);
719
+ letter-spacing: var(--token-font-letter-spacing-0, 0%);
720
+ line-height: var(--token-font-line-height-500, var(--token-scale-500, 20px));
721
+ text-decoration: none;
722
+ text-transform: none;
723
+ }
724
+
725
+ .textarea-bottom .helper-text,
726
+ .textarea-bottom .counter {
727
+ color: var(--token-primitives-neutral-800, #626262);
728
+ }
729
+
730
+ :host(.has-focus.ion-valid) .helper-text {
731
+ color: var(--highlight-color-valid);
732
+ }
733
+
734
+ :host(.has-focus.ion-valid),
735
+ :host(.ion-touched.ion-invalid) {
736
+ --border-width: var(--token-border-size-025, var(--token-scale-025, 1px));
737
+ }
738
+
739
+ .textarea-highlight {
740
+ bottom: -1px;
741
+ position: absolute;
742
+ width: 100%;
743
+ height: var(--token-border-size-050, var(--token-scale-050, 2px));
744
+ transform: scale(0);
745
+ transition: transform var(--token-transition-time-200, 200ms);
746
+ background: var(--border-color);
747
+ }
748
+ .textarea-highlight {
749
+ inset-inline-start: 0;
750
+ }
751
+
752
+ :host(.has-focus) {
753
+ --border-color: var(--token-border-focus-default, var(--token-primitives-blue-400, #b5c0f7));
754
+ }
755
+
756
+ :host(.has-focus) .textarea-highlight {
757
+ transform: scale(1);
758
+ }
759
+
760
+ @media (any-hover: hover) {
761
+ :host(:hover) {
762
+ --border-color: var(--token-primitives-neutral-600, #8c8c8c);
763
+ }
764
+ }
765
+ :host(.textarea-disabled) {
766
+ --color: var(--token-primitives-neutral-500, #a2a2a2);
767
+ --background: var(--token-primitives-neutral-100, #f5f5f5);
768
+ --border-color: var(--token-primitives-neutral-300, #e0e0e0);
769
+ --placeholder-color: var(--token-primitives-neutral-500, #a2a2a2);
770
+ }
771
+
772
+ :host(.textarea-disabled:not(.ion-valid)) .textarea-bottom .helper-text,
773
+ :host(.textarea-disabled) .textarea-bottom .counter,
774
+ :host(.textarea-disabled) .label-text-wrapper {
775
+ color: var(--token-text-disabled, var(--token-primitives-neutral-500, #a2a2a2));
776
+ }
777
+
778
+ :host(.textarea-disabled.has-focus.ion-valid) {
779
+ --border-color: rgba(var(--token-semantics-success-base-rgb, 27, 164, 51), 0.6);
780
+ }
781
+
782
+ :host(.textarea-disabled.ion-touched.ion-invalid) {
783
+ --border-color: rgba(var(--token-semantics-danger-base-rgb, 229, 41, 41), 0.6);
784
+ }
785
+
786
+ :host(.textarea-disabled.ion-color) {
787
+ --border-color: rgba(var(--ion-color-base-rgb), 0.6);
788
+ }
789
+
790
+ :host(.textarea-disabled.has-focus.ion-valid) .textarea-bottom .helper-text,
791
+ :host(.textarea-disabled.ion-touched.ion-invalid) .error-text {
792
+ opacity: 0.6;
793
+ }
794
+
795
+ :host(.textarea-readonly) {
796
+ --background: var(--token-primitives-neutral-100, #f5f5f5);
797
+ }
798
+
799
+ /**
800
+ * This makes the label sit above the textarea.
801
+ */
802
+ :host(.label-floating) .label-text-wrapper {
803
+ /**
804
+ * Label text should not extend
805
+ * beyond the bounds of the textarea.
806
+ */
807
+ max-width: calc(100% / 0.75);
808
+ }
809
+
810
+ .textarea-wrapper textarea {
811
+ /**
812
+ * When the floating label appears on top of the
813
+ * textarea, we need to fade the textarea out so that the
814
+ * label does not overlap with the placeholder.
815
+ */
816
+ transition: opacity var(--token-transition-time-150, 150ms) var(--token-transition-curve-expressive, cubic-bezier(0.4, 0, 0.2, 1));
817
+ }
818
+
819
+ /**
820
+ * Label is on the left of the textarea in LTR and
821
+ * on the right in RTL. Label also has a fixed width.
822
+ */
823
+ :host(.textarea-label-placement-fixed) .label-text {
824
+ flex: 0 0 calc(var(--token-scale-2400, 96px) + var(--token-space-100, var(--token-scale-100, 4px)));
825
+ width: calc(var(--token-scale-2400, 96px) + var(--token-space-100, var(--token-scale-100, 4px)));
826
+ min-width: calc(var(--token-scale-2400, 96px) + var(--token-space-100, var(--token-scale-100, 4px)));
827
+ max-width: var(--token-scale-5000, 200px);
828
+ }