@saleor/macaw-ui 0.7.2 → 0.8.0-dev.104

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 (1127) hide show
  1. package/README.md +97 -22
  2. package/dist/.DS_Store +0 -0
  3. package/dist/Inter-Black.woff2 +0 -0
  4. package/dist/Inter-BlackItalic.woff2 +0 -0
  5. package/dist/Inter-Bold.woff2 +0 -0
  6. package/dist/Inter-BoldItalic.woff2 +0 -0
  7. package/dist/Inter-ExtraBold.woff2 +0 -0
  8. package/dist/Inter-ExtraBoldItalic.woff2 +0 -0
  9. package/dist/Inter-ExtraLight.woff2 +0 -0
  10. package/dist/Inter-ExtraLightItalic.woff2 +0 -0
  11. package/dist/Inter-Italic.woff2 +0 -0
  12. package/dist/Inter-Light.woff2 +0 -0
  13. package/dist/Inter-LightItalic.woff2 +0 -0
  14. package/dist/Inter-Medium.woff2 +0 -0
  15. package/dist/Inter-MediumItalic.woff2 +0 -0
  16. package/dist/Inter-Regular.woff2 +0 -0
  17. package/dist/Inter-SemiBold.woff2 +0 -0
  18. package/dist/Inter-SemiBoldItalic.woff2 +0 -0
  19. package/dist/Inter-Thin.woff2 +0 -0
  20. package/dist/Inter-ThinItalic.woff2 +0 -0
  21. package/dist/Inter-italic.var.woff2 +0 -0
  22. package/dist/Inter-roman.var.woff2 +0 -0
  23. package/dist/Inter.var.woff2 +0 -0
  24. package/dist/components/Accordion/Item/Content.d.ts +9 -0
  25. package/dist/components/Accordion/Item/Item.d.ts +10 -0
  26. package/dist/components/Accordion/Item/Trigger.d.ts +10 -0
  27. package/dist/components/Accordion/Item/TriggerButton.d.ts +8 -0
  28. package/dist/components/Accordion/Item/index.d.ts +4 -0
  29. package/dist/components/Accordion/Root.d.ts +1010 -0
  30. package/dist/components/Accordion/common.css.d.ts +3 -0
  31. package/dist/components/Accordion/index.d.ts +1019 -0
  32. package/dist/components/Avatar/Store/Store.css.d.ts +14 -0
  33. package/dist/components/Avatar/Store/Store.d.ts +12 -0
  34. package/dist/components/Avatar/Store/index.d.ts +1 -0
  35. package/dist/components/Avatar/User/User.css.d.ts +14 -0
  36. package/dist/components/Avatar/User/User.d.ts +12 -0
  37. package/dist/components/Avatar/User/index.d.ts +1 -0
  38. package/dist/components/Avatar/common.css.d.ts +6 -0
  39. package/dist/components/Avatar/index.d.ts +2018 -0
  40. package/dist/components/BaseInput/BaseInput.css.d.ts +57 -0
  41. package/dist/components/BaseInput/HelperText.d.ts +8 -0
  42. package/dist/components/BaseInput/index.d.ts +2 -0
  43. package/dist/components/BaseSelect/BaseSelect.css.d.ts +22 -0
  44. package/dist/components/BaseSelect/LoadingListItem/LoadingListItem.d.ts +7 -0
  45. package/dist/components/BaseSelect/LoadingListItem/Spinner.css.d.ts +1 -0
  46. package/dist/components/BaseSelect/LoadingListItem/Spinner.d.ts +1 -0
  47. package/dist/components/BaseSelect/LoadingListItem/index.d.ts +1 -0
  48. package/dist/components/BaseSelect/helpers.d.ts +5 -0
  49. package/dist/components/BaseSelect/index.d.ts +4 -0
  50. package/dist/components/BaseSelect/types.d.ts +6 -0
  51. package/dist/components/Box/Box.d.ts +1000 -0
  52. package/dist/components/Box/index.d.ts +1 -0
  53. package/dist/components/Button/Button.css.d.ts +18 -0
  54. package/dist/components/Button/Button.d.ts +1015 -0
  55. package/dist/components/Button/utils.d.ts +2 -0
  56. package/dist/components/Checkbox/Checkbox.css.d.ts +4 -0
  57. package/dist/components/Checkbox/Checkbox.d.ts +1021 -0
  58. package/dist/components/Checkbox/CheckedIcon.d.ts +6 -0
  59. package/dist/components/Checkbox/IndeterminateIcon.d.ts +6 -0
  60. package/dist/components/Checkbox/index.d.ts +1 -0
  61. package/dist/components/Chip/Chip.css.d.ts +9 -0
  62. package/dist/components/Chip/Chip.d.ts +1009 -0
  63. package/dist/components/Chip/index.d.ts +1 -0
  64. package/dist/components/Combobox/Common/ComboboxWrapper.d.ts +18 -0
  65. package/dist/components/Combobox/Common/index.d.ts +2 -0
  66. package/dist/components/Combobox/Common/useCombobox.d.ts +23 -0
  67. package/dist/components/Combobox/Dynamic/DynamicCombobox.d.ts +2044 -0
  68. package/dist/components/Combobox/Dynamic/index.d.ts +1 -0
  69. package/dist/components/Combobox/Static/Combobox.d.ts +2029 -0
  70. package/dist/components/Combobox/Static/index.d.ts +1 -0
  71. package/dist/components/Combobox/index.d.ts +2 -0
  72. package/dist/components/Divider/Divider.d.ts +1003 -0
  73. package/dist/components/Divider/index.d.ts +1 -0
  74. package/dist/components/Drawer/Content.css.d.ts +1 -0
  75. package/dist/components/Drawer/Content.d.ts +9 -0
  76. package/dist/components/Drawer/Root.d.ts +7 -0
  77. package/dist/components/Drawer/Trigger.d.ts +7 -0
  78. package/dist/components/Drawer/index.d.ts +16 -0
  79. package/dist/components/Dropdown/Content.d.ts +11 -0
  80. package/dist/components/Dropdown/Item.d.ts +9 -0
  81. package/dist/components/Dropdown/Root.d.ts +10 -0
  82. package/dist/components/Dropdown/Trigger.d.ts +8 -0
  83. package/dist/components/Dropdown/common.css.d.ts +2 -0
  84. package/dist/components/Dropdown/index.d.ts +22 -0
  85. package/dist/components/DropdownButton/DropdownButton.css.d.ts +13 -0
  86. package/dist/components/DropdownButton/DropdownButton.d.ts +1012 -0
  87. package/dist/components/DropdownButton/index.d.ts +1 -0
  88. package/dist/components/ExperimentalFilters/EventEmitter.d.ts +96 -0
  89. package/dist/components/ExperimentalFilters/Footer.d.ts +11 -0
  90. package/dist/components/ExperimentalFilters/RightOperator.d.ts +41 -0
  91. package/dist/components/ExperimentalFilters/Root.d.ts +11 -0
  92. package/dist/components/ExperimentalFilters/Row.d.ts +24 -0
  93. package/dist/components/ExperimentalFilters/context.d.ts +7 -0
  94. package/dist/components/ExperimentalFilters/index.d.ts +17 -0
  95. package/dist/components/ExperimentalFilters/useEvents.d.ts +11 -0
  96. package/dist/components/Expression/AutosizeInput/index.d.ts +23 -0
  97. package/dist/components/Expression/AutosizeInput/useTextMetrics.d.ts +5 -0
  98. package/dist/components/Expression/Condition.d.ts +13 -0
  99. package/dist/components/Expression/Dropdown.d.ts +23 -0
  100. package/dist/components/Expression/Expression.css.d.ts +37 -0
  101. package/dist/components/Expression/OperandAutocomplete.d.ts +1009 -0
  102. package/dist/components/Expression/OperandDropdown.d.ts +8 -0
  103. package/dist/components/Expression/OperandNumber.d.ts +17 -0
  104. package/dist/components/Expression/OperandRange.d.ts +15 -0
  105. package/dist/components/Expression/OperandText.d.ts +9 -0
  106. package/dist/components/Expression/Root.d.ts +8 -0
  107. package/dist/components/Expression/index.d.ts +1049 -0
  108. package/dist/components/Icons/ArrowDownIcon.d.ts +17 -0
  109. package/dist/components/Icons/ArrowLeftIcon.d.ts +17 -0
  110. package/dist/components/Icons/ArrowRightIcon.d.ts +17 -0
  111. package/dist/components/Icons/ArrowUpIcon.d.ts +17 -0
  112. package/dist/components/Icons/CatalogIcon.d.ts +17 -0
  113. package/dist/components/Icons/CheckboxIcon.d.ts +17 -0
  114. package/dist/components/Icons/ChervonDoubleIcon.d.ts +17 -0
  115. package/dist/components/Icons/ChervonDownIcon.d.ts +17 -0
  116. package/dist/components/Icons/ChervonUpIcon.d.ts +17 -0
  117. package/dist/components/Icons/ChevronLeftIcon.d.ts +17 -0
  118. package/dist/components/Icons/ChevronRightIcon.d.ts +17 -0
  119. package/dist/components/Icons/CloseIcon.d.ts +17 -0
  120. package/dist/components/Icons/ConfigurationIcon.d.ts +17 -0
  121. package/dist/components/Icons/CopyIcon.d.ts +17 -0
  122. package/dist/components/Icons/CustomersIcon.d.ts +17 -0
  123. package/dist/components/Icons/DarkModeIcon.d.ts +17 -0
  124. package/dist/components/Icons/EditIcon.d.ts +17 -0
  125. package/dist/components/Icons/ExportIcon.d.ts +17 -0
  126. package/dist/components/Icons/ExternalLinkIcon.d.ts +17 -0
  127. package/dist/components/Icons/FileExportIcon.d.ts +17 -0
  128. package/dist/components/Icons/FloppyDiscIcon.d.ts +17 -0
  129. package/dist/components/Icons/FullscreenOffIcon.d.ts +17 -0
  130. package/dist/components/Icons/FullscreenOnIcon.d.ts +17 -0
  131. package/dist/components/Icons/GenericAppIcon.d.ts +17 -0
  132. package/dist/components/Icons/GripIcon.d.ts +17 -0
  133. package/dist/components/Icons/HomeIcon.d.ts +17 -0
  134. package/dist/components/Icons/InfoIcon.d.ts +17 -0
  135. package/dist/components/Icons/LightModeIcon.d.ts +17 -0
  136. package/dist/components/Icons/MailIcon.d.ts +17 -0
  137. package/dist/components/Icons/MarketplaceIcon.d.ts +17 -0
  138. package/dist/components/Icons/MenuIcon.d.ts +17 -0
  139. package/dist/components/Icons/MoreOptionsIcon.d.ts +17 -0
  140. package/dist/components/Icons/OrdersIcon.d.ts +17 -0
  141. package/dist/components/Icons/PlusIcon.d.ts +17 -0
  142. package/dist/components/Icons/ProductsIcons.d.ts +17 -0
  143. package/dist/components/Icons/RemoveIcon.d.ts +17 -0
  144. package/dist/components/Icons/SVGWrapper/SVGWrapper.css.d.ts +36 -0
  145. package/dist/components/Icons/SVGWrapper/SVGWrapper.d.ts +17 -0
  146. package/dist/components/Icons/SVGWrapper/createSVGWrapper.d.ts +18 -0
  147. package/dist/components/Icons/SVGWrapper/index.d.ts +2 -0
  148. package/dist/components/Icons/SearchIcon.d.ts +17 -0
  149. package/dist/components/Icons/SellsIcon.d.ts +17 -0
  150. package/dist/components/Icons/StorefrontIcon.d.ts +17 -0
  151. package/dist/components/Icons/TableEditIcon.d.ts +17 -0
  152. package/dist/components/Icons/TranslationsIcon.d.ts +17 -0
  153. package/dist/components/Icons/TrashBinIcon.d.ts +17 -0
  154. package/dist/components/Icons/ViewListIcon.d.ts +17 -0
  155. package/dist/components/Icons/ViewTableIcon.d.ts +17 -0
  156. package/dist/components/Icons/ViewTilesIcon.d.ts +17 -0
  157. package/dist/components/Icons/ViewWideTilesIcon.d.ts +17 -0
  158. package/dist/components/Icons/VouchersIcon.d.ts +17 -0
  159. package/dist/components/Icons/WarningIcon.d.ts +17 -0
  160. package/dist/components/Icons/index.d.ts +48 -0
  161. package/dist/components/Input/Input.d.ts +1016 -0
  162. package/dist/components/Input/InputWrapper.d.ts +28 -0
  163. package/dist/components/Input/helpers.d.ts +4 -0
  164. package/dist/components/Input/index.d.ts +1 -0
  165. package/dist/components/List/Divider.d.ts +10 -0
  166. package/dist/components/List/Item.d.ts +1012 -0
  167. package/dist/components/List/ItemGroup/Content.d.ts +7 -0
  168. package/dist/components/List/ItemGroup/Root.d.ts +11 -0
  169. package/dist/components/List/ItemGroup/Trigger.d.ts +13 -0
  170. package/dist/components/List/ItemGroup/common.css.d.ts +3 -0
  171. package/dist/components/List/ItemGroup/context.d.ts +6 -0
  172. package/dist/components/List/ItemGroup/index.d.ts +17 -0
  173. package/dist/components/List/List.d.ts +1008 -0
  174. package/dist/components/List/index.d.ts +2028 -0
  175. package/dist/components/Multiselect/Common/Adornment.d.ts +10 -0
  176. package/dist/components/Multiselect/Common/Multiselect.css.d.ts +10 -0
  177. package/dist/components/Multiselect/Common/MultiselectWrapper.d.ts +21 -0
  178. package/dist/components/Multiselect/Common/index.d.ts +3 -0
  179. package/dist/components/Multiselect/Common/useMultiselect.d.ts +29 -0
  180. package/dist/components/Multiselect/Dynamic/DynamicMultiselect.d.ts +2051 -0
  181. package/dist/components/Multiselect/Dynamic/index.d.ts +1 -0
  182. package/dist/components/Multiselect/Static/Multiselect.d.ts +2042 -0
  183. package/dist/components/Multiselect/Static/index.d.ts +1 -0
  184. package/dist/components/Multiselect/index.d.ts +2 -0
  185. package/dist/components/Popover/Anchor.d.ts +7 -0
  186. package/dist/components/Popover/Arrow.d.ts +9 -0
  187. package/dist/components/Popover/Content.d.ts +13 -0
  188. package/dist/components/Popover/Popover.css.d.ts +2 -0
  189. package/dist/components/Popover/Root.d.ts +12 -0
  190. package/dist/components/Popover/Trigger.d.ts +7 -0
  191. package/dist/components/Popover/index.d.ts +26 -0
  192. package/dist/components/RadioGroup/Group.css.d.ts +16 -0
  193. package/dist/components/RadioGroup/Group.d.ts +1018 -0
  194. package/dist/components/RadioGroup/Item.css.d.ts +72 -0
  195. package/dist/components/RadioGroup/Item.d.ts +1015 -0
  196. package/dist/components/RadioGroup/index.d.ts +2014 -0
  197. package/dist/components/SearchInput/SearchInput.css.d.ts +19 -0
  198. package/dist/components/SearchInput/SearchInput.d.ts +1003 -0
  199. package/dist/components/SearchInput/index.d.ts +1 -0
  200. package/dist/components/Select/Select.d.ts +2038 -0
  201. package/dist/components/Select/SelectWrapper.d.ts +15 -0
  202. package/dist/components/Select/index.d.ts +1 -0
  203. package/dist/components/Select/useSelect.d.ts +21 -0
  204. package/dist/components/Switch/Item.d.ts +12 -0
  205. package/dist/components/Switch/Switch.css.d.ts +12 -0
  206. package/dist/components/Switch/Switch.d.ts +1011 -0
  207. package/dist/components/Switch/index.d.ts +1009 -0
  208. package/dist/components/Text/Text.css.d.ts +24 -0
  209. package/dist/components/Text/Text.d.ts +1013 -0
  210. package/dist/components/Text/index.d.ts +1 -0
  211. package/dist/components/Toggle/Toggle.css.d.ts +5 -0
  212. package/dist/components/Toggle/Toggle.d.ts +2 -0
  213. package/dist/components/Toggle/index.d.ts +1 -0
  214. package/dist/components/Tooltip/Arrow.d.ts +9 -0
  215. package/dist/components/Tooltip/Content.d.ts +14 -0
  216. package/dist/components/Tooltip/ContentHeading.d.ts +8 -0
  217. package/dist/components/Tooltip/Root.d.ts +13 -0
  218. package/dist/components/Tooltip/Tooltip.css.d.ts +2 -0
  219. package/dist/components/Tooltip/Trigger.d.ts +5 -0
  220. package/dist/components/Tooltip/index.d.ts +23 -0
  221. package/dist/components/index.d.ts +26 -0
  222. package/dist/components/types.d.ts +3 -0
  223. package/dist/index.d.ts +2 -0
  224. package/dist/macaw-ui.js +98 -0
  225. package/dist/macaw-ui.mjs +12487 -0
  226. package/dist/style.css +1 -0
  227. package/dist/theme/context.d.ts +12 -0
  228. package/dist/theme/contract.css.d.ts +272 -0
  229. package/dist/theme/helpers.d.ts +4 -0
  230. package/dist/theme/index.d.ts +7 -0
  231. package/dist/theme/media-queries.d.ts +2 -0
  232. package/dist/theme/provider.d.ts +7 -0
  233. package/dist/theme/sprinkles.css.d.ts +537 -0
  234. package/dist/theme/themes/common.d.ts +151 -0
  235. package/dist/theme/themes/defaultDark.d.ts +272 -0
  236. package/dist/theme/themes/defaultLight.d.ts +272 -0
  237. package/dist/theme/themes/index.d.ts +548 -0
  238. package/dist/utils/css.d.ts +1 -0
  239. package/dist/utils/index.d.ts +2 -0
  240. package/dist/utils/useClickOutside.d.ts +1 -0
  241. package/legacy/dist/cjs/index.js +5 -0
  242. package/legacy/dist/cjs/index.js.map +7 -0
  243. package/legacy/dist/esm/index.js +5 -0
  244. package/legacy/dist/esm/index.js.map +7 -0
  245. package/legacy/dist/types/Accordion/Accordion.d.ts +7 -0
  246. package/legacy/dist/types/Chip/Chip.d.ts +8 -0
  247. package/legacy/dist/types/Chip/ChipMovable.d.ts +5 -0
  248. package/legacy/dist/types/Chip/ChipRemovable.d.ts +6 -0
  249. package/legacy/dist/types/Chip/ChipSwatch.d.ts +7 -0
  250. package/legacy/dist/types/DialogTable/DialogTable.d.ts +6 -0
  251. package/legacy/dist/types/icons/indicator/regular/ErrorIndicatorIcon.d.ts +2 -0
  252. package/legacy/dist/types/icons/indicator/regular/FailIndicatorIcon.d.ts +2 -0
  253. package/legacy/dist/types/icons/indicator/regular/FailOutlineIndicatorIcon.d.ts +2 -0
  254. package/legacy/dist/types/icons/indicator/regular/HelpIndicatorIcon.d.ts +2 -0
  255. package/legacy/dist/types/icons/indicator/regular/SuccessIndicatorIcon.d.ts +2 -0
  256. package/legacy/dist/types/icons/indicator/regular/WarningIndicatorIcon.d.ts +2 -0
  257. package/legacy/dist/types/icons/indicator/small/ErrorSmallIndicatorIcon.d.ts +2 -0
  258. package/legacy/dist/types/icons/indicator/small/SuccessSmallIndicatorIcon.d.ts +2 -0
  259. package/legacy/dist/types/icons/indicator/small/WarningSmallIndicatorIcon.d.ts +2 -0
  260. package/package.json +124 -127
  261. package/dist/cjs/index.js +0 -5
  262. package/dist/cjs/index.js.map +0 -7
  263. package/dist/esm/index.js +0 -5
  264. package/dist/esm/index.js.map +0 -7
  265. package/dist/types/Accordion/Accordion.d.ts +0 -7
  266. package/dist/types/Chip/Chip.d.ts +0 -8
  267. package/dist/types/Chip/ChipMovable.d.ts +0 -5
  268. package/dist/types/Chip/ChipRemovable.d.ts +0 -6
  269. package/dist/types/Chip/ChipSwatch.d.ts +0 -7
  270. package/dist/types/DialogTable/DialogTable.d.ts +0 -6
  271. package/dist/types/icons/indicator/regular/ErrorIndicatorIcon.d.ts +0 -2
  272. package/dist/types/icons/indicator/regular/FailIndicatorIcon.d.ts +0 -2
  273. package/dist/types/icons/indicator/regular/FailOutlineIndicatorIcon.d.ts +0 -2
  274. package/dist/types/icons/indicator/regular/HelpIndicatorIcon.d.ts +0 -2
  275. package/dist/types/icons/indicator/regular/SuccessIndicatorIcon.d.ts +0 -2
  276. package/dist/types/icons/indicator/regular/WarningIndicatorIcon.d.ts +0 -2
  277. package/dist/types/icons/indicator/small/ErrorSmallIndicatorIcon.d.ts +0 -2
  278. package/dist/types/icons/indicator/small/SuccessSmallIndicatorIcon.d.ts +0 -2
  279. package/dist/types/icons/indicator/small/WarningSmallIndicatorIcon.d.ts +0 -2
  280. package/src/Accordion/Accordion.stories.tsx +0 -17
  281. package/src/Accordion/Accordion.tsx +0 -30
  282. package/src/Accordion/index.ts +0 -1
  283. package/src/Accordion/styles.ts +0 -29
  284. package/src/ActionBar/ActionBar.stories.tsx +0 -34
  285. package/src/ActionBar/ActionBar.tsx +0 -57
  286. package/src/ActionBar/context.tsx +0 -41
  287. package/src/ActionBar/index.ts +0 -2
  288. package/src/ActionBar/styles.ts +0 -31
  289. package/src/Alert/Alert.stories.tsx +0 -48
  290. package/src/Alert/Alert.tsx +0 -86
  291. package/src/Alert/AlertBase.tsx +0 -38
  292. package/src/Alert/index.ts +0 -2
  293. package/src/Alert/styles.ts +0 -59
  294. package/src/Autocomplete/Autocomplete.stories.tsx +0 -43
  295. package/src/Autocomplete/Autocomplete.tsx +0 -188
  296. package/src/Autocomplete/fixtures.ts +0 -122
  297. package/src/Autocomplete/index.ts +0 -1
  298. package/src/Autocomplete/styles.ts +0 -22
  299. package/src/Avatar/Avatar.stories.tsx +0 -22
  300. package/src/Avatar/Avatar.tsx +0 -26
  301. package/src/Avatar/index.ts +0 -1
  302. package/src/Avatar/styles.ts +0 -26
  303. package/src/Backlink/Backlink.stories.tsx +0 -53
  304. package/src/Backlink/Backlink.tsx +0 -50
  305. package/src/Backlink/context.tsx +0 -27
  306. package/src/Backlink/index.ts +0 -2
  307. package/src/Backlink/styles.ts +0 -36
  308. package/src/BaseList/BaseList.tsx +0 -154
  309. package/src/BaseList/context.ts +0 -16
  310. package/src/BaseList/index.ts +0 -1
  311. package/src/BaseList/styles.ts +0 -48
  312. package/src/Button/Button.tsx +0 -82
  313. package/src/Button/styles.ts +0 -104
  314. package/src/Chip/Chip.tsx +0 -52
  315. package/src/Chip/ChipAdornment.tsx +0 -53
  316. package/src/Chip/ChipMovable.tsx +0 -40
  317. package/src/Chip/ChipRemovable.tsx +0 -29
  318. package/src/Chip/ChipSwatch.tsx +0 -42
  319. package/src/Chip/index.ts +0 -5
  320. package/src/Chip/private/ColorSwatch.tsx +0 -21
  321. package/src/Chip/styles.ts +0 -46
  322. package/src/CircleIndicator/CircleIndicator.stories.tsx +0 -48
  323. package/src/CircleIndicator/CircleIndicator.tsx +0 -36
  324. package/src/CircleIndicator/index.ts +0 -1
  325. package/src/CircleIndicator/styles.ts +0 -31
  326. package/src/ConfirmButton/ConfirmButton.stories.tsx +0 -125
  327. package/src/ConfirmButton/ConfirmButton.tsx +0 -113
  328. package/src/ConfirmButton/index.ts +0 -1
  329. package/src/ConfirmButton/styles.ts +0 -43
  330. package/src/DialogHeader/DialogHeader.tsx +0 -41
  331. package/src/DialogHeader/index.ts +0 -1
  332. package/src/DialogHeader/styles.ts +0 -24
  333. package/src/DialogTable/DialogTable.tsx +0 -23
  334. package/src/DialogTable/index.ts +0 -1
  335. package/src/DialogTable/styles.ts +0 -11
  336. package/src/Filter/Filter.tsx +0 -160
  337. package/src/Filter/FilterBar.tsx +0 -135
  338. package/src/Filter/FilterContent.tsx +0 -40
  339. package/src/Filter/FilterField/AutocompleteFilterField.tsx +0 -61
  340. package/src/Filter/FilterField/MultipleSelectFilterField.tsx +0 -78
  341. package/src/Filter/FilterField/MultipleValueAutocompleteFilterField.tsx +0 -61
  342. package/src/Filter/FilterField/RangeFilterField.tsx +0 -51
  343. package/src/Filter/FilterField/SelectFilterField.tsx +0 -41
  344. package/src/Filter/FilterField/TextFilterField.tsx +0 -36
  345. package/src/Filter/FilterMenu.tsx +0 -66
  346. package/src/Filter/context.tsx +0 -13
  347. package/src/Filter/index.ts +0 -4
  348. package/src/Filter/stories/Filter.stories.tsx +0 -143
  349. package/src/Filter/stories/FilterInteractive.stories.tsx +0 -97
  350. package/src/Filter/stories/labels.ts +0 -8
  351. package/src/Filter/styles.ts +0 -111
  352. package/src/Filter/types.ts +0 -74
  353. package/src/Filter/utils.ts +0 -216
  354. package/src/IconButton/IconButton.stories.tsx +0 -48
  355. package/src/IconButton/IconButton.tsx +0 -106
  356. package/src/IconButton/index.ts +0 -1
  357. package/src/IconButton/partials.ts +0 -66
  358. package/src/IconButton/styles.ts +0 -116
  359. package/src/Indicator/Circle.tsx +0 -17
  360. package/src/Indicator/CircleFilled.tsx +0 -16
  361. package/src/Indicator/CircleOutline.tsx +0 -34
  362. package/src/Indicator/Indicator.stories.tsx +0 -49
  363. package/src/Indicator/Indicator.tsx +0 -65
  364. package/src/Indicator/IndicatorCircle.stories.tsx +0 -28
  365. package/src/Indicator/IndicatorCircle.tsx +0 -45
  366. package/src/Indicator/IndicatorOutlined.stories.tsx +0 -86
  367. package/src/Indicator/IndicatorOutlined.tsx +0 -63
  368. package/src/Indicator/index.ts +0 -3
  369. package/src/Indicator/styles.ts +0 -61
  370. package/src/LayoutButton/LayoutButton.tsx +0 -49
  371. package/src/LayoutButton/index.ts +0 -1
  372. package/src/LayoutButton/styles.ts +0 -33
  373. package/src/List/List.stories.tsx +0 -137
  374. package/src/List/List.tsx +0 -67
  375. package/src/List/context.ts +0 -22
  376. package/src/List/index.ts +0 -1
  377. package/src/List/styles.ts +0 -86
  378. package/src/MultipleValueAutocomplete/MultipleValueAutocomplete.stories.tsx +0 -76
  379. package/src/MultipleValueAutocomplete/MultipleValueAutocomplete.tsx +0 -186
  380. package/src/MultipleValueAutocomplete/fixtures.ts +0 -122
  381. package/src/MultipleValueAutocomplete/index.ts +0 -1
  382. package/src/MultipleValueAutocomplete/styles.ts +0 -41
  383. package/src/MultipleValueAutocomplete/useMultipleValueAutocomplete.ts +0 -172
  384. package/src/NavigationCard/NavigationCard.stories.tsx +0 -33
  385. package/src/NavigationCard/NavigationCard.tsx +0 -43
  386. package/src/NavigationCard/NavigationCardBase.tsx +0 -27
  387. package/src/NavigationCard/index.ts +0 -2
  388. package/src/NavigationCard/styles.ts +0 -45
  389. package/src/Notification/Notification.stories.tsx +0 -104
  390. package/src/Notification/Notification.tsx +0 -147
  391. package/src/Notification/index.ts +0 -2
  392. package/src/Notification/styles.ts +0 -104
  393. package/src/Notification/types.ts +0 -26
  394. package/src/OffsettedList/OffsettedList.stories.tsx +0 -140
  395. package/src/OffsettedList/OffsettedList.tsx +0 -54
  396. package/src/OffsettedList/index.ts +0 -1
  397. package/src/OffsettedList/styles.ts +0 -92
  398. package/src/PageTabs/PageTab.stories.tsx +0 -59
  399. package/src/PageTabs/PageTab.tsx +0 -19
  400. package/src/PageTabs/PageTabPanel.tsx +0 -15
  401. package/src/PageTabs/PageTabs.tsx +0 -27
  402. package/src/PageTabs/index.ts +0 -3
  403. package/src/PageTabs/styles.ts +0 -35
  404. package/src/Pagination/Pagination.tsx +0 -65
  405. package/src/Pagination/PaginationActions.tsx +0 -79
  406. package/src/Pagination/PaginationRowNumberSelect.tsx +0 -54
  407. package/src/Pagination/TablePagination.tsx +0 -21
  408. package/src/Pagination/index.ts +0 -4
  409. package/src/Pagination/styles.ts +0 -67
  410. package/src/Pill/Pill.stories.tsx +0 -110
  411. package/src/Pill/Pill.tsx +0 -64
  412. package/src/Pill/index.ts +0 -1
  413. package/src/Pill/styles.ts +0 -95
  414. package/src/PillLink/PillLink.tsx +0 -53
  415. package/src/PillLink/index.ts +0 -1
  416. package/src/PillLink/styles.ts +0 -38
  417. package/src/ResponsiveTable/ResponsiveTable.tsx +0 -34
  418. package/src/ResponsiveTable/index.ts +0 -1
  419. package/src/ResponsiveTable/styles.ts +0 -24
  420. package/src/Savebar/ButtonTooltipDecorator.tsx +0 -22
  421. package/src/Savebar/Savebar.stories.tsx +0 -57
  422. package/src/Savebar/Savebar.tsx +0 -78
  423. package/src/Savebar/index.ts +0 -1
  424. package/src/Savebar/styles.ts +0 -12
  425. package/src/ScrollShadow/ScrollShadow.tsx +0 -49
  426. package/src/ScrollShadow/index.ts +0 -1
  427. package/src/ScrollShadow/styles.ts +0 -18
  428. package/src/Sidebar/ExpandButton.tsx +0 -45
  429. package/src/Sidebar/MenuItem.tsx +0 -266
  430. package/src/Sidebar/Sidebar.stories.tsx +0 -24
  431. package/src/Sidebar/Sidebar.tsx +0 -109
  432. package/src/Sidebar/fixtures.ts +0 -77
  433. package/src/Sidebar/index.ts +0 -4
  434. package/src/Sidebar/types.ts +0 -27
  435. package/src/Sidebar/utils.ts +0 -23
  436. package/src/SidebarDrawer/MenuItemBtn.tsx +0 -45
  437. package/src/SidebarDrawer/SidebarDrawer.stories.tsx +0 -13
  438. package/src/SidebarDrawer/SidebarDrawer.tsx +0 -135
  439. package/src/SidebarDrawer/index.ts +0 -2
  440. package/src/SidebarDrawer/styles.ts +0 -75
  441. package/src/SquareButton/SquareButton.stories.tsx +0 -20
  442. package/src/SquareButton/SquareButton.tsx +0 -51
  443. package/src/SquareButton/index.ts +0 -1
  444. package/src/StatusChip/StatusChip.stories.tsx +0 -20
  445. package/src/StatusChip/StatusChip.tsx +0 -27
  446. package/src/StatusChip/index.ts +0 -2
  447. package/src/StatusChip/types.ts +0 -8
  448. package/src/SwitchSelector/SwitchSelector.stories.tsx +0 -63
  449. package/src/SwitchSelector/SwitchSelector.tsx +0 -20
  450. package/src/SwitchSelector/SwitchSelectorButton.tsx +0 -60
  451. package/src/SwitchSelector/index.ts +0 -2
  452. package/src/Tooltip/Arrow.tsx +0 -54
  453. package/src/Tooltip/Tooltip.stories.tsx +0 -82
  454. package/src/Tooltip/Tooltip.tsx +0 -170
  455. package/src/Tooltip/TooltipMountWrapper.tsx +0 -25
  456. package/src/Tooltip/index.ts +0 -2
  457. package/src/Tooltip/styles.ts +0 -152
  458. package/src/UserChipMenu/UserChipMenu.stories.tsx +0 -46
  459. package/src/UserChipMenu/UserChipMenu.tsx +0 -98
  460. package/src/UserChipMenu/UserChipMenuItem.tsx +0 -33
  461. package/src/UserChipMenu/context.ts +0 -19
  462. package/src/UserChipMenu/index.ts +0 -2
  463. package/src/UserChipMenu/styles.ts +0 -66
  464. package/src/assets/icons/20x20/back_small_icon.svg +0 -1
  465. package/src/assets/icons/20x20/bookmarks_small_icon.svg +0 -1
  466. package/src/assets/icons/20x20/checkbox_small_icon.svg +0 -1
  467. package/src/assets/icons/20x20/chevron_small_icon.svg +0 -1
  468. package/src/assets/icons/20x20/close_small_icon.svg +0 -1
  469. package/src/assets/icons/20x20/drag_small_icon.svg +0 -1
  470. package/src/assets/icons/20x20/filter_small_icon.svg +0 -1
  471. package/src/assets/icons/20x20/minus_small_icon.svg +0 -1
  472. package/src/assets/icons/20x20/more_small_icon.svg +0 -1
  473. package/src/assets/icons/20x20/next_small_icon.svg +0 -1
  474. package/src/assets/icons/20x20/plus_small_icon.svg +0 -1
  475. package/src/assets/icons/20x20/search_small_icon.svg +0 -1
  476. package/src/assets/icons/20x20/sort_big_small_icon.svg +0 -1
  477. package/src/assets/icons/20x20/sort_small_small_icon.svg +0 -1
  478. package/src/assets/icons/24x24/add_environment_icon.svg +0 -1
  479. package/src/assets/icons/24x24/apps_icon.svg +0 -1
  480. package/src/assets/icons/24x24/arrow_right_icon.svg +0 -1
  481. package/src/assets/icons/24x24/backspace_icon.svg +0 -1
  482. package/src/assets/icons/24x24/bag_icon.svg +0 -1
  483. package/src/assets/icons/24x24/billing_icon.svg +0 -1
  484. package/src/assets/icons/24x24/bookmark_icon.svg +0 -1
  485. package/src/assets/icons/24x24/calendar_icon.svg +0 -1
  486. package/src/assets/icons/24x24/check_icon.svg +0 -1
  487. package/src/assets/icons/24x24/chevron_icon.svg +0 -1
  488. package/src/assets/icons/24x24/close_2_icon.svg +0 -1
  489. package/src/assets/icons/24x24/close_icon.svg +0 -1
  490. package/src/assets/icons/24x24/code_icon.svg +0 -1
  491. package/src/assets/icons/24x24/columns_icon.svg +0 -1
  492. package/src/assets/icons/24x24/copy_icon.svg +0 -1
  493. package/src/assets/icons/24x24/customers_icon.svg +0 -1
  494. package/src/assets/icons/24x24/dashboard_icon.svg +0 -1
  495. package/src/assets/icons/24x24/delete_icon.svg +0 -1
  496. package/src/assets/icons/24x24/developer_icon.svg +0 -1
  497. package/src/assets/icons/24x24/discounts_icon.svg +0 -1
  498. package/src/assets/icons/24x24/download_icon.svg +0 -1
  499. package/src/assets/icons/24x24/drag_icon.svg +0 -1
  500. package/src/assets/icons/24x24/edit_icon.svg +0 -1
  501. package/src/assets/icons/24x24/environment_icon.svg +0 -1
  502. package/src/assets/icons/24x24/expand_icon.svg +0 -1
  503. package/src/assets/icons/24x24/expendable_icon.svg +0 -1
  504. package/src/assets/icons/24x24/eye_closed_icon.svg +0 -1
  505. package/src/assets/icons/24x24/eye_icon.svg +0 -1
  506. package/src/assets/icons/24x24/filtering_icon.svg +0 -1
  507. package/src/assets/icons/24x24/generate_icon.svg +0 -1
  508. package/src/assets/icons/24x24/github_icon.svg +0 -1
  509. package/src/assets/icons/24x24/grid_icon.svg +0 -1
  510. package/src/assets/icons/24x24/help_icon.svg +0 -1
  511. package/src/assets/icons/24x24/how to_icon.svg +0 -1
  512. package/src/assets/icons/24x24/link_icon.svg +0 -1
  513. package/src/assets/icons/24x24/list_icon.svg +0 -1
  514. package/src/assets/icons/24x24/mail_icon.svg +0 -1
  515. package/src/assets/icons/24x24/migrate_icon.svg +0 -1
  516. package/src/assets/icons/24x24/minus_icon.svg +0 -1
  517. package/src/assets/icons/24x24/models_icon.svg +0 -1
  518. package/src/assets/icons/24x24/more_horizontal_icon.svg +0 -1
  519. package/src/assets/icons/24x24/navigation_icon.svg +0 -1
  520. package/src/assets/icons/24x24/navigator_icon.svg +0 -1
  521. package/src/assets/icons/24x24/next_icon.svg +0 -1
  522. package/src/assets/icons/24x24/no_connection_icon.svg +0 -1
  523. package/src/assets/icons/24x24/notifications_icon.svg +0 -1
  524. package/src/assets/icons/24x24/orders_icon.svg +0 -1
  525. package/src/assets/icons/24x24/pages_icon.svg +0 -1
  526. package/src/assets/icons/24x24/permissions_icon.svg +0 -1
  527. package/src/assets/icons/24x24/photo_icon.svg +0 -1
  528. package/src/assets/icons/24x24/play_icon.svg +0 -1
  529. package/src/assets/icons/24x24/plus_icon.svg +0 -1
  530. package/src/assets/icons/24x24/preset_icon.svg +0 -1
  531. package/src/assets/icons/24x24/previous_icon.svg +0 -1
  532. package/src/assets/icons/24x24/printer_icon.svg +0 -1
  533. package/src/assets/icons/24x24/privacy_icon.svg +0 -1
  534. package/src/assets/icons/24x24/process_icon.svg +0 -1
  535. package/src/assets/icons/24x24/product_icon.svg +0 -1
  536. package/src/assets/icons/24x24/refresh_icon.svg +0 -1
  537. package/src/assets/icons/24x24/remove_member_icon.svg +0 -1
  538. package/src/assets/icons/24x24/reply_icon.svg +0 -1
  539. package/src/assets/icons/24x24/search_icon.svg +0 -1
  540. package/src/assets/icons/24x24/settings_icon.svg +0 -1
  541. package/src/assets/icons/24x24/snapshots_icon.svg +0 -1
  542. package/src/assets/icons/24x24/sort_down_icon.svg +0 -1
  543. package/src/assets/icons/24x24/sort_up_icon.svg +0 -1
  544. package/src/assets/icons/24x24/tasks_icon.svg +0 -1
  545. package/src/assets/icons/24x24/time_icon.svg +0 -1
  546. package/src/assets/icons/24x24/to_icon.svg +0 -1
  547. package/src/assets/icons/24x24/transfer_icon.svg +0 -1
  548. package/src/assets/icons/24x24/translate_icon.svg +0 -1
  549. package/src/assets/icons/24x24/translation_icon.svg +0 -1
  550. package/src/assets/icons/24x24/website_icon.svg +0 -1
  551. package/src/assets/icons/24x24/wifi_icon.svg +0 -1
  552. package/src/assets/icons/32x32/attributes_large_icon.svg +0 -1
  553. package/src/assets/icons/32x32/customer_large_icon.svg +0 -1
  554. package/src/assets/icons/32x32/digital_large_icon.svg +0 -1
  555. package/src/assets/icons/32x32/discount_large_icon.svg +0 -1
  556. package/src/assets/icons/32x32/filtering_large_icon.svg +0 -1
  557. package/src/assets/icons/32x32/gift card_large_icon.svg +0 -1
  558. package/src/assets/icons/32x32/navigation_large_icon.svg +0 -1
  559. package/src/assets/icons/32x32/notes_large_icon.svg +0 -1
  560. package/src/assets/icons/32x32/omnichannel_large_icon.svg +0 -1
  561. package/src/assets/icons/32x32/permission_large_icon.svg +0 -1
  562. package/src/assets/icons/32x32/product_large_icon.svg +0 -1
  563. package/src/assets/icons/32x32/search_large_icon.svg +0 -1
  564. package/src/assets/icons/32x32/shipping_large_icon.svg +0 -1
  565. package/src/assets/icons/32x32/site settings_large_icon.svg +0 -1
  566. package/src/assets/icons/32x32/staff members_large_icon.svg +0 -1
  567. package/src/assets/icons/32x32/taxes_large_icon.svg +0 -1
  568. package/src/assets/icons/32x32/token_large_icon.svg +0 -1
  569. package/src/assets/icons/32x32/warehouse_large_icon.svg +0 -1
  570. package/src/assets/icons/32x32/wifi_large_icon.svg +0 -1
  571. package/src/assets/icons/indicator/regular/error_indicator_icon.svg +0 -1
  572. package/src/assets/icons/indicator/regular/fail_indicator_icon.svg +0 -1
  573. package/src/assets/icons/indicator/regular/fail_outline_indicator_icon.svg +0 -1
  574. package/src/assets/icons/indicator/regular/help_indicator_icon.svg +0 -1
  575. package/src/assets/icons/indicator/regular/success_indicator_icon.svg +0 -1
  576. package/src/assets/icons/indicator/regular/warning_indicator_icon.svg +0 -1
  577. package/src/assets/icons/indicator/small/error_small_indicator_icon.svg +0 -1
  578. package/src/assets/icons/indicator/small/success_small_indicator_icon.svg +0 -1
  579. package/src/assets/icons/indicator/small/warning_small_indicator_icon.svg +0 -1
  580. package/src/assets/placeholder_64x64.png +0 -0
  581. package/src/consts.ts +0 -5
  582. package/src/extensions/index.ts +0 -3
  583. package/src/extensions/sendMessage.ts +0 -22
  584. package/src/extensions/types.ts +0 -26
  585. package/src/extensions/useExtensionMessage.ts +0 -13
  586. package/src/icons/20x20/BackSmallIcon.tsx +0 -32
  587. package/src/icons/20x20/BookmarksSmallIcon.tsx +0 -29
  588. package/src/icons/20x20/CheckboxSmallIcon.tsx +0 -32
  589. package/src/icons/20x20/ChevronSmallIcon.tsx +0 -32
  590. package/src/icons/20x20/CloseSmallIcon.tsx +0 -31
  591. package/src/icons/20x20/DragSmallIcon.tsx +0 -31
  592. package/src/icons/20x20/FilterSmallIcon.tsx +0 -31
  593. package/src/icons/20x20/MinusSmallIcon.tsx +0 -32
  594. package/src/icons/20x20/MoreSmallIcon.tsx +0 -31
  595. package/src/icons/20x20/NextSmallIcon.tsx +0 -32
  596. package/src/icons/20x20/PlusSmallIcon.tsx +0 -32
  597. package/src/icons/20x20/SearchSmallIcon.tsx +0 -31
  598. package/src/icons/20x20/SortBigSmallIcon.tsx +0 -31
  599. package/src/icons/20x20/SortSmallSmallIcon.tsx +0 -31
  600. package/src/icons/20x20/index.ts +0 -14
  601. package/src/icons/24x24/AddEnvironmentIcon.tsx +0 -32
  602. package/src/icons/24x24/AppsIcon.tsx +0 -31
  603. package/src/icons/24x24/ArrowRightIcon.tsx +0 -32
  604. package/src/icons/24x24/BackspaceIcon.tsx +0 -32
  605. package/src/icons/24x24/BagIcon.tsx +0 -29
  606. package/src/icons/24x24/BillingIcon.tsx +0 -32
  607. package/src/icons/24x24/BookmarkIcon.tsx +0 -29
  608. package/src/icons/24x24/CalendarIcon.tsx +0 -32
  609. package/src/icons/24x24/CheckIcon.tsx +0 -32
  610. package/src/icons/24x24/ChevronIcon.tsx +0 -32
  611. package/src/icons/24x24/Close2Icon.tsx +0 -39
  612. package/src/icons/24x24/CloseIcon.tsx +0 -31
  613. package/src/icons/24x24/CodeIcon.tsx +0 -38
  614. package/src/icons/24x24/ColumnsIcon.tsx +0 -30
  615. package/src/icons/24x24/CopyIcon.tsx +0 -39
  616. package/src/icons/24x24/CustomersIcon.tsx +0 -33
  617. package/src/icons/24x24/DashboardIcon.tsx +0 -30
  618. package/src/icons/24x24/DeleteIcon.tsx +0 -32
  619. package/src/icons/24x24/DeveloperIcon.tsx +0 -44
  620. package/src/icons/24x24/DiscountsIcon.tsx +0 -31
  621. package/src/icons/24x24/DownloadIcon.tsx +0 -32
  622. package/src/icons/24x24/DragIcon.tsx +0 -31
  623. package/src/icons/24x24/EditIcon.tsx +0 -36
  624. package/src/icons/24x24/EnvironmentIcon.tsx +0 -36
  625. package/src/icons/24x24/ExpandIcon.tsx +0 -39
  626. package/src/icons/24x24/ExpendableIcon.tsx +0 -34
  627. package/src/icons/24x24/EyeClosedIcon.tsx +0 -30
  628. package/src/icons/24x24/EyeIcon.tsx +0 -31
  629. package/src/icons/24x24/FilteringIcon.tsx +0 -32
  630. package/src/icons/24x24/GenerateIcon.tsx +0 -32
  631. package/src/icons/24x24/GithubIcon.tsx +0 -40
  632. package/src/icons/24x24/GridIcon.tsx +0 -61
  633. package/src/icons/24x24/HelpIcon.tsx +0 -35
  634. package/src/icons/24x24/HowToIcon.tsx +0 -39
  635. package/src/icons/24x24/LinkIcon.tsx +0 -32
  636. package/src/icons/24x24/ListIcon.tsx +0 -34
  637. package/src/icons/24x24/MailIcon.tsx +0 -31
  638. package/src/icons/24x24/MigrateIcon.tsx +0 -36
  639. package/src/icons/24x24/MinusIcon.tsx +0 -32
  640. package/src/icons/24x24/ModelsIcon.tsx +0 -38
  641. package/src/icons/24x24/MoreHorizontalIcon.tsx +0 -31
  642. package/src/icons/24x24/NavigationIcon.tsx +0 -31
  643. package/src/icons/24x24/NavigatorIcon.tsx +0 -32
  644. package/src/icons/24x24/NextIcon.tsx +0 -32
  645. package/src/icons/24x24/NoConnectionIcon.tsx +0 -36
  646. package/src/icons/24x24/NotificationsIcon.tsx +0 -32
  647. package/src/icons/24x24/OrdersIcon.tsx +0 -36
  648. package/src/icons/24x24/PagesIcon.tsx +0 -32
  649. package/src/icons/24x24/PermissionsIcon.tsx +0 -32
  650. package/src/icons/24x24/PhotoIcon.tsx +0 -32
  651. package/src/icons/24x24/PlayIcon.tsx +0 -31
  652. package/src/icons/24x24/PlusIcon.tsx +0 -32
  653. package/src/icons/24x24/PresetIcon.tsx +0 -35
  654. package/src/icons/24x24/PreviousIcon.tsx +0 -32
  655. package/src/icons/24x24/PrinterIcon.tsx +0 -32
  656. package/src/icons/24x24/PrivacyIcon.tsx +0 -39
  657. package/src/icons/24x24/ProcessIcon.tsx +0 -73
  658. package/src/icons/24x24/ProductIcon.tsx +0 -32
  659. package/src/icons/24x24/RefreshIcon.tsx +0 -32
  660. package/src/icons/24x24/RemoveMemberIcon.tsx +0 -34
  661. package/src/icons/24x24/ReplyIcon.tsx +0 -32
  662. package/src/icons/24x24/SearchIcon.tsx +0 -39
  663. package/src/icons/24x24/SettingsIcon.tsx +0 -34
  664. package/src/icons/24x24/SnapshotsIcon.tsx +0 -39
  665. package/src/icons/24x24/SortDownIcon.tsx +0 -31
  666. package/src/icons/24x24/SortUpIcon.tsx +0 -31
  667. package/src/icons/24x24/TasksIcon.tsx +0 -32
  668. package/src/icons/24x24/TimeIcon.tsx +0 -39
  669. package/src/icons/24x24/ToIcon.tsx +0 -32
  670. package/src/icons/24x24/TransferIcon.tsx +0 -32
  671. package/src/icons/24x24/TranslateIcon.tsx +0 -32
  672. package/src/icons/24x24/TranslationIcon.tsx +0 -33
  673. package/src/icons/24x24/WebsiteIcon.tsx +0 -53
  674. package/src/icons/24x24/WifiIcon.tsx +0 -32
  675. package/src/icons/24x24/index.ts +0 -74
  676. package/src/icons/32x32/AttributesLargeIcon.tsx +0 -36
  677. package/src/icons/32x32/CustomerLargeIcon.tsx +0 -38
  678. package/src/icons/32x32/DigitalLargeIcon.tsx +0 -31
  679. package/src/icons/32x32/DiscountLargeIcon.tsx +0 -35
  680. package/src/icons/32x32/FilteringLargeIcon.tsx +0 -32
  681. package/src/icons/32x32/GiftCardLargeIcon.tsx +0 -44
  682. package/src/icons/32x32/NavigationLargeIcon.tsx +0 -39
  683. package/src/icons/32x32/NotesLargeIcon.tsx +0 -53
  684. package/src/icons/32x32/OmnichannelLargeIcon.tsx +0 -64
  685. package/src/icons/32x32/PermissionLargeIcon.tsx +0 -39
  686. package/src/icons/32x32/ProductLargeIcon.tsx +0 -31
  687. package/src/icons/32x32/SearchLargeIcon.tsx +0 -39
  688. package/src/icons/32x32/ShippingLargeIcon.tsx +0 -32
  689. package/src/icons/32x32/SiteSettingsLargeIcon.tsx +0 -32
  690. package/src/icons/32x32/StaffMembersLargeIcon.tsx +0 -40
  691. package/src/icons/32x32/TaxesLargeIcon.tsx +0 -55
  692. package/src/icons/32x32/TokenLargeIcon.tsx +0 -38
  693. package/src/icons/32x32/WarehouseLargeIcon.tsx +0 -32
  694. package/src/icons/32x32/WifiLargeIcon.tsx +0 -32
  695. package/src/icons/32x32/index.ts +0 -19
  696. package/src/icons/ArrowDropdownIcon.tsx +0 -11
  697. package/src/icons/CheckboxCheckedIcon.tsx +0 -30
  698. package/src/icons/CheckboxIcon.tsx +0 -20
  699. package/src/icons/CheckboxIndeterminateIcon.tsx +0 -17
  700. package/src/icons/CircleIndicatorIcon.tsx +0 -10
  701. package/src/icons/CommentSmallIcon.tsx +0 -15
  702. package/src/icons/CompleteIcon.tsx +0 -25
  703. package/src/icons/CustomersLargeIcon.tsx +0 -26
  704. package/src/icons/DeleteUserIcon.tsx +0 -26
  705. package/src/icons/DigitalSmallIcon.tsx +0 -15
  706. package/src/icons/EditSmallIcon.tsx +0 -15
  707. package/src/icons/GiftCardLargeIcon.tsx +0 -15
  708. package/src/icons/ImageIcon.tsx +0 -12
  709. package/src/icons/InfoIcon.tsx +0 -23
  710. package/src/icons/Logo.tsx +0 -33
  711. package/src/icons/LogoDark.tsx +0 -26
  712. package/src/icons/LogoLight.tsx +0 -27
  713. package/src/icons/MoreIcon.tsx +0 -12
  714. package/src/icons/NotAllowedIcon.tsx +0 -25
  715. package/src/icons/NotAllowedInvertedIcon.tsx +0 -25
  716. package/src/icons/RadioCheckedIcon.tsx +0 -10
  717. package/src/icons/RadioIcon.tsx +0 -16
  718. package/src/icons/SearchLargeIcon.tsx +0 -18
  719. package/src/icons/SettingsLargeIcon.tsx +0 -23
  720. package/src/icons/StaffMembersLargeIcon.tsx +0 -15
  721. package/src/icons/SuccessCircleIndicatorIcon.tsx +0 -16
  722. package/src/icons/WarningIcon.tsx +0 -23
  723. package/src/icons/index.ts +0 -33
  724. package/src/icons/indicator/index.ts +0 -2
  725. package/src/icons/indicator/regular/ErrorIndicatorIcon.tsx +0 -24
  726. package/src/icons/indicator/regular/FailIndicatorIcon.tsx +0 -31
  727. package/src/icons/indicator/regular/FailOutlineIndicatorIcon.tsx +0 -31
  728. package/src/icons/indicator/regular/HelpIndicatorIcon.tsx +0 -30
  729. package/src/icons/indicator/regular/SuccessIndicatorIcon.tsx +0 -24
  730. package/src/icons/indicator/regular/WarningIndicatorIcon.tsx +0 -23
  731. package/src/icons/indicator/regular/index.ts +0 -6
  732. package/src/icons/indicator/small/ErrorSmallIndicatorIcon.tsx +0 -24
  733. package/src/icons/indicator/small/SuccessSmallIndicatorIcon.tsx +0 -24
  734. package/src/icons/indicator/small/WarningSmallIndicatorIcon.tsx +0 -23
  735. package/src/icons/indicator/small/index.ts +0 -3
  736. package/src/icons/styles.ts +0 -10
  737. package/src/icons/types.ts +0 -4
  738. package/src/index.tsx +0 -41
  739. package/src/localStorageKeys.ts +0 -4
  740. package/src/theme/Baseline.tsx +0 -75
  741. package/src/theme/ThemeProvider.tsx +0 -89
  742. package/src/theme/context.ts +0 -8
  743. package/src/theme/createSaleorTheme/createSaleorTheme.tsx +0 -364
  744. package/src/theme/createSaleorTheme/index.ts +0 -2
  745. package/src/theme/createSaleorTheme/overrides/buttons.ts +0 -228
  746. package/src/theme/createSaleorTheme/overrides/controls.ts +0 -193
  747. package/src/theme/createSaleorTheme/overrides/index.ts +0 -18
  748. package/src/theme/createSaleorTheme/overrides/inputs.ts +0 -164
  749. package/src/theme/createSaleorTheme/overrides/tables.ts +0 -78
  750. package/src/theme/createSaleorTheme/palette.ts +0 -39
  751. package/src/theme/createSaleorTheme/shadows.ts +0 -33
  752. package/src/theme/createSaleorTheme/types.ts +0 -76
  753. package/src/theme/index.ts +0 -4
  754. package/src/theme/styles.ts +0 -40
  755. package/src/theme/themes.ts +0 -184
  756. package/src/theme/types.ts +0 -8
  757. package/src/theme/utils.test.ts +0 -43
  758. package/src/theme/utils.ts +0 -13
  759. package/src/tools/index.ts +0 -2
  760. package/src/tools/useElementScroll.ts +0 -83
  761. package/src/tools/useLocalStorage.ts +0 -63
  762. package/src/tools/useTextWidth.ts +0 -20
  763. package/src/tools/useWindowScroll.ts +0 -25
  764. package/src/utils/Decorator.tsx +0 -25
  765. package/src/utils/guideStyles.ts +0 -49
  766. package/src/utils/mergeRefs.ts +0 -14
  767. package/src/utils/useListStory.ts +0 -79
  768. package/src/utils/useMockAutocomplete.ts +0 -37
  769. /package/dist/{types → components}/Button/index.d.ts +0 -0
  770. /package/{dist → legacy/dist}/types/Accordion/Accordion.stories.d.ts +0 -0
  771. /package/{dist → legacy/dist}/types/Accordion/index.d.ts +0 -0
  772. /package/{dist → legacy/dist}/types/Accordion/styles.d.ts +0 -0
  773. /package/{dist → legacy/dist}/types/ActionBar/ActionBar.d.ts +0 -0
  774. /package/{dist → legacy/dist}/types/ActionBar/ActionBar.stories.d.ts +0 -0
  775. /package/{dist → legacy/dist}/types/ActionBar/context.d.ts +0 -0
  776. /package/{dist → legacy/dist}/types/ActionBar/index.d.ts +0 -0
  777. /package/{dist → legacy/dist}/types/ActionBar/styles.d.ts +0 -0
  778. /package/{dist → legacy/dist}/types/Alert/Alert.d.ts +0 -0
  779. /package/{dist → legacy/dist}/types/Alert/Alert.stories.d.ts +0 -0
  780. /package/{dist → legacy/dist}/types/Alert/AlertBase.d.ts +0 -0
  781. /package/{dist → legacy/dist}/types/Alert/index.d.ts +0 -0
  782. /package/{dist → legacy/dist}/types/Alert/styles.d.ts +0 -0
  783. /package/{dist → legacy/dist}/types/Autocomplete/Autocomplete.d.ts +0 -0
  784. /package/{dist → legacy/dist}/types/Autocomplete/Autocomplete.stories.d.ts +0 -0
  785. /package/{dist → legacy/dist}/types/Autocomplete/fixtures.d.ts +0 -0
  786. /package/{dist → legacy/dist}/types/Autocomplete/index.d.ts +0 -0
  787. /package/{dist → legacy/dist}/types/Autocomplete/styles.d.ts +0 -0
  788. /package/{dist → legacy/dist}/types/Avatar/Avatar.d.ts +0 -0
  789. /package/{dist → legacy/dist}/types/Avatar/Avatar.stories.d.ts +0 -0
  790. /package/{dist → legacy/dist}/types/Avatar/index.d.ts +0 -0
  791. /package/{dist → legacy/dist}/types/Avatar/styles.d.ts +0 -0
  792. /package/{dist → legacy/dist}/types/Backlink/Backlink.d.ts +0 -0
  793. /package/{dist → legacy/dist}/types/Backlink/Backlink.stories.d.ts +0 -0
  794. /package/{dist → legacy/dist}/types/Backlink/context.d.ts +0 -0
  795. /package/{dist → legacy/dist}/types/Backlink/index.d.ts +0 -0
  796. /package/{dist → legacy/dist}/types/Backlink/styles.d.ts +0 -0
  797. /package/{dist → legacy/dist}/types/BaseList/BaseList.d.ts +0 -0
  798. /package/{dist → legacy/dist}/types/BaseList/context.d.ts +0 -0
  799. /package/{dist → legacy/dist}/types/BaseList/index.d.ts +0 -0
  800. /package/{dist → legacy/dist}/types/BaseList/styles.d.ts +0 -0
  801. /package/{dist → legacy/dist}/types/Button/Button.d.ts +0 -0
  802. /package/{src/Button/index.ts → legacy/dist/types/Button/index.d.ts} +0 -0
  803. /package/{dist → legacy/dist}/types/Button/styles.d.ts +0 -0
  804. /package/{dist → legacy/dist}/types/Chip/ChipAdornment.d.ts +0 -0
  805. /package/{dist → legacy/dist}/types/Chip/index.d.ts +0 -0
  806. /package/{dist → legacy/dist}/types/Chip/private/ColorSwatch.d.ts +0 -0
  807. /package/{dist → legacy/dist}/types/Chip/styles.d.ts +0 -0
  808. /package/{dist → legacy/dist}/types/CircleIndicator/CircleIndicator.d.ts +0 -0
  809. /package/{dist → legacy/dist}/types/CircleIndicator/CircleIndicator.stories.d.ts +0 -0
  810. /package/{dist → legacy/dist}/types/CircleIndicator/index.d.ts +0 -0
  811. /package/{dist → legacy/dist}/types/CircleIndicator/styles.d.ts +0 -0
  812. /package/{dist → legacy/dist}/types/ConfirmButton/ConfirmButton.d.ts +0 -0
  813. /package/{dist → legacy/dist}/types/ConfirmButton/ConfirmButton.stories.d.ts +0 -0
  814. /package/{dist → legacy/dist}/types/ConfirmButton/index.d.ts +0 -0
  815. /package/{dist → legacy/dist}/types/ConfirmButton/styles.d.ts +0 -0
  816. /package/{dist → legacy/dist}/types/DialogHeader/DialogHeader.d.ts +0 -0
  817. /package/{dist → legacy/dist}/types/DialogHeader/index.d.ts +0 -0
  818. /package/{dist → legacy/dist}/types/DialogHeader/styles.d.ts +0 -0
  819. /package/{dist → legacy/dist}/types/DialogTable/index.d.ts +0 -0
  820. /package/{dist → legacy/dist}/types/DialogTable/styles.d.ts +0 -0
  821. /package/{dist → legacy/dist}/types/Filter/Filter.d.ts +0 -0
  822. /package/{dist → legacy/dist}/types/Filter/FilterBar.d.ts +0 -0
  823. /package/{dist → legacy/dist}/types/Filter/FilterContent.d.ts +0 -0
  824. /package/{dist → legacy/dist}/types/Filter/FilterField/AutocompleteFilterField.d.ts +0 -0
  825. /package/{dist → legacy/dist}/types/Filter/FilterField/MultipleSelectFilterField.d.ts +0 -0
  826. /package/{dist → legacy/dist}/types/Filter/FilterField/MultipleValueAutocompleteFilterField.d.ts +0 -0
  827. /package/{dist → legacy/dist}/types/Filter/FilterField/RangeFilterField.d.ts +0 -0
  828. /package/{dist → legacy/dist}/types/Filter/FilterField/SelectFilterField.d.ts +0 -0
  829. /package/{dist → legacy/dist}/types/Filter/FilterField/TextFilterField.d.ts +0 -0
  830. /package/{dist → legacy/dist}/types/Filter/FilterMenu.d.ts +0 -0
  831. /package/{dist → legacy/dist}/types/Filter/context.d.ts +0 -0
  832. /package/{dist → legacy/dist}/types/Filter/index.d.ts +0 -0
  833. /package/{dist → legacy/dist}/types/Filter/stories/Filter.stories.d.ts +0 -0
  834. /package/{dist → legacy/dist}/types/Filter/stories/FilterInteractive.stories.d.ts +0 -0
  835. /package/{dist → legacy/dist}/types/Filter/stories/labels.d.ts +0 -0
  836. /package/{dist → legacy/dist}/types/Filter/styles.d.ts +0 -0
  837. /package/{dist → legacy/dist}/types/Filter/types.d.ts +0 -0
  838. /package/{dist → legacy/dist}/types/Filter/utils.d.ts +0 -0
  839. /package/{dist → legacy/dist}/types/IconButton/IconButton.d.ts +0 -0
  840. /package/{dist → legacy/dist}/types/IconButton/IconButton.stories.d.ts +0 -0
  841. /package/{dist → legacy/dist}/types/IconButton/index.d.ts +0 -0
  842. /package/{dist → legacy/dist}/types/IconButton/partials.d.ts +0 -0
  843. /package/{dist → legacy/dist}/types/IconButton/styles.d.ts +0 -0
  844. /package/{dist → legacy/dist}/types/Indicator/Circle.d.ts +0 -0
  845. /package/{dist → legacy/dist}/types/Indicator/CircleFilled.d.ts +0 -0
  846. /package/{dist → legacy/dist}/types/Indicator/CircleOutline.d.ts +0 -0
  847. /package/{dist → legacy/dist}/types/Indicator/Indicator.d.ts +0 -0
  848. /package/{dist → legacy/dist}/types/Indicator/Indicator.stories.d.ts +0 -0
  849. /package/{dist → legacy/dist}/types/Indicator/IndicatorCircle.d.ts +0 -0
  850. /package/{dist → legacy/dist}/types/Indicator/IndicatorCircle.stories.d.ts +0 -0
  851. /package/{dist → legacy/dist}/types/Indicator/IndicatorOutlined.d.ts +0 -0
  852. /package/{dist → legacy/dist}/types/Indicator/IndicatorOutlined.stories.d.ts +0 -0
  853. /package/{dist → legacy/dist}/types/Indicator/index.d.ts +0 -0
  854. /package/{dist → legacy/dist}/types/Indicator/styles.d.ts +0 -0
  855. /package/{dist → legacy/dist}/types/LayoutButton/LayoutButton.d.ts +0 -0
  856. /package/{dist → legacy/dist}/types/LayoutButton/index.d.ts +0 -0
  857. /package/{dist → legacy/dist}/types/LayoutButton/styles.d.ts +0 -0
  858. /package/{dist → legacy/dist}/types/List/List.d.ts +0 -0
  859. /package/{dist → legacy/dist}/types/List/List.stories.d.ts +0 -0
  860. /package/{dist → legacy/dist}/types/List/context.d.ts +0 -0
  861. /package/{dist → legacy/dist}/types/List/index.d.ts +0 -0
  862. /package/{dist → legacy/dist}/types/List/styles.d.ts +0 -0
  863. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/MultipleValueAutocomplete.d.ts +0 -0
  864. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/MultipleValueAutocomplete.stories.d.ts +0 -0
  865. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/fixtures.d.ts +0 -0
  866. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/index.d.ts +0 -0
  867. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/styles.d.ts +0 -0
  868. /package/{dist → legacy/dist}/types/MultipleValueAutocomplete/useMultipleValueAutocomplete.d.ts +0 -0
  869. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCard.d.ts +0 -0
  870. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCard.stories.d.ts +0 -0
  871. /package/{dist → legacy/dist}/types/NavigationCard/NavigationCardBase.d.ts +0 -0
  872. /package/{dist → legacy/dist}/types/NavigationCard/index.d.ts +0 -0
  873. /package/{dist → legacy/dist}/types/NavigationCard/styles.d.ts +0 -0
  874. /package/{dist → legacy/dist}/types/Notification/Notification.d.ts +0 -0
  875. /package/{dist → legacy/dist}/types/Notification/Notification.stories.d.ts +0 -0
  876. /package/{dist → legacy/dist}/types/Notification/index.d.ts +0 -0
  877. /package/{dist → legacy/dist}/types/Notification/styles.d.ts +0 -0
  878. /package/{dist → legacy/dist}/types/Notification/types.d.ts +0 -0
  879. /package/{dist → legacy/dist}/types/OffsettedList/OffsettedList.d.ts +0 -0
  880. /package/{dist → legacy/dist}/types/OffsettedList/OffsettedList.stories.d.ts +0 -0
  881. /package/{dist → legacy/dist}/types/OffsettedList/index.d.ts +0 -0
  882. /package/{dist → legacy/dist}/types/OffsettedList/styles.d.ts +0 -0
  883. /package/{dist → legacy/dist}/types/PageTabs/PageTab.d.ts +0 -0
  884. /package/{dist → legacy/dist}/types/PageTabs/PageTab.stories.d.ts +0 -0
  885. /package/{dist → legacy/dist}/types/PageTabs/PageTabPanel.d.ts +0 -0
  886. /package/{dist → legacy/dist}/types/PageTabs/PageTabs.d.ts +0 -0
  887. /package/{dist → legacy/dist}/types/PageTabs/index.d.ts +0 -0
  888. /package/{dist → legacy/dist}/types/PageTabs/styles.d.ts +0 -0
  889. /package/{dist → legacy/dist}/types/Pagination/Pagination.d.ts +0 -0
  890. /package/{dist → legacy/dist}/types/Pagination/PaginationActions.d.ts +0 -0
  891. /package/{dist → legacy/dist}/types/Pagination/PaginationRowNumberSelect.d.ts +0 -0
  892. /package/{dist → legacy/dist}/types/Pagination/TablePagination.d.ts +0 -0
  893. /package/{dist → legacy/dist}/types/Pagination/index.d.ts +0 -0
  894. /package/{dist → legacy/dist}/types/Pagination/styles.d.ts +0 -0
  895. /package/{dist → legacy/dist}/types/Pill/Pill.d.ts +0 -0
  896. /package/{dist → legacy/dist}/types/Pill/Pill.stories.d.ts +0 -0
  897. /package/{dist → legacy/dist}/types/Pill/index.d.ts +0 -0
  898. /package/{dist → legacy/dist}/types/Pill/styles.d.ts +0 -0
  899. /package/{dist → legacy/dist}/types/PillLink/PillLink.d.ts +0 -0
  900. /package/{dist → legacy/dist}/types/PillLink/index.d.ts +0 -0
  901. /package/{dist → legacy/dist}/types/PillLink/styles.d.ts +0 -0
  902. /package/{dist → legacy/dist}/types/ResponsiveTable/ResponsiveTable.d.ts +0 -0
  903. /package/{dist → legacy/dist}/types/ResponsiveTable/index.d.ts +0 -0
  904. /package/{dist → legacy/dist}/types/ResponsiveTable/styles.d.ts +0 -0
  905. /package/{dist → legacy/dist}/types/Savebar/ButtonTooltipDecorator.d.ts +0 -0
  906. /package/{dist → legacy/dist}/types/Savebar/Savebar.d.ts +0 -0
  907. /package/{dist → legacy/dist}/types/Savebar/Savebar.stories.d.ts +0 -0
  908. /package/{dist → legacy/dist}/types/Savebar/index.d.ts +0 -0
  909. /package/{dist → legacy/dist}/types/Savebar/styles.d.ts +0 -0
  910. /package/{dist → legacy/dist}/types/ScrollShadow/ScrollShadow.d.ts +0 -0
  911. /package/{dist → legacy/dist}/types/ScrollShadow/index.d.ts +0 -0
  912. /package/{dist → legacy/dist}/types/ScrollShadow/styles.d.ts +0 -0
  913. /package/{dist → legacy/dist}/types/Sidebar/ExpandButton.d.ts +0 -0
  914. /package/{dist → legacy/dist}/types/Sidebar/MenuItem.d.ts +0 -0
  915. /package/{dist → legacy/dist}/types/Sidebar/Sidebar.d.ts +0 -0
  916. /package/{dist → legacy/dist}/types/Sidebar/Sidebar.stories.d.ts +0 -0
  917. /package/{dist → legacy/dist}/types/Sidebar/fixtures.d.ts +0 -0
  918. /package/{dist → legacy/dist}/types/Sidebar/index.d.ts +0 -0
  919. /package/{dist → legacy/dist}/types/Sidebar/types.d.ts +0 -0
  920. /package/{dist → legacy/dist}/types/Sidebar/utils.d.ts +0 -0
  921. /package/{dist → legacy/dist}/types/SidebarDrawer/MenuItemBtn.d.ts +0 -0
  922. /package/{dist → legacy/dist}/types/SidebarDrawer/SidebarDrawer.d.ts +0 -0
  923. /package/{dist → legacy/dist}/types/SidebarDrawer/SidebarDrawer.stories.d.ts +0 -0
  924. /package/{dist → legacy/dist}/types/SidebarDrawer/index.d.ts +0 -0
  925. /package/{dist → legacy/dist}/types/SidebarDrawer/styles.d.ts +0 -0
  926. /package/{dist → legacy/dist}/types/SquareButton/SquareButton.d.ts +0 -0
  927. /package/{dist → legacy/dist}/types/SquareButton/SquareButton.stories.d.ts +0 -0
  928. /package/{dist → legacy/dist}/types/SquareButton/index.d.ts +0 -0
  929. /package/{dist → legacy/dist}/types/StatusChip/StatusChip.d.ts +0 -0
  930. /package/{dist → legacy/dist}/types/StatusChip/StatusChip.stories.d.ts +0 -0
  931. /package/{dist → legacy/dist}/types/StatusChip/index.d.ts +0 -0
  932. /package/{dist → legacy/dist}/types/StatusChip/types.d.ts +0 -0
  933. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelector.d.ts +0 -0
  934. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelector.stories.d.ts +0 -0
  935. /package/{dist → legacy/dist}/types/SwitchSelector/SwitchSelectorButton.d.ts +0 -0
  936. /package/{dist → legacy/dist}/types/SwitchSelector/index.d.ts +0 -0
  937. /package/{dist → legacy/dist}/types/Tooltip/Arrow.d.ts +0 -0
  938. /package/{dist → legacy/dist}/types/Tooltip/Tooltip.d.ts +0 -0
  939. /package/{dist → legacy/dist}/types/Tooltip/Tooltip.stories.d.ts +0 -0
  940. /package/{dist → legacy/dist}/types/Tooltip/TooltipMountWrapper.d.ts +0 -0
  941. /package/{dist → legacy/dist}/types/Tooltip/index.d.ts +0 -0
  942. /package/{dist → legacy/dist}/types/Tooltip/styles.d.ts +0 -0
  943. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenu.d.ts +0 -0
  944. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenu.stories.d.ts +0 -0
  945. /package/{dist → legacy/dist}/types/UserChipMenu/UserChipMenuItem.d.ts +0 -0
  946. /package/{dist → legacy/dist}/types/UserChipMenu/context.d.ts +0 -0
  947. /package/{dist → legacy/dist}/types/UserChipMenu/index.d.ts +0 -0
  948. /package/{dist → legacy/dist}/types/UserChipMenu/styles.d.ts +0 -0
  949. /package/{dist → legacy/dist}/types/consts.d.ts +0 -0
  950. /package/{dist → legacy/dist}/types/extensions/index.d.ts +0 -0
  951. /package/{dist → legacy/dist}/types/extensions/sendMessage.d.ts +0 -0
  952. /package/{dist → legacy/dist}/types/extensions/types.d.ts +0 -0
  953. /package/{dist → legacy/dist}/types/extensions/useExtensionMessage.d.ts +0 -0
  954. /package/{dist → legacy/dist}/types/icons/20x20/BackSmallIcon.d.ts +0 -0
  955. /package/{dist → legacy/dist}/types/icons/20x20/BookmarksSmallIcon.d.ts +0 -0
  956. /package/{dist → legacy/dist}/types/icons/20x20/CheckboxSmallIcon.d.ts +0 -0
  957. /package/{dist → legacy/dist}/types/icons/20x20/ChevronSmallIcon.d.ts +0 -0
  958. /package/{dist → legacy/dist}/types/icons/20x20/CloseSmallIcon.d.ts +0 -0
  959. /package/{dist → legacy/dist}/types/icons/20x20/DragSmallIcon.d.ts +0 -0
  960. /package/{dist → legacy/dist}/types/icons/20x20/FilterSmallIcon.d.ts +0 -0
  961. /package/{dist → legacy/dist}/types/icons/20x20/MinusSmallIcon.d.ts +0 -0
  962. /package/{dist → legacy/dist}/types/icons/20x20/MoreSmallIcon.d.ts +0 -0
  963. /package/{dist → legacy/dist}/types/icons/20x20/NextSmallIcon.d.ts +0 -0
  964. /package/{dist → legacy/dist}/types/icons/20x20/PlusSmallIcon.d.ts +0 -0
  965. /package/{dist → legacy/dist}/types/icons/20x20/SearchSmallIcon.d.ts +0 -0
  966. /package/{dist → legacy/dist}/types/icons/20x20/SortBigSmallIcon.d.ts +0 -0
  967. /package/{dist → legacy/dist}/types/icons/20x20/SortSmallSmallIcon.d.ts +0 -0
  968. /package/{dist → legacy/dist}/types/icons/20x20/index.d.ts +0 -0
  969. /package/{dist → legacy/dist}/types/icons/24x24/AddEnvironmentIcon.d.ts +0 -0
  970. /package/{dist → legacy/dist}/types/icons/24x24/AppsIcon.d.ts +0 -0
  971. /package/{dist → legacy/dist}/types/icons/24x24/ArrowRightIcon.d.ts +0 -0
  972. /package/{dist → legacy/dist}/types/icons/24x24/BackspaceIcon.d.ts +0 -0
  973. /package/{dist → legacy/dist}/types/icons/24x24/BagIcon.d.ts +0 -0
  974. /package/{dist → legacy/dist}/types/icons/24x24/BillingIcon.d.ts +0 -0
  975. /package/{dist → legacy/dist}/types/icons/24x24/BookmarkIcon.d.ts +0 -0
  976. /package/{dist → legacy/dist}/types/icons/24x24/CalendarIcon.d.ts +0 -0
  977. /package/{dist → legacy/dist}/types/icons/24x24/CheckIcon.d.ts +0 -0
  978. /package/{dist → legacy/dist}/types/icons/24x24/ChevronIcon.d.ts +0 -0
  979. /package/{dist → legacy/dist}/types/icons/24x24/Close2Icon.d.ts +0 -0
  980. /package/{dist → legacy/dist}/types/icons/24x24/CloseIcon.d.ts +0 -0
  981. /package/{dist → legacy/dist}/types/icons/24x24/CodeIcon.d.ts +0 -0
  982. /package/{dist → legacy/dist}/types/icons/24x24/ColumnsIcon.d.ts +0 -0
  983. /package/{dist → legacy/dist}/types/icons/24x24/CopyIcon.d.ts +0 -0
  984. /package/{dist → legacy/dist}/types/icons/24x24/CustomersIcon.d.ts +0 -0
  985. /package/{dist → legacy/dist}/types/icons/24x24/DashboardIcon.d.ts +0 -0
  986. /package/{dist → legacy/dist}/types/icons/24x24/DeleteIcon.d.ts +0 -0
  987. /package/{dist → legacy/dist}/types/icons/24x24/DeveloperIcon.d.ts +0 -0
  988. /package/{dist → legacy/dist}/types/icons/24x24/DiscountsIcon.d.ts +0 -0
  989. /package/{dist → legacy/dist}/types/icons/24x24/DownloadIcon.d.ts +0 -0
  990. /package/{dist → legacy/dist}/types/icons/24x24/DragIcon.d.ts +0 -0
  991. /package/{dist → legacy/dist}/types/icons/24x24/EditIcon.d.ts +0 -0
  992. /package/{dist → legacy/dist}/types/icons/24x24/EnvironmentIcon.d.ts +0 -0
  993. /package/{dist → legacy/dist}/types/icons/24x24/ExpandIcon.d.ts +0 -0
  994. /package/{dist → legacy/dist}/types/icons/24x24/ExpendableIcon.d.ts +0 -0
  995. /package/{dist → legacy/dist}/types/icons/24x24/EyeClosedIcon.d.ts +0 -0
  996. /package/{dist → legacy/dist}/types/icons/24x24/EyeIcon.d.ts +0 -0
  997. /package/{dist → legacy/dist}/types/icons/24x24/FilteringIcon.d.ts +0 -0
  998. /package/{dist → legacy/dist}/types/icons/24x24/GenerateIcon.d.ts +0 -0
  999. /package/{dist → legacy/dist}/types/icons/24x24/GithubIcon.d.ts +0 -0
  1000. /package/{dist → legacy/dist}/types/icons/24x24/GridIcon.d.ts +0 -0
  1001. /package/{dist → legacy/dist}/types/icons/24x24/HelpIcon.d.ts +0 -0
  1002. /package/{dist → legacy/dist}/types/icons/24x24/HowToIcon.d.ts +0 -0
  1003. /package/{dist → legacy/dist}/types/icons/24x24/LinkIcon.d.ts +0 -0
  1004. /package/{dist → legacy/dist}/types/icons/24x24/ListIcon.d.ts +0 -0
  1005. /package/{dist → legacy/dist}/types/icons/24x24/MailIcon.d.ts +0 -0
  1006. /package/{dist → legacy/dist}/types/icons/24x24/MigrateIcon.d.ts +0 -0
  1007. /package/{dist → legacy/dist}/types/icons/24x24/MinusIcon.d.ts +0 -0
  1008. /package/{dist → legacy/dist}/types/icons/24x24/ModelsIcon.d.ts +0 -0
  1009. /package/{dist → legacy/dist}/types/icons/24x24/MoreHorizontalIcon.d.ts +0 -0
  1010. /package/{dist → legacy/dist}/types/icons/24x24/NavigationIcon.d.ts +0 -0
  1011. /package/{dist → legacy/dist}/types/icons/24x24/NavigatorIcon.d.ts +0 -0
  1012. /package/{dist → legacy/dist}/types/icons/24x24/NextIcon.d.ts +0 -0
  1013. /package/{dist → legacy/dist}/types/icons/24x24/NoConnectionIcon.d.ts +0 -0
  1014. /package/{dist → legacy/dist}/types/icons/24x24/NotificationsIcon.d.ts +0 -0
  1015. /package/{dist → legacy/dist}/types/icons/24x24/OrdersIcon.d.ts +0 -0
  1016. /package/{dist → legacy/dist}/types/icons/24x24/PagesIcon.d.ts +0 -0
  1017. /package/{dist → legacy/dist}/types/icons/24x24/PermissionsIcon.d.ts +0 -0
  1018. /package/{dist → legacy/dist}/types/icons/24x24/PhotoIcon.d.ts +0 -0
  1019. /package/{dist → legacy/dist}/types/icons/24x24/PlayIcon.d.ts +0 -0
  1020. /package/{dist → legacy/dist}/types/icons/24x24/PlusIcon.d.ts +0 -0
  1021. /package/{dist → legacy/dist}/types/icons/24x24/PresetIcon.d.ts +0 -0
  1022. /package/{dist → legacy/dist}/types/icons/24x24/PreviousIcon.d.ts +0 -0
  1023. /package/{dist → legacy/dist}/types/icons/24x24/PrinterIcon.d.ts +0 -0
  1024. /package/{dist → legacy/dist}/types/icons/24x24/PrivacyIcon.d.ts +0 -0
  1025. /package/{dist → legacy/dist}/types/icons/24x24/ProcessIcon.d.ts +0 -0
  1026. /package/{dist → legacy/dist}/types/icons/24x24/ProductIcon.d.ts +0 -0
  1027. /package/{dist → legacy/dist}/types/icons/24x24/RefreshIcon.d.ts +0 -0
  1028. /package/{dist → legacy/dist}/types/icons/24x24/RemoveMemberIcon.d.ts +0 -0
  1029. /package/{dist → legacy/dist}/types/icons/24x24/ReplyIcon.d.ts +0 -0
  1030. /package/{dist → legacy/dist}/types/icons/24x24/SearchIcon.d.ts +0 -0
  1031. /package/{dist → legacy/dist}/types/icons/24x24/SettingsIcon.d.ts +0 -0
  1032. /package/{dist → legacy/dist}/types/icons/24x24/SnapshotsIcon.d.ts +0 -0
  1033. /package/{dist → legacy/dist}/types/icons/24x24/SortDownIcon.d.ts +0 -0
  1034. /package/{dist → legacy/dist}/types/icons/24x24/SortUpIcon.d.ts +0 -0
  1035. /package/{dist → legacy/dist}/types/icons/24x24/TasksIcon.d.ts +0 -0
  1036. /package/{dist → legacy/dist}/types/icons/24x24/TimeIcon.d.ts +0 -0
  1037. /package/{dist → legacy/dist}/types/icons/24x24/ToIcon.d.ts +0 -0
  1038. /package/{dist → legacy/dist}/types/icons/24x24/TransferIcon.d.ts +0 -0
  1039. /package/{dist → legacy/dist}/types/icons/24x24/TranslateIcon.d.ts +0 -0
  1040. /package/{dist → legacy/dist}/types/icons/24x24/TranslationIcon.d.ts +0 -0
  1041. /package/{dist → legacy/dist}/types/icons/24x24/WebsiteIcon.d.ts +0 -0
  1042. /package/{dist → legacy/dist}/types/icons/24x24/WifiIcon.d.ts +0 -0
  1043. /package/{dist → legacy/dist}/types/icons/24x24/index.d.ts +0 -0
  1044. /package/{dist → legacy/dist}/types/icons/32x32/AttributesLargeIcon.d.ts +0 -0
  1045. /package/{dist → legacy/dist}/types/icons/32x32/CustomerLargeIcon.d.ts +0 -0
  1046. /package/{dist → legacy/dist}/types/icons/32x32/DigitalLargeIcon.d.ts +0 -0
  1047. /package/{dist → legacy/dist}/types/icons/32x32/DiscountLargeIcon.d.ts +0 -0
  1048. /package/{dist → legacy/dist}/types/icons/32x32/FilteringLargeIcon.d.ts +0 -0
  1049. /package/{dist → legacy/dist}/types/icons/32x32/GiftCardLargeIcon.d.ts +0 -0
  1050. /package/{dist → legacy/dist}/types/icons/32x32/NavigationLargeIcon.d.ts +0 -0
  1051. /package/{dist → legacy/dist}/types/icons/32x32/NotesLargeIcon.d.ts +0 -0
  1052. /package/{dist → legacy/dist}/types/icons/32x32/OmnichannelLargeIcon.d.ts +0 -0
  1053. /package/{dist → legacy/dist}/types/icons/32x32/PermissionLargeIcon.d.ts +0 -0
  1054. /package/{dist → legacy/dist}/types/icons/32x32/ProductLargeIcon.d.ts +0 -0
  1055. /package/{dist → legacy/dist}/types/icons/32x32/SearchLargeIcon.d.ts +0 -0
  1056. /package/{dist → legacy/dist}/types/icons/32x32/ShippingLargeIcon.d.ts +0 -0
  1057. /package/{dist → legacy/dist}/types/icons/32x32/SiteSettingsLargeIcon.d.ts +0 -0
  1058. /package/{dist → legacy/dist}/types/icons/32x32/StaffMembersLargeIcon.d.ts +0 -0
  1059. /package/{dist → legacy/dist}/types/icons/32x32/TaxesLargeIcon.d.ts +0 -0
  1060. /package/{dist → legacy/dist}/types/icons/32x32/TokenLargeIcon.d.ts +0 -0
  1061. /package/{dist → legacy/dist}/types/icons/32x32/WarehouseLargeIcon.d.ts +0 -0
  1062. /package/{dist → legacy/dist}/types/icons/32x32/WifiLargeIcon.d.ts +0 -0
  1063. /package/{dist → legacy/dist}/types/icons/32x32/index.d.ts +0 -0
  1064. /package/{dist → legacy/dist}/types/icons/ArrowDropdownIcon.d.ts +0 -0
  1065. /package/{dist → legacy/dist}/types/icons/CheckboxCheckedIcon.d.ts +0 -0
  1066. /package/{dist → legacy/dist}/types/icons/CheckboxIcon.d.ts +0 -0
  1067. /package/{dist → legacy/dist}/types/icons/CheckboxIndeterminateIcon.d.ts +0 -0
  1068. /package/{dist → legacy/dist}/types/icons/CircleIndicatorIcon.d.ts +0 -0
  1069. /package/{dist → legacy/dist}/types/icons/CommentSmallIcon.d.ts +0 -0
  1070. /package/{dist → legacy/dist}/types/icons/CompleteIcon.d.ts +0 -0
  1071. /package/{dist → legacy/dist}/types/icons/CustomersLargeIcon.d.ts +0 -0
  1072. /package/{dist → legacy/dist}/types/icons/DeleteUserIcon.d.ts +0 -0
  1073. /package/{dist → legacy/dist}/types/icons/DigitalSmallIcon.d.ts +0 -0
  1074. /package/{dist → legacy/dist}/types/icons/EditSmallIcon.d.ts +0 -0
  1075. /package/{dist → legacy/dist}/types/icons/GiftCardLargeIcon.d.ts +0 -0
  1076. /package/{dist → legacy/dist}/types/icons/ImageIcon.d.ts +0 -0
  1077. /package/{dist → legacy/dist}/types/icons/InfoIcon.d.ts +0 -0
  1078. /package/{dist → legacy/dist}/types/icons/Logo.d.ts +0 -0
  1079. /package/{dist → legacy/dist}/types/icons/LogoDark.d.ts +0 -0
  1080. /package/{dist → legacy/dist}/types/icons/LogoLight.d.ts +0 -0
  1081. /package/{dist → legacy/dist}/types/icons/MoreIcon.d.ts +0 -0
  1082. /package/{dist → legacy/dist}/types/icons/NotAllowedIcon.d.ts +0 -0
  1083. /package/{dist → legacy/dist}/types/icons/NotAllowedInvertedIcon.d.ts +0 -0
  1084. /package/{dist → legacy/dist}/types/icons/RadioCheckedIcon.d.ts +0 -0
  1085. /package/{dist → legacy/dist}/types/icons/RadioIcon.d.ts +0 -0
  1086. /package/{dist → legacy/dist}/types/icons/SearchLargeIcon.d.ts +0 -0
  1087. /package/{dist → legacy/dist}/types/icons/SettingsLargeIcon.d.ts +0 -0
  1088. /package/{dist → legacy/dist}/types/icons/StaffMembersLargeIcon.d.ts +0 -0
  1089. /package/{dist → legacy/dist}/types/icons/SuccessCircleIndicatorIcon.d.ts +0 -0
  1090. /package/{dist → legacy/dist}/types/icons/WarningIcon.d.ts +0 -0
  1091. /package/{dist → legacy/dist}/types/icons/index.d.ts +0 -0
  1092. /package/{dist → legacy/dist}/types/icons/indicator/index.d.ts +0 -0
  1093. /package/{dist → legacy/dist}/types/icons/indicator/regular/index.d.ts +0 -0
  1094. /package/{dist → legacy/dist}/types/icons/indicator/small/index.d.ts +0 -0
  1095. /package/{dist → legacy/dist}/types/icons/styles.d.ts +0 -0
  1096. /package/{dist → legacy/dist}/types/icons/types.d.ts +0 -0
  1097. /package/{dist → legacy/dist}/types/index.d.ts +0 -0
  1098. /package/{dist → legacy/dist}/types/localStorageKeys.d.ts +0 -0
  1099. /package/{dist → legacy/dist}/types/theme/Baseline.d.ts +0 -0
  1100. /package/{dist → legacy/dist}/types/theme/ThemeProvider.d.ts +0 -0
  1101. /package/{dist → legacy/dist}/types/theme/context.d.ts +0 -0
  1102. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/createSaleorTheme.d.ts +0 -0
  1103. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/index.d.ts +0 -0
  1104. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/buttons.d.ts +0 -0
  1105. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/controls.d.ts +0 -0
  1106. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/index.d.ts +0 -0
  1107. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/inputs.d.ts +0 -0
  1108. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/overrides/tables.d.ts +0 -0
  1109. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/palette.d.ts +0 -0
  1110. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/shadows.d.ts +0 -0
  1111. /package/{dist → legacy/dist}/types/theme/createSaleorTheme/types.d.ts +0 -0
  1112. /package/{dist → legacy/dist}/types/theme/index.d.ts +0 -0
  1113. /package/{dist → legacy/dist}/types/theme/styles.d.ts +0 -0
  1114. /package/{dist → legacy/dist}/types/theme/themes.d.ts +0 -0
  1115. /package/{dist → legacy/dist}/types/theme/types.d.ts +0 -0
  1116. /package/{dist → legacy/dist}/types/theme/utils.d.ts +0 -0
  1117. /package/{dist → legacy/dist}/types/theme/utils.test.d.ts +0 -0
  1118. /package/{dist → legacy/dist}/types/tools/index.d.ts +0 -0
  1119. /package/{dist → legacy/dist}/types/tools/useElementScroll.d.ts +0 -0
  1120. /package/{dist → legacy/dist}/types/tools/useLocalStorage.d.ts +0 -0
  1121. /package/{dist → legacy/dist}/types/tools/useTextWidth.d.ts +0 -0
  1122. /package/{dist → legacy/dist}/types/tools/useWindowScroll.d.ts +0 -0
  1123. /package/{dist → legacy/dist}/types/utils/Decorator.d.ts +0 -0
  1124. /package/{dist → legacy/dist}/types/utils/guideStyles.d.ts +0 -0
  1125. /package/{dist → legacy/dist}/types/utils/mergeRefs.d.ts +0 -0
  1126. /package/{dist → legacy/dist}/types/utils/useListStory.d.ts +0 -0
  1127. /package/{dist → legacy/dist}/types/utils/useMockAutocomplete.d.ts +0 -0
@@ -0,0 +1,2014 @@
1
+ export type { RadioGroupRootProps } from "./Group";
2
+ export type { RadioGroupItemProps } from "./Item";
3
+ export declare const RadioGroup: import("react").ForwardRefExoticComponent<Omit<{
4
+ as?: import("react").ElementType<any> | undefined;
5
+ children?: import("react").ReactNode;
6
+ className?: string | undefined;
7
+ style?: Record<string, any> | undefined;
8
+ } & {
9
+ display?: ("block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | {
10
+ mobile?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
11
+ tablet?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
12
+ desktop?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
13
+ }) | undefined;
14
+ flexDirection?: ("column" | "row" | {
15
+ mobile?: "column" | "row" | undefined;
16
+ tablet?: "column" | "row" | undefined;
17
+ desktop?: "column" | "row" | undefined;
18
+ }) | undefined;
19
+ alignItems?: ("center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | {
20
+ mobile?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
21
+ tablet?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
22
+ desktop?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
23
+ }) | undefined;
24
+ justifyContent?: ("center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | {
25
+ mobile?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
26
+ tablet?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
27
+ desktop?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
28
+ }) | undefined;
29
+ flexGrow?: ("1" | "0" | {
30
+ mobile?: "1" | "0" | undefined;
31
+ tablet?: "1" | "0" | undefined;
32
+ desktop?: "1" | "0" | undefined;
33
+ }) | undefined;
34
+ flexShrink?: ("1" | "0" | {
35
+ mobile?: "1" | "0" | undefined;
36
+ tablet?: "1" | "0" | undefined;
37
+ desktop?: "1" | "0" | undefined;
38
+ }) | undefined;
39
+ flexBasis?: ("auto" | "0" | {
40
+ mobile?: "auto" | "0" | undefined;
41
+ tablet?: "auto" | "0" | undefined;
42
+ desktop?: "auto" | "0" | undefined;
43
+ }) | undefined;
44
+ position?: ("absolute" | "fixed" | "relative" | "static" | "sticky" | {
45
+ mobile?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
46
+ tablet?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
47
+ desktop?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
48
+ }) | undefined;
49
+ gridArea?: ("auto" | {
50
+ mobile?: "auto" | undefined;
51
+ tablet?: "auto" | undefined;
52
+ desktop?: "auto" | undefined;
53
+ }) | undefined;
54
+ gridTemplateAreas?: ("none" | {
55
+ mobile?: "none" | undefined;
56
+ tablet?: "none" | undefined;
57
+ desktop?: "none" | undefined;
58
+ }) | undefined;
59
+ gridTemplateRows?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | {
60
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
61
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
62
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
63
+ }) | undefined;
64
+ gridRow?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | {
65
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
66
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
67
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
68
+ }) | undefined;
69
+ gridRowStart?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
70
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
71
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
72
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
73
+ }) | undefined;
74
+ gridRowEnd?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
75
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
76
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
77
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
78
+ }) | undefined;
79
+ gridTemplateColumns?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | {
80
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
81
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
82
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
83
+ }) | undefined;
84
+ gridColumn?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | {
85
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
86
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
87
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
88
+ }) | undefined;
89
+ gridColumnStart?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
90
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
91
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
92
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
93
+ }) | undefined;
94
+ gridColumnEnd?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
95
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
96
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
97
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
98
+ }) | undefined;
99
+ gridAutoFlow?: ("column" | "row" | "dense" | "row dense" | "column dense" | {
100
+ mobile?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
101
+ tablet?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
102
+ desktop?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
103
+ }) | undefined;
104
+ order?: (number | {
105
+ mobile?: number | undefined;
106
+ tablet?: number | undefined;
107
+ desktop?: number | undefined;
108
+ }) | undefined;
109
+ flexWrap?: ("nowrap" | "wrap" | {
110
+ mobile?: "nowrap" | "wrap" | undefined;
111
+ tablet?: "nowrap" | "wrap" | undefined;
112
+ desktop?: "nowrap" | "wrap" | undefined;
113
+ }) | undefined;
114
+ gap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
115
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
116
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
117
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
118
+ }) | undefined;
119
+ rowGap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
120
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
121
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
122
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
123
+ }) | undefined;
124
+ columnGap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
125
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
126
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
127
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
128
+ }) | undefined;
129
+ paddingTop?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
130
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
131
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
132
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
133
+ }) | undefined;
134
+ paddingBottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
135
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
136
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
137
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
138
+ }) | undefined;
139
+ paddingLeft?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
140
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
141
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
142
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
143
+ }) | undefined;
144
+ paddingRight?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
145
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
146
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
147
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
148
+ }) | undefined;
149
+ marginTop?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
150
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
151
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
152
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
153
+ }) | undefined;
154
+ marginBottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
155
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
156
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
157
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
158
+ }) | undefined;
159
+ marginLeft?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
160
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
161
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
162
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
163
+ }) | undefined;
164
+ marginRight?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
165
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
166
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
167
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
168
+ }) | undefined;
169
+ width?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | {
170
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
171
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
172
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
173
+ }) | undefined;
174
+ height?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | {
175
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
176
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
177
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
178
+ }) | undefined;
179
+ minHeight?: ("0px" | "auto" | "100%" | {
180
+ mobile?: "0px" | "auto" | "100%" | undefined;
181
+ tablet?: "0px" | "auto" | "100%" | undefined;
182
+ desktop?: "0px" | "auto" | "100%" | undefined;
183
+ }) | undefined;
184
+ minWidth?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | {
185
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
186
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
187
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
188
+ }) | undefined;
189
+ maxWidth?: ("0px" | "auto" | "100%" | {
190
+ mobile?: "0px" | "auto" | "100%" | undefined;
191
+ tablet?: "0px" | "auto" | "100%" | undefined;
192
+ desktop?: "0px" | "auto" | "100%" | undefined;
193
+ }) | undefined;
194
+ maxHeight?: (0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | {
195
+ mobile?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
196
+ tablet?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
197
+ desktop?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
198
+ }) | undefined;
199
+ borderTopRightRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
200
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
201
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
202
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
203
+ }) | undefined;
204
+ borderTopLeftRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
205
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
206
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
207
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
208
+ }) | undefined;
209
+ borderBottomRightRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
210
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
211
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
212
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
213
+ }) | undefined;
214
+ borderBottomLeftRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
215
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
216
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
217
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
218
+ }) | undefined;
219
+ fontSize?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
220
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
221
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
222
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
223
+ }) | undefined;
224
+ lineHeight?: (1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
225
+ mobile?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
226
+ tablet?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
227
+ desktop?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
228
+ }) | undefined;
229
+ textAlign?: ("center" | "left" | "right" | {
230
+ mobile?: "center" | "left" | "right" | undefined;
231
+ tablet?: "center" | "left" | "right" | undefined;
232
+ desktop?: "center" | "left" | "right" | undefined;
233
+ }) | undefined;
234
+ borderLeftWidth?: (0 | 1 | {
235
+ mobile?: 0 | 1 | undefined;
236
+ tablet?: 0 | 1 | undefined;
237
+ desktop?: 0 | 1 | undefined;
238
+ }) | undefined;
239
+ borderRightWidth?: (0 | 1 | {
240
+ mobile?: 0 | 1 | undefined;
241
+ tablet?: 0 | 1 | undefined;
242
+ desktop?: 0 | 1 | undefined;
243
+ }) | undefined;
244
+ borderTopWidth?: (0 | 1 | {
245
+ mobile?: 0 | 1 | undefined;
246
+ tablet?: 0 | 1 | undefined;
247
+ desktop?: 0 | 1 | undefined;
248
+ }) | undefined;
249
+ borderBottomWidth?: (0 | 1 | {
250
+ mobile?: 0 | 1 | undefined;
251
+ tablet?: 0 | 1 | undefined;
252
+ desktop?: 0 | 1 | undefined;
253
+ }) | undefined;
254
+ borderLeftStyle?: ("none" | "solid" | {
255
+ mobile?: "none" | "solid" | undefined;
256
+ tablet?: "none" | "solid" | undefined;
257
+ desktop?: "none" | "solid" | undefined;
258
+ }) | undefined;
259
+ borderRightStyle?: ("none" | "solid" | {
260
+ mobile?: "none" | "solid" | undefined;
261
+ tablet?: "none" | "solid" | undefined;
262
+ desktop?: "none" | "solid" | undefined;
263
+ }) | undefined;
264
+ borderTopStyle?: ("none" | "solid" | {
265
+ mobile?: "none" | "solid" | undefined;
266
+ tablet?: "none" | "solid" | undefined;
267
+ desktop?: "none" | "solid" | undefined;
268
+ }) | undefined;
269
+ borderBottomStyle?: ("none" | "solid" | {
270
+ mobile?: "none" | "solid" | undefined;
271
+ tablet?: "none" | "solid" | undefined;
272
+ desktop?: "none" | "solid" | undefined;
273
+ }) | undefined;
274
+ outlineStyle?: ("none" | {
275
+ mobile?: "none" | undefined;
276
+ tablet?: "none" | undefined;
277
+ desktop?: "none" | undefined;
278
+ }) | undefined;
279
+ textTransform?: ("uppercase" | {
280
+ mobile?: "uppercase" | undefined;
281
+ tablet?: "uppercase" | undefined;
282
+ desktop?: "uppercase" | undefined;
283
+ }) | undefined;
284
+ letterSpacing?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
285
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
286
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
287
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
288
+ }) | undefined;
289
+ top?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
290
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
291
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
292
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
293
+ }) | undefined;
294
+ bottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
295
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
296
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
297
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
298
+ }) | undefined;
299
+ left?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
300
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
301
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
302
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
303
+ }) | undefined;
304
+ right?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
305
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
306
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
307
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
308
+ }) | undefined;
309
+ overflowX?: ("auto" | "hidden" | "scroll" | "visible" | {
310
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
311
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
312
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
313
+ }) | undefined;
314
+ overflowY?: ("auto" | "hidden" | "scroll" | "visible" | {
315
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
316
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
317
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
318
+ }) | undefined;
319
+ textOverflow?: ("none" | "ellipsis" | {
320
+ mobile?: "none" | "ellipsis" | undefined;
321
+ tablet?: "none" | "ellipsis" | undefined;
322
+ desktop?: "none" | "ellipsis" | undefined;
323
+ }) | undefined;
324
+ whiteSpace?: ("normal" | "nowrap" | {
325
+ mobile?: "normal" | "nowrap" | undefined;
326
+ tablet?: "normal" | "nowrap" | undefined;
327
+ desktop?: "normal" | "nowrap" | undefined;
328
+ }) | undefined;
329
+ wordBreak?: ("normal" | "break-word" | "break-all" | {
330
+ mobile?: "normal" | "break-word" | "break-all" | undefined;
331
+ tablet?: "normal" | "break-word" | "break-all" | undefined;
332
+ desktop?: "normal" | "break-word" | "break-all" | undefined;
333
+ }) | undefined;
334
+ zIndex?: ("1" | "auto" | "2" | "3" | {
335
+ mobile?: "1" | "auto" | "2" | "3" | undefined;
336
+ tablet?: "1" | "auto" | "2" | "3" | undefined;
337
+ desktop?: "1" | "auto" | "2" | "3" | undefined;
338
+ }) | undefined;
339
+ aspectRatio?: ("1 / 1" | {
340
+ mobile?: "1 / 1" | undefined;
341
+ tablet?: "1 / 1" | undefined;
342
+ desktop?: "1 / 1" | undefined;
343
+ }) | undefined;
344
+ objectFit?: ("none" | "contain" | "cover" | "fill" | "scale-down" | {
345
+ mobile?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
346
+ tablet?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
347
+ desktop?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
348
+ }) | undefined;
349
+ opacity?: ("1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | {
350
+ mobile?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
351
+ tablet?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
352
+ desktop?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
353
+ }) | undefined;
354
+ fontWeight?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
355
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
356
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
357
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
358
+ }) | undefined;
359
+ alignSelf?: ("normal" | "auto" | "center" | "end" | "start" | {
360
+ mobile?: "normal" | "auto" | "center" | "end" | "start" | undefined;
361
+ tablet?: "normal" | "auto" | "center" | "end" | "start" | undefined;
362
+ desktop?: "normal" | "auto" | "center" | "end" | "start" | undefined;
363
+ }) | undefined;
364
+ visibility?: ("hidden" | "visible" | {
365
+ mobile?: "hidden" | "visible" | undefined;
366
+ tablet?: "hidden" | "visible" | undefined;
367
+ desktop?: "hidden" | "visible" | undefined;
368
+ }) | undefined;
369
+ padding?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
370
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
371
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
372
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
373
+ }) | undefined;
374
+ paddingX?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
375
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
376
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
377
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
378
+ }) | undefined;
379
+ paddingY?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
380
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
381
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
382
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
383
+ }) | undefined;
384
+ margin?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
385
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
386
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
387
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
388
+ }) | undefined;
389
+ marginX?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
390
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
391
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
392
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
393
+ }) | undefined;
394
+ marginY?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
395
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
396
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
397
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
398
+ }) | undefined;
399
+ placeItems?: ("center" | "flex-end" | "flex-start" | "stretch" | {
400
+ mobile?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
401
+ tablet?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
402
+ desktop?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
403
+ }) | undefined;
404
+ typeSize?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
405
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
406
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
407
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
408
+ }) | undefined;
409
+ borderWidth?: (0 | 1 | {
410
+ mobile?: 0 | 1 | undefined;
411
+ tablet?: 0 | 1 | undefined;
412
+ desktop?: 0 | 1 | undefined;
413
+ }) | undefined;
414
+ borderXWidth?: (0 | 1 | {
415
+ mobile?: 0 | 1 | undefined;
416
+ tablet?: 0 | 1 | undefined;
417
+ desktop?: 0 | 1 | undefined;
418
+ }) | undefined;
419
+ borderYWidth?: (0 | 1 | {
420
+ mobile?: 0 | 1 | undefined;
421
+ tablet?: 0 | 1 | undefined;
422
+ desktop?: 0 | 1 | undefined;
423
+ }) | undefined;
424
+ borderStyle?: ("none" | "solid" | {
425
+ mobile?: "none" | "solid" | undefined;
426
+ tablet?: "none" | "solid" | undefined;
427
+ desktop?: "none" | "solid" | undefined;
428
+ }) | undefined;
429
+ borderXStyle?: ("none" | "solid" | {
430
+ mobile?: "none" | "solid" | undefined;
431
+ tablet?: "none" | "solid" | undefined;
432
+ desktop?: "none" | "solid" | undefined;
433
+ }) | undefined;
434
+ borderYStyle?: ("none" | "solid" | {
435
+ mobile?: "none" | "solid" | undefined;
436
+ tablet?: "none" | "solid" | undefined;
437
+ desktop?: "none" | "solid" | undefined;
438
+ }) | undefined;
439
+ inset?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
440
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
441
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
442
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
443
+ }) | undefined;
444
+ borderRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
445
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
446
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
447
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
448
+ }) | undefined;
449
+ overflow?: ("auto" | "hidden" | "scroll" | "visible" | {
450
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
451
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
452
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
453
+ }) | undefined;
454
+ flex?: ("0" | {
455
+ mobile?: "0" | undefined;
456
+ tablet?: "0" | undefined;
457
+ desktop?: "0" | undefined;
458
+ }) | undefined;
459
+ } & {
460
+ borderColor?: ("neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | {
461
+ default?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
462
+ hover?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
463
+ focus?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
464
+ focusWithin?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
465
+ focusVisible?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
466
+ active?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
467
+ disabled?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
468
+ placeholder?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
469
+ }) | undefined;
470
+ color?: ("textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | {
471
+ default?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
472
+ hover?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
473
+ focus?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
474
+ focusWithin?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
475
+ focusVisible?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
476
+ active?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
477
+ disabled?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
478
+ placeholder?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
479
+ }) | undefined;
480
+ backgroundColor?: ("plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | {
481
+ default?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
482
+ hover?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
483
+ focus?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
484
+ focusWithin?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
485
+ focusVisible?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
486
+ active?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
487
+ disabled?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
488
+ placeholder?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
489
+ }) | undefined;
490
+ pointerEvents?: ("auto" | "none" | {
491
+ default?: "auto" | "none" | undefined;
492
+ hover?: "auto" | "none" | undefined;
493
+ focus?: "auto" | "none" | undefined;
494
+ focusWithin?: "auto" | "none" | undefined;
495
+ focusVisible?: "auto" | "none" | undefined;
496
+ active?: "auto" | "none" | undefined;
497
+ disabled?: "auto" | "none" | undefined;
498
+ placeholder?: "auto" | "none" | undefined;
499
+ }) | undefined;
500
+ cursor?: ("auto" | "not-allowed" | "pointer" | "text" | {
501
+ default?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
502
+ hover?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
503
+ focus?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
504
+ focusWithin?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
505
+ focusVisible?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
506
+ active?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
507
+ disabled?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
508
+ placeholder?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
509
+ }) | undefined;
510
+ boxShadow?: ("interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | {
511
+ default?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
512
+ hover?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
513
+ focus?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
514
+ focusWithin?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
515
+ focusVisible?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
516
+ active?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
517
+ disabled?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
518
+ placeholder?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
519
+ }) | undefined;
520
+ transition?: ("all" | "ease" | {
521
+ default?: "all" | "ease" | undefined;
522
+ hover?: "all" | "ease" | undefined;
523
+ focus?: "all" | "ease" | undefined;
524
+ focusWithin?: "all" | "ease" | undefined;
525
+ focusVisible?: "all" | "ease" | undefined;
526
+ active?: "all" | "ease" | undefined;
527
+ disabled?: "all" | "ease" | undefined;
528
+ placeholder?: "all" | "ease" | undefined;
529
+ }) | undefined;
530
+ textDecoration?: ("none" | "underline" | {
531
+ default?: "none" | "underline" | undefined;
532
+ hover?: "none" | "underline" | undefined;
533
+ focus?: "none" | "underline" | undefined;
534
+ focusWithin?: "none" | "underline" | undefined;
535
+ focusVisible?: "none" | "underline" | undefined;
536
+ active?: "none" | "underline" | undefined;
537
+ disabled?: "none" | "underline" | undefined;
538
+ placeholder?: "none" | "underline" | undefined;
539
+ }) | undefined;
540
+ transform?: {} | undefined;
541
+ } & {
542
+ __display?: any;
543
+ __flexDirection?: any;
544
+ __alignItems?: any;
545
+ __justifyContent?: any;
546
+ __flexGrow?: any;
547
+ __flexShrink?: any;
548
+ __flexBasis?: any;
549
+ __position?: any;
550
+ __gridArea?: any;
551
+ __gridTemplateAreas?: any;
552
+ __gridTemplateRows?: any;
553
+ __gridRow?: any;
554
+ __gridRowStart?: any;
555
+ __gridRowEnd?: any;
556
+ __gridTemplateColumns?: any;
557
+ __gridColumn?: any;
558
+ __gridColumnStart?: any;
559
+ __gridColumnEnd?: any;
560
+ __gridAutoFlow?: any;
561
+ __order?: any;
562
+ __flexWrap?: any;
563
+ __gap?: any;
564
+ __rowGap?: any;
565
+ __columnGap?: any;
566
+ __paddingTop?: any;
567
+ __paddingBottom?: any;
568
+ __paddingLeft?: any;
569
+ __paddingRight?: any;
570
+ __marginTop?: any;
571
+ __marginBottom?: any;
572
+ __marginLeft?: any;
573
+ __marginRight?: any;
574
+ __width?: any;
575
+ __height?: any;
576
+ __minHeight?: any;
577
+ __minWidth?: any;
578
+ __maxWidth?: any;
579
+ __maxHeight?: any;
580
+ __borderTopRightRadius?: any;
581
+ __borderTopLeftRadius?: any;
582
+ __borderBottomRightRadius?: any;
583
+ __borderBottomLeftRadius?: any;
584
+ __fontSize?: any;
585
+ __lineHeight?: any;
586
+ __textAlign?: any;
587
+ __borderLeftWidth?: any;
588
+ __borderRightWidth?: any;
589
+ __borderTopWidth?: any;
590
+ __borderBottomWidth?: any;
591
+ __borderLeftStyle?: any;
592
+ __borderRightStyle?: any;
593
+ __borderTopStyle?: any;
594
+ __borderBottomStyle?: any;
595
+ __outlineStyle?: any;
596
+ __textTransform?: any;
597
+ __letterSpacing?: any;
598
+ __top?: any;
599
+ __bottom?: any;
600
+ __left?: any;
601
+ __right?: any;
602
+ __overflowX?: any;
603
+ __overflowY?: any;
604
+ __textOverflow?: any;
605
+ __whiteSpace?: any;
606
+ __wordBreak?: any;
607
+ __zIndex?: any;
608
+ __aspectRatio?: any;
609
+ __objectFit?: any;
610
+ __opacity?: any;
611
+ __fontWeight?: any;
612
+ __alignSelf?: any;
613
+ __visibility?: any;
614
+ __padding?: any;
615
+ __paddingX?: any;
616
+ __paddingY?: any;
617
+ __margin?: any;
618
+ __marginX?: any;
619
+ __marginY?: any;
620
+ __placeItems?: any;
621
+ __typeSize?: any;
622
+ __borderWidth?: any;
623
+ __borderXWidth?: any;
624
+ __borderYWidth?: any;
625
+ __borderStyle?: any;
626
+ __borderXStyle?: any;
627
+ __borderYStyle?: any;
628
+ __inset?: any;
629
+ __borderRadius?: any;
630
+ __overflow?: any;
631
+ __flex?: any;
632
+ __borderColor?: any;
633
+ __color?: any;
634
+ __backgroundColor?: any;
635
+ __pointerEvents?: any;
636
+ __cursor?: any;
637
+ __boxShadow?: any;
638
+ __transition?: any;
639
+ __textDecoration?: any;
640
+ __transform?: any;
641
+ } & {
642
+ children?: import("react").ReactNode;
643
+ value?: string | number | readonly string[] | undefined;
644
+ cite?: string | undefined;
645
+ data?: string | undefined;
646
+ form?: string | undefined;
647
+ label?: string | undefined;
648
+ slot?: string | undefined;
649
+ span?: number | undefined;
650
+ style?: import("react").CSSProperties | undefined;
651
+ summary?: string | undefined;
652
+ title?: string | undefined;
653
+ pattern?: string | undefined;
654
+ src?: string | undefined;
655
+ size?: number | undefined;
656
+ content?: string | undefined;
657
+ translate?: "yes" | "no" | undefined;
658
+ id?: string | undefined;
659
+ start?: number | undefined;
660
+ wrap?: string | undefined;
661
+ hidden?: boolean | undefined;
662
+ default?: boolean | undefined;
663
+ disabled?: boolean | undefined;
664
+ placeholder?: string | undefined;
665
+ open?: boolean | undefined;
666
+ multiple?: boolean | undefined;
667
+ accept?: string | undefined;
668
+ acceptCharset?: string | undefined;
669
+ action?: string | undefined;
670
+ allowFullScreen?: boolean | undefined;
671
+ allowTransparency?: boolean | undefined;
672
+ alt?: string | undefined;
673
+ async?: boolean | undefined;
674
+ autoComplete?: string | undefined;
675
+ autoFocus?: boolean | undefined;
676
+ autoPlay?: boolean | undefined;
677
+ capture?: boolean | "user" | "environment" | undefined;
678
+ cellPadding?: string | number | undefined;
679
+ cellSpacing?: string | number | undefined;
680
+ charSet?: string | undefined;
681
+ challenge?: string | undefined;
682
+ checked?: boolean | undefined;
683
+ classID?: string | undefined;
684
+ cols?: number | undefined;
685
+ colSpan?: number | undefined;
686
+ controls?: boolean | undefined;
687
+ coords?: string | undefined;
688
+ crossOrigin?: string | undefined;
689
+ dateTime?: string | undefined;
690
+ defer?: boolean | undefined;
691
+ download?: any;
692
+ encType?: string | undefined;
693
+ formAction?: string | undefined;
694
+ formEncType?: string | undefined;
695
+ formMethod?: string | undefined;
696
+ formNoValidate?: boolean | undefined;
697
+ formTarget?: string | undefined;
698
+ frameBorder?: string | number | undefined;
699
+ headers?: string | undefined;
700
+ high?: number | undefined;
701
+ href?: string | undefined;
702
+ hrefLang?: string | undefined;
703
+ htmlFor?: string | undefined;
704
+ httpEquiv?: string | undefined;
705
+ integrity?: string | undefined;
706
+ keyParams?: string | undefined;
707
+ keyType?: string | undefined;
708
+ kind?: string | undefined;
709
+ list?: string | undefined;
710
+ loop?: boolean | undefined;
711
+ low?: number | undefined;
712
+ manifest?: string | undefined;
713
+ marginHeight?: number | undefined;
714
+ marginWidth?: number | undefined;
715
+ max?: string | number | undefined;
716
+ maxLength?: number | undefined;
717
+ media?: string | undefined;
718
+ mediaGroup?: string | undefined;
719
+ method?: string | undefined;
720
+ min?: string | number | undefined;
721
+ minLength?: number | undefined;
722
+ muted?: boolean | undefined;
723
+ name?: string | undefined;
724
+ nonce?: string | undefined;
725
+ noValidate?: boolean | undefined;
726
+ optimum?: number | undefined;
727
+ playsInline?: boolean | undefined;
728
+ poster?: string | undefined;
729
+ preload?: string | undefined;
730
+ readOnly?: boolean | undefined;
731
+ rel?: string | undefined;
732
+ required?: boolean | undefined;
733
+ reversed?: boolean | undefined;
734
+ rows?: number | undefined;
735
+ rowSpan?: number | undefined;
736
+ sandbox?: string | undefined;
737
+ scope?: string | undefined;
738
+ scoped?: boolean | undefined;
739
+ scrolling?: string | undefined;
740
+ seamless?: boolean | undefined;
741
+ selected?: boolean | undefined;
742
+ shape?: string | undefined;
743
+ sizes?: string | undefined;
744
+ srcDoc?: string | undefined;
745
+ srcLang?: string | undefined;
746
+ srcSet?: string | undefined;
747
+ step?: string | number | undefined;
748
+ target?: string | undefined;
749
+ type?: string | undefined;
750
+ useMap?: string | undefined;
751
+ wmode?: string | undefined;
752
+ defaultChecked?: boolean | undefined;
753
+ defaultValue?: string | number | readonly string[] | undefined;
754
+ suppressContentEditableWarning?: boolean | undefined;
755
+ suppressHydrationWarning?: boolean | undefined;
756
+ accessKey?: string | undefined;
757
+ className?: string | undefined;
758
+ contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
759
+ contextMenu?: string | undefined;
760
+ dir?: string | undefined;
761
+ draggable?: (boolean | "false" | "true") | undefined;
762
+ lang?: string | undefined;
763
+ spellCheck?: (boolean | "false" | "true") | undefined;
764
+ tabIndex?: number | undefined;
765
+ radioGroup?: string | undefined;
766
+ role?: import("react").AriaRole | undefined;
767
+ about?: string | undefined;
768
+ datatype?: string | undefined;
769
+ inlist?: any;
770
+ prefix?: string | undefined;
771
+ property?: string | undefined;
772
+ resource?: string | undefined;
773
+ typeof?: string | undefined;
774
+ vocab?: string | undefined;
775
+ autoCapitalize?: string | undefined;
776
+ autoCorrect?: string | undefined;
777
+ autoSave?: string | undefined;
778
+ itemProp?: string | undefined;
779
+ itemScope?: boolean | undefined;
780
+ itemType?: string | undefined;
781
+ itemID?: string | undefined;
782
+ itemRef?: string | undefined;
783
+ results?: number | undefined;
784
+ security?: string | undefined;
785
+ unselectable?: "on" | "off" | undefined;
786
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
787
+ is?: string | undefined;
788
+ 'aria-activedescendant'?: string | undefined;
789
+ 'aria-atomic'?: (boolean | "false" | "true") | undefined;
790
+ 'aria-autocomplete'?: "none" | "inline" | "both" | "list" | undefined;
791
+ 'aria-busy'?: (boolean | "false" | "true") | undefined;
792
+ 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
793
+ 'aria-colcount'?: number | undefined;
794
+ 'aria-colindex'?: number | undefined;
795
+ 'aria-colspan'?: number | undefined;
796
+ 'aria-controls'?: string | undefined;
797
+ 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
798
+ 'aria-describedby'?: string | undefined;
799
+ 'aria-details'?: string | undefined;
800
+ 'aria-disabled'?: (boolean | "false" | "true") | undefined;
801
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
802
+ 'aria-errormessage'?: string | undefined;
803
+ 'aria-expanded'?: (boolean | "false" | "true") | undefined;
804
+ 'aria-flowto'?: string | undefined;
805
+ 'aria-grabbed'?: (boolean | "false" | "true") | undefined;
806
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
807
+ 'aria-hidden'?: (boolean | "false" | "true") | undefined;
808
+ 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
809
+ 'aria-keyshortcuts'?: string | undefined;
810
+ 'aria-label'?: string | undefined;
811
+ 'aria-labelledby'?: string | undefined;
812
+ 'aria-level'?: number | undefined;
813
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
814
+ 'aria-modal'?: (boolean | "false" | "true") | undefined;
815
+ 'aria-multiline'?: (boolean | "false" | "true") | undefined;
816
+ 'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
817
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
818
+ 'aria-owns'?: string | undefined;
819
+ 'aria-placeholder'?: string | undefined;
820
+ 'aria-posinset'?: number | undefined;
821
+ 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
822
+ 'aria-readonly'?: (boolean | "false" | "true") | undefined;
823
+ 'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
824
+ 'aria-required'?: (boolean | "false" | "true") | undefined;
825
+ 'aria-roledescription'?: string | undefined;
826
+ 'aria-rowcount'?: number | undefined;
827
+ 'aria-rowindex'?: number | undefined;
828
+ 'aria-rowspan'?: number | undefined;
829
+ 'aria-selected'?: (boolean | "false" | "true") | undefined;
830
+ 'aria-setsize'?: number | undefined;
831
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
832
+ 'aria-valuemax'?: number | undefined;
833
+ 'aria-valuemin'?: number | undefined;
834
+ 'aria-valuenow'?: number | undefined;
835
+ 'aria-valuetext'?: string | undefined;
836
+ dangerouslySetInnerHTML?: {
837
+ __html: string;
838
+ } | undefined;
839
+ onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
840
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
841
+ onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
842
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
843
+ onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
844
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
845
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
846
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
847
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
848
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
849
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
850
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
851
+ onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
852
+ onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
853
+ onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
854
+ onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
855
+ onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
856
+ onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
857
+ onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
858
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
859
+ onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
860
+ onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
861
+ onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
862
+ onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
863
+ onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
864
+ onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
865
+ onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
866
+ onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
867
+ onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
868
+ onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
869
+ onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
870
+ onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
871
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
872
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
873
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
874
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
875
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
876
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
877
+ onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
878
+ onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
879
+ onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
880
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
881
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
882
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
883
+ onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
884
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
885
+ onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
886
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
887
+ onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
888
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
889
+ onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
890
+ onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
891
+ onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
892
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
893
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
894
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
895
+ onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
896
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
897
+ onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
898
+ onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
899
+ onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
900
+ onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
901
+ onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
902
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
903
+ onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
904
+ onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
905
+ onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
906
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
907
+ onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
908
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
909
+ onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
910
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
911
+ onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
912
+ onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
913
+ onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
914
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
915
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
916
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
917
+ onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
918
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
919
+ onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
920
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
921
+ onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
922
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
923
+ onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
924
+ onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
925
+ onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
926
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
927
+ onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
928
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
929
+ onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
930
+ onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
931
+ onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
932
+ onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
933
+ onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
934
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
935
+ onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
936
+ onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
937
+ onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
938
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
939
+ onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
940
+ onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
941
+ onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
942
+ onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
943
+ onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
944
+ onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
945
+ onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
946
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
947
+ onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
948
+ onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
949
+ onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
950
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
951
+ onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
952
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
953
+ onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
954
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
955
+ onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
956
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
957
+ onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
958
+ onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
959
+ onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
960
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
961
+ onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
962
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
963
+ onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
964
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
965
+ onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
966
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
967
+ onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
968
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
969
+ onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
970
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
971
+ onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
972
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
973
+ onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
974
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
975
+ onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
976
+ onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
977
+ onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
978
+ onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
979
+ onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
980
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
981
+ onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
982
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
983
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
984
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
985
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
986
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
987
+ onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
988
+ onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
989
+ onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
990
+ onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
991
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
992
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
993
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
994
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
995
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
996
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
997
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
998
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
999
+ } & import("react").RefAttributes<HTMLElement>, `data-${string}` | "children" | "value" | "ref" | "label" | "size" | "className" | "onValueChange"> & {
1000
+ children: import("react").ReactNode;
1001
+ className?: string | undefined;
1002
+ value?: string | undefined;
1003
+ onValueChange?: ((value: string) => void) | undefined;
1004
+ label?: import("react").ReactNode;
1005
+ } & import("../types").DataAttributes & {
1006
+ size?: "small" | "large" | "medium" | undefined;
1007
+ disabled?: boolean | undefined;
1008
+ error?: boolean | undefined;
1009
+ } & import("react").RefAttributes<HTMLDivElement>> & {
1010
+ Item: import("react").ForwardRefExoticComponent<Omit<{
1011
+ as?: import("react").ElementType<any> | undefined;
1012
+ children?: import("react").ReactNode;
1013
+ className?: string | undefined;
1014
+ style?: Record<string, any> | undefined;
1015
+ } & {
1016
+ display?: ("block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | {
1017
+ mobile?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
1018
+ tablet?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
1019
+ desktop?: "block" | "none" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | undefined;
1020
+ }) | undefined;
1021
+ flexDirection?: ("column" | "row" | {
1022
+ mobile?: "column" | "row" | undefined;
1023
+ tablet?: "column" | "row" | undefined;
1024
+ desktop?: "column" | "row" | undefined;
1025
+ }) | undefined;
1026
+ alignItems?: ("center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | {
1027
+ mobile?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
1028
+ tablet?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
1029
+ desktop?: "center" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "stretch" | undefined;
1030
+ }) | undefined;
1031
+ justifyContent?: ("center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | {
1032
+ mobile?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
1033
+ tablet?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
1034
+ desktop?: "center" | "flex-end" | "flex-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined;
1035
+ }) | undefined;
1036
+ flexGrow?: ("1" | "0" | {
1037
+ mobile?: "1" | "0" | undefined;
1038
+ tablet?: "1" | "0" | undefined;
1039
+ desktop?: "1" | "0" | undefined;
1040
+ }) | undefined;
1041
+ flexShrink?: ("1" | "0" | {
1042
+ mobile?: "1" | "0" | undefined;
1043
+ tablet?: "1" | "0" | undefined;
1044
+ desktop?: "1" | "0" | undefined;
1045
+ }) | undefined;
1046
+ flexBasis?: ("auto" | "0" | {
1047
+ mobile?: "auto" | "0" | undefined;
1048
+ tablet?: "auto" | "0" | undefined;
1049
+ desktop?: "auto" | "0" | undefined;
1050
+ }) | undefined;
1051
+ position?: ("absolute" | "fixed" | "relative" | "static" | "sticky" | {
1052
+ mobile?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
1053
+ tablet?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
1054
+ desktop?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
1055
+ }) | undefined;
1056
+ gridArea?: ("auto" | {
1057
+ mobile?: "auto" | undefined;
1058
+ tablet?: "auto" | undefined;
1059
+ desktop?: "auto" | undefined;
1060
+ }) | undefined;
1061
+ gridTemplateAreas?: ("none" | {
1062
+ mobile?: "none" | undefined;
1063
+ tablet?: "none" | undefined;
1064
+ desktop?: "none" | undefined;
1065
+ }) | undefined;
1066
+ gridTemplateRows?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | {
1067
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1068
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1069
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1070
+ }) | undefined;
1071
+ gridRow?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | {
1072
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1073
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1074
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1075
+ }) | undefined;
1076
+ gridRowStart?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
1077
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1078
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1079
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1080
+ }) | undefined;
1081
+ gridRowEnd?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
1082
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1083
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1084
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1085
+ }) | undefined;
1086
+ gridTemplateColumns?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | {
1087
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1088
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1089
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | "none" | undefined;
1090
+ }) | undefined;
1091
+ gridColumn?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | {
1092
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1093
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1094
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | "full" | undefined;
1095
+ }) | undefined;
1096
+ gridColumnStart?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
1097
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1098
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1099
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1100
+ }) | undefined;
1101
+ gridColumnEnd?: ("1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | {
1102
+ mobile?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1103
+ tablet?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1104
+ desktop?: "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "auto" | undefined;
1105
+ }) | undefined;
1106
+ gridAutoFlow?: ("column" | "row" | "dense" | "row dense" | "column dense" | {
1107
+ mobile?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
1108
+ tablet?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
1109
+ desktop?: "column" | "row" | "dense" | "row dense" | "column dense" | undefined;
1110
+ }) | undefined;
1111
+ order?: (number | {
1112
+ mobile?: number | undefined;
1113
+ tablet?: number | undefined;
1114
+ desktop?: number | undefined;
1115
+ }) | undefined;
1116
+ flexWrap?: ("nowrap" | "wrap" | {
1117
+ mobile?: "nowrap" | "wrap" | undefined;
1118
+ tablet?: "nowrap" | "wrap" | undefined;
1119
+ desktop?: "nowrap" | "wrap" | undefined;
1120
+ }) | undefined;
1121
+ gap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1122
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1123
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1124
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1125
+ }) | undefined;
1126
+ rowGap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1127
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1128
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1129
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1130
+ }) | undefined;
1131
+ columnGap?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1132
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1133
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1134
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1135
+ }) | undefined;
1136
+ paddingTop?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1137
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1138
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1139
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1140
+ }) | undefined;
1141
+ paddingBottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1142
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1143
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1144
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1145
+ }) | undefined;
1146
+ paddingLeft?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1147
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1148
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1149
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1150
+ }) | undefined;
1151
+ paddingRight?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1152
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1153
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1154
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1155
+ }) | undefined;
1156
+ marginTop?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1157
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1158
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1159
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1160
+ }) | undefined;
1161
+ marginBottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1162
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1163
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1164
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1165
+ }) | undefined;
1166
+ marginLeft?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1167
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1168
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1169
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1170
+ }) | undefined;
1171
+ marginRight?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1172
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1173
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1174
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1175
+ }) | undefined;
1176
+ width?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | {
1177
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
1178
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
1179
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vw" | undefined;
1180
+ }) | undefined;
1181
+ height?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | {
1182
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
1183
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
1184
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "100%" | "100vh" | undefined;
1185
+ }) | undefined;
1186
+ minHeight?: ("0px" | "auto" | "100%" | {
1187
+ mobile?: "0px" | "auto" | "100%" | undefined;
1188
+ tablet?: "0px" | "auto" | "100%" | undefined;
1189
+ desktop?: "0px" | "auto" | "100%" | undefined;
1190
+ }) | undefined;
1191
+ minWidth?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | {
1192
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1193
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1194
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1195
+ }) | undefined;
1196
+ maxWidth?: ("0px" | "auto" | "100%" | {
1197
+ mobile?: "0px" | "auto" | "100%" | undefined;
1198
+ tablet?: "0px" | "auto" | "100%" | undefined;
1199
+ desktop?: "0px" | "auto" | "100%" | undefined;
1200
+ }) | undefined;
1201
+ maxHeight?: (0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | {
1202
+ mobile?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1203
+ tablet?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1204
+ desktop?: 0 | "0px" | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | "100%" | undefined;
1205
+ }) | undefined;
1206
+ borderTopRightRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
1207
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1208
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1209
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1210
+ }) | undefined;
1211
+ borderTopLeftRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
1212
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1213
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1214
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1215
+ }) | undefined;
1216
+ borderBottomRightRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
1217
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1218
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1219
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1220
+ }) | undefined;
1221
+ borderBottomLeftRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
1222
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1223
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1224
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1225
+ }) | undefined;
1226
+ fontSize?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
1227
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1228
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1229
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1230
+ }) | undefined;
1231
+ lineHeight?: (1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
1232
+ mobile?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1233
+ tablet?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1234
+ desktop?: 1 | "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1235
+ }) | undefined;
1236
+ textAlign?: ("center" | "left" | "right" | {
1237
+ mobile?: "center" | "left" | "right" | undefined;
1238
+ tablet?: "center" | "left" | "right" | undefined;
1239
+ desktop?: "center" | "left" | "right" | undefined;
1240
+ }) | undefined;
1241
+ borderLeftWidth?: (0 | 1 | {
1242
+ mobile?: 0 | 1 | undefined;
1243
+ tablet?: 0 | 1 | undefined;
1244
+ desktop?: 0 | 1 | undefined;
1245
+ }) | undefined;
1246
+ borderRightWidth?: (0 | 1 | {
1247
+ mobile?: 0 | 1 | undefined;
1248
+ tablet?: 0 | 1 | undefined;
1249
+ desktop?: 0 | 1 | undefined;
1250
+ }) | undefined;
1251
+ borderTopWidth?: (0 | 1 | {
1252
+ mobile?: 0 | 1 | undefined;
1253
+ tablet?: 0 | 1 | undefined;
1254
+ desktop?: 0 | 1 | undefined;
1255
+ }) | undefined;
1256
+ borderBottomWidth?: (0 | 1 | {
1257
+ mobile?: 0 | 1 | undefined;
1258
+ tablet?: 0 | 1 | undefined;
1259
+ desktop?: 0 | 1 | undefined;
1260
+ }) | undefined;
1261
+ borderLeftStyle?: ("none" | "solid" | {
1262
+ mobile?: "none" | "solid" | undefined;
1263
+ tablet?: "none" | "solid" | undefined;
1264
+ desktop?: "none" | "solid" | undefined;
1265
+ }) | undefined;
1266
+ borderRightStyle?: ("none" | "solid" | {
1267
+ mobile?: "none" | "solid" | undefined;
1268
+ tablet?: "none" | "solid" | undefined;
1269
+ desktop?: "none" | "solid" | undefined;
1270
+ }) | undefined;
1271
+ borderTopStyle?: ("none" | "solid" | {
1272
+ mobile?: "none" | "solid" | undefined;
1273
+ tablet?: "none" | "solid" | undefined;
1274
+ desktop?: "none" | "solid" | undefined;
1275
+ }) | undefined;
1276
+ borderBottomStyle?: ("none" | "solid" | {
1277
+ mobile?: "none" | "solid" | undefined;
1278
+ tablet?: "none" | "solid" | undefined;
1279
+ desktop?: "none" | "solid" | undefined;
1280
+ }) | undefined;
1281
+ outlineStyle?: ("none" | {
1282
+ mobile?: "none" | undefined;
1283
+ tablet?: "none" | undefined;
1284
+ desktop?: "none" | undefined;
1285
+ }) | undefined;
1286
+ textTransform?: ("uppercase" | {
1287
+ mobile?: "uppercase" | undefined;
1288
+ tablet?: "uppercase" | undefined;
1289
+ desktop?: "uppercase" | undefined;
1290
+ }) | undefined;
1291
+ letterSpacing?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
1292
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1293
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1294
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1295
+ }) | undefined;
1296
+ top?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1297
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1298
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1299
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1300
+ }) | undefined;
1301
+ bottom?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1302
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1303
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1304
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1305
+ }) | undefined;
1306
+ left?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1307
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1308
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1309
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1310
+ }) | undefined;
1311
+ right?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1312
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1313
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1314
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1315
+ }) | undefined;
1316
+ overflowX?: ("auto" | "hidden" | "scroll" | "visible" | {
1317
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1318
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1319
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1320
+ }) | undefined;
1321
+ overflowY?: ("auto" | "hidden" | "scroll" | "visible" | {
1322
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1323
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1324
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1325
+ }) | undefined;
1326
+ textOverflow?: ("none" | "ellipsis" | {
1327
+ mobile?: "none" | "ellipsis" | undefined;
1328
+ tablet?: "none" | "ellipsis" | undefined;
1329
+ desktop?: "none" | "ellipsis" | undefined;
1330
+ }) | undefined;
1331
+ whiteSpace?: ("normal" | "nowrap" | {
1332
+ mobile?: "normal" | "nowrap" | undefined;
1333
+ tablet?: "normal" | "nowrap" | undefined;
1334
+ desktop?: "normal" | "nowrap" | undefined;
1335
+ }) | undefined;
1336
+ wordBreak?: ("normal" | "break-word" | "break-all" | {
1337
+ mobile?: "normal" | "break-word" | "break-all" | undefined;
1338
+ tablet?: "normal" | "break-word" | "break-all" | undefined;
1339
+ desktop?: "normal" | "break-word" | "break-all" | undefined;
1340
+ }) | undefined;
1341
+ zIndex?: ("1" | "auto" | "2" | "3" | {
1342
+ mobile?: "1" | "auto" | "2" | "3" | undefined;
1343
+ tablet?: "1" | "auto" | "2" | "3" | undefined;
1344
+ desktop?: "1" | "auto" | "2" | "3" | undefined;
1345
+ }) | undefined;
1346
+ aspectRatio?: ("1 / 1" | {
1347
+ mobile?: "1 / 1" | undefined;
1348
+ tablet?: "1 / 1" | undefined;
1349
+ desktop?: "1 / 1" | undefined;
1350
+ }) | undefined;
1351
+ objectFit?: ("none" | "contain" | "cover" | "fill" | "scale-down" | {
1352
+ mobile?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
1353
+ tablet?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
1354
+ desktop?: "none" | "contain" | "cover" | "fill" | "scale-down" | undefined;
1355
+ }) | undefined;
1356
+ opacity?: ("1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | {
1357
+ mobile?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
1358
+ tablet?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
1359
+ desktop?: "1" | "0" | "0.2" | "0.4" | "0.6" | "0.8" | undefined;
1360
+ }) | undefined;
1361
+ fontWeight?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
1362
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1363
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1364
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1365
+ }) | undefined;
1366
+ alignSelf?: ("normal" | "auto" | "center" | "end" | "start" | {
1367
+ mobile?: "normal" | "auto" | "center" | "end" | "start" | undefined;
1368
+ tablet?: "normal" | "auto" | "center" | "end" | "start" | undefined;
1369
+ desktop?: "normal" | "auto" | "center" | "end" | "start" | undefined;
1370
+ }) | undefined;
1371
+ visibility?: ("hidden" | "visible" | {
1372
+ mobile?: "hidden" | "visible" | undefined;
1373
+ tablet?: "hidden" | "visible" | undefined;
1374
+ desktop?: "hidden" | "visible" | undefined;
1375
+ }) | undefined;
1376
+ padding?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1377
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1378
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1379
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1380
+ }) | undefined;
1381
+ paddingX?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1382
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1383
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1384
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1385
+ }) | undefined;
1386
+ paddingY?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1387
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1388
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1389
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1390
+ }) | undefined;
1391
+ margin?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1392
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1393
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1394
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1395
+ }) | undefined;
1396
+ marginX?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1397
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1398
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1399
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1400
+ }) | undefined;
1401
+ marginY?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | {
1402
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1403
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1404
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | "auto" | undefined;
1405
+ }) | undefined;
1406
+ placeItems?: ("center" | "flex-end" | "flex-start" | "stretch" | {
1407
+ mobile?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
1408
+ tablet?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
1409
+ desktop?: "center" | "flex-end" | "flex-start" | "stretch" | undefined;
1410
+ }) | undefined;
1411
+ typeSize?: ("heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | {
1412
+ mobile?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1413
+ tablet?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1414
+ desktop?: "heroLarge" | "heroMedium" | "heroSmall" | "titleLarge" | "titleMedium" | "titleSmall" | "headingLarge" | "headingMedium" | "headingSmall" | "bodyStrongLarge" | "bodyStrongMedium" | "bodyStrongSmall" | "bodyEmpLarge" | "bodyEmpMedium" | "bodyEmpSmall" | "bodyLarge" | "bodyMedium" | "bodySmall" | "buttonLarge" | "buttonMedium" | "buttonSmall" | "captionLarge" | "captionMedium" | "captionSmall" | undefined;
1415
+ }) | undefined;
1416
+ borderWidth?: (0 | 1 | {
1417
+ mobile?: 0 | 1 | undefined;
1418
+ tablet?: 0 | 1 | undefined;
1419
+ desktop?: 0 | 1 | undefined;
1420
+ }) | undefined;
1421
+ borderXWidth?: (0 | 1 | {
1422
+ mobile?: 0 | 1 | undefined;
1423
+ tablet?: 0 | 1 | undefined;
1424
+ desktop?: 0 | 1 | undefined;
1425
+ }) | undefined;
1426
+ borderYWidth?: (0 | 1 | {
1427
+ mobile?: 0 | 1 | undefined;
1428
+ tablet?: 0 | 1 | undefined;
1429
+ desktop?: 0 | 1 | undefined;
1430
+ }) | undefined;
1431
+ borderStyle?: ("none" | "solid" | {
1432
+ mobile?: "none" | "solid" | undefined;
1433
+ tablet?: "none" | "solid" | undefined;
1434
+ desktop?: "none" | "solid" | undefined;
1435
+ }) | undefined;
1436
+ borderXStyle?: ("none" | "solid" | {
1437
+ mobile?: "none" | "solid" | undefined;
1438
+ tablet?: "none" | "solid" | undefined;
1439
+ desktop?: "none" | "solid" | undefined;
1440
+ }) | undefined;
1441
+ borderYStyle?: ("none" | "solid" | {
1442
+ mobile?: "none" | "solid" | undefined;
1443
+ tablet?: "none" | "solid" | undefined;
1444
+ desktop?: "none" | "solid" | undefined;
1445
+ }) | undefined;
1446
+ inset?: (0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | {
1447
+ mobile?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1448
+ tablet?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1449
+ desktop?: 0 | 2 | 1 | "px" | 0.5 | 1.5 | 2.5 | 3 | 3.5 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | undefined;
1450
+ }) | undefined;
1451
+ borderRadius?: (2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | {
1452
+ mobile?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1453
+ tablet?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1454
+ desktop?: 2 | 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | "100%" | "50%" | undefined;
1455
+ }) | undefined;
1456
+ overflow?: ("auto" | "hidden" | "scroll" | "visible" | {
1457
+ mobile?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1458
+ tablet?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1459
+ desktop?: "auto" | "hidden" | "scroll" | "visible" | undefined;
1460
+ }) | undefined;
1461
+ flex?: ("0" | {
1462
+ mobile?: "0" | undefined;
1463
+ tablet?: "0" | undefined;
1464
+ desktop?: "0" | undefined;
1465
+ }) | undefined;
1466
+ } & {
1467
+ borderColor?: ("neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | {
1468
+ default?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1469
+ hover?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1470
+ focus?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1471
+ focusWithin?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1472
+ focusVisible?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1473
+ active?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1474
+ disabled?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1475
+ placeholder?: "neutralDefault" | "neutralSubdued" | "neutralHighlight" | "neutralPlain" | "brandPlain" | "brandDefault" | "brandSubdued" | "brandHighlight" | "criticalPlain" | "criticalDefault" | "criticalSubdued" | "criticalHighlight" | "transparent" | undefined;
1476
+ }) | undefined;
1477
+ color?: ("textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | {
1478
+ default?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1479
+ hover?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1480
+ focus?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1481
+ focusWithin?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1482
+ focusVisible?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1483
+ active?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1484
+ disabled?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1485
+ placeholder?: "textNeutralPlain" | "textNeutralDefault" | "textNeutralSubdued" | "textNeutralDisabled" | "textNeutralContrasted" | "textBrandDefault" | "textBrandSubdued" | "textBrandDisabled" | "textCriticalDefault" | "textCriticalSubdued" | "textCriticalDisabled" | "iconNeutralPlain" | "iconNeutralDefault" | "iconNeutralSubdued" | "iconNeutralDisabled" | "iconNeutralContrasted" | "iconBrandDefault" | "iconBrandSubdued" | "iconBrandDisabled" | "iconCriticalDefault" | "iconCriticalSubdued" | "iconCriticalDisabled" | "text1Decorative" | "text2Decorative" | "text3Decorative" | "icon1Decorative" | "icon2Decorative" | "icon3Decorative" | "inherit" | undefined;
1486
+ }) | undefined;
1487
+ backgroundColor?: ("plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | {
1488
+ default?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1489
+ hover?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1490
+ focus?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1491
+ focusWithin?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1492
+ focusVisible?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1493
+ active?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1494
+ disabled?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1495
+ placeholder?: "plain" | "subdued" | "highlightDim" | "highlightPale" | "surfaceNeutralPlain" | "surfaceNeutralSubdued" | "surfaceNeutralDepressed" | "surfaceNeutralHighlight" | "surfaceBrandSubdued" | "surfaceBrandDepressed" | "surfaceBrandHighlight" | "surfaceCriticalSubdued" | "surfaceCriticalDepressed" | "surfaceCriticalHighlight" | "interactiveNeutralDefault" | "interactiveNeutralHovering" | "interactiveNeutralPressing" | "interactiveNeutralFocused" | "interactiveNeutralDisabled" | "interactiveBrandDefault" | "interactiveBrandHovering" | "interactiveBrandPressing" | "interactiveBrandFocused" | "interactiveBrandDisabled" | "interactiveCriticalDefault" | "interactiveCriticalHovering" | "interactiveCriticalPressing" | "interactiveCriticalFocused" | "interactiveCriticalDisabled" | "interactiveNeutralSecondaryDefault" | "interactiveNeutralSecondaryHovering" | "interactiveNeutralSecondaryPressing" | "interactiveNeutralSecondaryFocused" | "interactiveNeutralSecondaryDisabled" | "interactiveBrandSecondaryDefault" | "interactiveBrandSecondaryHovering" | "interactiveBrandSecondaryPressing" | "interactiveBrandSecondaryFocused" | "interactiveBrandSecondaryDisabled" | "interactiveCriticalSecondaryDefault" | "interactiveCriticalSecondaryHovering" | "interactiveCriticalSecondaryPressing" | "interactiveCriticalSecondaryFocused" | "interactiveCriticalSecondaryDisabled" | "interactiveNeutralHighlightDefault" | "interactiveNeutralHighlightHovering" | "interactiveNeutralHighlightPressing" | "interactiveNeutralHighlightFocused" | "interactiveNeutralHighlightDisabled" | "interactiveBrandHighlightDefault" | "interactiveBrandHighlightHovering" | "interactiveBrandHighlightPressing" | "interactiveBrandHighlightFocused" | "interactiveBrandHighlightDisabled" | "interactiveCriticalHighlightDefault" | "interactiveCriticalHighlightHovering" | "interactiveCriticalHighlightPressing" | "interactiveCriticalHighlightFocused" | "interactiveCriticalHighlightDisabled" | "decorativeSurfacePlain1" | "decorativeSurfacePlain2" | "decorativeSurfacePlain3" | "decorativeSurfaceSubdued1" | "decorativeSurfaceSubdued2" | "decorativeSurfaceSubdued3" | "transparent" | undefined;
1496
+ }) | undefined;
1497
+ pointerEvents?: ("auto" | "none" | {
1498
+ default?: "auto" | "none" | undefined;
1499
+ hover?: "auto" | "none" | undefined;
1500
+ focus?: "auto" | "none" | undefined;
1501
+ focusWithin?: "auto" | "none" | undefined;
1502
+ focusVisible?: "auto" | "none" | undefined;
1503
+ active?: "auto" | "none" | undefined;
1504
+ disabled?: "auto" | "none" | undefined;
1505
+ placeholder?: "auto" | "none" | undefined;
1506
+ }) | undefined;
1507
+ cursor?: ("auto" | "not-allowed" | "pointer" | "text" | {
1508
+ default?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1509
+ hover?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1510
+ focus?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1511
+ focusWithin?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1512
+ focusVisible?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1513
+ active?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1514
+ disabled?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1515
+ placeholder?: "auto" | "not-allowed" | "pointer" | "text" | undefined;
1516
+ }) | undefined;
1517
+ boxShadow?: ("interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | {
1518
+ default?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1519
+ hover?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1520
+ focus?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1521
+ focusWithin?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1522
+ focusVisible?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1523
+ active?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1524
+ disabled?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1525
+ placeholder?: "interactiveDefaultFocused" | "interactiveDefaultHovering" | "overlay" | "modal" | "none" | undefined;
1526
+ }) | undefined;
1527
+ transition?: ("all" | "ease" | {
1528
+ default?: "all" | "ease" | undefined;
1529
+ hover?: "all" | "ease" | undefined;
1530
+ focus?: "all" | "ease" | undefined;
1531
+ focusWithin?: "all" | "ease" | undefined;
1532
+ focusVisible?: "all" | "ease" | undefined;
1533
+ active?: "all" | "ease" | undefined;
1534
+ disabled?: "all" | "ease" | undefined;
1535
+ placeholder?: "all" | "ease" | undefined;
1536
+ }) | undefined;
1537
+ textDecoration?: ("none" | "underline" | {
1538
+ default?: "none" | "underline" | undefined;
1539
+ hover?: "none" | "underline" | undefined;
1540
+ focus?: "none" | "underline" | undefined;
1541
+ focusWithin?: "none" | "underline" | undefined;
1542
+ focusVisible?: "none" | "underline" | undefined;
1543
+ active?: "none" | "underline" | undefined;
1544
+ disabled?: "none" | "underline" | undefined;
1545
+ placeholder?: "none" | "underline" | undefined;
1546
+ }) | undefined;
1547
+ transform?: {} | undefined;
1548
+ } & {
1549
+ __display?: any;
1550
+ __flexDirection?: any;
1551
+ __alignItems?: any;
1552
+ __justifyContent?: any;
1553
+ __flexGrow?: any;
1554
+ __flexShrink?: any;
1555
+ __flexBasis?: any;
1556
+ __position?: any;
1557
+ __gridArea?: any;
1558
+ __gridTemplateAreas?: any;
1559
+ __gridTemplateRows?: any;
1560
+ __gridRow?: any;
1561
+ __gridRowStart?: any;
1562
+ __gridRowEnd?: any;
1563
+ __gridTemplateColumns?: any;
1564
+ __gridColumn?: any;
1565
+ __gridColumnStart?: any;
1566
+ __gridColumnEnd?: any;
1567
+ __gridAutoFlow?: any;
1568
+ __order?: any;
1569
+ __flexWrap?: any;
1570
+ __gap?: any;
1571
+ __rowGap?: any;
1572
+ __columnGap?: any;
1573
+ __paddingTop?: any;
1574
+ __paddingBottom?: any;
1575
+ __paddingLeft?: any;
1576
+ __paddingRight?: any;
1577
+ __marginTop?: any;
1578
+ __marginBottom?: any;
1579
+ __marginLeft?: any;
1580
+ __marginRight?: any;
1581
+ __width?: any;
1582
+ __height?: any;
1583
+ __minHeight?: any;
1584
+ __minWidth?: any;
1585
+ __maxWidth?: any;
1586
+ __maxHeight?: any;
1587
+ __borderTopRightRadius?: any;
1588
+ __borderTopLeftRadius?: any;
1589
+ __borderBottomRightRadius?: any;
1590
+ __borderBottomLeftRadius?: any;
1591
+ __fontSize?: any;
1592
+ __lineHeight?: any;
1593
+ __textAlign?: any;
1594
+ __borderLeftWidth?: any;
1595
+ __borderRightWidth?: any;
1596
+ __borderTopWidth?: any;
1597
+ __borderBottomWidth?: any;
1598
+ __borderLeftStyle?: any;
1599
+ __borderRightStyle?: any;
1600
+ __borderTopStyle?: any;
1601
+ __borderBottomStyle?: any;
1602
+ __outlineStyle?: any;
1603
+ __textTransform?: any;
1604
+ __letterSpacing?: any;
1605
+ __top?: any;
1606
+ __bottom?: any;
1607
+ __left?: any;
1608
+ __right?: any;
1609
+ __overflowX?: any;
1610
+ __overflowY?: any;
1611
+ __textOverflow?: any;
1612
+ __whiteSpace?: any;
1613
+ __wordBreak?: any;
1614
+ __zIndex?: any;
1615
+ __aspectRatio?: any;
1616
+ __objectFit?: any;
1617
+ __opacity?: any;
1618
+ __fontWeight?: any;
1619
+ __alignSelf?: any;
1620
+ __visibility?: any;
1621
+ __padding?: any;
1622
+ __paddingX?: any;
1623
+ __paddingY?: any;
1624
+ __margin?: any;
1625
+ __marginX?: any;
1626
+ __marginY?: any;
1627
+ __placeItems?: any;
1628
+ __typeSize?: any;
1629
+ __borderWidth?: any;
1630
+ __borderXWidth?: any;
1631
+ __borderYWidth?: any;
1632
+ __borderStyle?: any;
1633
+ __borderXStyle?: any;
1634
+ __borderYStyle?: any;
1635
+ __inset?: any;
1636
+ __borderRadius?: any;
1637
+ __overflow?: any;
1638
+ __flex?: any;
1639
+ __borderColor?: any;
1640
+ __color?: any;
1641
+ __backgroundColor?: any;
1642
+ __pointerEvents?: any;
1643
+ __cursor?: any;
1644
+ __boxShadow?: any;
1645
+ __transition?: any;
1646
+ __textDecoration?: any;
1647
+ __transform?: any;
1648
+ } & {
1649
+ children?: import("react").ReactNode;
1650
+ value?: string | number | readonly string[] | undefined;
1651
+ cite?: string | undefined;
1652
+ data?: string | undefined;
1653
+ form?: string | undefined;
1654
+ label?: string | undefined;
1655
+ slot?: string | undefined;
1656
+ span?: number | undefined;
1657
+ style?: import("react").CSSProperties | undefined;
1658
+ summary?: string | undefined;
1659
+ title?: string | undefined;
1660
+ pattern?: string | undefined;
1661
+ src?: string | undefined;
1662
+ size?: number | undefined;
1663
+ content?: string | undefined;
1664
+ translate?: "yes" | "no" | undefined;
1665
+ id?: string | undefined;
1666
+ start?: number | undefined;
1667
+ wrap?: string | undefined;
1668
+ hidden?: boolean | undefined;
1669
+ default?: boolean | undefined;
1670
+ disabled?: boolean | undefined;
1671
+ placeholder?: string | undefined;
1672
+ open?: boolean | undefined;
1673
+ multiple?: boolean | undefined;
1674
+ accept?: string | undefined;
1675
+ acceptCharset?: string | undefined;
1676
+ action?: string | undefined;
1677
+ allowFullScreen?: boolean | undefined;
1678
+ allowTransparency?: boolean | undefined;
1679
+ alt?: string | undefined;
1680
+ async?: boolean | undefined;
1681
+ autoComplete?: string | undefined;
1682
+ autoFocus?: boolean | undefined;
1683
+ autoPlay?: boolean | undefined;
1684
+ capture?: boolean | "user" | "environment" | undefined;
1685
+ cellPadding?: string | number | undefined;
1686
+ cellSpacing?: string | number | undefined;
1687
+ charSet?: string | undefined;
1688
+ challenge?: string | undefined;
1689
+ checked?: boolean | undefined;
1690
+ classID?: string | undefined;
1691
+ cols?: number | undefined;
1692
+ colSpan?: number | undefined;
1693
+ controls?: boolean | undefined;
1694
+ coords?: string | undefined;
1695
+ crossOrigin?: string | undefined;
1696
+ dateTime?: string | undefined;
1697
+ defer?: boolean | undefined;
1698
+ download?: any;
1699
+ encType?: string | undefined;
1700
+ formAction?: string | undefined;
1701
+ formEncType?: string | undefined;
1702
+ formMethod?: string | undefined;
1703
+ formNoValidate?: boolean | undefined;
1704
+ formTarget?: string | undefined;
1705
+ frameBorder?: string | number | undefined;
1706
+ headers?: string | undefined;
1707
+ high?: number | undefined;
1708
+ href?: string | undefined;
1709
+ hrefLang?: string | undefined;
1710
+ htmlFor?: string | undefined;
1711
+ httpEquiv?: string | undefined;
1712
+ integrity?: string | undefined;
1713
+ keyParams?: string | undefined;
1714
+ keyType?: string | undefined;
1715
+ kind?: string | undefined;
1716
+ list?: string | undefined;
1717
+ loop?: boolean | undefined;
1718
+ low?: number | undefined;
1719
+ manifest?: string | undefined;
1720
+ marginHeight?: number | undefined;
1721
+ marginWidth?: number | undefined;
1722
+ max?: string | number | undefined;
1723
+ maxLength?: number | undefined;
1724
+ media?: string | undefined;
1725
+ mediaGroup?: string | undefined;
1726
+ method?: string | undefined;
1727
+ min?: string | number | undefined;
1728
+ minLength?: number | undefined;
1729
+ muted?: boolean | undefined;
1730
+ name?: string | undefined;
1731
+ nonce?: string | undefined;
1732
+ noValidate?: boolean | undefined;
1733
+ optimum?: number | undefined;
1734
+ playsInline?: boolean | undefined;
1735
+ poster?: string | undefined;
1736
+ preload?: string | undefined;
1737
+ readOnly?: boolean | undefined;
1738
+ rel?: string | undefined;
1739
+ required?: boolean | undefined;
1740
+ reversed?: boolean | undefined;
1741
+ rows?: number | undefined;
1742
+ rowSpan?: number | undefined;
1743
+ sandbox?: string | undefined;
1744
+ scope?: string | undefined;
1745
+ scoped?: boolean | undefined;
1746
+ scrolling?: string | undefined;
1747
+ seamless?: boolean | undefined;
1748
+ selected?: boolean | undefined;
1749
+ shape?: string | undefined;
1750
+ sizes?: string | undefined;
1751
+ srcDoc?: string | undefined;
1752
+ srcLang?: string | undefined;
1753
+ srcSet?: string | undefined;
1754
+ step?: string | number | undefined;
1755
+ target?: string | undefined;
1756
+ type?: string | undefined;
1757
+ useMap?: string | undefined;
1758
+ wmode?: string | undefined;
1759
+ defaultChecked?: boolean | undefined;
1760
+ defaultValue?: string | number | readonly string[] | undefined;
1761
+ suppressContentEditableWarning?: boolean | undefined;
1762
+ suppressHydrationWarning?: boolean | undefined;
1763
+ accessKey?: string | undefined;
1764
+ className?: string | undefined;
1765
+ contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
1766
+ contextMenu?: string | undefined;
1767
+ dir?: string | undefined;
1768
+ draggable?: (boolean | "false" | "true") | undefined;
1769
+ lang?: string | undefined;
1770
+ spellCheck?: (boolean | "false" | "true") | undefined;
1771
+ tabIndex?: number | undefined;
1772
+ radioGroup?: string | undefined;
1773
+ role?: import("react").AriaRole | undefined;
1774
+ about?: string | undefined;
1775
+ datatype?: string | undefined;
1776
+ inlist?: any;
1777
+ prefix?: string | undefined;
1778
+ property?: string | undefined;
1779
+ resource?: string | undefined;
1780
+ typeof?: string | undefined;
1781
+ vocab?: string | undefined;
1782
+ autoCapitalize?: string | undefined;
1783
+ autoCorrect?: string | undefined;
1784
+ autoSave?: string | undefined;
1785
+ itemProp?: string | undefined;
1786
+ itemScope?: boolean | undefined;
1787
+ itemType?: string | undefined;
1788
+ itemID?: string | undefined;
1789
+ itemRef?: string | undefined;
1790
+ results?: number | undefined;
1791
+ security?: string | undefined;
1792
+ unselectable?: "on" | "off" | undefined;
1793
+ inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
1794
+ is?: string | undefined;
1795
+ 'aria-activedescendant'?: string | undefined;
1796
+ 'aria-atomic'?: (boolean | "false" | "true") | undefined;
1797
+ 'aria-autocomplete'?: "none" | "inline" | "both" | "list" | undefined;
1798
+ 'aria-busy'?: (boolean | "false" | "true") | undefined;
1799
+ 'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
1800
+ 'aria-colcount'?: number | undefined;
1801
+ 'aria-colindex'?: number | undefined;
1802
+ 'aria-colspan'?: number | undefined;
1803
+ 'aria-controls'?: string | undefined;
1804
+ 'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
1805
+ 'aria-describedby'?: string | undefined;
1806
+ 'aria-details'?: string | undefined;
1807
+ 'aria-disabled'?: (boolean | "false" | "true") | undefined;
1808
+ 'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
1809
+ 'aria-errormessage'?: string | undefined;
1810
+ 'aria-expanded'?: (boolean | "false" | "true") | undefined;
1811
+ 'aria-flowto'?: string | undefined;
1812
+ 'aria-grabbed'?: (boolean | "false" | "true") | undefined;
1813
+ 'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "false" | "true" | "tree" | undefined;
1814
+ 'aria-hidden'?: (boolean | "false" | "true") | undefined;
1815
+ 'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1816
+ 'aria-keyshortcuts'?: string | undefined;
1817
+ 'aria-label'?: string | undefined;
1818
+ 'aria-labelledby'?: string | undefined;
1819
+ 'aria-level'?: number | undefined;
1820
+ 'aria-live'?: "off" | "assertive" | "polite" | undefined;
1821
+ 'aria-modal'?: (boolean | "false" | "true") | undefined;
1822
+ 'aria-multiline'?: (boolean | "false" | "true") | undefined;
1823
+ 'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
1824
+ 'aria-orientation'?: "horizontal" | "vertical" | undefined;
1825
+ 'aria-owns'?: string | undefined;
1826
+ 'aria-placeholder'?: string | undefined;
1827
+ 'aria-posinset'?: number | undefined;
1828
+ 'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
1829
+ 'aria-readonly'?: (boolean | "false" | "true") | undefined;
1830
+ 'aria-relevant'?: "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
1831
+ 'aria-required'?: (boolean | "false" | "true") | undefined;
1832
+ 'aria-roledescription'?: string | undefined;
1833
+ 'aria-rowcount'?: number | undefined;
1834
+ 'aria-rowindex'?: number | undefined;
1835
+ 'aria-rowspan'?: number | undefined;
1836
+ 'aria-selected'?: (boolean | "false" | "true") | undefined;
1837
+ 'aria-setsize'?: number | undefined;
1838
+ 'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
1839
+ 'aria-valuemax'?: number | undefined;
1840
+ 'aria-valuemin'?: number | undefined;
1841
+ 'aria-valuenow'?: number | undefined;
1842
+ 'aria-valuetext'?: string | undefined;
1843
+ dangerouslySetInnerHTML?: {
1844
+ __html: string;
1845
+ } | undefined;
1846
+ onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1847
+ onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1848
+ onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1849
+ onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1850
+ onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1851
+ onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
1852
+ onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1853
+ onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1854
+ onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1855
+ onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1856
+ onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1857
+ onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
1858
+ onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
1859
+ onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
1860
+ onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
1861
+ onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
1862
+ onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
1863
+ onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1864
+ onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
1865
+ onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1866
+ onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
1867
+ onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1868
+ onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
1869
+ onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1870
+ onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
1871
+ onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1872
+ onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
1873
+ onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
1874
+ onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
1875
+ onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1876
+ onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
1877
+ onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1878
+ onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1879
+ onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1880
+ onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1881
+ onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1882
+ onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1883
+ onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
1884
+ onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
1885
+ onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1886
+ onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
1887
+ onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1888
+ onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
1889
+ onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1890
+ onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
1891
+ onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1892
+ onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
1893
+ onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1894
+ onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
1895
+ onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1896
+ onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
1897
+ onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1898
+ onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
1899
+ onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1900
+ onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
1901
+ onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1902
+ onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
1903
+ onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1904
+ onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
1905
+ onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1906
+ onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
1907
+ onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1908
+ onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
1909
+ onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1910
+ onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
1911
+ onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1912
+ onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
1913
+ onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1914
+ onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
1915
+ onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1916
+ onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
1917
+ onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1918
+ onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
1919
+ onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1920
+ onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
1921
+ onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1922
+ onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
1923
+ onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1924
+ onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
1925
+ onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1926
+ onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
1927
+ onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1928
+ onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
1929
+ onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1930
+ onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
1931
+ onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1932
+ onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
1933
+ onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1934
+ onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
1935
+ onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1936
+ onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
1937
+ onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1938
+ onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
1939
+ onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1940
+ onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
1941
+ onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1942
+ onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
1943
+ onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1944
+ onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
1945
+ onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1946
+ onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
1947
+ onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1948
+ onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
1949
+ onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1950
+ onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
1951
+ onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
1952
+ onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
1953
+ onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1954
+ onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
1955
+ onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
1956
+ onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
1957
+ onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1958
+ onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
1959
+ onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1960
+ onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
1961
+ onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1962
+ onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
1963
+ onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
1964
+ onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
1965
+ onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
1966
+ onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
1967
+ onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
1968
+ onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
1969
+ onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
1970
+ onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
1971
+ onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
1972
+ onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
1973
+ onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
1974
+ onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
1975
+ onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1976
+ onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
1977
+ onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1978
+ onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
1979
+ onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1980
+ onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
1981
+ onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1982
+ onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
1983
+ onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1984
+ onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
1985
+ onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1986
+ onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
1987
+ onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1988
+ onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
1989
+ onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1990
+ onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1991
+ onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1992
+ onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1993
+ onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
1994
+ onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
1995
+ onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
1996
+ onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
1997
+ onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
1998
+ onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
1999
+ onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
2000
+ onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
2001
+ onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
2002
+ onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
2003
+ onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
2004
+ onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
2005
+ onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
2006
+ } & import("react").RefAttributes<HTMLElement>, `data-${string}` | "children" | "value" | "ref" | "size" | "id" | "disabled" | "error" | "className"> & {
2007
+ value: string;
2008
+ id: string;
2009
+ disabled?: boolean | undefined;
2010
+ children: import("react").ReactNode;
2011
+ className?: string | undefined;
2012
+ error?: boolean | undefined;
2013
+ } & import("../types").DataAttributes & import("react").RefAttributes<HTMLDivElement>>;
2014
+ };