gd-design-library 1.8.1 → 1.8.3

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 (2470) hide show
  1. package/README.md +155 -262
  2. package/_virtual/_rolldown/runtime.cjs +1 -0
  3. package/ai/README.md +135 -54
  4. package/ai/a2ui/component-map.cjs +1 -0
  5. package/ai/a2ui/component-map.d.cts +138 -0
  6. package/ai/a2ui/component-map.d.ts +2 -1
  7. package/ai/a2ui/component-map.js +63 -72
  8. package/ai/a2ui/image-policy.cjs +1 -0
  9. package/ai/a2ui/image-policy.d.cts +7 -0
  10. package/ai/a2ui/image-policy.js +6 -0
  11. package/ai/a2ui/index.d.cts +22 -0
  12. package/ai/a2ui/index.d.ts +4 -4
  13. package/ai/a2ui/spec-schema.cjs +1 -0
  14. package/ai/a2ui/spec-schema.d.cts +2220 -0
  15. package/ai/a2ui/spec-schema.d.ts +546 -95
  16. package/ai/a2ui/spec-schema.js +1816 -0
  17. package/ai/a2ui/system-prompt.cjs +16 -0
  18. package/ai/a2ui/system-prompt.d.cts +86 -0
  19. package/ai/a2ui/system-prompt.d.ts +11 -2
  20. package/ai/a2ui/system-prompt.js +805 -0
  21. package/ai/a2ui/ui-specification-schema.json +586 -1020
  22. package/ai/discovery.cjs +1 -0
  23. package/ai/discovery.d.cts +48 -0
  24. package/ai/discovery.d.ts +1 -1
  25. package/ai/discovery.js +62 -0
  26. package/ai/figma-maps/figma-color-map.cjs +1 -0
  27. package/ai/figma-maps/figma-color-map.js +601 -0
  28. package/ai/figma-maps/figma-color-map.json +1037 -0
  29. package/ai/figma-maps/figma-color-map.json.d.cts +1040 -0
  30. package/ai/figma-maps/figma-color-map.json.d.ts +1040 -0
  31. package/ai/figma-maps/figma-font-map.cjs +1 -0
  32. package/ai/figma-maps/figma-font-map.js +331 -0
  33. package/ai/figma-maps/figma-font-map.json +329 -0
  34. package/ai/figma-maps/figma-font-map.json.d.cts +332 -0
  35. package/ai/figma-maps/figma-font-map.json.d.ts +332 -0
  36. package/ai/figma-maps/figma-icon-map.cjs +1 -0
  37. package/ai/figma-maps/figma-icon-map.js +415 -0
  38. package/ai/figma-maps/figma-icon-map.json +404 -0
  39. package/ai/figma-maps/figma-icon-map.json.d.cts +407 -0
  40. package/ai/figma-maps/figma-icon-map.json.d.ts +407 -0
  41. package/ai/figma-maps/figma-radius-map.cjs +1 -0
  42. package/ai/figma-maps/figma-radius-map.js +96 -0
  43. package/ai/figma-maps/figma-radius-map.json +97 -0
  44. package/ai/figma-maps/figma-radius-map.json.d.cts +100 -0
  45. package/ai/figma-maps/figma-radius-map.json.d.ts +100 -0
  46. package/ai/figma-maps/figma-shadow-map.cjs +1 -0
  47. package/ai/figma-maps/figma-shadow-map.js +169 -0
  48. package/ai/figma-maps/figma-shadow-map.json +167 -0
  49. package/ai/figma-maps/figma-shadow-map.json.d.cts +170 -0
  50. package/ai/figma-maps/figma-shadow-map.json.d.ts +170 -0
  51. package/ai/figma-maps/figma-spacing-map.cjs +1 -0
  52. package/ai/figma-maps/figma-spacing-map.js +249 -0
  53. package/ai/figma-maps/figma-spacing-map.json +247 -0
  54. package/ai/figma-maps/figma-spacing-map.json.d.cts +250 -0
  55. package/ai/figma-maps/figma-spacing-map.json.d.ts +250 -0
  56. package/ai/figma-maps/index.cjs +1 -0
  57. package/ai/figma-maps/index.d.cts +4458 -0
  58. package/ai/figma-maps/index.d.ts +4458 -0
  59. package/ai/figma-maps/index.js +17 -0
  60. package/ai/index.cjs +1 -0
  61. package/ai/index.d.cts +8 -0
  62. package/ai/index.d.ts +8 -6
  63. package/ai/index.js +11 -0
  64. package/ai/prompts.cjs +13 -0
  65. package/ai/prompts.d.cts +49 -0
  66. package/ai/prompts.d.ts +1 -1
  67. package/ai/prompts.js +117 -0
  68. package/ai/schemas/components/Accordion.cjs +233 -0
  69. package/ai/schemas/components/Accordion.d.cts +191 -0
  70. package/ai/schemas/components/Accordion.js +639 -731
  71. package/ai/schemas/components/AttachmentFile.cjs +1 -0
  72. package/ai/schemas/components/AttachmentFile.d.cts +45 -0
  73. package/ai/schemas/components/AttachmentFile.d.ts +45 -0
  74. package/ai/schemas/components/AttachmentFile.js +88 -0
  75. package/ai/schemas/components/Avatar.cjs +1 -0
  76. package/ai/schemas/components/Avatar.d.cts +71 -0
  77. package/ai/schemas/components/Avatar.js +170 -111
  78. package/ai/schemas/components/AvatarUser.cjs +1 -0
  79. package/ai/schemas/components/AvatarUser.d.cts +51 -0
  80. package/ai/schemas/components/AvatarUser.js +141 -84
  81. package/ai/schemas/components/Badge.cjs +1 -0
  82. package/ai/schemas/components/Badge.d.cts +53 -0
  83. package/ai/schemas/components/Badge.js +101 -60
  84. package/ai/schemas/components/Box.cjs +1 -0
  85. package/ai/schemas/components/Box.d.cts +95 -0
  86. package/ai/schemas/components/Box.js +132 -96
  87. package/ai/schemas/components/Breadcrumbs.cjs +1 -0
  88. package/ai/schemas/components/Breadcrumbs.d.cts +69 -0
  89. package/ai/schemas/components/Breadcrumbs.js +153 -90
  90. package/ai/schemas/components/Button.cjs +1 -0
  91. package/ai/schemas/components/Button.d.cts +94 -0
  92. package/ai/schemas/components/Button.js +209 -127
  93. package/ai/schemas/components/Card.cjs +1 -0
  94. package/ai/schemas/components/Card.d.cts +294 -0
  95. package/ai/schemas/components/Card.js +545 -350
  96. package/ai/schemas/components/Carousel.cjs +1 -0
  97. package/ai/schemas/components/Carousel.d.cts +60 -0
  98. package/ai/schemas/components/Carousel.js +136 -71
  99. package/ai/schemas/components/Chart.cjs +86 -0
  100. package/ai/schemas/components/Chart.d.cts +49 -0
  101. package/ai/schemas/components/Chart.js +281 -260
  102. package/ai/schemas/components/ChatBubble.cjs +1 -0
  103. package/ai/schemas/components/ChatBubble.d.cts +103 -0
  104. package/ai/schemas/components/ChatBubble.d.ts +24 -0
  105. package/ai/schemas/components/ChatBubble.js +141 -84
  106. package/ai/schemas/components/ChatContainer.cjs +1 -0
  107. package/ai/schemas/components/ChatContainer.d.cts +27 -0
  108. package/ai/schemas/components/ChatContainer.js +94 -60
  109. package/ai/schemas/components/Checkbox.cjs +1 -0
  110. package/ai/schemas/components/Checkbox.d.cts +37 -0
  111. package/ai/schemas/components/Checkbox.d.ts +0 -1
  112. package/ai/schemas/components/Checkbox.js +82 -64
  113. package/ai/schemas/components/Column.cjs +1 -0
  114. package/ai/schemas/components/Column.d.cts +65 -0
  115. package/ai/schemas/components/Column.js +107 -66
  116. package/ai/schemas/components/ContentCarousel.cjs +1 -0
  117. package/ai/schemas/components/ContentCarousel.d.cts +96 -0
  118. package/ai/schemas/components/ContentCarousel.js +232 -105
  119. package/ai/schemas/components/Counter.cjs +1 -0
  120. package/ai/schemas/components/Counter.d.cts +27 -0
  121. package/ai/schemas/components/Counter.js +96 -48
  122. package/ai/schemas/components/DragAndDrop.cjs +1 -0
  123. package/ai/schemas/components/DragAndDrop.d.cts +50 -0
  124. package/ai/schemas/components/DragAndDrop.js +141 -107
  125. package/ai/schemas/components/DragAndDropFiles.cjs +1 -0
  126. package/ai/schemas/components/DragAndDropFiles.d.cts +27 -0
  127. package/ai/schemas/components/DragAndDropFiles.js +103 -40
  128. package/ai/schemas/components/Dropdown.cjs +1 -0
  129. package/ai/schemas/components/Dropdown.d.cts +24 -0
  130. package/ai/schemas/components/Dropdown.js +40 -32
  131. package/ai/schemas/components/DropdownItem.cjs +1 -0
  132. package/ai/schemas/components/DropdownItem.d.cts +24 -0
  133. package/ai/schemas/components/DropdownItem.js +45 -36
  134. package/ai/schemas/components/FlexContainer.cjs +1 -0
  135. package/ai/schemas/components/FlexContainer.d.cts +44 -0
  136. package/ai/schemas/components/FlexContainer.js +74 -51
  137. package/ai/schemas/components/Form.cjs +1 -0
  138. package/ai/schemas/components/Form.d.cts +33 -0
  139. package/ai/schemas/components/Form.js +44 -37
  140. package/ai/schemas/components/Header.cjs +1 -0
  141. package/ai/schemas/components/Header.d.cts +19 -0
  142. package/ai/schemas/components/Header.js +85 -64
  143. package/ai/schemas/components/Icon.cjs +1 -0
  144. package/ai/schemas/components/Icon.d.cts +117 -0
  145. package/ai/schemas/components/Icon.d.ts +1 -0
  146. package/ai/schemas/components/Icon.js +183 -137
  147. package/ai/schemas/components/Image.cjs +1 -0
  148. package/ai/schemas/components/Image.d.cts +41 -0
  149. package/ai/schemas/components/Image.js +94 -66
  150. package/ai/schemas/components/ImagePreview.cjs +1 -0
  151. package/ai/schemas/components/ImagePreview.d.cts +39 -0
  152. package/ai/schemas/components/ImagePreview.js +74 -55
  153. package/ai/schemas/components/InlineNotification.cjs +1 -0
  154. package/ai/schemas/components/InlineNotification.d.cts +35 -0
  155. package/ai/schemas/components/InlineNotification.js +62 -46
  156. package/ai/schemas/components/Input.cjs +1 -0
  157. package/ai/schemas/components/Input.d.cts +38 -0
  158. package/ai/schemas/components/Input.js +150 -90
  159. package/ai/schemas/components/InputArea.cjs +1 -0
  160. package/ai/schemas/components/InputArea.d.cts +51 -0
  161. package/ai/schemas/components/InputArea.d.ts +21 -0
  162. package/ai/schemas/components/InputArea.js +140 -70
  163. package/ai/schemas/components/InputFile.cjs +112 -0
  164. package/ai/schemas/components/InputFile.d.cts +27 -0
  165. package/ai/schemas/components/InputFile.js +107 -183
  166. package/ai/schemas/components/Label.cjs +1 -0
  167. package/ai/schemas/components/Label.d.cts +33 -0
  168. package/ai/schemas/components/Label.js +56 -41
  169. package/ai/schemas/components/Link.cjs +1 -0
  170. package/ai/schemas/components/Link.d.cts +65 -0
  171. package/ai/schemas/components/Link.d.ts +6 -0
  172. package/ai/schemas/components/Link.js +150 -73
  173. package/ai/schemas/components/List.cjs +1 -0
  174. package/ai/schemas/components/List.d.cts +38 -0
  175. package/ai/schemas/components/List.js +62 -46
  176. package/ai/schemas/components/Loader.cjs +1 -0
  177. package/ai/schemas/components/Loader.d.cts +59 -0
  178. package/ai/schemas/components/Loader.js +102 -59
  179. package/ai/schemas/components/Menu.cjs +1 -0
  180. package/ai/schemas/components/Menu.d.cts +58 -0
  181. package/ai/schemas/components/Menu.js +143 -89
  182. package/ai/schemas/components/Modal.cjs +1 -0
  183. package/ai/schemas/components/Modal.d.cts +33 -0
  184. package/ai/schemas/components/Modal.js +134 -63
  185. package/ai/schemas/components/Portal.cjs +1 -0
  186. package/ai/schemas/components/Portal.d.cts +58 -0
  187. package/ai/schemas/components/Portal.js +75 -59
  188. package/ai/schemas/components/Price.cjs +4 -0
  189. package/ai/schemas/components/Price.d.cts +41 -0
  190. package/ai/schemas/components/Price.js +117 -53
  191. package/ai/schemas/components/ProgressBar.cjs +1 -0
  192. package/ai/schemas/components/ProgressBar.d.cts +27 -0
  193. package/ai/schemas/components/ProgressBar.js +124 -56
  194. package/ai/schemas/components/RadioGroup.cjs +1 -0
  195. package/ai/schemas/components/RadioGroup.d.cts +51 -0
  196. package/ai/schemas/components/RadioGroup.js +183 -100
  197. package/ai/schemas/components/Rating.cjs +1 -0
  198. package/ai/schemas/components/Rating.d.cts +33 -0
  199. package/ai/schemas/components/Rating.js +129 -57
  200. package/ai/schemas/components/Row.cjs +1 -0
  201. package/ai/schemas/components/Row.d.cts +65 -0
  202. package/ai/schemas/components/Row.js +110 -66
  203. package/ai/schemas/components/Scroll.cjs +1 -0
  204. package/ai/schemas/components/Scroll.d.cts +51 -0
  205. package/ai/schemas/components/Scroll.js +70 -50
  206. package/ai/schemas/components/Search.cjs +1 -0
  207. package/ai/schemas/components/Search.d.cts +27 -0
  208. package/ai/schemas/components/Search.js +114 -52
  209. package/ai/schemas/components/SearchModal.cjs +1 -0
  210. package/ai/schemas/components/SearchModal.d.cts +19 -0
  211. package/ai/schemas/components/SearchModal.js +96 -76
  212. package/ai/schemas/components/Select.cjs +1 -0
  213. package/ai/schemas/components/Select.d.cts +41 -0
  214. package/ai/schemas/components/Select.js +112 -82
  215. package/ai/schemas/components/Separator.cjs +1 -0
  216. package/ai/schemas/components/Separator.d.cts +59 -0
  217. package/ai/schemas/components/Separator.js +113 -72
  218. package/ai/schemas/components/Sidebar.cjs +1 -0
  219. package/ai/schemas/components/Sidebar.d.cts +25 -0
  220. package/ai/schemas/components/Sidebar.js +77 -57
  221. package/ai/schemas/components/Skeleton.cjs +1 -0
  222. package/ai/schemas/components/Skeleton.d.cts +33 -0
  223. package/ai/schemas/components/Skeleton.js +80 -57
  224. package/ai/schemas/components/Slider.cjs +1 -0
  225. package/ai/schemas/components/Slider.d.cts +27 -0
  226. package/ai/schemas/components/Slider.js +70 -52
  227. package/ai/schemas/components/SliderDots.cjs +1 -0
  228. package/ai/schemas/components/SliderDots.d.cts +41 -0
  229. package/ai/schemas/components/SliderDots.js +52 -42
  230. package/ai/schemas/components/Snackbar.cjs +1 -0
  231. package/ai/schemas/components/Snackbar.d.cts +47 -0
  232. package/ai/schemas/components/Snackbar.js +126 -67
  233. package/ai/schemas/components/SnackbarManager.cjs +1 -0
  234. package/ai/schemas/components/SnackbarManager.d.cts +22 -0
  235. package/ai/schemas/components/SnackbarManager.js +29 -23
  236. package/ai/schemas/components/Stepper.cjs +1 -0
  237. package/ai/schemas/components/Stepper.d.cts +33 -0
  238. package/ai/schemas/components/Stepper.js +111 -45
  239. package/ai/schemas/components/Switch.cjs +1 -0
  240. package/ai/schemas/components/Switch.d.cts +35 -0
  241. package/ai/schemas/components/Switch.js +78 -58
  242. package/ai/schemas/components/Table.cjs +240 -0
  243. package/ai/schemas/components/Table.d.cts +47 -0
  244. package/ai/schemas/components/Table.js +194 -345
  245. package/ai/schemas/components/Tabs.cjs +1 -0
  246. package/ai/schemas/components/Tabs.d.cts +33 -0
  247. package/ai/schemas/components/Tabs.js +117 -50
  248. package/ai/schemas/components/Textarea.cjs +1 -0
  249. package/ai/schemas/components/Textarea.d.cts +60 -0
  250. package/ai/schemas/components/Textarea.js +194 -98
  251. package/ai/schemas/components/Toggle.cjs +1 -0
  252. package/ai/schemas/components/Toggle.d.cts +33 -0
  253. package/ai/schemas/components/Toggle.js +61 -45
  254. package/ai/schemas/components/Tooltip.cjs +1 -0
  255. package/ai/schemas/components/Tooltip.d.cts +44 -0
  256. package/ai/schemas/components/Tooltip.js +138 -64
  257. package/ai/schemas/components/Truncate.cjs +1 -0
  258. package/ai/schemas/components/Truncate.d.cts +33 -0
  259. package/ai/schemas/components/Truncate.js +53 -37
  260. package/ai/schemas/components/Typography.cjs +48 -0
  261. package/ai/schemas/components/Typography.d.cts +59 -0
  262. package/ai/schemas/components/Typography.js +132 -108
  263. package/ai/schemas/components/Wrapper.cjs +1 -0
  264. package/ai/schemas/components/Wrapper.d.cts +35 -0
  265. package/ai/schemas/components/Wrapper.js +67 -46
  266. package/ai/schemas/components.cjs +1 -0
  267. package/ai/schemas/components.d.cts +51 -0
  268. package/ai/schemas/components.js +273 -67
  269. package/ai/schemas/hooks/useTheme.cjs +1 -0
  270. package/ai/schemas/hooks/useTheme.d.cts +47 -0
  271. package/ai/schemas/hooks/useTheme.js +59 -45
  272. package/ai/schemas/index.cjs +1 -0
  273. package/ai/schemas/index.d.cts +28 -0
  274. package/ai/schemas/index.js +86 -0
  275. package/ai/testing_prompts/atomic_prompts.md +91 -74
  276. package/ai/testing_prompts/index.d.cts +1139 -0
  277. package/ai/testing_prompts/index.d.ts +1139 -0
  278. package/ai/testing_prompts/layouts_template_prompts.md +84 -0
  279. package/ai/testing_prompts/molecular_prompts.md +67 -24
  280. package/ai/testing_prompts/organisms_prompts.md +141 -0
  281. package/ai/validation.cjs +1 -0
  282. package/ai/validation.d.cts +35 -0
  283. package/ai/validation.d.ts +1 -1
  284. package/ai/validation.js +100 -0
  285. package/assets/icons/account_circle.cjs +1 -0
  286. package/assets/icons/account_circle.d.cts +5 -0
  287. package/assets/icons/account_circle.js +14 -9
  288. package/assets/icons/arrow-down.cjs +1 -0
  289. package/assets/icons/arrow-down.d.cts +5 -0
  290. package/assets/icons/arrow-down.js +14 -9
  291. package/assets/icons/arrow-forward.cjs +1 -0
  292. package/assets/icons/arrow-forward.d.cts +5 -0
  293. package/assets/icons/arrow-forward.js +14 -9
  294. package/assets/icons/attachment.cjs +1 -0
  295. package/assets/icons/attachment.d.cts +5 -0
  296. package/assets/icons/attachment.js +14 -9
  297. package/assets/icons/chat-bubble.cjs +1 -0
  298. package/assets/icons/chat-bubble.d.cts +5 -0
  299. package/assets/icons/chat-bubble.js +14 -9
  300. package/assets/icons/chat.cjs +1 -0
  301. package/assets/icons/chat.d.cts +5 -0
  302. package/assets/icons/chat.js +14 -9
  303. package/assets/icons/check.cjs +1 -0
  304. package/assets/icons/check.d.cts +5 -0
  305. package/assets/icons/check.js +14 -9
  306. package/assets/icons/chevron-left.cjs +1 -0
  307. package/assets/icons/chevron-left.d.cts +5 -0
  308. package/assets/icons/chevron-left.js +17 -9
  309. package/assets/icons/chevron-right.cjs +1 -0
  310. package/assets/icons/chevron-right.d.cts +5 -0
  311. package/assets/icons/chevron-right.js +14 -9
  312. package/assets/icons/content-copy.cjs +1 -0
  313. package/assets/icons/content-copy.d.cts +5 -0
  314. package/assets/icons/content-copy.js +14 -9
  315. package/assets/icons/cross.cjs +1 -0
  316. package/assets/icons/cross.d.cts +5 -0
  317. package/assets/icons/cross.js +14 -9
  318. package/assets/icons/delete_outlined.cjs +1 -0
  319. package/assets/icons/delete_outlined.d.cts +5 -0
  320. package/assets/icons/delete_outlined.js +13 -8
  321. package/assets/icons/dot.cjs +1 -0
  322. package/assets/icons/dot.d.cts +5 -0
  323. package/assets/icons/dot.js +14 -9
  324. package/assets/icons/edit.cjs +1 -0
  325. package/assets/icons/edit.d.cts +5 -0
  326. package/assets/icons/edit.js +14 -9
  327. package/assets/icons/error_outline.cjs +1 -0
  328. package/assets/icons/error_outline.d.cts +5 -0
  329. package/assets/icons/error_outline.js +14 -9
  330. package/assets/icons/eye.cjs +1 -0
  331. package/assets/icons/eye.d.cts +5 -0
  332. package/assets/icons/eye.js +14 -9
  333. package/assets/icons/favorite.cjs +1 -0
  334. package/assets/icons/favorite.d.cts +5 -0
  335. package/assets/icons/favorite.js +14 -9
  336. package/assets/icons/favorite_outlined.cjs +1 -0
  337. package/assets/icons/favorite_outlined.d.cts +5 -0
  338. package/assets/icons/favorite_outlined.js +14 -9
  339. package/assets/icons/file-copy.cjs +1 -0
  340. package/assets/icons/file-copy.d.cts +5 -0
  341. package/assets/icons/file-copy.js +15 -9
  342. package/assets/icons/filter.cjs +1 -0
  343. package/assets/icons/filter.d.cts +5 -0
  344. package/assets/icons/filter.js +14 -9
  345. package/assets/icons/folder.cjs +1 -0
  346. package/assets/icons/folder.d.cts +5 -0
  347. package/assets/icons/folder.js +14 -9
  348. package/assets/icons/folderOpen.cjs +1 -0
  349. package/assets/icons/folderOpen.d.cts +5 -0
  350. package/assets/icons/folderOpen.js +14 -9
  351. package/assets/icons/fullscreen-exit.cjs +1 -0
  352. package/assets/icons/fullscreen-exit.d.cts +4 -0
  353. package/assets/icons/fullscreen-exit.d.ts +4 -0
  354. package/assets/icons/fullscreen-exit.js +30 -0
  355. package/assets/icons/fullscreen.cjs +1 -0
  356. package/assets/icons/fullscreen.d.cts +4 -0
  357. package/assets/icons/fullscreen.d.ts +4 -0
  358. package/assets/icons/fullscreen.js +30 -0
  359. package/assets/icons/home.cjs +1 -0
  360. package/assets/icons/home.d.cts +5 -0
  361. package/assets/icons/home.js +14 -9
  362. package/assets/icons/keyboard_arrow_down.cjs +1 -0
  363. package/assets/icons/keyboard_arrow_down.d.cts +5 -0
  364. package/assets/icons/keyboard_arrow_down.js +14 -9
  365. package/assets/icons/keyboard_arrow_up.cjs +1 -0
  366. package/assets/icons/keyboard_arrow_up.d.cts +5 -0
  367. package/assets/icons/keyboard_arrow_up.js +14 -9
  368. package/assets/icons/local_shipping.cjs +1 -0
  369. package/assets/icons/local_shipping.d.cts +5 -0
  370. package/assets/icons/local_shipping.js +14 -9
  371. package/assets/icons/mic.cjs +1 -0
  372. package/assets/icons/mic.d.cts +5 -0
  373. package/assets/icons/mic.d.ts +5 -0
  374. package/assets/icons/mic.js +15 -0
  375. package/assets/icons/minus.cjs +1 -0
  376. package/assets/icons/minus.d.cts +5 -0
  377. package/assets/icons/minus.js +14 -9
  378. package/assets/icons/mobile_menu_button.cjs +1 -0
  379. package/assets/icons/mobile_menu_button.d.cts +5 -0
  380. package/assets/icons/mobile_menu_button.js +14 -9
  381. package/assets/icons/paymentCard.cjs +1 -0
  382. package/assets/icons/paymentCard.d.cts +5 -0
  383. package/assets/icons/paymentCard.js +14 -9
  384. package/assets/icons/phone.cjs +1 -0
  385. package/assets/icons/phone.d.cts +5 -0
  386. package/assets/icons/phone.js +14 -9
  387. package/assets/icons/plus.cjs +1 -0
  388. package/assets/icons/plus.d.cts +5 -0
  389. package/assets/icons/plus.js +14 -9
  390. package/assets/icons/portrait.cjs +1 -0
  391. package/assets/icons/portrait.d.cts +5 -0
  392. package/assets/icons/portrait.js +14 -9
  393. package/assets/icons/processing.cjs +1 -0
  394. package/assets/icons/processing.d.cts +5 -0
  395. package/assets/icons/processing.js +14 -9
  396. package/assets/icons/ruler.cjs +1 -0
  397. package/assets/icons/ruler.d.cts +5 -0
  398. package/assets/icons/ruler.js +14 -9
  399. package/assets/icons/search.cjs +1 -0
  400. package/assets/icons/search.d.cts +5 -0
  401. package/assets/icons/search.js +14 -9
  402. package/assets/icons/send.cjs +1 -0
  403. package/assets/icons/send.d.cts +5 -0
  404. package/assets/icons/send.js +14 -9
  405. package/assets/icons/shopping_bag.cjs +1 -0
  406. package/assets/icons/shopping_bag.d.cts +5 -0
  407. package/assets/icons/shopping_bag.js +14 -9
  408. package/assets/icons/slash.cjs +1 -0
  409. package/assets/icons/slash.d.cts +5 -0
  410. package/assets/icons/slash.js +14 -9
  411. package/assets/icons/star.cjs +1 -0
  412. package/assets/icons/star.d.cts +5 -0
  413. package/assets/icons/star.js +14 -9
  414. package/assets/icons/starHalf.cjs +1 -0
  415. package/assets/icons/starHalf.d.cts +5 -0
  416. package/assets/icons/starHalf.js +14 -9
  417. package/assets/icons/starOutlined.cjs +1 -0
  418. package/assets/icons/starOutlined.d.cts +5 -0
  419. package/assets/icons/starOutlined.js +14 -9
  420. package/assets/icons/thumb-down-filled.cjs +1 -0
  421. package/assets/icons/thumb-down-filled.d.cts +5 -0
  422. package/assets/icons/thumb-down-filled.js +14 -9
  423. package/assets/icons/thumb-down.cjs +1 -0
  424. package/assets/icons/thumb-down.d.cts +5 -0
  425. package/assets/icons/thumb-down.js +14 -9
  426. package/assets/icons/thumb-up-filled.cjs +1 -0
  427. package/assets/icons/thumb-up-filled.d.cts +5 -0
  428. package/assets/icons/thumb-up-filled.js +14 -9
  429. package/assets/icons/thumb-up.cjs +1 -0
  430. package/assets/icons/thumb-up.d.cts +5 -0
  431. package/assets/icons/thumb-up.js +14 -9
  432. package/assets/icons/toast_error.cjs +1 -0
  433. package/assets/icons/toast_error.d.cts +5 -0
  434. package/assets/icons/toast_error.js +24 -13
  435. package/assets/icons/toast_info.cjs +1 -0
  436. package/assets/icons/toast_info.d.cts +5 -0
  437. package/assets/icons/toast_info.js +14 -9
  438. package/assets/icons/toast_success.cjs +1 -0
  439. package/assets/icons/toast_success.d.cts +5 -0
  440. package/assets/icons/toast_success.js +24 -13
  441. package/assets/icons/toast_warning.cjs +1 -0
  442. package/assets/icons/toast_warning.d.cts +5 -0
  443. package/assets/icons/toast_warning.js +14 -9
  444. package/assets/icons/upload.cjs +1 -0
  445. package/assets/icons/upload.d.cts +5 -0
  446. package/assets/icons/upload.js +14 -9
  447. package/assets/icons/volume-up.cjs +1 -0
  448. package/assets/icons/volume-up.d.cts +5 -0
  449. package/assets/icons/volume-up.js +14 -9
  450. package/assets/icons/wifiTethering.cjs +1 -0
  451. package/assets/icons/wifiTethering.d.cts +5 -0
  452. package/assets/icons/wifiTethering.js +14 -9
  453. package/assets/index.d.cts +55 -0
  454. package/assets/index.d.ts +55 -52
  455. package/assets/svg/{checkbox_bg_checked.svg.js → checkbox_bg_checked.cjs} +2 -5
  456. package/assets/svg/checkbox_bg_checked.js +4 -0
  457. package/assets/svg/{checkbox_border.svg.js → checkbox_border.cjs} +2 -5
  458. package/assets/svg/checkbox_border.js +4 -0
  459. package/assets/svg/{checkbox_disabled_bg_checked.svg.js → checkbox_disabled_bg_checked.cjs} +2 -5
  460. package/assets/svg/checkbox_disabled_bg_checked.js +4 -0
  461. package/assets/svg/{radio_bg.svg.js → radio_bg.cjs} +2 -5
  462. package/assets/svg/radio_bg.js +4 -0
  463. package/assets/svg/{radio_bg_checked.svg.js → radio_bg_checked.cjs} +2 -5
  464. package/assets/svg/radio_bg_checked.js +4 -0
  465. package/components/atoms/Avatar/Avatar.cjs +1 -0
  466. package/components/atoms/Avatar/Avatar.d.cts +9 -0
  467. package/components/atoms/Avatar/Avatar.d.ts +2 -2
  468. package/components/atoms/Avatar/Avatar.js +60 -48
  469. package/components/atoms/Avatar/Avatar.types.d.cts +45 -0
  470. package/components/atoms/Avatar/Avatar.types.d.ts +3 -2
  471. package/components/atoms/Avatar/AvatarStyled.cjs +1 -0
  472. package/components/atoms/Avatar/AvatarStyled.d.cts +6 -0
  473. package/components/atoms/Avatar/AvatarStyled.d.ts +1 -1
  474. package/components/atoms/Avatar/AvatarStyled.js +56 -79
  475. package/components/atoms/Avatar/constants.cjs +1 -0
  476. package/components/atoms/Avatar/constants.d.cts +3 -0
  477. package/components/atoms/Avatar/constants.js +4 -6
  478. package/components/atoms/Avatar/index.d.cts +2 -0
  479. package/components/atoms/Avatar/index.d.ts +2 -3
  480. package/components/atoms/Badge/Badge.cjs +1 -0
  481. package/components/atoms/Badge/Badge.d.cts +2 -0
  482. package/components/atoms/Badge/Badge.d.ts +1 -1
  483. package/components/atoms/Badge/Badge.js +39 -28
  484. package/components/atoms/Badge/Badge.types.d.cts +20 -0
  485. package/components/atoms/Badge/Badge.types.d.ts +2 -2
  486. package/components/atoms/Badge/BadgeStyled.cjs +1 -0
  487. package/components/atoms/Badge/BadgeStyled.d.cts +5 -0
  488. package/components/atoms/Badge/BadgeStyled.d.ts +1 -1
  489. package/components/atoms/Badge/BadgeStyled.js +45 -53
  490. package/components/atoms/Badge/constants.cjs +1 -0
  491. package/components/atoms/Badge/constants.d.cts +1 -0
  492. package/components/atoms/Badge/constants.js +4 -4
  493. package/components/atoms/Badge/index.d.cts +2 -0
  494. package/components/atoms/Badge/index.d.ts +2 -2
  495. package/components/atoms/Box/Box.cjs +1 -0
  496. package/components/atoms/Box/Box.d.cts +2 -0
  497. package/components/atoms/Box/Box.d.ts +1 -1
  498. package/components/atoms/Box/Box.js +24 -24
  499. package/components/atoms/Box/Box.types.d.cts +18 -0
  500. package/components/atoms/Box/Box.types.d.ts +2 -2
  501. package/components/atoms/Box/BoxStyled.cjs +1 -0
  502. package/components/atoms/Box/BoxStyled.d.cts +2 -0
  503. package/components/atoms/Box/BoxStyled.d.ts +1 -1
  504. package/components/atoms/Box/BoxStyled.js +22 -24
  505. package/components/atoms/Box/constants.d.cts +1 -0
  506. package/components/atoms/Box/index.d.cts +2 -0
  507. package/components/atoms/Box/index.d.ts +2 -2
  508. package/components/atoms/Button/Button.cjs +1 -0
  509. package/components/atoms/Button/Button.d.cts +2 -0
  510. package/components/atoms/Button/Button.d.ts +1 -1
  511. package/components/atoms/Button/Button.js +56 -47
  512. package/components/atoms/Button/Button.types.d.cts +29 -0
  513. package/components/atoms/Button/Button.types.d.ts +2 -2
  514. package/components/atoms/Button/ButtonStyled.cjs +1 -0
  515. package/components/atoms/Button/ButtonStyled.d.cts +5 -0
  516. package/components/atoms/Button/ButtonStyled.d.ts +1 -1
  517. package/components/atoms/Button/ButtonStyled.js +45 -58
  518. package/components/atoms/Button/constants.cjs +1 -0
  519. package/components/atoms/Button/constants.d.cts +1 -0
  520. package/components/atoms/Button/constants.js +4 -4
  521. package/components/atoms/Button/index.d.cts +2 -0
  522. package/components/atoms/Button/index.d.ts +2 -2
  523. package/components/atoms/Checkbox/Checkbox.cjs +1 -0
  524. package/components/atoms/Checkbox/Checkbox.d.cts +2 -0
  525. package/components/atoms/Checkbox/Checkbox.d.ts +1 -1
  526. package/components/atoms/Checkbox/Checkbox.js +74 -45
  527. package/components/atoms/Checkbox/Checkbox.types.d.cts +25 -0
  528. package/components/atoms/Checkbox/Checkbox.types.d.ts +1 -1
  529. package/components/atoms/Checkbox/CheckboxStyled.cjs +1 -0
  530. package/components/atoms/Checkbox/CheckboxStyled.d.cts +4 -0
  531. package/components/atoms/Checkbox/CheckboxStyled.d.ts +2 -2
  532. package/components/atoms/Checkbox/CheckboxStyled.js +44 -53
  533. package/components/atoms/Checkbox/constants.cjs +1 -0
  534. package/components/atoms/Checkbox/constants.d.cts +1 -0
  535. package/components/atoms/Checkbox/constants.js +4 -4
  536. package/components/atoms/Checkbox/index.d.cts +2 -0
  537. package/components/atoms/Checkbox/index.d.ts +2 -2
  538. package/components/atoms/Icon/Icon.cjs +1 -0
  539. package/components/atoms/Icon/Icon.d.cts +4 -0
  540. package/components/atoms/Icon/Icon.d.ts +1 -1
  541. package/components/atoms/Icon/Icon.js +34 -46
  542. package/components/atoms/Icon/Icon.types.d.cts +12 -0
  543. package/components/atoms/Icon/Icon.types.d.ts +2 -2
  544. package/components/atoms/Icon/constants.cjs +1 -0
  545. package/components/atoms/Icon/constants.d.cts +276 -0
  546. package/components/atoms/Icon/constants.d.ts +13 -0
  547. package/components/atoms/Icon/constants.js +114 -109
  548. package/components/atoms/Icon/index.d.cts +2 -0
  549. package/components/atoms/Icon/index.d.ts +2 -2
  550. package/components/atoms/Image/Image.cjs +1 -0
  551. package/components/atoms/Image/Image.d.cts +2 -0
  552. package/components/atoms/Image/Image.d.ts +1 -1
  553. package/components/atoms/Image/Image.js +57 -40
  554. package/components/atoms/Image/Image.types.d.cts +34 -0
  555. package/components/atoms/Image/Image.types.d.ts +1 -1
  556. package/components/atoms/Image/ImageStyled.cjs +1 -0
  557. package/components/atoms/Image/ImageStyled.d.cts +5 -0
  558. package/components/atoms/Image/ImageStyled.d.ts +1 -1
  559. package/components/atoms/Image/ImageStyled.js +58 -77
  560. package/components/atoms/Image/constants.cjs +1 -0
  561. package/components/atoms/Image/constants.d.cts +1 -0
  562. package/components/atoms/Image/constants.js +4 -4
  563. package/components/atoms/Image/index.d.cts +2 -0
  564. package/components/atoms/Image/index.d.ts +2 -2
  565. package/components/atoms/Input/Input.cjs +1 -0
  566. package/components/atoms/Input/Input.d.cts +2 -0
  567. package/components/atoms/Input/Input.d.ts +2 -2
  568. package/components/atoms/Input/Input.js +61 -71
  569. package/components/atoms/Input/Input.types.d.cts +74 -0
  570. package/components/atoms/Input/Input.types.d.ts +2 -2
  571. package/components/atoms/Input/InputAdornment/InputAdornment.cjs +1 -0
  572. package/components/atoms/Input/InputAdornment/InputAdornment.d.cts +2 -0
  573. package/components/atoms/Input/InputAdornment/InputAdornment.d.ts +1 -1
  574. package/components/atoms/Input/InputAdornment/InputAdornment.js +16 -15
  575. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.cjs +1 -0
  576. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.d.cts +2 -0
  577. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.d.ts +1 -1
  578. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.js +16 -19
  579. package/components/atoms/Input/InputAdornment/constants.cjs +1 -0
  580. package/components/atoms/Input/InputAdornment/constants.d.cts +1 -0
  581. package/components/atoms/Input/InputAdornment/constants.js +4 -4
  582. package/components/atoms/Input/InputAdornment/index.d.cts +1 -0
  583. package/components/atoms/Input/InputAdornment/index.d.ts +1 -1
  584. package/components/atoms/Input/InputHelper/InputHelper.cjs +1 -0
  585. package/components/atoms/Input/InputHelper/InputHelper.d.cts +2 -0
  586. package/components/atoms/Input/InputHelper/InputHelper.d.ts +1 -1
  587. package/components/atoms/Input/InputHelper/InputHelper.js +20 -19
  588. package/components/atoms/Input/InputHelper/InputHelperStyled.cjs +1 -0
  589. package/components/atoms/Input/InputHelper/InputHelperStyled.d.cts +2 -0
  590. package/components/atoms/Input/InputHelper/InputHelperStyled.d.ts +1 -1
  591. package/components/atoms/Input/InputHelper/InputHelperStyled.js +17 -21
  592. package/components/atoms/Input/InputHelper/constants.cjs +1 -0
  593. package/components/atoms/Input/InputHelper/constants.d.cts +1 -0
  594. package/components/atoms/Input/InputHelper/constants.js +4 -4
  595. package/components/atoms/Input/InputHelper/index.d.cts +1 -0
  596. package/components/atoms/Input/InputHelper/index.d.ts +1 -1
  597. package/components/atoms/Input/InputStyled.cjs +1 -0
  598. package/components/atoms/Input/InputStyled.d.cts +2 -0
  599. package/components/atoms/Input/InputStyled.d.ts +1 -1
  600. package/components/atoms/Input/InputStyled.js +20 -22
  601. package/components/atoms/Input/InputWrapper/InputWrapper.cjs +1 -0
  602. package/components/atoms/Input/InputWrapper/InputWrapper.d.cts +2 -0
  603. package/components/atoms/Input/InputWrapper/InputWrapper.d.ts +1 -1
  604. package/components/atoms/Input/InputWrapper/InputWrapper.js +19 -18
  605. package/components/atoms/Input/InputWrapper/InputWrapperStyled.cjs +1 -0
  606. package/components/atoms/Input/InputWrapper/InputWrapperStyled.d.cts +2 -0
  607. package/components/atoms/Input/InputWrapper/InputWrapperStyled.d.ts +1 -1
  608. package/components/atoms/Input/InputWrapper/InputWrapperStyled.js +17 -21
  609. package/components/atoms/Input/InputWrapper/constants.cjs +1 -0
  610. package/components/atoms/Input/InputWrapper/constants.d.cts +1 -0
  611. package/components/atoms/Input/InputWrapper/constants.js +4 -4
  612. package/components/atoms/Input/InputWrapper/index.d.cts +1 -0
  613. package/components/atoms/Input/InputWrapper/index.d.ts +1 -1
  614. package/components/atoms/Input/constants.cjs +1 -0
  615. package/components/atoms/Input/constants.d.cts +11 -0
  616. package/components/atoms/Input/constants.d.ts +1 -1
  617. package/components/atoms/Input/constants.js +16 -14
  618. package/components/atoms/Input/index.d.cts +2 -0
  619. package/components/atoms/Input/index.d.ts +2 -2
  620. package/components/atoms/Input/useInputHandlers.cjs +1 -0
  621. package/components/atoms/Input/useInputHandlers.d.cts +17 -0
  622. package/components/atoms/Input/useInputHandlers.js +31 -37
  623. package/components/atoms/InputFile/InputFile.cjs +1 -0
  624. package/components/atoms/InputFile/InputFile.d.cts +6 -0
  625. package/components/atoms/InputFile/InputFile.d.ts +1 -1
  626. package/components/atoms/InputFile/InputFile.js +53 -52
  627. package/components/atoms/InputFile/InputFile.types.d.cts +18 -0
  628. package/components/atoms/InputFile/InputFile.types.d.ts +1 -1
  629. package/components/atoms/InputFile/InputFileStyled.cjs +1 -0
  630. package/components/atoms/InputFile/InputFileStyled.d.cts +3 -0
  631. package/components/atoms/InputFile/InputFileStyled.d.ts +1 -1
  632. package/components/atoms/InputFile/InputFileStyled.js +18 -28
  633. package/components/atoms/InputFile/constants.cjs +1 -0
  634. package/components/atoms/InputFile/constants.d.cts +3 -0
  635. package/components/atoms/InputFile/constants.js +4 -6
  636. package/components/atoms/InputFile/index.d.cts +2 -0
  637. package/components/atoms/InputFile/index.d.ts +2 -2
  638. package/components/atoms/Label/Label.cjs +1 -0
  639. package/components/atoms/Label/Label.d.cts +2 -0
  640. package/components/atoms/Label/Label.d.ts +1 -1
  641. package/components/atoms/Label/Label.js +22 -25
  642. package/components/atoms/Label/Label.types.d.cts +10 -0
  643. package/components/atoms/Label/Label.types.d.ts +1 -1
  644. package/components/atoms/Label/LabelStyled.cjs +1 -0
  645. package/components/atoms/Label/LabelStyled.d.cts +2 -0
  646. package/components/atoms/Label/LabelStyled.d.ts +1 -1
  647. package/components/atoms/Label/LabelStyled.js +18 -20
  648. package/components/atoms/Label/constants.cjs +1 -0
  649. package/components/atoms/Label/constants.d.cts +1 -0
  650. package/components/atoms/Label/constants.js +4 -4
  651. package/components/atoms/Label/index.d.cts +2 -0
  652. package/components/atoms/Label/index.d.ts +2 -2
  653. package/components/atoms/Link/Link.cjs +1 -0
  654. package/components/atoms/Link/Link.d.cts +2 -0
  655. package/components/atoms/Link/Link.d.ts +1 -1
  656. package/components/atoms/Link/Link.js +37 -41
  657. package/components/atoms/Link/Link.types.d.cts +28 -0
  658. package/components/atoms/Link/Link.types.d.ts +4 -2
  659. package/components/atoms/Link/LinkStyled.cjs +1 -0
  660. package/components/atoms/Link/LinkStyled.d.cts +2 -0
  661. package/components/atoms/Link/LinkStyled.d.ts +1 -1
  662. package/components/atoms/Link/LinkStyled.js +26 -29
  663. package/components/atoms/Link/constants.cjs +1 -0
  664. package/components/atoms/Link/constants.d.cts +1 -0
  665. package/components/atoms/Link/constants.js +4 -4
  666. package/components/atoms/Link/index.d.cts +2 -0
  667. package/components/atoms/Link/index.d.ts +2 -2
  668. package/components/atoms/Loader/Loader.cjs +1 -0
  669. package/components/atoms/Loader/Loader.d.cts +2 -0
  670. package/components/atoms/Loader/Loader.d.ts +1 -1
  671. package/components/atoms/Loader/Loader.js +36 -29
  672. package/components/atoms/Loader/Loader.types.d.cts +20 -0
  673. package/components/atoms/Loader/Loader.types.d.ts +2 -2
  674. package/components/atoms/Loader/LoaderStyled.cjs +1 -0
  675. package/components/atoms/Loader/LoaderStyled.d.cts +2 -0
  676. package/components/atoms/Loader/LoaderStyled.d.ts +1 -1
  677. package/components/atoms/Loader/LoaderStyled.js +31 -42
  678. package/components/atoms/Loader/constants.cjs +1 -0
  679. package/components/atoms/Loader/constants.d.cts +2 -0
  680. package/components/atoms/Loader/constants.js +5 -6
  681. package/components/atoms/Loader/index.d.cts +2 -0
  682. package/components/atoms/Loader/index.d.ts +2 -2
  683. package/components/atoms/Loader/utils.cjs +1 -0
  684. package/components/atoms/Loader/utils.d.cts +11 -0
  685. package/components/atoms/Loader/utils.js +35 -35
  686. package/components/atoms/Select/Select.cjs +1 -0
  687. package/components/atoms/Select/Select.d.cts +2 -0
  688. package/components/atoms/Select/Select.d.ts +1 -1
  689. package/components/atoms/Select/Select.js +269 -270
  690. package/components/atoms/Select/Select.types.d.cts +75 -0
  691. package/components/atoms/Select/Select.types.d.ts +3 -3
  692. package/components/atoms/Select/SelectStyled.cjs +1 -0
  693. package/components/atoms/Select/SelectStyled.d.cts +7 -0
  694. package/components/atoms/Select/SelectStyled.d.ts +1 -1
  695. package/components/atoms/Select/SelectStyled.js +71 -91
  696. package/components/atoms/Select/constants.cjs +1 -0
  697. package/components/atoms/Select/constants.d.cts +2 -0
  698. package/components/atoms/Select/constants.js +4 -5
  699. package/components/atoms/Select/hooks/index.d.cts +1 -0
  700. package/components/atoms/Select/hooks/index.d.ts +1 -1
  701. package/components/atoms/Select/hooks/useSelectContext.cjs +1 -0
  702. package/components/atoms/Select/hooks/useSelectContext.d.cts +3 -0
  703. package/components/atoms/Select/hooks/useSelectContext.d.ts +1 -1
  704. package/components/atoms/Select/hooks/useSelectContext.js +8 -10
  705. package/components/atoms/Select/index.d.cts +3 -0
  706. package/components/atoms/Select/index.d.ts +3 -3
  707. package/components/atoms/Separator/Separator.cjs +1 -0
  708. package/components/atoms/Separator/Separator.d.cts +2 -0
  709. package/components/atoms/Separator/Separator.d.ts +1 -1
  710. package/components/atoms/Separator/Separator.js +57 -35
  711. package/components/atoms/Separator/Separator.types.d.cts +34 -0
  712. package/components/atoms/Separator/Separator.types.d.ts +3 -3
  713. package/components/atoms/Separator/SeparatorStyled.cjs +1 -0
  714. package/components/atoms/Separator/SeparatorStyled.d.cts +4 -0
  715. package/components/atoms/Separator/SeparatorStyled.d.ts +1 -1
  716. package/components/atoms/Separator/SeparatorStyled.js +50 -71
  717. package/components/atoms/Separator/constants.cjs +1 -0
  718. package/components/atoms/Separator/constants.d.cts +1 -0
  719. package/components/atoms/Separator/constants.js +4 -4
  720. package/components/atoms/Separator/index.d.cts +2 -0
  721. package/components/atoms/Separator/index.d.ts +2 -2
  722. package/components/atoms/Skeleton/Skeleton.cjs +1 -0
  723. package/components/atoms/Skeleton/Skeleton.d.cts +2 -0
  724. package/components/atoms/Skeleton/Skeleton.d.ts +1 -1
  725. package/components/atoms/Skeleton/Skeleton.js +24 -23
  726. package/components/atoms/Skeleton/Skeleton.types.d.cts +19 -0
  727. package/components/atoms/Skeleton/Skeleton.types.d.ts +2 -2
  728. package/components/atoms/Skeleton/SkeletonStyled.cjs +1 -0
  729. package/components/atoms/Skeleton/SkeletonStyled.d.cts +2 -0
  730. package/components/atoms/Skeleton/SkeletonStyled.d.ts +1 -1
  731. package/components/atoms/Skeleton/SkeletonStyled.js +22 -31
  732. package/components/atoms/Skeleton/constants.cjs +1 -0
  733. package/components/atoms/Skeleton/constants.d.cts +2 -0
  734. package/components/atoms/Skeleton/constants.js +5 -6
  735. package/components/atoms/Skeleton/index.d.cts +2 -0
  736. package/components/atoms/Skeleton/index.d.ts +2 -2
  737. package/components/atoms/Slider/Slider.cjs +1 -0
  738. package/components/atoms/Slider/Slider.d.cts +20 -0
  739. package/components/atoms/Slider/Slider.d.ts +1 -1
  740. package/components/atoms/Slider/Slider.js +39 -33
  741. package/components/atoms/Slider/Slider.types.d.cts +17 -0
  742. package/components/atoms/Slider/Slider.types.d.ts +1 -1
  743. package/components/atoms/Slider/SliderStyled.cjs +1 -0
  744. package/components/atoms/Slider/SliderStyled.d.cts +2 -0
  745. package/components/atoms/Slider/SliderStyled.d.ts +1 -1
  746. package/components/atoms/Slider/SliderStyled.js +17 -19
  747. package/components/atoms/Slider/constants.cjs +1 -0
  748. package/components/atoms/Slider/constants.d.cts +3 -0
  749. package/components/atoms/Slider/constants.js +4 -6
  750. package/components/atoms/Slider/index.d.cts +3 -0
  751. package/components/atoms/Slider/index.d.ts +3 -3
  752. package/components/atoms/SliderDots/SliderDots.cjs +1 -0
  753. package/components/atoms/SliderDots/SliderDots.d.cts +2 -0
  754. package/components/atoms/SliderDots/SliderDots.d.ts +1 -1
  755. package/components/atoms/SliderDots/SliderDots.js +31 -28
  756. package/components/atoms/SliderDots/SliderDots.types.d.cts +7 -0
  757. package/components/atoms/SliderDots/SliderDots.types.d.ts +1 -1
  758. package/components/atoms/SliderDots/SliderDotsStyled.cjs +1 -0
  759. package/components/atoms/SliderDots/SliderDotsStyled.d.cts +2 -0
  760. package/components/atoms/SliderDots/SliderDotsStyled.d.ts +1 -1
  761. package/components/atoms/SliderDots/SliderDotsStyled.js +18 -20
  762. package/components/atoms/SliderDots/constants.cjs +1 -0
  763. package/components/atoms/SliderDots/constants.d.cts +1 -0
  764. package/components/atoms/SliderDots/constants.js +4 -4
  765. package/components/atoms/SliderDots/index.d.cts +2 -0
  766. package/components/atoms/SliderDots/index.d.ts +2 -2
  767. package/components/atoms/Switch/Switch.cjs +1 -0
  768. package/components/atoms/Switch/Switch.d.cts +2 -0
  769. package/components/atoms/Switch/Switch.d.ts +1 -1
  770. package/components/atoms/Switch/Switch.js +79 -58
  771. package/components/atoms/Switch/Switch.types.d.cts +22 -0
  772. package/components/atoms/Switch/Switch.types.d.ts +1 -1
  773. package/components/atoms/Switch/SwitchStyled.cjs +1 -0
  774. package/components/atoms/Switch/SwitchStyled.d.cts +6 -0
  775. package/components/atoms/Switch/SwitchStyled.d.ts +1 -1
  776. package/components/atoms/Switch/SwitchStyled.js +63 -80
  777. package/components/atoms/Switch/constants.cjs +1 -0
  778. package/components/atoms/Switch/constants.d.cts +1 -0
  779. package/components/atoms/Switch/constants.js +4 -4
  780. package/components/atoms/Switch/index.d.cts +2 -0
  781. package/components/atoms/Switch/index.d.ts +2 -2
  782. package/components/atoms/Textarea/Textarea.cjs +1 -0
  783. package/components/atoms/Textarea/Textarea.d.cts +2 -0
  784. package/components/atoms/Textarea/Textarea.d.ts +1 -1
  785. package/components/atoms/Textarea/Textarea.js +64 -57
  786. package/components/atoms/Textarea/Textarea.types.cjs +1 -0
  787. package/components/atoms/Textarea/Textarea.types.d.cts +36 -0
  788. package/components/atoms/Textarea/Textarea.types.d.ts +2 -2
  789. package/components/atoms/Textarea/Textarea.types.js +6 -4
  790. package/components/atoms/Textarea/TextareaStyled.cjs +1 -0
  791. package/components/atoms/Textarea/TextareaStyled.d.cts +2 -0
  792. package/components/atoms/Textarea/TextareaStyled.d.ts +1 -1
  793. package/components/atoms/Textarea/TextareaStyled.js +23 -32
  794. package/components/atoms/Textarea/constants.cjs +1 -0
  795. package/components/atoms/Textarea/constants.d.cts +1 -0
  796. package/components/atoms/Textarea/constants.js +4 -4
  797. package/components/atoms/Textarea/hooks/index.d.cts +2 -0
  798. package/components/atoms/Textarea/hooks/index.d.ts +2 -2
  799. package/components/atoms/Textarea/hooks/useDynamicHeightAdjustment.cjs +1 -0
  800. package/components/atoms/Textarea/hooks/useDynamicHeightAdjustment.d.cts +2 -0
  801. package/components/atoms/Textarea/hooks/useDynamicHeightAdjustment.js +8 -8
  802. package/components/atoms/Textarea/hooks/useResizeObserver.cjs +1 -0
  803. package/components/atoms/Textarea/hooks/useResizeObserver.d.cts +2 -0
  804. package/components/atoms/Textarea/hooks/useResizeObserver.d.ts +1 -1
  805. package/components/atoms/Textarea/hooks/useResizeObserver.js +24 -23
  806. package/components/atoms/Textarea/index.d.cts +2 -0
  807. package/components/atoms/Textarea/index.d.ts +2 -2
  808. package/components/atoms/Toggle/Toggle.cjs +1 -0
  809. package/components/atoms/Toggle/Toggle.d.cts +2 -0
  810. package/components/atoms/Toggle/Toggle.d.ts +1 -1
  811. package/components/atoms/Toggle/Toggle.js +34 -35
  812. package/components/atoms/Toggle/Toggle.types.d.cts +16 -0
  813. package/components/atoms/Toggle/Toggle.types.d.ts +1 -1
  814. package/components/atoms/Toggle/ToggleStyled.cjs +1 -0
  815. package/components/atoms/Toggle/ToggleStyled.d.cts +2 -0
  816. package/components/atoms/Toggle/ToggleStyled.d.ts +1 -1
  817. package/components/atoms/Toggle/ToggleStyled.js +19 -21
  818. package/components/atoms/Toggle/constants.cjs +1 -0
  819. package/components/atoms/Toggle/constants.d.cts +1 -0
  820. package/components/atoms/Toggle/constants.js +4 -4
  821. package/components/atoms/Toggle/index.d.cts +2 -0
  822. package/components/atoms/Toggle/index.d.ts +2 -2
  823. package/components/atoms/Truncate/Truncate.cjs +1 -0
  824. package/components/atoms/Truncate/Truncate.d.cts +2 -0
  825. package/components/atoms/Truncate/Truncate.d.ts +1 -1
  826. package/components/atoms/Truncate/Truncate.js +44 -50
  827. package/components/atoms/Truncate/Truncate.types.d.cts +12 -0
  828. package/components/atoms/Truncate/Truncate.types.d.ts +1 -1
  829. package/components/atoms/Truncate/TruncateStyled.cjs +1 -0
  830. package/components/atoms/Truncate/TruncateStyled.d.cts +2 -0
  831. package/components/atoms/Truncate/TruncateStyled.d.ts +1 -1
  832. package/components/atoms/Truncate/TruncateStyled.js +19 -22
  833. package/components/atoms/Truncate/constants.cjs +1 -0
  834. package/components/atoms/Truncate/constants.d.cts +1 -0
  835. package/components/atoms/Truncate/constants.js +4 -4
  836. package/components/atoms/Truncate/index.d.cts +2 -0
  837. package/components/atoms/Truncate/index.d.ts +2 -2
  838. package/components/atoms/Typography/Typography.cjs +1 -0
  839. package/components/atoms/Typography/Typography.d.cts +2 -0
  840. package/components/atoms/Typography/Typography.d.ts +1 -1
  841. package/components/atoms/Typography/Typography.js +25 -24
  842. package/components/atoms/Typography/Typography.types.d.cts +20 -0
  843. package/components/atoms/Typography/Typography.types.d.ts +2 -2
  844. package/components/atoms/Typography/TypographyStyled.cjs +1 -0
  845. package/components/atoms/Typography/TypographyStyled.d.cts +2 -0
  846. package/components/atoms/Typography/TypographyStyled.d.ts +1 -1
  847. package/components/atoms/Typography/TypographyStyled.js +22 -35
  848. package/components/atoms/Typography/constants.cjs +1 -0
  849. package/components/atoms/Typography/constants.d.cts +1 -0
  850. package/components/atoms/Typography/constants.js +4 -4
  851. package/components/atoms/Typography/index.d.cts +2 -0
  852. package/components/atoms/Typography/index.d.ts +2 -2
  853. package/components/atoms/Wrapper/Wrapper.cjs +1 -0
  854. package/components/atoms/Wrapper/Wrapper.d.cts +3 -0
  855. package/components/atoms/Wrapper/Wrapper.d.ts +1 -1
  856. package/components/atoms/Wrapper/Wrapper.js +20 -19
  857. package/components/atoms/Wrapper/Wrapper.types.d.cts +11 -0
  858. package/components/atoms/Wrapper/Wrapper.types.d.ts +2 -2
  859. package/components/atoms/Wrapper/WrapperStyled.cjs +1 -0
  860. package/components/atoms/Wrapper/WrapperStyled.d.cts +2 -0
  861. package/components/atoms/Wrapper/WrapperStyled.d.ts +1 -1
  862. package/components/atoms/Wrapper/WrapperStyled.js +19 -22
  863. package/components/atoms/Wrapper/constants.cjs +1 -0
  864. package/components/atoms/Wrapper/constants.d.cts +1 -0
  865. package/components/atoms/Wrapper/constants.js +4 -4
  866. package/components/atoms/Wrapper/index.d.cts +2 -0
  867. package/components/atoms/Wrapper/index.d.ts +2 -2
  868. package/components/atoms/index.d.cts +24 -0
  869. package/components/atoms/index.d.ts +24 -24
  870. package/components/atoms/types/events.types.d.cts +7 -0
  871. package/components/atoms/types/events.types.d.ts +1 -1
  872. package/components/atoms/types/index.types.d.cts +2 -0
  873. package/components/atoms/types/index.types.d.ts +2 -2
  874. package/components/atoms/types/roles.types.cjs +1 -0
  875. package/components/atoms/types/roles.types.d.cts +4 -0
  876. package/components/atoms/types/roles.types.js +6 -4
  877. package/components/index.d.cts +6 -0
  878. package/components/index.d.ts +6 -6
  879. package/components/index.types.cjs +1 -0
  880. package/components/index.types.d.cts +130 -0
  881. package/components/index.types.d.ts +2 -2
  882. package/components/index.types.js +6 -4
  883. package/components/layout/ChatContainer/ChatContainer.cjs +1 -0
  884. package/components/layout/ChatContainer/ChatContainer.d.cts +2 -0
  885. package/components/layout/ChatContainer/ChatContainer.d.ts +1 -1
  886. package/components/layout/ChatContainer/ChatContainer.js +106 -72
  887. package/components/layout/ChatContainer/ChatContainer.types.d.cts +28 -0
  888. package/components/layout/ChatContainer/ChatContainer.types.d.ts +1 -1
  889. package/components/layout/ChatContainer/ChatContainerStyled.cjs +1 -0
  890. package/components/layout/ChatContainer/ChatContainerStyled.d.cts +11 -0
  891. package/components/layout/ChatContainer/ChatContainerStyled.d.ts +1 -1
  892. package/components/layout/ChatContainer/ChatContainerStyled.js +103 -153
  893. package/components/layout/ChatContainer/constants.cjs +1 -0
  894. package/components/layout/ChatContainer/constants.d.cts +1 -0
  895. package/components/layout/ChatContainer/constants.js +4 -4
  896. package/components/layout/ChatContainer/index.d.cts +2 -0
  897. package/components/layout/ChatContainer/index.d.ts +2 -2
  898. package/components/layout/Column/Column.cjs +1 -0
  899. package/components/layout/Column/Column.d.cts +2 -0
  900. package/components/layout/Column/Column.d.ts +1 -1
  901. package/components/layout/Column/Column.js +25 -24
  902. package/components/layout/Column/Column.types.d.cts +8 -0
  903. package/components/layout/Column/Column.types.d.ts +1 -1
  904. package/components/layout/Column/ColumnStyled.cjs +1 -0
  905. package/components/layout/Column/ColumnStyled.d.cts +2 -0
  906. package/components/layout/Column/ColumnStyled.d.ts +1 -1
  907. package/components/layout/Column/ColumnStyled.js +27 -36
  908. package/components/layout/Column/constants.cjs +1 -0
  909. package/components/layout/Column/constants.d.cts +1 -0
  910. package/components/layout/Column/constants.js +4 -4
  911. package/components/layout/Column/index.d.cts +2 -0
  912. package/components/layout/Column/index.d.ts +2 -2
  913. package/components/layout/FlexContainer/FlexContainer.cjs +1 -0
  914. package/components/layout/FlexContainer/FlexContainer.d.cts +2 -0
  915. package/components/layout/FlexContainer/FlexContainer.d.ts +1 -1
  916. package/components/layout/FlexContainer/FlexContainer.js +21 -20
  917. package/components/layout/FlexContainer/FlexContainer.types.d.cts +6 -0
  918. package/components/layout/FlexContainer/FlexContainer.types.d.ts +1 -1
  919. package/components/layout/FlexContainer/FlexContainerStyled.cjs +1 -0
  920. package/components/layout/FlexContainer/FlexContainerStyled.d.cts +2 -0
  921. package/components/layout/FlexContainer/FlexContainerStyled.d.ts +1 -1
  922. package/components/layout/FlexContainer/FlexContainerStyled.js +17 -19
  923. package/components/layout/FlexContainer/constants.cjs +1 -0
  924. package/components/layout/FlexContainer/constants.d.cts +1 -0
  925. package/components/layout/FlexContainer/constants.js +4 -4
  926. package/components/layout/FlexContainer/index.d.cts +2 -0
  927. package/components/layout/FlexContainer/index.d.ts +2 -2
  928. package/components/layout/FlexContainer/utils.d.cts +2 -0
  929. package/components/layout/FlexContainer/utils.d.ts +1 -1
  930. package/components/layout/Portal/Portal.cjs +1 -0
  931. package/components/layout/Portal/Portal.d.cts +2 -0
  932. package/components/layout/Portal/Portal.d.ts +1 -1
  933. package/components/layout/Portal/Portal.js +24 -24
  934. package/components/layout/Portal/Portal.types.d.cts +10 -0
  935. package/components/layout/Portal/Portal.types.d.ts +2 -2
  936. package/components/layout/Portal/constants.d.cts +1 -0
  937. package/components/layout/Portal/index.d.cts +2 -0
  938. package/components/layout/Portal/index.d.ts +2 -2
  939. package/components/layout/Row/Row.cjs +1 -0
  940. package/components/layout/Row/Row.d.cts +3 -0
  941. package/components/layout/Row/Row.d.ts +1 -1
  942. package/components/layout/Row/Row.js +24 -24
  943. package/components/layout/Row/Row.types.d.cts +8 -0
  944. package/components/layout/Row/Row.types.d.ts +1 -1
  945. package/components/layout/Row/RowStyled.cjs +1 -0
  946. package/components/layout/Row/RowStyled.d.cts +2 -0
  947. package/components/layout/Row/RowStyled.d.ts +1 -1
  948. package/components/layout/Row/RowStyled.js +27 -36
  949. package/components/layout/Row/constants.d.cts +1 -0
  950. package/components/layout/Row/index.d.cts +2 -0
  951. package/components/layout/Row/index.d.ts +2 -2
  952. package/components/layout/Scroll/Scroll.cjs +1 -0
  953. package/components/layout/Scroll/Scroll.d.cts +25 -0
  954. package/components/layout/Scroll/Scroll.d.ts +1 -1
  955. package/components/layout/Scroll/Scroll.js +63 -60
  956. package/components/layout/Scroll/Scroll.types.d.cts +24 -0
  957. package/components/layout/Scroll/Scroll.types.d.ts +1 -1
  958. package/components/layout/Scroll/ScrollBar.cjs +1 -0
  959. package/components/layout/Scroll/ScrollBar.d.cts +2 -0
  960. package/components/layout/Scroll/ScrollBar.d.ts +1 -1
  961. package/components/layout/Scroll/ScrollBar.js +60 -68
  962. package/components/layout/Scroll/ScrollStyled.cjs +1 -0
  963. package/components/layout/Scroll/ScrollStyled.d.cts +6 -0
  964. package/components/layout/Scroll/ScrollStyled.d.ts +1 -1
  965. package/components/layout/Scroll/ScrollStyled.js +50 -65
  966. package/components/layout/Scroll/constants.cjs +1 -0
  967. package/components/layout/Scroll/constants.d.cts +5 -0
  968. package/components/layout/Scroll/constants.js +4 -8
  969. package/components/layout/Scroll/index.d.cts +2 -0
  970. package/components/layout/Scroll/index.d.ts +2 -2
  971. package/components/layout/Scroll/utils.cjs +1 -0
  972. package/components/layout/Scroll/utils.d.cts +5 -0
  973. package/components/layout/Scroll/utils.d.ts +1 -1
  974. package/components/layout/Scroll/utils.js +18 -37
  975. package/components/layout/index.d.cts +6 -0
  976. package/components/layout/index.d.ts +6 -6
  977. package/components/molecules/Accordion/Accordion.cjs +1 -0
  978. package/components/molecules/Accordion/Accordion.d.cts +2 -0
  979. package/components/molecules/Accordion/Accordion.d.ts +1 -1
  980. package/components/molecules/Accordion/Accordion.js +41 -44
  981. package/components/molecules/Accordion/Accordion.types.d.cts +31 -0
  982. package/components/molecules/Accordion/Accordion.types.d.ts +1 -1
  983. package/components/molecules/Accordion/AccordionContent/AccordionContent.cjs +1 -0
  984. package/components/molecules/Accordion/AccordionContent/AccordionContent.d.cts +2 -0
  985. package/components/molecules/Accordion/AccordionContent/AccordionContent.d.ts +1 -1
  986. package/components/molecules/Accordion/AccordionContent/AccordionContent.js +22 -20
  987. package/components/molecules/Accordion/AccordionContent/index.d.cts +1 -0
  988. package/components/molecules/Accordion/AccordionContent/index.d.ts +1 -1
  989. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.cjs +1 -0
  990. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.d.cts +2 -0
  991. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.d.ts +1 -1
  992. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.js +29 -29
  993. package/components/molecules/Accordion/AccordionHeader/index.d.cts +1 -0
  994. package/components/molecules/Accordion/AccordionHeader/index.d.ts +1 -1
  995. package/components/molecules/Accordion/AccordionItem/AccordionItem.cjs +1 -0
  996. package/components/molecules/Accordion/AccordionItem/AccordionItem.d.cts +2 -0
  997. package/components/molecules/Accordion/AccordionItem/AccordionItem.d.ts +1 -1
  998. package/components/molecules/Accordion/AccordionItem/AccordionItem.js +26 -26
  999. package/components/molecules/Accordion/AccordionItem/index.d.cts +1 -0
  1000. package/components/molecules/Accordion/AccordionItem/index.d.ts +1 -1
  1001. package/components/molecules/Accordion/AccordionStyled.cjs +1 -0
  1002. package/components/molecules/Accordion/AccordionStyled.d.cts +5 -0
  1003. package/components/molecules/Accordion/AccordionStyled.d.ts +1 -1
  1004. package/components/molecules/Accordion/AccordionStyled.js +46 -63
  1005. package/components/molecules/Accordion/constants.cjs +1 -0
  1006. package/components/molecules/Accordion/constants.d.cts +10 -0
  1007. package/components/molecules/Accordion/constants.js +4 -8
  1008. package/components/molecules/Accordion/hooks/index.d.cts +1 -0
  1009. package/components/molecules/Accordion/hooks/index.d.ts +1 -1
  1010. package/components/molecules/Accordion/hooks/useAccordion.cjs +1 -0
  1011. package/components/molecules/Accordion/hooks/useAccordion.d.cts +3 -0
  1012. package/components/molecules/Accordion/hooks/useAccordion.d.ts +1 -1
  1013. package/components/molecules/Accordion/hooks/useAccordion.js +8 -9
  1014. package/components/molecules/Accordion/index.d.cts +5 -0
  1015. package/components/molecules/Accordion/index.d.ts +5 -5
  1016. package/components/molecules/AttachmentFile/AttachmentFile.cjs +1 -0
  1017. package/components/molecules/AttachmentFile/AttachmentFile.d.cts +2 -0
  1018. package/components/molecules/AttachmentFile/AttachmentFile.d.ts +2 -0
  1019. package/components/molecules/AttachmentFile/AttachmentFile.js +64 -0
  1020. package/components/molecules/AttachmentFile/AttachmentFile.types.d.cts +16 -0
  1021. package/components/molecules/AttachmentFile/AttachmentFile.types.d.ts +16 -0
  1022. package/components/molecules/AttachmentFile/AttachmentFileStyled.cjs +1 -0
  1023. package/components/molecules/AttachmentFile/AttachmentFileStyled.d.cts +14 -0
  1024. package/components/molecules/AttachmentFile/AttachmentFileStyled.d.ts +14 -0
  1025. package/components/molecules/AttachmentFile/AttachmentFileStyled.js +58 -0
  1026. package/components/molecules/AttachmentFile/constants.cjs +1 -0
  1027. package/components/molecules/AttachmentFile/constants.d.cts +1 -0
  1028. package/components/molecules/AttachmentFile/constants.d.ts +1 -0
  1029. package/components/molecules/AttachmentFile/constants.js +4 -0
  1030. package/components/molecules/AttachmentFile/index.d.cts +2 -0
  1031. package/components/molecules/AttachmentFile/index.d.ts +2 -0
  1032. package/components/molecules/AvatarUser/AvatarUser.cjs +1 -0
  1033. package/components/molecules/AvatarUser/AvatarUser.d.cts +2 -0
  1034. package/components/molecules/AvatarUser/AvatarUser.d.ts +1 -1
  1035. package/components/molecules/AvatarUser/AvatarUser.js +46 -37
  1036. package/components/molecules/AvatarUser/AvatarUserStyled.cjs +1 -0
  1037. package/components/molecules/AvatarUser/AvatarUserStyled.d.cts +2 -0
  1038. package/components/molecules/AvatarUser/AvatarUserStyled.d.ts +1 -1
  1039. package/components/molecules/AvatarUser/AvatarUserStyled.js +18 -21
  1040. package/components/molecules/AvatarUser/constants.cjs +1 -0
  1041. package/components/molecules/AvatarUser/constants.d.cts +1 -0
  1042. package/components/molecules/AvatarUser/constants.js +4 -4
  1043. package/components/molecules/AvatarUser/index.d.cts +1 -0
  1044. package/components/molecules/AvatarUser/index.d.ts +1 -1
  1045. package/components/molecules/Breadcrumbs/Breadcrumbs.cjs +1 -0
  1046. package/components/molecules/Breadcrumbs/Breadcrumbs.d.cts +2 -0
  1047. package/components/molecules/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  1048. package/components/molecules/Breadcrumbs/Breadcrumbs.js +40 -32
  1049. package/components/molecules/Breadcrumbs/Breadcrumbs.types.d.cts +14 -0
  1050. package/components/molecules/Breadcrumbs/Breadcrumbs.types.d.ts +1 -1
  1051. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.cjs +1 -0
  1052. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.d.cts +6 -0
  1053. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.d.ts +1 -1
  1054. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.js +43 -65
  1055. package/components/molecules/Breadcrumbs/constants.cjs +1 -0
  1056. package/components/molecules/Breadcrumbs/constants.d.cts +1 -0
  1057. package/components/molecules/Breadcrumbs/constants.js +4 -4
  1058. package/components/molecules/Breadcrumbs/index.d.cts +2 -0
  1059. package/components/molecules/Breadcrumbs/index.d.ts +2 -2
  1060. package/components/molecules/Counter/Counter.cjs +1 -0
  1061. package/components/molecules/Counter/Counter.d.cts +2 -0
  1062. package/components/molecules/Counter/Counter.d.ts +1 -1
  1063. package/components/molecules/Counter/Counter.js +117 -102
  1064. package/components/molecules/Counter/Counter.types.d.cts +15 -0
  1065. package/components/molecules/Counter/Counter.types.d.ts +2 -2
  1066. package/components/molecules/Counter/CounterStyled.cjs +1 -0
  1067. package/components/molecules/Counter/CounterStyled.d.cts +3 -0
  1068. package/components/molecules/Counter/CounterStyled.d.ts +1 -1
  1069. package/components/molecules/Counter/CounterStyled.js +22 -28
  1070. package/components/molecules/Counter/constants.cjs +1 -0
  1071. package/components/molecules/Counter/constants.d.cts +5 -0
  1072. package/components/molecules/Counter/constants.js +4 -8
  1073. package/components/molecules/Counter/index.d.cts +2 -0
  1074. package/components/molecules/Counter/index.d.ts +2 -2
  1075. package/components/molecules/Dropdown/Dropdown.cjs +1 -0
  1076. package/components/molecules/Dropdown/Dropdown.d.cts +3 -0
  1077. package/components/molecules/Dropdown/Dropdown.d.ts +1 -1
  1078. package/components/molecules/Dropdown/Dropdown.js +36 -36
  1079. package/components/molecules/Dropdown/Dropdown.types.d.cts +8 -0
  1080. package/components/molecules/Dropdown/Dropdown.types.d.ts +2 -2
  1081. package/components/molecules/Dropdown/DropdownStyled.cjs +1 -0
  1082. package/components/molecules/Dropdown/DropdownStyled.d.cts +2 -0
  1083. package/components/molecules/Dropdown/DropdownStyled.d.ts +1 -1
  1084. package/components/molecules/Dropdown/DropdownStyled.js +18 -20
  1085. package/components/molecules/Dropdown/constants.cjs +1 -0
  1086. package/components/molecules/Dropdown/constants.d.cts +5 -0
  1087. package/components/molecules/Dropdown/constants.js +4 -4
  1088. package/components/molecules/Dropdown/hooks/index.d.cts +1 -0
  1089. package/components/molecules/Dropdown/hooks/index.d.ts +1 -1
  1090. package/components/molecules/Dropdown/hooks/useDropdown.cjs +1 -0
  1091. package/components/molecules/Dropdown/hooks/useDropdown.d.cts +3 -0
  1092. package/components/molecules/Dropdown/hooks/useDropdown.d.ts +1 -1
  1093. package/components/molecules/Dropdown/hooks/useDropdown.js +8 -10
  1094. package/components/molecules/Dropdown/index.d.cts +3 -0
  1095. package/components/molecules/Dropdown/index.d.ts +3 -3
  1096. package/components/molecules/DropdownItem/DropdownItem.cjs +1 -0
  1097. package/components/molecules/DropdownItem/DropdownItem.d.cts +2 -0
  1098. package/components/molecules/DropdownItem/DropdownItem.d.ts +1 -1
  1099. package/components/molecules/DropdownItem/DropdownItem.js +49 -44
  1100. package/components/molecules/DropdownItem/DropdownItem.types.d.cts +9 -0
  1101. package/components/molecules/DropdownItem/DropdownItem.types.d.ts +1 -1
  1102. package/components/molecules/DropdownItem/DropdownItemStyled.cjs +1 -0
  1103. package/components/molecules/DropdownItem/DropdownItemStyled.d.cts +2 -0
  1104. package/components/molecules/DropdownItem/DropdownItemStyled.d.ts +1 -1
  1105. package/components/molecules/DropdownItem/DropdownItemStyled.js +19 -21
  1106. package/components/molecules/DropdownItem/constants.cjs +1 -0
  1107. package/components/molecules/DropdownItem/constants.d.cts +1 -0
  1108. package/components/molecules/DropdownItem/constants.js +4 -4
  1109. package/components/molecules/DropdownItem/index.d.cts +2 -0
  1110. package/components/molecules/DropdownItem/index.d.ts +2 -2
  1111. package/components/molecules/Form/Form.cjs +1 -0
  1112. package/components/molecules/Form/Form.d.cts +2 -0
  1113. package/components/molecules/Form/Form.d.ts +1 -1
  1114. package/components/molecules/Form/Form.js +39 -46
  1115. package/components/molecules/Form/Form.types.d.cts +31 -0
  1116. package/components/molecules/Form/Form.types.d.ts +4 -2
  1117. package/components/molecules/Form/FormStyled.cjs +1 -0
  1118. package/components/molecules/Form/FormStyled.d.cts +2 -0
  1119. package/components/molecules/Form/FormStyled.d.ts +1 -1
  1120. package/components/molecules/Form/FormStyled.js +18 -20
  1121. package/components/molecules/Form/constants.cjs +1 -0
  1122. package/components/molecules/Form/constants.d.cts +1 -0
  1123. package/components/molecules/Form/constants.js +4 -4
  1124. package/components/molecules/Form/index.d.cts +2 -0
  1125. package/components/molecules/Form/index.d.ts +2 -2
  1126. package/components/molecules/Form/utils.cjs +1 -0
  1127. package/components/molecules/Form/utils.d.cts +3 -0
  1128. package/components/molecules/Form/utils.d.ts +1 -1
  1129. package/components/molecules/Form/utils.js +29 -33
  1130. package/components/molecules/InlineNotification/InlineNotification.cjs +1 -0
  1131. package/components/molecules/InlineNotification/InlineNotification.d.cts +2 -0
  1132. package/components/molecules/InlineNotification/InlineNotification.d.ts +1 -1
  1133. package/components/molecules/InlineNotification/InlineNotification.js +39 -36
  1134. package/components/molecules/InlineNotification/InlineNotification.types.d.cts +9 -0
  1135. package/components/molecules/InlineNotification/InlineNotification.types.d.ts +1 -1
  1136. package/components/molecules/InlineNotification/InlineNotificationStyled.cjs +1 -0
  1137. package/components/molecules/InlineNotification/InlineNotificationStyled.d.cts +3 -0
  1138. package/components/molecules/InlineNotification/InlineNotificationStyled.d.ts +1 -1
  1139. package/components/molecules/InlineNotification/InlineNotificationStyled.js +28 -30
  1140. package/components/molecules/InlineNotification/constants.cjs +1 -0
  1141. package/components/molecules/InlineNotification/constants.d.cts +16 -0
  1142. package/components/molecules/InlineNotification/constants.js +16 -21
  1143. package/components/molecules/InlineNotification/index.d.cts +2 -0
  1144. package/components/molecules/InlineNotification/index.d.ts +2 -2
  1145. package/components/molecules/List/List.cjs +1 -0
  1146. package/components/molecules/List/List.d.cts +3 -0
  1147. package/components/molecules/List/List.d.ts +1 -1
  1148. package/components/molecules/List/List.js +43 -44
  1149. package/components/molecules/List/List.types.d.cts +13 -0
  1150. package/components/molecules/List/List.types.d.ts +2 -2
  1151. package/components/molecules/List/ListStyled.cjs +1 -0
  1152. package/components/molecules/List/ListStyled.d.cts +3 -0
  1153. package/components/molecules/List/ListStyled.d.ts +1 -1
  1154. package/components/molecules/List/ListStyled.js +30 -37
  1155. package/components/molecules/List/constants.cjs +1 -0
  1156. package/components/molecules/List/constants.d.cts +1 -0
  1157. package/components/molecules/List/constants.js +4 -4
  1158. package/components/molecules/List/index.d.cts +2 -0
  1159. package/components/molecules/List/index.d.ts +2 -2
  1160. package/components/molecules/Menu/Menu.cjs +1 -0
  1161. package/components/molecules/Menu/Menu.d.cts +2 -0
  1162. package/components/molecules/Menu/Menu.d.ts +1 -1
  1163. package/components/molecules/Menu/Menu.js +117 -132
  1164. package/components/molecules/Menu/Menu.types.d.cts +24 -0
  1165. package/components/molecules/Menu/Menu.types.d.ts +1 -1
  1166. package/components/molecules/Menu/MenuStyled.cjs +1 -0
  1167. package/components/molecules/Menu/MenuStyled.d.cts +3 -0
  1168. package/components/molecules/Menu/MenuStyled.d.ts +1 -1
  1169. package/components/molecules/Menu/MenuStyled.js +30 -39
  1170. package/components/molecules/Menu/constants.cjs +1 -0
  1171. package/components/molecules/Menu/constants.d.cts +2 -0
  1172. package/components/molecules/Menu/constants.js +17 -15
  1173. package/components/molecules/Menu/index.d.cts +2 -0
  1174. package/components/molecules/Menu/index.d.ts +2 -2
  1175. package/components/molecules/Price/Price.cjs +1 -0
  1176. package/components/molecules/Price/Price.d.cts +4 -0
  1177. package/components/molecules/Price/Price.d.ts +1 -1
  1178. package/components/molecules/Price/Price.js +28 -24
  1179. package/components/molecules/Price/Price.types.d.cts +22 -0
  1180. package/components/molecules/Price/Price.types.d.ts +1 -1
  1181. package/components/molecules/Price/PriceStyled.cjs +1 -0
  1182. package/components/molecules/Price/PriceStyled.d.cts +4 -0
  1183. package/components/molecules/Price/PriceStyled.d.ts +1 -1
  1184. package/components/molecules/Price/PriceStyled.js +35 -52
  1185. package/components/molecules/Price/constants.cjs +1 -0
  1186. package/components/molecules/Price/constants.d.cts +1 -0
  1187. package/components/molecules/Price/constants.js +4 -4
  1188. package/components/molecules/Price/index.d.cts +2 -0
  1189. package/components/molecules/Price/index.d.ts +2 -2
  1190. package/components/molecules/ProgressBar/ProgressBar.cjs +1 -0
  1191. package/components/molecules/ProgressBar/ProgressBar.d.cts +4 -0
  1192. package/components/molecules/ProgressBar/ProgressBar.d.ts +1 -1
  1193. package/components/molecules/ProgressBar/ProgressBar.js +41 -27
  1194. package/components/molecules/ProgressBar/ProgressBar.types.d.cts +36 -0
  1195. package/components/molecules/ProgressBar/ProgressBar.types.d.ts +2 -2
  1196. package/components/molecules/ProgressBar/ProgressBarStyled.cjs +1 -0
  1197. package/components/molecules/ProgressBar/ProgressBarStyled.d.cts +6 -0
  1198. package/components/molecules/ProgressBar/ProgressBarStyled.d.ts +1 -1
  1199. package/components/molecules/ProgressBar/ProgressBarStyled.js +52 -80
  1200. package/components/molecules/ProgressBar/constants.cjs +1 -0
  1201. package/components/molecules/ProgressBar/constants.d.cts +4 -0
  1202. package/components/molecules/ProgressBar/constants.js +4 -7
  1203. package/components/molecules/ProgressBar/index.d.cts +2 -0
  1204. package/components/molecules/ProgressBar/index.d.ts +2 -2
  1205. package/components/molecules/RadioGroup/RadioGroup.cjs +1 -0
  1206. package/components/molecules/RadioGroup/RadioGroup.d.cts +4 -0
  1207. package/components/molecules/RadioGroup/RadioGroup.d.ts +1 -1
  1208. package/components/molecules/RadioGroup/RadioGroup.js +71 -53
  1209. package/components/molecules/RadioGroup/RadioGroup.types.cjs +1 -0
  1210. package/components/molecules/RadioGroup/RadioGroup.types.d.cts +77 -0
  1211. package/components/molecules/RadioGroup/RadioGroup.types.d.ts +2 -2
  1212. package/components/molecules/RadioGroup/RadioGroup.types.js +6 -4
  1213. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.cjs +1 -0
  1214. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.d.cts +5 -0
  1215. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.d.ts +1 -1
  1216. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.js +89 -37
  1217. package/components/molecules/RadioGroup/RadioGroupItem/index.d.cts +1 -0
  1218. package/components/molecules/RadioGroup/RadioGroupItem/index.d.ts +1 -1
  1219. package/components/molecules/RadioGroup/RadioGroupStyled.cjs +1 -0
  1220. package/components/molecules/RadioGroup/RadioGroupStyled.d.cts +6 -0
  1221. package/components/molecules/RadioGroup/RadioGroupStyled.d.ts +1 -1
  1222. package/components/molecules/RadioGroup/RadioGroupStyled.js +83 -136
  1223. package/components/molecules/RadioGroup/constants.cjs +1 -0
  1224. package/components/molecules/RadioGroup/constants.d.cts +2 -0
  1225. package/components/molecules/RadioGroup/constants.js +4 -5
  1226. package/components/molecules/RadioGroup/index.d.cts +2 -0
  1227. package/components/molecules/RadioGroup/index.d.ts +2 -2
  1228. package/components/molecules/Rating/Rating.cjs +1 -0
  1229. package/components/molecules/Rating/Rating.d.cts +2 -0
  1230. package/components/molecules/Rating/Rating.d.ts +1 -1
  1231. package/components/molecules/Rating/Rating.js +73 -61
  1232. package/components/molecules/Rating/Rating.types.d.cts +20 -0
  1233. package/components/molecules/Rating/Rating.types.d.ts +1 -1
  1234. package/components/molecules/Rating/RatingStyled.cjs +1 -0
  1235. package/components/molecules/Rating/RatingStyled.d.cts +5 -0
  1236. package/components/molecules/Rating/RatingStyled.d.ts +1 -1
  1237. package/components/molecules/Rating/RatingStyled.js +44 -64
  1238. package/components/molecules/Rating/constants.cjs +1 -0
  1239. package/components/molecules/Rating/constants.d.cts +6 -0
  1240. package/components/molecules/Rating/constants.js +4 -9
  1241. package/components/molecules/Rating/index.d.cts +2 -0
  1242. package/components/molecules/Rating/index.d.ts +2 -2
  1243. package/components/molecules/Snackbar/Snackbar.cjs +1 -0
  1244. package/components/molecules/Snackbar/Snackbar.d.cts +2 -0
  1245. package/components/molecules/Snackbar/Snackbar.d.ts +1 -1
  1246. package/components/molecules/Snackbar/Snackbar.js +106 -69
  1247. package/components/molecules/Snackbar/Snackbar.types.d.cts +35 -0
  1248. package/components/molecules/Snackbar/Snackbar.types.d.ts +2 -2
  1249. package/components/molecules/Snackbar/SnackbarManager.cjs +1 -0
  1250. package/components/molecules/Snackbar/SnackbarManager.d.cts +3 -0
  1251. package/components/molecules/Snackbar/SnackbarManager.d.ts +1 -1
  1252. package/components/molecules/Snackbar/SnackbarManager.js +67 -61
  1253. package/components/molecules/Snackbar/SnackbarStyled.cjs +1 -0
  1254. package/components/molecules/Snackbar/SnackbarStyled.d.cts +12 -0
  1255. package/components/molecules/Snackbar/SnackbarStyled.d.ts +2 -2
  1256. package/components/molecules/Snackbar/SnackbarStyled.js +94 -143
  1257. package/components/molecules/Snackbar/constants.cjs +1 -0
  1258. package/components/molecules/Snackbar/constants.d.cts +8 -0
  1259. package/components/molecules/Snackbar/constants.d.ts +1 -1
  1260. package/components/molecules/Snackbar/constants.js +5 -10
  1261. package/components/molecules/Snackbar/index.d.cts +4 -0
  1262. package/components/molecules/Snackbar/index.d.ts +4 -4
  1263. package/components/molecules/Stepper/Stepper.cjs +1 -0
  1264. package/components/molecules/Stepper/Stepper.d.cts +2 -0
  1265. package/components/molecules/Stepper/Stepper.d.ts +1 -1
  1266. package/components/molecules/Stepper/Stepper.js +48 -39
  1267. package/components/molecules/Stepper/Stepper.types.d.cts +31 -0
  1268. package/components/molecules/Stepper/Stepper.types.d.ts +3 -3
  1269. package/components/molecules/Stepper/StepperStyled.cjs +1 -0
  1270. package/components/molecules/Stepper/StepperStyled.d.cts +6 -0
  1271. package/components/molecules/Stepper/StepperStyled.d.ts +1 -1
  1272. package/components/molecules/Stepper/StepperStyled.js +46 -63
  1273. package/components/molecules/Stepper/constants.cjs +1 -0
  1274. package/components/molecules/Stepper/constants.d.cts +36 -0
  1275. package/components/molecules/Stepper/constants.js +6 -6
  1276. package/components/molecules/Stepper/index.d.cts +2 -0
  1277. package/components/molecules/Stepper/index.d.ts +2 -2
  1278. package/components/molecules/Stepper/utils.cjs +1 -0
  1279. package/components/molecules/Stepper/utils.d.cts +2 -0
  1280. package/components/molecules/Stepper/utils.d.ts +1 -1
  1281. package/components/molecules/Stepper/utils.js +14 -34
  1282. package/components/molecules/Table/Table.cjs +1 -0
  1283. package/components/molecules/Table/Table.d.cts +2 -0
  1284. package/components/molecules/Table/Table.d.ts +1 -1
  1285. package/components/molecules/Table/Table.js +300 -274
  1286. package/components/molecules/Table/Table.types.d.cts +98 -0
  1287. package/components/molecules/Table/Table.types.d.ts +1 -1
  1288. package/components/molecules/Table/TableBody.cjs +1 -0
  1289. package/components/molecules/Table/TableBody.d.cts +2 -0
  1290. package/components/molecules/Table/TableBody.d.ts +1 -1
  1291. package/components/molecules/Table/TableBody.js +20 -19
  1292. package/components/molecules/Table/TableCell.cjs +1 -0
  1293. package/components/molecules/Table/TableCell.d.cts +2 -0
  1294. package/components/molecules/Table/TableCell.d.ts +1 -1
  1295. package/components/molecules/Table/TableCell.js +19 -18
  1296. package/components/molecules/Table/TableFooter.cjs +1 -0
  1297. package/components/molecules/Table/TableFooter.d.cts +2 -0
  1298. package/components/molecules/Table/TableFooter.d.ts +1 -1
  1299. package/components/molecules/Table/TableFooter.js +21 -20
  1300. package/components/molecules/Table/TableHead.cjs +1 -0
  1301. package/components/molecules/Table/TableHead.d.cts +2 -0
  1302. package/components/molecules/Table/TableHead.d.ts +1 -1
  1303. package/components/molecules/Table/TableHead.js +19 -18
  1304. package/components/molecules/Table/TableHeaderCell.cjs +1 -0
  1305. package/components/molecules/Table/TableHeaderCell.d.cts +2 -0
  1306. package/components/molecules/Table/TableHeaderCell.d.ts +1 -1
  1307. package/components/molecules/Table/TableHeaderCell.js +19 -18
  1308. package/components/molecules/Table/TablePagination.cjs +1 -0
  1309. package/components/molecules/Table/TablePagination.d.cts +2 -0
  1310. package/components/molecules/Table/TablePagination.d.ts +1 -1
  1311. package/components/molecules/Table/TablePagination.js +67 -54
  1312. package/components/molecules/Table/TableRow.cjs +1 -0
  1313. package/components/molecules/Table/TableRow.d.cts +2 -0
  1314. package/components/molecules/Table/TableRow.d.ts +1 -1
  1315. package/components/molecules/Table/TableRow.js +28 -27
  1316. package/components/molecules/Table/TableStyled.cjs +1 -0
  1317. package/components/molecules/Table/TableStyled.d.cts +15 -0
  1318. package/components/molecules/Table/TableStyled.d.ts +3 -3
  1319. package/components/molecules/Table/TableStyled.js +129 -162
  1320. package/components/molecules/Table/constants.cjs +1 -0
  1321. package/components/molecules/Table/constants.d.cts +9 -0
  1322. package/components/molecules/Table/constants.js +8 -12
  1323. package/components/molecules/Table/index.d.cts +9 -0
  1324. package/components/molecules/Table/index.d.ts +9 -9
  1325. package/components/molecules/Tabs/Tabs.cjs +1 -0
  1326. package/components/molecules/Tabs/Tabs.d.cts +2 -0
  1327. package/components/molecules/Tabs/Tabs.d.ts +1 -1
  1328. package/components/molecules/Tabs/Tabs.js +62 -38
  1329. package/components/molecules/Tabs/Tabs.types.d.cts +26 -0
  1330. package/components/molecules/Tabs/Tabs.types.d.ts +3 -3
  1331. package/components/molecules/Tabs/TabsStyled.cjs +1 -0
  1332. package/components/molecules/Tabs/TabsStyled.d.cts +8 -0
  1333. package/components/molecules/Tabs/TabsStyled.d.ts +1 -1
  1334. package/components/molecules/Tabs/TabsStyled.js +63 -85
  1335. package/components/molecules/Tabs/constants.cjs +1 -0
  1336. package/components/molecules/Tabs/constants.d.cts +6 -0
  1337. package/components/molecules/Tabs/constants.js +6 -6
  1338. package/components/molecules/Tabs/index.d.cts +2 -0
  1339. package/components/molecules/Tabs/index.d.ts +2 -2
  1340. package/components/molecules/Tooltip/Tooltip.cjs +1 -0
  1341. package/components/molecules/Tooltip/Tooltip.d.cts +7 -0
  1342. package/components/molecules/Tooltip/Tooltip.d.ts +1 -1
  1343. package/components/molecules/Tooltip/Tooltip.js +69 -65
  1344. package/components/molecules/Tooltip/Tooltip.types.d.cts +17 -0
  1345. package/components/molecules/Tooltip/Tooltip.types.d.ts +3 -8
  1346. package/components/molecules/Tooltip/TooltipStyled.cjs +1 -0
  1347. package/components/molecules/Tooltip/TooltipStyled.d.cts +3 -0
  1348. package/components/molecules/Tooltip/TooltipStyled.d.ts +1 -1
  1349. package/components/molecules/Tooltip/TooltipStyled.js +16 -30
  1350. package/components/molecules/Tooltip/constants.cjs +1 -0
  1351. package/components/molecules/Tooltip/constants.d.cts +3 -0
  1352. package/components/molecules/Tooltip/constants.js +4 -6
  1353. package/components/molecules/Tooltip/index.d.cts +2 -0
  1354. package/components/molecules/Tooltip/index.d.ts +2 -2
  1355. package/components/molecules/Tooltip/utils.cjs +1 -0
  1356. package/components/molecules/Tooltip/utils.d.cts +22 -0
  1357. package/components/molecules/Tooltip/utils.d.ts +3 -3
  1358. package/components/molecules/Tooltip/utils.js +112 -119
  1359. package/components/molecules/index.d.cts +20 -0
  1360. package/components/molecules/index.d.ts +20 -19
  1361. package/components/organisms/Card/Card.cjs +1 -0
  1362. package/components/organisms/Card/Card.d.cts +20 -0
  1363. package/components/organisms/Card/Card.d.ts +12 -12
  1364. package/components/organisms/Card/Card.js +41 -40
  1365. package/components/organisms/Card/Card.types.d.cts +49 -0
  1366. package/components/organisms/Card/Card.types.d.ts +2 -2
  1367. package/components/organisms/Card/CardBadge/CardBadge.cjs +1 -0
  1368. package/components/organisms/Card/CardBadge/CardBadge.d.cts +2 -0
  1369. package/components/organisms/Card/CardBadge/CardBadge.d.ts +1 -1
  1370. package/components/organisms/Card/CardBadge/CardBadge.js +27 -24
  1371. package/components/organisms/Card/CardBadge/CardBadgeStyled.cjs +1 -0
  1372. package/components/organisms/Card/CardBadge/CardBadgeStyled.d.cts +2 -0
  1373. package/components/organisms/Card/CardBadge/CardBadgeStyled.d.ts +1 -1
  1374. package/components/organisms/Card/CardBadge/CardBadgeStyled.js +19 -22
  1375. package/components/organisms/Card/CardBadge/constants.cjs +1 -0
  1376. package/components/organisms/Card/CardBadge/constants.d.cts +1 -0
  1377. package/components/organisms/Card/CardBadge/constants.js +4 -4
  1378. package/components/organisms/Card/CardBadge/index.d.cts +1 -0
  1379. package/components/organisms/Card/CardBadge/index.d.ts +1 -1
  1380. package/components/organisms/Card/CardButton/CardButton.cjs +1 -0
  1381. package/components/organisms/Card/CardButton/CardButton.d.cts +4 -0
  1382. package/components/organisms/Card/CardButton/CardButton.d.ts +1 -1
  1383. package/components/organisms/Card/CardButton/CardButton.js +26 -22
  1384. package/components/organisms/Card/CardButton/CardButtonStyled.cjs +1 -0
  1385. package/components/organisms/Card/CardButton/CardButtonStyled.d.cts +2 -0
  1386. package/components/organisms/Card/CardButton/CardButtonStyled.d.ts +1 -1
  1387. package/components/organisms/Card/CardButton/CardButtonStyled.js +19 -22
  1388. package/components/organisms/Card/CardButton/constants.cjs +1 -0
  1389. package/components/organisms/Card/CardButton/constants.d.cts +1 -0
  1390. package/components/organisms/Card/CardButton/constants.js +4 -4
  1391. package/components/organisms/Card/CardButton/index.d.cts +1 -0
  1392. package/components/organisms/Card/CardButton/index.d.ts +1 -1
  1393. package/components/organisms/Card/CardCounter/CardCounter.cjs +1 -0
  1394. package/components/organisms/Card/CardCounter/CardCounter.d.cts +4 -0
  1395. package/components/organisms/Card/CardCounter/CardCounter.d.ts +1 -1
  1396. package/components/organisms/Card/CardCounter/CardCounter.js +21 -24
  1397. package/components/organisms/Card/CardCounter/CardCounterStyled.cjs +1 -0
  1398. package/components/organisms/Card/CardCounter/CardCounterStyled.d.cts +2 -0
  1399. package/components/organisms/Card/CardCounter/CardCounterStyled.d.ts +1 -1
  1400. package/components/organisms/Card/CardCounter/CardCounterStyled.js +17 -21
  1401. package/components/organisms/Card/CardCounter/constants.cjs +1 -0
  1402. package/components/organisms/Card/CardCounter/constants.d.cts +1 -0
  1403. package/components/organisms/Card/CardCounter/constants.js +4 -4
  1404. package/components/organisms/Card/CardCounter/index.d.cts +1 -0
  1405. package/components/organisms/Card/CardCounter/index.d.ts +1 -1
  1406. package/components/organisms/Card/CardDescription/CardDescription.cjs +1 -0
  1407. package/components/organisms/Card/CardDescription/CardDescription.d.cts +2 -0
  1408. package/components/organisms/Card/CardDescription/CardDescription.d.ts +1 -1
  1409. package/components/organisms/Card/CardDescription/CardDescription.js +23 -22
  1410. package/components/organisms/Card/CardDescription/CardDescriptionStyled.cjs +1 -0
  1411. package/components/organisms/Card/CardDescription/CardDescriptionStyled.d.cts +2 -0
  1412. package/components/organisms/Card/CardDescription/CardDescriptionStyled.d.ts +1 -1
  1413. package/components/organisms/Card/CardDescription/CardDescriptionStyled.js +21 -23
  1414. package/components/organisms/Card/CardDescription/constants.cjs +1 -0
  1415. package/components/organisms/Card/CardDescription/constants.d.cts +6 -0
  1416. package/components/organisms/Card/CardDescription/constants.d.ts +1 -1
  1417. package/components/organisms/Card/CardDescription/constants.js +8 -9
  1418. package/components/organisms/Card/CardDescription/index.d.cts +1 -0
  1419. package/components/organisms/Card/CardDescription/index.d.ts +1 -1
  1420. package/components/organisms/Card/CardImage/CardImage.cjs +1 -0
  1421. package/components/organisms/Card/CardImage/CardImage.d.cts +2 -0
  1422. package/components/organisms/Card/CardImage/CardImage.d.ts +1 -1
  1423. package/components/organisms/Card/CardImage/CardImage.js +21 -24
  1424. package/components/organisms/Card/CardImage/CardImageStyled.cjs +1 -0
  1425. package/components/organisms/Card/CardImage/CardImageStyled.d.cts +2 -0
  1426. package/components/organisms/Card/CardImage/CardImageStyled.d.ts +1 -1
  1427. package/components/organisms/Card/CardImage/CardImageStyled.js +19 -22
  1428. package/components/organisms/Card/CardImage/constants.cjs +1 -0
  1429. package/components/organisms/Card/CardImage/constants.d.cts +1 -0
  1430. package/components/organisms/Card/CardImage/constants.js +4 -4
  1431. package/components/organisms/Card/CardImage/index.d.cts +1 -0
  1432. package/components/organisms/Card/CardImage/index.d.ts +1 -1
  1433. package/components/organisms/Card/CardPrice/CardPrice.cjs +1 -0
  1434. package/components/organisms/Card/CardPrice/CardPrice.d.cts +2 -0
  1435. package/components/organisms/Card/CardPrice/CardPrice.d.ts +1 -1
  1436. package/components/organisms/Card/CardPrice/CardPrice.js +21 -20
  1437. package/components/organisms/Card/CardPrice/CardPriceStyled.cjs +1 -0
  1438. package/components/organisms/Card/CardPrice/CardPriceStyled.d.cts +2 -0
  1439. package/components/organisms/Card/CardPrice/CardPriceStyled.d.ts +1 -1
  1440. package/components/organisms/Card/CardPrice/CardPriceStyled.js +19 -22
  1441. package/components/organisms/Card/CardPrice/constants.cjs +1 -0
  1442. package/components/organisms/Card/CardPrice/constants.d.cts +1 -0
  1443. package/components/organisms/Card/CardPrice/constants.js +4 -4
  1444. package/components/organisms/Card/CardPrice/index.d.cts +1 -0
  1445. package/components/organisms/Card/CardPrice/index.d.ts +1 -1
  1446. package/components/organisms/Card/CardRating/CardRating.cjs +1 -0
  1447. package/components/organisms/Card/CardRating/CardRating.d.cts +2 -0
  1448. package/components/organisms/Card/CardRating/CardRating.d.ts +1 -1
  1449. package/components/organisms/Card/CardRating/CardRating.js +27 -28
  1450. package/components/organisms/Card/CardRating/CardRatingStyled.cjs +1 -0
  1451. package/components/organisms/Card/CardRating/CardRatingStyled.d.cts +2 -0
  1452. package/components/organisms/Card/CardRating/CardRatingStyled.d.ts +1 -1
  1453. package/components/organisms/Card/CardRating/CardRatingStyled.js +19 -22
  1454. package/components/organisms/Card/CardRating/constants.cjs +1 -0
  1455. package/components/organisms/Card/CardRating/constants.d.cts +3 -0
  1456. package/components/organisms/Card/CardRating/constants.js +4 -6
  1457. package/components/organisms/Card/CardRating/index.d.cts +1 -0
  1458. package/components/organisms/Card/CardRating/index.d.ts +1 -1
  1459. package/components/organisms/Card/CardTitle/CardTitle.cjs +1 -0
  1460. package/components/organisms/Card/CardTitle/CardTitle.d.cts +4 -0
  1461. package/components/organisms/Card/CardTitle/CardTitle.d.ts +1 -1
  1462. package/components/organisms/Card/CardTitle/CardTitle.js +24 -23
  1463. package/components/organisms/Card/CardTitle/CardTitleStyled.cjs +1 -0
  1464. package/components/organisms/Card/CardTitle/CardTitleStyled.d.cts +2 -0
  1465. package/components/organisms/Card/CardTitle/CardTitleStyled.d.ts +1 -1
  1466. package/components/organisms/Card/CardTitle/CardTitleStyled.js +20 -23
  1467. package/components/organisms/Card/CardTitle/constants.cjs +1 -0
  1468. package/components/organisms/Card/CardTitle/constants.d.cts +6 -0
  1469. package/components/organisms/Card/CardTitle/constants.d.ts +1 -1
  1470. package/components/organisms/Card/CardTitle/constants.js +8 -9
  1471. package/components/organisms/Card/CardTitle/index.d.cts +1 -0
  1472. package/components/organisms/Card/CardTitle/index.d.ts +1 -1
  1473. package/components/organisms/Card/CardWishlist/CardWishlist.cjs +1 -0
  1474. package/components/organisms/Card/CardWishlist/CardWishlist.d.cts +2 -0
  1475. package/components/organisms/Card/CardWishlist/CardWishlist.d.ts +1 -1
  1476. package/components/organisms/Card/CardWishlist/CardWishlist.js +27 -28
  1477. package/components/organisms/Card/CardWishlist/CardWishlistStyled.cjs +1 -0
  1478. package/components/organisms/Card/CardWishlist/CardWishlistStyled.d.cts +2 -0
  1479. package/components/organisms/Card/CardWishlist/CardWishlistStyled.d.ts +1 -1
  1480. package/components/organisms/Card/CardWishlist/CardWishlistStyled.js +21 -23
  1481. package/components/organisms/Card/CardWishlist/constants.cjs +1 -0
  1482. package/components/organisms/Card/CardWishlist/constants.d.cts +1 -0
  1483. package/components/organisms/Card/CardWishlist/constants.js +4 -4
  1484. package/components/organisms/Card/CardWishlist/index.d.cts +1 -0
  1485. package/components/organisms/Card/CardWishlist/index.d.ts +1 -1
  1486. package/components/organisms/Card/constants.cjs +1 -0
  1487. package/components/organisms/Card/constants.d.cts +1 -0
  1488. package/components/organisms/Card/constants.js +4 -4
  1489. package/components/organisms/Card/index.d.cts +11 -0
  1490. package/components/organisms/Card/index.d.ts +11 -11
  1491. package/components/organisms/Carousel/Carousel.cjs +1 -0
  1492. package/components/organisms/Carousel/Carousel.d.cts +14 -0
  1493. package/components/organisms/Carousel/Carousel.d.ts +7 -5
  1494. package/components/organisms/Carousel/Carousel.js +279 -170
  1495. package/components/organisms/Carousel/Carousel.types.d.cts +36 -0
  1496. package/components/organisms/Carousel/Carousel.types.d.ts +3 -3
  1497. package/components/organisms/Carousel/CarouselStyled.cjs +1 -0
  1498. package/components/organisms/Carousel/CarouselStyled.d.cts +19 -0
  1499. package/components/organisms/Carousel/CarouselStyled.d.ts +5 -1
  1500. package/components/organisms/Carousel/CarouselStyled.js +140 -162
  1501. package/components/organisms/Carousel/constants.cjs +1 -0
  1502. package/components/organisms/Carousel/constants.d.cts +1 -0
  1503. package/components/organisms/Carousel/constants.js +4 -4
  1504. package/components/organisms/Carousel/index.d.cts +2 -0
  1505. package/components/organisms/Carousel/index.d.ts +2 -2
  1506. package/components/organisms/Chart/AreaChart.cjs +1 -0
  1507. package/components/organisms/Chart/AreaChart.d.cts +1 -0
  1508. package/components/organisms/Chart/AreaChart.d.ts +1 -1
  1509. package/components/organisms/Chart/AreaChart.js +44 -22
  1510. package/components/organisms/Chart/BarChart.cjs +1 -0
  1511. package/components/organisms/Chart/BarChart.d.cts +1 -0
  1512. package/components/organisms/Chart/BarChart.d.ts +1 -1
  1513. package/components/organisms/Chart/BarChart.js +44 -22
  1514. package/components/organisms/Chart/Chart.cjs +1 -0
  1515. package/components/organisms/Chart/Chart.d.cts +2 -0
  1516. package/components/organisms/Chart/Chart.d.ts +1 -1
  1517. package/components/organisms/Chart/Chart.js +59 -26
  1518. package/components/organisms/Chart/Chart.types.d.cts +148 -0
  1519. package/components/organisms/Chart/Chart.types.d.ts +2 -2
  1520. package/components/organisms/Chart/ChartBase.cjs +1 -0
  1521. package/components/organisms/Chart/ChartBase.d.cts +2 -0
  1522. package/components/organisms/Chart/ChartBase.d.ts +1 -1
  1523. package/components/organisms/Chart/ChartBase.js +248 -148
  1524. package/components/organisms/Chart/ChartCartesian.cjs +1 -0
  1525. package/components/organisms/Chart/ChartCartesian.d.cts +2 -0
  1526. package/components/organisms/Chart/ChartCartesian.d.ts +1 -1
  1527. package/components/organisms/Chart/ChartCartesian.js +433 -253
  1528. package/components/organisms/Chart/ChartLegend.cjs +1 -0
  1529. package/components/organisms/Chart/ChartLegend.d.cts +10 -0
  1530. package/components/organisms/Chart/ChartLegend.d.ts +2 -2
  1531. package/components/organisms/Chart/ChartLegend.js +73 -47
  1532. package/components/organisms/Chart/ChartPie.cjs +1 -0
  1533. package/components/organisms/Chart/ChartPie.d.cts +17 -0
  1534. package/components/organisms/Chart/ChartPie.d.ts +2 -2
  1535. package/components/organisms/Chart/ChartPie.js +181 -150
  1536. package/components/organisms/Chart/ChartStyled.cjs +1 -0
  1537. package/components/organisms/Chart/ChartStyled.d.cts +4 -0
  1538. package/components/organisms/Chart/ChartStyled.d.ts +1 -1
  1539. package/components/organisms/Chart/ChartStyled.js +41 -51
  1540. package/components/organisms/Chart/ChartTooltip.cjs +1 -0
  1541. package/components/organisms/Chart/ChartTooltip.d.cts +11 -0
  1542. package/components/organisms/Chart/ChartTooltip.d.ts +2 -2
  1543. package/components/organisms/Chart/ChartTooltip.js +71 -82
  1544. package/components/organisms/Chart/LineChart.cjs +1 -0
  1545. package/components/organisms/Chart/LineChart.d.cts +2 -0
  1546. package/components/organisms/Chart/LineChart.d.ts +1 -1
  1547. package/components/organisms/Chart/LineChart.js +44 -22
  1548. package/components/organisms/Chart/PieChart.cjs +1 -0
  1549. package/components/organisms/Chart/PieChart.d.cts +2 -0
  1550. package/components/organisms/Chart/PieChart.d.ts +1 -1
  1551. package/components/organisms/Chart/PieChart.js +31 -17
  1552. package/components/organisms/Chart/constants.cjs +1 -0
  1553. package/components/organisms/Chart/constants.d.cts +10 -0
  1554. package/components/organisms/Chart/constants.js +8 -12
  1555. package/components/organisms/Chart/index.d.cts +6 -0
  1556. package/components/organisms/Chart/index.d.ts +6 -6
  1557. package/components/organisms/Chart/useChartTheme.cjs +1 -0
  1558. package/components/organisms/Chart/useChartTheme.d.cts +10215 -0
  1559. package/components/organisms/Chart/useChartTheme.d.ts +1079 -64
  1560. package/components/organisms/Chart/useChartTheme.js +50 -98
  1561. package/components/organisms/ChatBubble/ChatBubble.cjs +1 -0
  1562. package/components/organisms/ChatBubble/ChatBubble.d.cts +5 -0
  1563. package/components/organisms/ChatBubble/ChatBubble.d.ts +3 -3
  1564. package/components/organisms/ChatBubble/ChatBubble.js +36 -30
  1565. package/components/organisms/ChatBubble/ChatBubble.types.d.cts +38 -0
  1566. package/components/organisms/ChatBubble/ChatBubble.types.d.ts +1 -1
  1567. package/components/organisms/ChatBubble/ChatBubbleStyled.cjs +1 -0
  1568. package/components/organisms/ChatBubble/ChatBubbleStyled.d.cts +4 -0
  1569. package/components/organisms/ChatBubble/ChatBubbleStyled.d.ts +1 -1
  1570. package/components/organisms/ChatBubble/ChatBubbleStyled.js +48 -64
  1571. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.cjs +1 -0
  1572. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.d.cts +2 -0
  1573. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.d.ts +1 -1
  1574. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.js +35 -27
  1575. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.cjs +1 -0
  1576. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.d.cts +2 -0
  1577. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.d.ts +1 -1
  1578. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.js +18 -20
  1579. package/components/organisms/ChatBubble/ChatImageGallery/constants.cjs +1 -0
  1580. package/components/organisms/ChatBubble/ChatImageGallery/constants.d.cts +1 -0
  1581. package/components/organisms/ChatBubble/ChatImageGallery/constants.js +4 -4
  1582. package/components/organisms/ChatBubble/ChatImageGallery/index.d.cts +1 -0
  1583. package/components/organisms/ChatBubble/ChatImageGallery/index.d.ts +1 -1
  1584. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.cjs +1 -0
  1585. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.d.cts +2 -0
  1586. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.d.ts +1 -1
  1587. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.js +52 -33
  1588. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.cjs +1 -0
  1589. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.d.cts +2 -0
  1590. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.d.ts +1 -1
  1591. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.js +18 -20
  1592. package/components/organisms/ChatBubble/ChatLinkPreview/constants.cjs +1 -0
  1593. package/components/organisms/ChatBubble/ChatLinkPreview/constants.d.cts +1 -0
  1594. package/components/organisms/ChatBubble/ChatLinkPreview/constants.js +4 -4
  1595. package/components/organisms/ChatBubble/ChatLinkPreview/index.d.cts +1 -0
  1596. package/components/organisms/ChatBubble/ChatLinkPreview/index.d.ts +1 -1
  1597. package/components/organisms/ChatBubble/constants.cjs +1 -0
  1598. package/components/organisms/ChatBubble/constants.d.cts +1 -0
  1599. package/components/organisms/ChatBubble/constants.js +4 -4
  1600. package/components/organisms/ChatBubble/index.d.cts +4 -0
  1601. package/components/organisms/ChatBubble/index.d.ts +4 -4
  1602. package/components/organisms/ContentCarousel/ContentCarousel.cjs +1 -0
  1603. package/components/organisms/ContentCarousel/ContentCarousel.d.cts +2 -0
  1604. package/components/organisms/ContentCarousel/ContentCarousel.d.ts +1 -1
  1605. package/components/organisms/ContentCarousel/ContentCarousel.js +168 -118
  1606. package/components/organisms/ContentCarousel/ContentCarousel.types.d.cts +20 -0
  1607. package/components/organisms/ContentCarousel/ContentCarousel.types.d.ts +1 -1
  1608. package/components/organisms/ContentCarousel/ContentCarouselStyled.cjs +1 -0
  1609. package/components/organisms/ContentCarousel/ContentCarouselStyled.d.cts +8 -0
  1610. package/components/organisms/ContentCarousel/ContentCarouselStyled.d.ts +1 -1
  1611. package/components/organisms/ContentCarousel/ContentCarouselStyled.js +31 -43
  1612. package/components/organisms/ContentCarousel/constants.cjs +1 -0
  1613. package/components/organisms/ContentCarousel/constants.d.cts +1 -0
  1614. package/components/organisms/ContentCarousel/constants.js +4 -4
  1615. package/components/organisms/ContentCarousel/index.d.cts +2 -0
  1616. package/components/organisms/ContentCarousel/index.d.ts +2 -2
  1617. package/components/organisms/DragAndDropFiles/DragAndDropFiles.cjs +1 -0
  1618. package/components/organisms/DragAndDropFiles/DragAndDropFiles.d.cts +4 -0
  1619. package/components/organisms/DragAndDropFiles/DragAndDropFiles.d.ts +1 -1
  1620. package/components/organisms/DragAndDropFiles/DragAndDropFiles.js +45 -46
  1621. package/components/organisms/DragAndDropFiles/DragAndDropFiles.types.d.cts +21 -0
  1622. package/components/organisms/DragAndDropFiles/DragAndDropFiles.types.d.ts +1 -1
  1623. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.cjs +1 -0
  1624. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.d.cts +2 -0
  1625. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.d.ts +1 -1
  1626. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.js +14 -17
  1627. package/components/organisms/DragAndDropFiles/constants.cjs +1 -0
  1628. package/components/organisms/DragAndDropFiles/constants.d.cts +1 -0
  1629. package/components/organisms/DragAndDropFiles/constants.js +4 -4
  1630. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/index.d.cts +1 -0
  1631. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/index.d.ts +1 -1
  1632. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.cjs +1 -0
  1633. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.d.cts +19 -0
  1634. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.js +65 -48
  1635. package/components/organisms/DragAndDropFiles/index.d.cts +2 -0
  1636. package/components/organisms/DragAndDropFiles/index.d.ts +2 -2
  1637. package/components/organisms/Header/Header.cjs +1 -0
  1638. package/components/organisms/Header/Header.d.cts +2 -0
  1639. package/components/organisms/Header/Header.d.ts +1 -1
  1640. package/components/organisms/Header/Header.js +129 -86
  1641. package/components/organisms/Header/Header.types.d.cts +31 -0
  1642. package/components/organisms/Header/Header.types.d.ts +2 -2
  1643. package/components/organisms/Header/HeaderStyled.cjs +1 -0
  1644. package/components/organisms/Header/HeaderStyled.d.cts +14 -0
  1645. package/components/organisms/Header/HeaderStyled.d.ts +1 -1
  1646. package/components/organisms/Header/HeaderStyled.js +93 -147
  1647. package/components/organisms/Header/constants.cjs +1 -0
  1648. package/components/organisms/Header/constants.d.cts +1 -0
  1649. package/components/organisms/Header/constants.js +4 -4
  1650. package/components/organisms/Header/index.d.cts +1 -0
  1651. package/components/organisms/Header/index.d.ts +1 -1
  1652. package/components/organisms/ImagePreview/ImagePreview.cjs +1 -0
  1653. package/components/organisms/ImagePreview/ImagePreview.d.cts +2 -0
  1654. package/components/organisms/ImagePreview/ImagePreview.d.ts +1 -1
  1655. package/components/organisms/ImagePreview/ImagePreview.js +114 -61
  1656. package/components/organisms/ImagePreview/ImagePreview.types.d.cts +23 -0
  1657. package/components/organisms/ImagePreview/ImagePreview.types.d.ts +1 -1
  1658. package/components/organisms/ImagePreview/ImagePreviewLightbox.cjs +1 -0
  1659. package/components/organisms/ImagePreview/ImagePreviewLightbox.d.cts +5 -0
  1660. package/components/organisms/ImagePreview/ImagePreviewLightbox.d.ts +1 -1
  1661. package/components/organisms/ImagePreview/ImagePreviewLightbox.js +93 -56
  1662. package/components/organisms/ImagePreview/ImagePreviewStyled.cjs +1 -0
  1663. package/components/organisms/ImagePreview/ImagePreviewStyled.d.cts +2 -0
  1664. package/components/organisms/ImagePreview/ImagePreviewStyled.d.ts +1 -1
  1665. package/components/organisms/ImagePreview/ImagePreviewStyled.js +18 -20
  1666. package/components/organisms/ImagePreview/constants.cjs +1 -0
  1667. package/components/organisms/ImagePreview/constants.d.cts +1 -0
  1668. package/components/organisms/ImagePreview/constants.js +4 -4
  1669. package/components/organisms/ImagePreview/index.d.cts +3 -0
  1670. package/components/organisms/ImagePreview/index.d.ts +3 -3
  1671. package/components/organisms/InputArea/InputArea.cjs +1 -0
  1672. package/components/organisms/InputArea/InputArea.d.cts +2 -0
  1673. package/components/organisms/InputArea/InputArea.d.ts +1 -1
  1674. package/components/organisms/InputArea/InputArea.js +145 -65
  1675. package/components/organisms/InputArea/InputArea.types.d.cts +41 -0
  1676. package/components/organisms/InputArea/InputArea.types.d.ts +21 -2
  1677. package/components/organisms/InputArea/InputAreaStyled.cjs +1 -0
  1678. package/components/organisms/InputArea/InputAreaStyled.d.cts +38 -0
  1679. package/components/organisms/InputArea/InputAreaStyled.d.ts +37 -1
  1680. package/components/organisms/InputArea/InputAreaStyled.js +70 -20
  1681. package/components/organisms/InputArea/constants.cjs +1 -0
  1682. package/components/organisms/InputArea/constants.d.cts +1 -0
  1683. package/components/organisms/InputArea/constants.js +4 -4
  1684. package/components/organisms/InputArea/index.d.cts +2 -0
  1685. package/components/organisms/InputArea/index.d.ts +2 -2
  1686. package/components/organisms/Modal/Modal.cjs +1 -0
  1687. package/components/organisms/Modal/Modal.d.cts +2 -0
  1688. package/components/organisms/Modal/Modal.d.ts +1 -1
  1689. package/components/organisms/Modal/Modal.js +84 -60
  1690. package/components/organisms/Modal/Modal.types.d.cts +19 -0
  1691. package/components/organisms/Modal/Modal.types.d.ts +1 -1
  1692. package/components/organisms/Modal/ModalStyled.cjs +1 -0
  1693. package/components/organisms/Modal/ModalStyled.d.cts +8 -0
  1694. package/components/organisms/Modal/ModalStyled.d.ts +1 -1
  1695. package/components/organisms/Modal/ModalStyled.js +79 -105
  1696. package/components/organisms/Modal/constants.cjs +1 -0
  1697. package/components/organisms/Modal/constants.d.cts +1 -0
  1698. package/components/organisms/Modal/constants.js +4 -4
  1699. package/components/organisms/Modal/index.d.cts +2 -0
  1700. package/components/organisms/Modal/index.d.ts +2 -2
  1701. package/components/organisms/Search/Search.cjs +1 -0
  1702. package/components/organisms/Search/Search.d.cts +3 -0
  1703. package/components/organisms/Search/Search.d.ts +2 -2
  1704. package/components/organisms/Search/Search.js +45 -37
  1705. package/components/organisms/Search/Search.types.d.cts +23 -0
  1706. package/components/organisms/Search/Search.types.d.ts +2 -9
  1707. package/components/organisms/Search/SearchStyled.cjs +1 -0
  1708. package/components/organisms/Search/SearchStyled.d.cts +2 -0
  1709. package/components/organisms/Search/SearchStyled.d.ts +1 -4
  1710. package/components/organisms/Search/SearchStyled.js +17 -20
  1711. package/components/organisms/Search/constants.cjs +1 -0
  1712. package/components/organisms/Search/constants.d.cts +4 -0
  1713. package/components/organisms/Search/constants.js +4 -7
  1714. package/components/organisms/Search/index.d.cts +2 -0
  1715. package/components/organisms/Search/index.d.ts +2 -2
  1716. package/components/organisms/SearchModal/SearchInput/SearchInput.cjs +1 -0
  1717. package/components/organisms/SearchModal/SearchInput/SearchInput.d.cts +5 -0
  1718. package/components/organisms/SearchModal/SearchInput/SearchInput.d.ts +1 -1
  1719. package/components/organisms/SearchModal/SearchInput/SearchInput.js +27 -24
  1720. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.cjs +1 -0
  1721. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.d.cts +4 -0
  1722. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.d.ts +2 -2
  1723. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.js +19 -26
  1724. package/components/organisms/SearchModal/SearchInput/constants.cjs +1 -0
  1725. package/components/organisms/SearchModal/SearchInput/constants.d.cts +3 -0
  1726. package/components/organisms/SearchModal/SearchInput/constants.js +4 -6
  1727. package/components/organisms/SearchModal/SearchInput/index.d.cts +1 -0
  1728. package/components/organisms/SearchModal/SearchInput/index.d.ts +1 -1
  1729. package/components/organisms/SearchModal/SearchItems/SearchItems.cjs +1 -0
  1730. package/components/organisms/SearchModal/SearchItems/SearchItems.d.cts +5 -0
  1731. package/components/organisms/SearchModal/SearchItems/SearchItems.d.ts +1 -1
  1732. package/components/organisms/SearchModal/SearchItems/SearchItems.js +62 -46
  1733. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.cjs +1 -0
  1734. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.d.cts +10 -0
  1735. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.d.ts +2 -2
  1736. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.js +59 -89
  1737. package/components/organisms/SearchModal/SearchItems/constants.cjs +1 -0
  1738. package/components/organisms/SearchModal/SearchItems/constants.d.cts +7 -0
  1739. package/components/organisms/SearchModal/SearchItems/constants.js +4 -10
  1740. package/components/organisms/SearchModal/SearchItems/index.d.cts +1 -0
  1741. package/components/organisms/SearchModal/SearchItems/index.d.ts +1 -1
  1742. package/components/organisms/SearchModal/SearchItems/utils.cjs +1 -0
  1743. package/components/organisms/SearchModal/SearchItems/utils.d.cts +2 -0
  1744. package/components/organisms/SearchModal/SearchItems/utils.js +9 -6
  1745. package/components/organisms/SearchModal/SearchLoader/SearchLoader.cjs +1 -0
  1746. package/components/organisms/SearchModal/SearchLoader/SearchLoader.d.cts +5 -0
  1747. package/components/organisms/SearchModal/SearchLoader/SearchLoader.d.ts +1 -1
  1748. package/components/organisms/SearchModal/SearchLoader/SearchLoader.js +16 -18
  1749. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.cjs +1 -0
  1750. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.d.cts +3 -0
  1751. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.d.ts +1 -1
  1752. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.js +12 -15
  1753. package/components/organisms/SearchModal/SearchLoader/constants.cjs +1 -0
  1754. package/components/organisms/SearchModal/SearchLoader/constants.d.cts +1 -0
  1755. package/components/organisms/SearchModal/SearchLoader/constants.js +4 -4
  1756. package/components/organisms/SearchModal/SearchLoader/index.d.cts +1 -0
  1757. package/components/organisms/SearchModal/SearchLoader/index.d.ts +1 -1
  1758. package/components/organisms/SearchModal/SearchModal.cjs +1 -0
  1759. package/components/organisms/SearchModal/SearchModal.d.cts +4 -0
  1760. package/components/organisms/SearchModal/SearchModal.d.ts +1 -1
  1761. package/components/organisms/SearchModal/SearchModal.js +68 -57
  1762. package/components/organisms/SearchModal/SearchModal.types.d.cts +55 -0
  1763. package/components/organisms/SearchModal/SearchModal.types.d.ts +2 -2
  1764. package/components/organisms/SearchModal/SearchModalStyled.cjs +1 -0
  1765. package/components/organisms/SearchModal/SearchModalStyled.d.cts +3 -0
  1766. package/components/organisms/SearchModal/SearchModalStyled.d.ts +1 -1
  1767. package/components/organisms/SearchModal/SearchModalStyled.js +29 -34
  1768. package/components/organisms/SearchModal/constants.cjs +1 -0
  1769. package/components/organisms/SearchModal/constants.d.cts +5 -0
  1770. package/components/organisms/SearchModal/constants.js +4 -8
  1771. package/components/organisms/SearchModal/index.d.cts +2 -0
  1772. package/components/organisms/SearchModal/index.d.ts +2 -2
  1773. package/components/organisms/Sidebar/Sidebar.cjs +1 -0
  1774. package/components/organisms/Sidebar/Sidebar.d.cts +2 -0
  1775. package/components/organisms/Sidebar/Sidebar.d.ts +1 -1
  1776. package/components/organisms/Sidebar/Sidebar.js +60 -44
  1777. package/components/organisms/Sidebar/Sidebar.types.d.cts +42 -0
  1778. package/components/organisms/Sidebar/Sidebar.types.d.ts +1 -1
  1779. package/components/organisms/Sidebar/SidebarItem.cjs +1 -0
  1780. package/components/organisms/Sidebar/SidebarItem.d.cts +2 -0
  1781. package/components/organisms/Sidebar/SidebarItem.d.ts +1 -1
  1782. package/components/organisms/Sidebar/SidebarItem.js +65 -46
  1783. package/components/organisms/Sidebar/SidebarStyled.cjs +1 -0
  1784. package/components/organisms/Sidebar/SidebarStyled.d.cts +16 -0
  1785. package/components/organisms/Sidebar/SidebarStyled.d.ts +1 -1
  1786. package/components/organisms/Sidebar/SidebarStyled.js +67 -89
  1787. package/components/organisms/Sidebar/constants.cjs +1 -0
  1788. package/components/organisms/Sidebar/constants.d.cts +1 -0
  1789. package/components/organisms/Sidebar/constants.js +4 -4
  1790. package/components/organisms/Sidebar/index.d.cts +2 -0
  1791. package/components/organisms/Sidebar/index.d.ts +2 -2
  1792. package/components/organisms/index.d.cts +13 -0
  1793. package/components/organisms/index.d.ts +13 -13
  1794. package/components/widget/DragAndDrop/DragAndDrop.cjs +1 -0
  1795. package/components/widget/DragAndDrop/DragAndDrop.d.cts +4 -0
  1796. package/components/widget/DragAndDrop/DragAndDrop.d.ts +1 -1
  1797. package/components/widget/DragAndDrop/DragAndDrop.js +110 -72
  1798. package/components/widget/DragAndDrop/DragAndDrop.types.d.cts +35 -0
  1799. package/components/widget/DragAndDrop/DragAndDrop.types.d.ts +2 -2
  1800. package/components/widget/DragAndDrop/DragAndDropStyled.cjs +1 -0
  1801. package/components/widget/DragAndDrop/DragAndDropStyled.d.cts +6 -0
  1802. package/components/widget/DragAndDrop/DragAndDropStyled.d.ts +1 -1
  1803. package/components/widget/DragAndDrop/DragAndDropStyled.js +50 -66
  1804. package/components/widget/DragAndDrop/constants.cjs +1 -0
  1805. package/components/widget/DragAndDrop/constants.d.cts +1 -0
  1806. package/components/widget/DragAndDrop/constants.js +4 -4
  1807. package/components/widget/DragAndDrop/index.d.cts +2 -0
  1808. package/components/widget/DragAndDrop/index.d.ts +2 -2
  1809. package/components/widget/DragAndDrop/utils/index.d.cts +1 -0
  1810. package/components/widget/DragAndDrop/utils/index.d.ts +1 -1
  1811. package/components/widget/DragAndDrop/utils/validators.cjs +1 -0
  1812. package/components/widget/DragAndDrop/utils/validators.d.cts +5 -0
  1813. package/components/widget/DragAndDrop/utils/validators.js +15 -16
  1814. package/components/widget/index.d.cts +1 -0
  1815. package/components/widget/index.d.ts +1 -1
  1816. package/constants/index.d.cts +2 -0
  1817. package/constants/index.d.ts +2 -2
  1818. package/constants/keyboard.cjs +1 -0
  1819. package/constants/keyboard.d.cts +8 -0
  1820. package/constants/keyboard.js +10 -10
  1821. package/constants/timers.cjs +1 -0
  1822. package/constants/timers.d.cts +2 -0
  1823. package/constants/timers.js +4 -5
  1824. package/hooks/index.d.cts +7 -0
  1825. package/hooks/index.d.ts +7 -7
  1826. package/hooks/useAutoFocus/index.d.cts +1 -0
  1827. package/hooks/useAutoFocus/index.d.ts +1 -1
  1828. package/hooks/useAutoFocus/useAutoFocus.cjs +1 -0
  1829. package/hooks/useAutoFocus/useAutoFocus.d.cts +2 -0
  1830. package/hooks/useAutoFocus/useAutoFocus.js +8 -9
  1831. package/hooks/useCarousel/index.d.cts +1 -0
  1832. package/hooks/useCarousel/index.d.ts +1 -1
  1833. package/hooks/useCarousel/useCarousel.cjs +1 -0
  1834. package/hooks/useCarousel/useCarousel.d.cts +14 -0
  1835. package/hooks/useCarousel/useCarousel.d.ts +1 -1
  1836. package/hooks/useCarousel/useCarousel.js +67 -73
  1837. package/hooks/useClickOutside/index.d.cts +1 -0
  1838. package/hooks/useClickOutside/index.d.ts +1 -1
  1839. package/hooks/useClickOutside/useClickOutside.cjs +1 -0
  1840. package/hooks/useClickOutside/useClickOutside.d.cts +1 -0
  1841. package/hooks/useClickOutside/useClickOutside.js +14 -14
  1842. package/hooks/useKeyControls/index.d.cts +1 -0
  1843. package/hooks/useKeyControls/index.d.ts +1 -1
  1844. package/hooks/useKeyControls/useKeyControls.cjs +1 -0
  1845. package/hooks/useKeyControls/useKeyControls.d.cts +2 -0
  1846. package/hooks/useKeyControls/useKeyControls.d.ts +1 -1
  1847. package/hooks/useKeyControls/useKeyControls.js +14 -17
  1848. package/hooks/useLogger/NoOpLogger.cjs +1 -0
  1849. package/hooks/useLogger/NoOpLogger.d.cts +11 -0
  1850. package/hooks/useLogger/NoOpLogger.d.ts +1 -1
  1851. package/hooks/useLogger/NoOpLogger.js +8 -15
  1852. package/hooks/useLogger/index.d.cts +2 -0
  1853. package/hooks/useLogger/index.d.ts +2 -2
  1854. package/hooks/useLogger/useLogger.cjs +1 -0
  1855. package/hooks/useLogger/useLogger.d.cts +4 -0
  1856. package/hooks/useLogger/useLogger.d.ts +1 -1
  1857. package/hooks/useLogger/useLogger.js +22 -26
  1858. package/hooks/useLogger/useLogger.types.d.cts +30 -0
  1859. package/hooks/useMediaQuery/index.d.cts +1 -0
  1860. package/hooks/useMediaQuery/index.d.ts +1 -1
  1861. package/hooks/useMediaQuery/useMediaQuery.cjs +1 -0
  1862. package/hooks/useMediaQuery/useMediaQuery.d.cts +1 -0
  1863. package/hooks/useMediaQuery/useMediaQuery.js +16 -23
  1864. package/hooks/useTheme/NoOpTheme.cjs +1 -0
  1865. package/hooks/useTheme/NoOpTheme.d.cts +5870 -0
  1866. package/hooks/useTheme/NoOpTheme.d.ts +258 -86
  1867. package/hooks/useTheme/NoOpTheme.js +9 -14
  1868. package/hooks/useTheme/index.d.cts +4 -0
  1869. package/hooks/useTheme/index.d.ts +4 -4
  1870. package/hooks/useTheme/useTheme.cjs +1 -0
  1871. package/hooks/useTheme/useTheme.d.cts +3 -0
  1872. package/hooks/useTheme/useTheme.d.ts +1 -1
  1873. package/hooks/useTheme/useTheme.js +59 -66
  1874. package/hooks/useTheme/useTheme.types.d.cts +16 -0
  1875. package/hooks/useTheme/useTheme.types.d.ts +1 -1
  1876. package/hooks/useTheme/utils.cjs +1 -0
  1877. package/hooks/useTheme/utils.d.cts +7 -0
  1878. package/hooks/useTheme/utils.d.ts +1 -1
  1879. package/hooks/useTheme/utils.js +8 -8
  1880. package/index.cjs +1 -0
  1881. package/index.d.cts +5 -0
  1882. package/index.d.ts +5 -5
  1883. package/index.js +225 -462
  1884. package/llms.txt +136 -27
  1885. package/package.json +41 -13
  1886. package/styles.css +1 -1
  1887. package/tokens/accordion.cjs +1 -0
  1888. package/tokens/accordion.d.cts +88 -0
  1889. package/tokens/accordion.js +79 -91
  1890. package/tokens/animations.cjs +1 -0
  1891. package/tokens/animations.d.cts +70 -0
  1892. package/tokens/animations.js +52 -72
  1893. package/tokens/attachmentFile.cjs +1 -0
  1894. package/tokens/attachmentFile.d.cts +67 -0
  1895. package/tokens/attachmentFile.d.ts +67 -0
  1896. package/tokens/attachmentFile.js +65 -0
  1897. package/tokens/avatar.cjs +1 -0
  1898. package/tokens/avatar.d.cts +168 -0
  1899. package/tokens/avatar.d.ts +8 -9
  1900. package/tokens/avatar.js +180 -200
  1901. package/tokens/badge.cjs +1 -0
  1902. package/tokens/badge.d.cts +244 -0
  1903. package/tokens/badge.js +200 -246
  1904. package/tokens/borders.cjs +1 -0
  1905. package/tokens/borders.d.cts +9 -0
  1906. package/tokens/borders.js +11 -15
  1907. package/tokens/box.cjs +1 -0
  1908. package/tokens/box.d.cts +46 -0
  1909. package/tokens/box.js +32 -48
  1910. package/tokens/breadcrumbs.cjs +1 -0
  1911. package/tokens/breadcrumbs.d.cts +27 -0
  1912. package/tokens/breadcrumbs.js +27 -33
  1913. package/tokens/breakpoints.cjs +1 -0
  1914. package/tokens/breakpoints.d.cts +8 -0
  1915. package/tokens/breakpoints.js +11 -11
  1916. package/tokens/button.cjs +1 -0
  1917. package/tokens/button.d.cts +141 -0
  1918. package/tokens/button.d.ts +7 -0
  1919. package/tokens/button.js +112 -139
  1920. package/tokens/card.cjs +1 -0
  1921. package/tokens/card.d.cts +198 -0
  1922. package/tokens/card.js +186 -196
  1923. package/tokens/carousel.cjs +1 -0
  1924. package/tokens/carousel.d.cts +305 -0
  1925. package/tokens/carousel.d.ts +34 -1
  1926. package/tokens/carousel.js +283 -280
  1927. package/tokens/chart.cjs +1 -0
  1928. package/tokens/chart.d.cts +172 -0
  1929. package/tokens/chart.d.ts +6 -0
  1930. package/tokens/chart.js +174 -190
  1931. package/tokens/chat.cjs +1 -0
  1932. package/tokens/chat.d.cts +156 -0
  1933. package/tokens/chat.js +144 -160
  1934. package/tokens/chatbubble.cjs +1 -0
  1935. package/tokens/chatbubble.d.cts +163 -0
  1936. package/tokens/chatbubble.d.ts +1 -1
  1937. package/tokens/chatbubble.js +156 -174
  1938. package/tokens/checkbox.cjs +1 -0
  1939. package/tokens/checkbox.d.cts +80 -0
  1940. package/tokens/checkbox.js +79 -83
  1941. package/tokens/colors.cjs +1 -0
  1942. package/tokens/colors.d.cts +285 -0
  1943. package/tokens/colors.js +285 -287
  1944. package/tokens/column.cjs +1 -0
  1945. package/tokens/column.d.cts +6 -0
  1946. package/tokens/column.js +7 -9
  1947. package/tokens/constants.cjs +1 -0
  1948. package/tokens/constants.d.cts +1 -0
  1949. package/tokens/constants.js +4 -4
  1950. package/tokens/counter.cjs +1 -0
  1951. package/tokens/counter.d.cts +38 -0
  1952. package/tokens/counter.d.ts +1 -1
  1953. package/tokens/counter.js +44 -44
  1954. package/tokens/cursors.cjs +1 -0
  1955. package/tokens/cursors.d.cts +17 -0
  1956. package/tokens/cursors.js +19 -19
  1957. package/tokens/defaultTheme.cjs +1 -0
  1958. package/tokens/defaultTheme.d.cts +5861 -0
  1959. package/tokens/defaultTheme.d.ts +257 -85
  1960. package/tokens/defaultTheme.js +147 -145
  1961. package/tokens/display.cjs +1 -0
  1962. package/tokens/display.d.cts +16 -0
  1963. package/tokens/display.js +17 -18
  1964. package/tokens/draganddrop.cjs +1 -0
  1965. package/tokens/draganddrop.d.cts +60 -0
  1966. package/tokens/draganddrop.js +68 -82
  1967. package/tokens/draganddropfiles.cjs +1 -0
  1968. package/tokens/draganddropfiles.d.cts +3 -0
  1969. package/tokens/draganddropfiles.js +4 -6
  1970. package/tokens/flexContainer.cjs +1 -0
  1971. package/tokens/flexContainer.d.cts +9 -0
  1972. package/tokens/flexContainer.d.ts +1 -1
  1973. package/tokens/flexContainer.js +11 -13
  1974. package/tokens/font.cjs +1 -0
  1975. package/tokens/font.d.cts +54 -0
  1976. package/tokens/font.js +54 -58
  1977. package/tokens/form.cjs +1 -0
  1978. package/tokens/form.d.cts +3 -0
  1979. package/tokens/form.js +4 -6
  1980. package/tokens/header.cjs +1 -0
  1981. package/tokens/header.d.cts +107 -0
  1982. package/tokens/header.js +102 -118
  1983. package/tokens/icon.cjs +1 -0
  1984. package/tokens/icon.d.cts +28 -0
  1985. package/tokens/icon.js +30 -32
  1986. package/tokens/image.cjs +1 -0
  1987. package/tokens/image.d.cts +31 -0
  1988. package/tokens/image.d.ts +1 -1
  1989. package/tokens/image.js +35 -35
  1990. package/tokens/imagePreview.cjs +1 -0
  1991. package/tokens/imagePreview.d.cts +177 -0
  1992. package/tokens/imagePreview.js +164 -180
  1993. package/tokens/index.cjs +1 -0
  1994. package/tokens/index.d.cts +5061 -0
  1995. package/tokens/index.d.ts +309 -142
  1996. package/tokens/index.js +117 -167
  1997. package/tokens/inlineNotification.cjs +1 -0
  1998. package/tokens/inlineNotification.d.cts +62 -0
  1999. package/tokens/inlineNotification.js +69 -73
  2000. package/tokens/input.cjs +1 -0
  2001. package/tokens/input.d.cts +219 -0
  2002. package/tokens/input.js +167 -203
  2003. package/tokens/inputArea.cjs +1 -0
  2004. package/tokens/inputArea.d.cts +154 -0
  2005. package/tokens/inputArea.d.ts +96 -46
  2006. package/tokens/inputArea.js +137 -107
  2007. package/tokens/inputfile.cjs +1 -0
  2008. package/tokens/inputfile.d.cts +14 -0
  2009. package/tokens/inputfile.js +17 -17
  2010. package/tokens/label.cjs +1 -0
  2011. package/tokens/label.d.cts +6 -0
  2012. package/tokens/label.js +8 -10
  2013. package/tokens/link.cjs +1 -0
  2014. package/tokens/link.d.cts +116 -0
  2015. package/tokens/link.d.ts +1 -1
  2016. package/tokens/link.js +101 -121
  2017. package/tokens/list.cjs +1 -0
  2018. package/tokens/list.d.cts +97 -0
  2019. package/tokens/list.js +75 -84
  2020. package/tokens/loader.cjs +1 -0
  2021. package/tokens/loader.d.cts +147 -0
  2022. package/tokens/loader.d.ts +9 -0
  2023. package/tokens/loader.js +124 -143
  2024. package/tokens/menu.cjs +1 -0
  2025. package/tokens/menu.d.cts +20 -0
  2026. package/tokens/menu.js +19 -23
  2027. package/tokens/modal.cjs +1 -0
  2028. package/tokens/modal.d.cts +92 -0
  2029. package/tokens/modal.js +88 -104
  2030. package/tokens/price.cjs +1 -0
  2031. package/tokens/price.d.cts +47 -0
  2032. package/tokens/price.js +52 -52
  2033. package/tokens/progressbar.cjs +1 -0
  2034. package/tokens/progressbar.d.cts +51 -0
  2035. package/tokens/progressbar.js +46 -56
  2036. package/tokens/radiogroup.cjs +9 -0
  2037. package/tokens/radiogroup.d.cts +92 -0
  2038. package/tokens/radiogroup.d.ts +1 -1
  2039. package/tokens/radiogroup.js +95 -117
  2040. package/tokens/radius.cjs +1 -0
  2041. package/tokens/radius.d.cts +10 -0
  2042. package/tokens/radius.js +12 -12
  2043. package/tokens/rating.cjs +1 -0
  2044. package/tokens/rating.d.cts +73 -0
  2045. package/tokens/rating.js +67 -79
  2046. package/tokens/reset.cjs +1 -0
  2047. package/tokens/reset.d.cts +1 -0
  2048. package/tokens/reset.js +4 -4
  2049. package/tokens/row.cjs +1 -0
  2050. package/tokens/row.d.cts +5 -0
  2051. package/tokens/row.js +4 -8
  2052. package/tokens/scroll.cjs +1 -0
  2053. package/tokens/scroll.d.cts +108 -0
  2054. package/tokens/scroll.js +100 -112
  2055. package/tokens/search.cjs +1 -0
  2056. package/tokens/search.d.cts +39 -0
  2057. package/tokens/search.js +37 -43
  2058. package/tokens/searchModal.cjs +1 -0
  2059. package/tokens/searchModal.d.cts +167 -0
  2060. package/tokens/searchModal.d.ts +1 -1
  2061. package/tokens/searchModal.js +178 -200
  2062. package/tokens/select.cjs +1 -0
  2063. package/tokens/select.d.cts +125 -0
  2064. package/tokens/select.d.ts +1 -1
  2065. package/tokens/select.js +122 -153
  2066. package/tokens/separator.cjs +1 -0
  2067. package/tokens/separator.d.cts +60 -0
  2068. package/tokens/separator.js +59 -63
  2069. package/tokens/shadow.cjs +1 -0
  2070. package/tokens/shadow.d.cts +20 -0
  2071. package/tokens/shadow.d.ts +0 -1
  2072. package/tokens/shadow.js +17 -22
  2073. package/tokens/sidebar.cjs +1 -0
  2074. package/tokens/sidebar.d.cts +123 -0
  2075. package/tokens/sidebar.js +102 -126
  2076. package/tokens/skeleton.cjs +1 -0
  2077. package/tokens/skeleton.d.cts +68 -0
  2078. package/tokens/skeleton.js +60 -74
  2079. package/tokens/slider.cjs +1 -0
  2080. package/tokens/slider.d.cts +58 -0
  2081. package/tokens/slider.js +43 -45
  2082. package/tokens/sliderDots.cjs +1 -0
  2083. package/tokens/sliderDots.d.cts +33 -0
  2084. package/tokens/sliderDots.js +30 -36
  2085. package/tokens/snackbar.cjs +1 -0
  2086. package/tokens/snackbar.d.cts +173 -0
  2087. package/tokens/snackbar.js +164 -178
  2088. package/tokens/spacing.cjs +1 -0
  2089. package/tokens/spacing.d.cts +32 -0
  2090. package/tokens/spacing.js +32 -35
  2091. package/tokens/stepper.cjs +1 -0
  2092. package/tokens/stepper.d.cts +128 -0
  2093. package/tokens/stepper.js +130 -138
  2094. package/tokens/switch.cjs +1 -0
  2095. package/tokens/switch.d.cts +78 -0
  2096. package/tokens/switch.js +67 -81
  2097. package/tokens/table.cjs +1 -0
  2098. package/tokens/table.d.cts +145 -0
  2099. package/tokens/table.js +126 -148
  2100. package/tokens/tabs.cjs +1 -0
  2101. package/tokens/tabs.d.cts +90 -0
  2102. package/tokens/tabs.js +76 -102
  2103. package/tokens/textarea.cjs +1 -0
  2104. package/tokens/textarea.d.cts +96 -0
  2105. package/tokens/textarea.js +78 -100
  2106. package/tokens/toggle.cjs +1 -0
  2107. package/tokens/toggle.d.cts +12 -0
  2108. package/tokens/toggle.js +17 -19
  2109. package/tokens/tooltip.cjs +1 -0
  2110. package/tokens/tooltip.d.cts +68 -0
  2111. package/tokens/tooltip.js +68 -71
  2112. package/tokens/truncate.cjs +1 -0
  2113. package/tokens/truncate.d.cts +9 -0
  2114. package/tokens/truncate.js +10 -12
  2115. package/tokens/types/index.types.cjs +1 -0
  2116. package/tokens/types/index.types.d.cts +14 -0
  2117. package/tokens/types/index.types.d.ts +1 -1
  2118. package/tokens/types/index.types.js +6 -4
  2119. package/tokens/typography.cjs +1 -0
  2120. package/tokens/typography.d.cts +144 -0
  2121. package/tokens/typography.js +121 -147
  2122. package/tokens/utils.cjs +1 -0
  2123. package/tokens/utils.d.cts +50 -0
  2124. package/tokens/utils.d.ts +5 -8
  2125. package/tokens/utils.js +67 -102
  2126. package/tokens/values.cjs +1 -0
  2127. package/tokens/values.d.cts +94 -0
  2128. package/tokens/values.js +72 -98
  2129. package/tokens/wrapper.cjs +1 -0
  2130. package/tokens/wrapper.d.cts +29 -0
  2131. package/tokens/wrapper.js +30 -32
  2132. package/tokens/zIndex.cjs +1 -0
  2133. package/tokens/zIndex.d.cts +9 -0
  2134. package/tokens/zIndex.js +11 -11
  2135. package/types/accesability.cjs +1 -0
  2136. package/types/accesability.d.cts +5 -0
  2137. package/types/accesability.js +6 -4
  2138. package/types/button.cjs +1 -0
  2139. package/types/button.d.cts +20 -0
  2140. package/types/button.js +10 -6
  2141. package/types/card.cjs +1 -0
  2142. package/types/card.d.cts +8 -0
  2143. package/types/card.js +8 -5
  2144. package/types/carousel.cjs +1 -0
  2145. package/types/carousel.d.cts +23 -0
  2146. package/types/carousel.d.ts +1 -1
  2147. package/types/carousel.js +10 -6
  2148. package/types/common.cjs +1 -0
  2149. package/types/common.d.cts +12 -0
  2150. package/types/common.js +8 -5
  2151. package/types/cursors.cjs +1 -0
  2152. package/types/cursors.d.cts +14 -0
  2153. package/types/cursors.js +6 -4
  2154. package/types/index.d.cts +19 -0
  2155. package/types/index.d.ts +19 -19
  2156. package/types/input.cjs +1 -0
  2157. package/types/input.d.cts +26 -0
  2158. package/types/input.js +8 -5
  2159. package/types/keys.d.cts +8 -0
  2160. package/types/layout.cjs +1 -0
  2161. package/types/layout.d.cts +8 -0
  2162. package/types/layout.js +6 -4
  2163. package/types/link.cjs +1 -0
  2164. package/types/link.d.cts +18 -0
  2165. package/types/link.js +8 -5
  2166. package/types/list.cjs +1 -0
  2167. package/types/list.d.cts +6 -0
  2168. package/types/list.js +6 -4
  2169. package/types/misc.d.cts +14 -0
  2170. package/types/misc.d.ts +0 -3
  2171. package/types/separator.cjs +1 -0
  2172. package/types/separator.d.cts +10 -0
  2173. package/types/separator.js +8 -5
  2174. package/types/skeleton.cjs +1 -0
  2175. package/types/skeleton.d.cts +5 -0
  2176. package/types/skeleton.js +6 -4
  2177. package/types/snackbar.cjs +1 -0
  2178. package/types/snackbar.d.cts +14 -0
  2179. package/types/snackbar.js +8 -5
  2180. package/types/stepper.cjs +1 -0
  2181. package/types/stepper.d.cts +9 -0
  2182. package/types/stepper.js +8 -5
  2183. package/types/styles.d.cts +4 -0
  2184. package/types/typography.cjs +1 -0
  2185. package/types/typography.d.cts +48 -0
  2186. package/types/typography.js +10 -6
  2187. package/types/wrapper.cjs +1 -0
  2188. package/types/wrapper.d.cts +5 -0
  2189. package/types/wrapper.js +6 -4
  2190. package/utils/a2ui/constants.cjs +1 -0
  2191. package/utils/a2ui/constants.d.cts +7 -0
  2192. package/utils/a2ui/constants.d.ts +7 -0
  2193. package/utils/a2ui/constants.js +16 -0
  2194. package/utils/a2ui/contexts.cjs +1 -0
  2195. package/utils/a2ui/contexts.d.cts +1 -0
  2196. package/utils/a2ui/contexts.d.ts +1 -0
  2197. package/utils/a2ui/contexts.js +5 -0
  2198. package/utils/a2ui/helpers/attributes.cjs +1 -0
  2199. package/utils/a2ui/helpers/attributes.d.cts +11 -0
  2200. package/utils/a2ui/helpers/attributes.d.ts +11 -0
  2201. package/utils/a2ui/helpers/attributes.js +58 -0
  2202. package/utils/a2ui/helpers/index.d.cts +4 -0
  2203. package/utils/a2ui/helpers/index.d.ts +4 -0
  2204. package/utils/a2ui/helpers/misc.cjs +1 -0
  2205. package/utils/a2ui/helpers/misc.d.cts +19 -0
  2206. package/utils/a2ui/helpers/misc.d.ts +19 -0
  2207. package/utils/a2ui/helpers/misc.js +80 -0
  2208. package/utils/a2ui/helpers/options.cjs +1 -0
  2209. package/utils/a2ui/helpers/options.d.cts +48 -0
  2210. package/utils/a2ui/helpers/options.d.ts +48 -0
  2211. package/utils/a2ui/helpers/options.js +66 -0
  2212. package/utils/a2ui/helpers/styling.cjs +1 -0
  2213. package/utils/a2ui/helpers/styling.d.cts +7 -0
  2214. package/utils/a2ui/helpers/styling.d.ts +7 -0
  2215. package/utils/a2ui/helpers/styling.js +28 -0
  2216. package/utils/a2ui/index.d.cts +2 -0
  2217. package/utils/a2ui/index.d.ts +2 -0
  2218. package/utils/a2ui/render.cjs +1 -0
  2219. package/utils/a2ui/render.d.cts +5 -0
  2220. package/utils/a2ui/render.d.ts +5 -0
  2221. package/utils/a2ui/render.js +92 -0
  2222. package/utils/a2ui/renderers/accordion.cjs +1 -0
  2223. package/utils/a2ui/renderers/accordion.d.cts +8 -0
  2224. package/utils/a2ui/renderers/accordion.d.ts +8 -0
  2225. package/utils/a2ui/renderers/accordion.js +39 -0
  2226. package/utils/a2ui/renderers/attachment-file.cjs +1 -0
  2227. package/utils/a2ui/renderers/attachment-file.d.cts +6 -0
  2228. package/utils/a2ui/renderers/attachment-file.d.ts +6 -0
  2229. package/utils/a2ui/renderers/attachment-file.js +28 -0
  2230. package/utils/a2ui/renderers/avatar.cjs +1 -0
  2231. package/utils/a2ui/renderers/avatar.d.cts +10 -0
  2232. package/utils/a2ui/renderers/avatar.d.ts +10 -0
  2233. package/utils/a2ui/renderers/avatar.js +76 -0
  2234. package/utils/a2ui/renderers/badge.cjs +1 -0
  2235. package/utils/a2ui/renderers/badge.d.cts +4 -0
  2236. package/utils/a2ui/renderers/badge.d.ts +4 -0
  2237. package/utils/a2ui/renderers/badge.js +21 -0
  2238. package/utils/a2ui/renderers/box.cjs +1 -0
  2239. package/utils/a2ui/renderers/box.d.cts +5 -0
  2240. package/utils/a2ui/renderers/box.d.ts +5 -0
  2241. package/utils/a2ui/renderers/box.js +22 -0
  2242. package/utils/a2ui/renderers/breadcrumbs.cjs +1 -0
  2243. package/utils/a2ui/renderers/breadcrumbs.d.cts +4 -0
  2244. package/utils/a2ui/renderers/breadcrumbs.d.ts +4 -0
  2245. package/utils/a2ui/renderers/breadcrumbs.js +31 -0
  2246. package/utils/a2ui/renderers/button.cjs +1 -0
  2247. package/utils/a2ui/renderers/button.d.cts +5 -0
  2248. package/utils/a2ui/renderers/button.d.ts +5 -0
  2249. package/utils/a2ui/renderers/button.js +40 -0
  2250. package/utils/a2ui/renderers/card.cjs +1 -0
  2251. package/utils/a2ui/renderers/card.d.cts +14 -0
  2252. package/utils/a2ui/renderers/card.d.ts +14 -0
  2253. package/utils/a2ui/renderers/card.js +105 -0
  2254. package/utils/a2ui/renderers/carousel.cjs +1 -0
  2255. package/utils/a2ui/renderers/carousel.d.cts +6 -0
  2256. package/utils/a2ui/renderers/carousel.d.ts +6 -0
  2257. package/utils/a2ui/renderers/carousel.js +72 -0
  2258. package/utils/a2ui/renderers/chart.cjs +1 -0
  2259. package/utils/a2ui/renderers/chart.d.cts +4 -0
  2260. package/utils/a2ui/renderers/chart.d.ts +4 -0
  2261. package/utils/a2ui/renderers/chart.js +168 -0
  2262. package/utils/a2ui/renderers/chat.cjs +1 -0
  2263. package/utils/a2ui/renderers/chat.d.cts +7 -0
  2264. package/utils/a2ui/renderers/chat.d.ts +7 -0
  2265. package/utils/a2ui/renderers/chat.js +54 -0
  2266. package/utils/a2ui/renderers/checkbox.cjs +1 -0
  2267. package/utils/a2ui/renderers/checkbox.d.cts +11 -0
  2268. package/utils/a2ui/renderers/checkbox.d.ts +11 -0
  2269. package/utils/a2ui/renderers/checkbox.js +43 -0
  2270. package/utils/a2ui/renderers/content-carousel.cjs +1 -0
  2271. package/utils/a2ui/renderers/content-carousel.d.cts +5 -0
  2272. package/utils/a2ui/renderers/content-carousel.d.ts +5 -0
  2273. package/utils/a2ui/renderers/content-carousel.js +43 -0
  2274. package/utils/a2ui/renderers/counter.cjs +1 -0
  2275. package/utils/a2ui/renderers/counter.d.cts +5 -0
  2276. package/utils/a2ui/renderers/counter.d.ts +5 -0
  2277. package/utils/a2ui/renderers/counter.js +15 -0
  2278. package/utils/a2ui/renderers/drag-and-drop.cjs +1 -0
  2279. package/utils/a2ui/renderers/drag-and-drop.d.cts +7 -0
  2280. package/utils/a2ui/renderers/drag-and-drop.d.ts +7 -0
  2281. package/utils/a2ui/renderers/drag-and-drop.js +88 -0
  2282. package/utils/a2ui/renderers/dropdown.cjs +1 -0
  2283. package/utils/a2ui/renderers/dropdown.d.cts +6 -0
  2284. package/utils/a2ui/renderers/dropdown.d.ts +6 -0
  2285. package/utils/a2ui/renderers/dropdown.js +33 -0
  2286. package/utils/a2ui/renderers/form.cjs +1 -0
  2287. package/utils/a2ui/renderers/form.d.cts +9 -0
  2288. package/utils/a2ui/renderers/form.d.ts +9 -0
  2289. package/utils/a2ui/renderers/form.js +105 -0
  2290. package/utils/a2ui/renderers/header.cjs +1 -0
  2291. package/utils/a2ui/renderers/header.d.cts +5 -0
  2292. package/utils/a2ui/renderers/header.d.ts +5 -0
  2293. package/utils/a2ui/renderers/header.js +35 -0
  2294. package/utils/a2ui/renderers/icon.cjs +1 -0
  2295. package/utils/a2ui/renderers/icon.d.cts +5 -0
  2296. package/utils/a2ui/renderers/icon.d.ts +5 -0
  2297. package/utils/a2ui/renderers/icon.js +20 -0
  2298. package/utils/a2ui/renderers/image.cjs +1 -0
  2299. package/utils/a2ui/renderers/image.d.cts +1025 -0
  2300. package/utils/a2ui/renderers/image.d.ts +1025 -0
  2301. package/utils/a2ui/renderers/image.js +80 -0
  2302. package/utils/a2ui/renderers/index.cjs +1 -0
  2303. package/utils/a2ui/renderers/index.d.cts +3 -0
  2304. package/utils/a2ui/renderers/index.d.ts +3 -0
  2305. package/utils/a2ui/renderers/index.js +97 -0
  2306. package/utils/a2ui/renderers/label.cjs +1 -0
  2307. package/utils/a2ui/renderers/label.d.cts +5 -0
  2308. package/utils/a2ui/renderers/label.d.ts +5 -0
  2309. package/utils/a2ui/renderers/label.js +14 -0
  2310. package/utils/a2ui/renderers/layout.cjs +1 -0
  2311. package/utils/a2ui/renderers/layout.d.cts +10 -0
  2312. package/utils/a2ui/renderers/layout.d.ts +10 -0
  2313. package/utils/a2ui/renderers/layout.js +78 -0
  2314. package/utils/a2ui/renderers/link.cjs +1 -0
  2315. package/utils/a2ui/renderers/link.d.cts +5 -0
  2316. package/utils/a2ui/renderers/link.d.ts +5 -0
  2317. package/utils/a2ui/renderers/link.js +25 -0
  2318. package/utils/a2ui/renderers/list.cjs +1 -0
  2319. package/utils/a2ui/renderers/list.d.cts +4 -0
  2320. package/utils/a2ui/renderers/list.d.ts +4 -0
  2321. package/utils/a2ui/renderers/list.js +23 -0
  2322. package/utils/a2ui/renderers/loader.cjs +1 -0
  2323. package/utils/a2ui/renderers/loader.d.cts +4 -0
  2324. package/utils/a2ui/renderers/loader.d.ts +4 -0
  2325. package/utils/a2ui/renderers/loader.js +16 -0
  2326. package/utils/a2ui/renderers/menu.cjs +1 -0
  2327. package/utils/a2ui/renderers/menu.d.cts +5 -0
  2328. package/utils/a2ui/renderers/menu.d.ts +5 -0
  2329. package/utils/a2ui/renderers/menu.js +36 -0
  2330. package/utils/a2ui/renderers/modal.cjs +1 -0
  2331. package/utils/a2ui/renderers/modal.d.cts +6 -0
  2332. package/utils/a2ui/renderers/modal.d.ts +6 -0
  2333. package/utils/a2ui/renderers/modal.js +35 -0
  2334. package/utils/a2ui/renderers/notification.cjs +1 -0
  2335. package/utils/a2ui/renderers/notification.d.cts +6 -0
  2336. package/utils/a2ui/renderers/notification.d.ts +6 -0
  2337. package/utils/a2ui/renderers/notification.js +83 -0
  2338. package/utils/a2ui/renderers/price.cjs +1 -0
  2339. package/utils/a2ui/renderers/price.d.cts +4 -0
  2340. package/utils/a2ui/renderers/price.d.ts +4 -0
  2341. package/utils/a2ui/renderers/price.js +19 -0
  2342. package/utils/a2ui/renderers/progress-bar.cjs +1 -0
  2343. package/utils/a2ui/renderers/progress-bar.d.cts +4 -0
  2344. package/utils/a2ui/renderers/progress-bar.d.ts +4 -0
  2345. package/utils/a2ui/renderers/progress-bar.js +23 -0
  2346. package/utils/a2ui/renderers/radio-group.cjs +1 -0
  2347. package/utils/a2ui/renderers/radio-group.d.cts +5 -0
  2348. package/utils/a2ui/renderers/radio-group.d.ts +5 -0
  2349. package/utils/a2ui/renderers/radio-group.js +27 -0
  2350. package/utils/a2ui/renderers/rating.cjs +1 -0
  2351. package/utils/a2ui/renderers/rating.d.cts +5 -0
  2352. package/utils/a2ui/renderers/rating.d.ts +5 -0
  2353. package/utils/a2ui/renderers/rating.js +26 -0
  2354. package/utils/a2ui/renderers/search.cjs +1 -0
  2355. package/utils/a2ui/renderers/search.d.cts +6 -0
  2356. package/utils/a2ui/renderers/search.d.ts +6 -0
  2357. package/utils/a2ui/renderers/search.js +89 -0
  2358. package/utils/a2ui/renderers/select.cjs +1 -0
  2359. package/utils/a2ui/renderers/select.d.cts +5 -0
  2360. package/utils/a2ui/renderers/select.d.ts +5 -0
  2361. package/utils/a2ui/renderers/select.js +33 -0
  2362. package/utils/a2ui/renderers/separator.cjs +1 -0
  2363. package/utils/a2ui/renderers/separator.d.cts +4 -0
  2364. package/utils/a2ui/renderers/separator.d.ts +4 -0
  2365. package/utils/a2ui/renderers/separator.js +37 -0
  2366. package/utils/a2ui/renderers/sidebar.cjs +1 -0
  2367. package/utils/a2ui/renderers/sidebar.d.cts +5 -0
  2368. package/utils/a2ui/renderers/sidebar.d.ts +5 -0
  2369. package/utils/a2ui/renderers/sidebar.js +42 -0
  2370. package/utils/a2ui/renderers/skeleton.cjs +1 -0
  2371. package/utils/a2ui/renderers/skeleton.d.cts +5 -0
  2372. package/utils/a2ui/renderers/skeleton.d.ts +5 -0
  2373. package/utils/a2ui/renderers/skeleton.js +29 -0
  2374. package/utils/a2ui/renderers/slider.cjs +1 -0
  2375. package/utils/a2ui/renderers/slider.d.cts +6 -0
  2376. package/utils/a2ui/renderers/slider.d.ts +6 -0
  2377. package/utils/a2ui/renderers/slider.js +34 -0
  2378. package/utils/a2ui/renderers/stepper.cjs +1 -0
  2379. package/utils/a2ui/renderers/stepper.d.cts +5 -0
  2380. package/utils/a2ui/renderers/stepper.d.ts +5 -0
  2381. package/utils/a2ui/renderers/stepper.js +30 -0
  2382. package/utils/a2ui/renderers/switch.cjs +1 -0
  2383. package/utils/a2ui/renderers/switch.d.cts +5 -0
  2384. package/utils/a2ui/renderers/switch.d.ts +5 -0
  2385. package/utils/a2ui/renderers/switch.js +26 -0
  2386. package/utils/a2ui/renderers/table.cjs +1 -0
  2387. package/utils/a2ui/renderers/table.d.cts +5 -0
  2388. package/utils/a2ui/renderers/table.d.ts +5 -0
  2389. package/utils/a2ui/renderers/table.js +120 -0
  2390. package/utils/a2ui/renderers/tabs.cjs +1 -0
  2391. package/utils/a2ui/renderers/tabs.d.cts +5 -0
  2392. package/utils/a2ui/renderers/tabs.d.ts +5 -0
  2393. package/utils/a2ui/renderers/tabs.js +40 -0
  2394. package/utils/a2ui/renderers/toggle.cjs +1 -0
  2395. package/utils/a2ui/renderers/toggle.d.cts +5 -0
  2396. package/utils/a2ui/renderers/toggle.d.ts +5 -0
  2397. package/utils/a2ui/renderers/toggle.js +14 -0
  2398. package/utils/a2ui/renderers/tooltip.cjs +1 -0
  2399. package/utils/a2ui/renderers/tooltip.d.cts +5 -0
  2400. package/utils/a2ui/renderers/tooltip.d.ts +5 -0
  2401. package/utils/a2ui/renderers/tooltip.js +22 -0
  2402. package/utils/a2ui/renderers/truncate.cjs +1 -0
  2403. package/utils/a2ui/renderers/truncate.d.cts +4 -0
  2404. package/utils/a2ui/renderers/truncate.d.ts +4 -0
  2405. package/utils/a2ui/renderers/truncate.js +13 -0
  2406. package/utils/a2ui/renderers/typography.cjs +1 -0
  2407. package/utils/a2ui/renderers/typography.d.cts +4 -0
  2408. package/utils/a2ui/renderers/typography.d.ts +4 -0
  2409. package/utils/a2ui/renderers/typography.js +17 -0
  2410. package/utils/a2ui/types.d.cts +19 -0
  2411. package/utils/a2ui/types.d.ts +19 -0
  2412. package/utils/a2ui.d.cts +2 -0
  2413. package/utils/a2ui.d.ts +2 -6
  2414. package/utils/animationFrame.cjs +1 -0
  2415. package/utils/animationFrame.d.cts +15 -0
  2416. package/utils/animationFrame.js +17 -16
  2417. package/utils/commands/vitest-a11y-command.d.cts +29 -0
  2418. package/utils/commands/vitest-a11y-command.d.ts +29 -0
  2419. package/utils/commands/vitest-a2ui-judge-command.d.cts +25 -0
  2420. package/utils/commands/vitest-a2ui-judge-command.d.ts +25 -0
  2421. package/utils/commands/vitest-a2ui-llm-command.d.cts +5 -0
  2422. package/utils/commands/vitest-a2ui-llm-command.d.ts +5 -0
  2423. package/utils/commands/vitest-a2ui-schema-command.d.cts +6 -0
  2424. package/utils/commands/vitest-a2ui-schema-command.d.ts +6 -0
  2425. package/utils/common.cjs +1 -0
  2426. package/utils/common.d.cts +3 -0
  2427. package/utils/common.js +4 -5
  2428. package/utils/date.cjs +1 -0
  2429. package/utils/date.d.cts +9 -0
  2430. package/utils/date.js +7 -11
  2431. package/utils/focus.cjs +1 -0
  2432. package/utils/focus.d.cts +32 -0
  2433. package/utils/focus.js +31 -50
  2434. package/utils/getContrastColor.cjs +1 -0
  2435. package/utils/getContrastColor.d.cts +2 -0
  2436. package/utils/getContrastColor.js +6 -6
  2437. package/utils/helpers.cjs +2 -0
  2438. package/utils/helpers.d.cts +21 -0
  2439. package/utils/helpers.js +46 -59
  2440. package/utils/index.d.cts +10 -0
  2441. package/utils/index.d.ts +10 -11
  2442. package/utils/layout.cjs +1 -0
  2443. package/utils/layout.d.cts +6 -0
  2444. package/utils/layout.d.ts +1 -1
  2445. package/utils/layout.js +25 -40
  2446. package/utils/math.cjs +1 -0
  2447. package/utils/math.d.cts +6 -0
  2448. package/utils/math.js +6 -10
  2449. package/utils/setInRange.cjs +1 -0
  2450. package/utils/setInRange.d.cts +5 -0
  2451. package/utils/setInRange.js +6 -10
  2452. package/utils/uniqueKeys.cjs +1 -0
  2453. package/utils/uniqueKeys.d.cts +1 -0
  2454. package/utils/uniqueKeys.js +4 -4
  2455. package/ai/codegen.d.ts +0 -0
  2456. package/components/atoms/Box/constants.js +0 -4
  2457. package/components/atoms/Icon/utils.d.ts +0 -3
  2458. package/components/core/index.d.ts +0 -54
  2459. package/components/domainSpecific/index.d.ts +0 -36
  2460. package/components/layout/Row/constants.js +0 -4
  2461. package/components/molecules/Tooltip/Tooltip.types.js +0 -4
  2462. package/components/templates/index.d.ts +0 -0
  2463. package/stories/Introduction/ThemeJsonPreview.d.ts +0 -4
  2464. package/stories/components/TokenViewer/TokenViewer.d.ts +0 -2
  2465. package/stories/components/TokenViewer/TokenViewer.types.d.ts +0 -12
  2466. package/stories/components/TokenViewer/TokenViewerStyled.d.ts +0 -11
  2467. package/stories/components/TokenViewer/index.d.ts +0 -1
  2468. package/test-utils.d.ts +0 -9
  2469. package/utils/a2ui.js +0 -1227
  2470. package/utils/getCharCount.d.ts +0 -3
@@ -1,5 +1,5 @@
1
1
  import { CSSObject } from '@emotion/react';
2
- import { DefaultTheme } from '../../../hooks';
2
+ import { DefaultTheme } from '../../../hooks/index.js';
3
3
  export interface ChartAxisDefaults {
4
4
  fontSize: string;
5
5
  fill: string;
@@ -35,7 +35,7 @@ export declare function useCartesianTheme(theme: DefaultTheme): CartesianTheme;
35
35
  export declare function useTooltipTheme(theme: DefaultTheme): {
36
36
  containerStyles: {
37
37
  [x: string]: import('@emotion/serialize').CSSInterpolation;
38
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
38
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
39
39
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
40
40
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
41
41
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -470,7 +470,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
470
470
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
471
471
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
472
472
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
473
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
473
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
474
474
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
475
475
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
476
476
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -506,7 +506,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
506
506
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
507
507
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
508
508
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
509
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
509
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
510
510
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
511
511
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
512
512
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -757,7 +757,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
757
757
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
758
758
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
759
759
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
760
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
760
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
761
761
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
762
762
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
763
763
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -771,14 +771,14 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
771
771
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
772
772
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
773
773
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
774
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
774
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
775
775
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
776
776
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
777
777
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
778
778
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
779
779
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
780
780
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
781
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
781
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
782
782
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
783
783
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
784
784
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -869,7 +869,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
869
869
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
870
870
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
871
871
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
872
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
872
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
873
873
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
874
874
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
875
875
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -1050,7 +1050,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1050
1050
  };
1051
1051
  labelStyles: {
1052
1052
  [x: string]: import('@emotion/serialize').CSSInterpolation;
1053
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
1053
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
1054
1054
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
1055
1055
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
1056
1056
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -1485,7 +1485,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1485
1485
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
1486
1486
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
1487
1487
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
1488
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1488
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1489
1489
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
1490
1490
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
1491
1491
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -1521,7 +1521,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1521
1521
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
1522
1522
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
1523
1523
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
1524
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
1524
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
1525
1525
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
1526
1526
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
1527
1527
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -1772,7 +1772,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1772
1772
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
1773
1773
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
1774
1774
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
1775
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1775
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1776
1776
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
1777
1777
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
1778
1778
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -1786,14 +1786,14 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1786
1786
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
1787
1787
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
1788
1788
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
1789
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1789
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1790
1790
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
1791
1791
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
1792
1792
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
1793
1793
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
1794
1794
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
1795
1795
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
1796
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
1796
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
1797
1797
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
1798
1798
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
1799
1799
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -1884,7 +1884,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
1884
1884
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
1885
1885
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
1886
1886
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
1887
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1887
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
1888
1888
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
1889
1889
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
1890
1890
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -2065,7 +2065,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2065
2065
  };
2066
2066
  itemStyles: {
2067
2067
  [x: string]: import('@emotion/serialize').CSSInterpolation;
2068
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
2068
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
2069
2069
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
2070
2070
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
2071
2071
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -2500,7 +2500,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2500
2500
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
2501
2501
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
2502
2502
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
2503
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2503
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2504
2504
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
2505
2505
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
2506
2506
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -2536,7 +2536,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2536
2536
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
2537
2537
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
2538
2538
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
2539
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
2539
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
2540
2540
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
2541
2541
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
2542
2542
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -2787,7 +2787,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2787
2787
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
2788
2788
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
2789
2789
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
2790
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2790
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2791
2791
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
2792
2792
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
2793
2793
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -2801,14 +2801,14 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2801
2801
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
2802
2802
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
2803
2803
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
2804
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2804
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2805
2805
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
2806
2806
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
2807
2807
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
2808
2808
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
2809
2809
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
2810
2810
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
2811
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
2811
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
2812
2812
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
2813
2813
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
2814
2814
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -2899,7 +2899,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
2899
2899
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
2900
2900
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
2901
2901
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
2902
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2902
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
2903
2903
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
2904
2904
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
2905
2905
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -3080,7 +3080,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3080
3080
  };
3081
3081
  dotStyles: {
3082
3082
  [x: string]: import('@emotion/serialize').CSSInterpolation;
3083
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
3083
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
3084
3084
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
3085
3085
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
3086
3086
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -3515,7 +3515,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3515
3515
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
3516
3516
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
3517
3517
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
3518
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3518
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3519
3519
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
3520
3520
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
3521
3521
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -3551,7 +3551,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3551
3551
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
3552
3552
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
3553
3553
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
3554
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
3554
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
3555
3555
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
3556
3556
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
3557
3557
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -3802,7 +3802,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3802
3802
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
3803
3803
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
3804
3804
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
3805
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3805
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3806
3806
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
3807
3807
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
3808
3808
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -3816,14 +3816,14 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3816
3816
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
3817
3817
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
3818
3818
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
3819
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3819
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3820
3820
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
3821
3821
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
3822
3822
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
3823
3823
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
3824
3824
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
3825
3825
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
3826
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
3826
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
3827
3827
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
3828
3828
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
3829
3829
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -3914,7 +3914,7 @@ export declare function useTooltipTheme(theme: DefaultTheme): {
3914
3914
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
3915
3915
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
3916
3916
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
3917
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3917
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
3918
3918
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
3919
3919
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
3920
3920
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -4123,7 +4123,7 @@ export declare function useHoverTheme(theme: DefaultTheme): {
4123
4123
  export declare function useLegendTheme(theme: DefaultTheme): {
4124
4124
  containerStyles: {
4125
4125
  [x: string]: import('@emotion/serialize').CSSInterpolation;
4126
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
4126
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
4127
4127
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
4128
4128
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
4129
4129
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -4558,7 +4558,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
4558
4558
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
4559
4559
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
4560
4560
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
4561
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4561
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4562
4562
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
4563
4563
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
4564
4564
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -4594,7 +4594,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
4594
4594
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
4595
4595
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
4596
4596
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
4597
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
4597
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
4598
4598
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
4599
4599
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
4600
4600
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -4845,7 +4845,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
4845
4845
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
4846
4846
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
4847
4847
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
4848
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4848
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4849
4849
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
4850
4850
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
4851
4851
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -4859,14 +4859,14 @@ export declare function useLegendTheme(theme: DefaultTheme): {
4859
4859
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
4860
4860
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
4861
4861
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
4862
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4862
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4863
4863
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
4864
4864
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
4865
4865
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
4866
4866
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
4867
4867
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
4868
4868
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
4869
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
4869
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
4870
4870
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
4871
4871
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
4872
4872
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -4957,7 +4957,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
4957
4957
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
4958
4958
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
4959
4959
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
4960
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4960
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
4961
4961
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
4962
4962
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
4963
4963
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -5138,7 +5138,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5138
5138
  };
5139
5139
  itemStyles: {
5140
5140
  [x: string]: import('@emotion/serialize').CSSInterpolation;
5141
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
5141
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
5142
5142
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
5143
5143
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
5144
5144
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -5573,7 +5573,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5573
5573
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
5574
5574
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
5575
5575
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
5576
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5576
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5577
5577
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
5578
5578
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
5579
5579
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -5609,7 +5609,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5609
5609
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
5610
5610
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
5611
5611
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
5612
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
5612
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
5613
5613
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
5614
5614
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
5615
5615
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -5860,7 +5860,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5860
5860
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
5861
5861
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
5862
5862
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
5863
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5863
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5864
5864
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
5865
5865
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
5866
5866
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -5874,14 +5874,14 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5874
5874
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
5875
5875
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
5876
5876
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
5877
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5877
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5878
5878
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
5879
5879
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
5880
5880
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
5881
5881
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
5882
5882
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
5883
5883
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
5884
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
5884
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
5885
5885
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
5886
5886
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
5887
5887
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -5972,7 +5972,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
5972
5972
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
5973
5973
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
5974
5974
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
5975
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5975
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
5976
5976
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
5977
5977
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
5978
5978
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -6153,7 +6153,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6153
6153
  };
6154
6154
  itemInteractiveStyles: {
6155
6155
  [x: string]: import('@emotion/serialize').CSSInterpolation;
6156
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
6156
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
6157
6157
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
6158
6158
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
6159
6159
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -6588,7 +6588,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6588
6588
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
6589
6589
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
6590
6590
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
6591
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6591
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6592
6592
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
6593
6593
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
6594
6594
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -6624,7 +6624,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6624
6624
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
6625
6625
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
6626
6626
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
6627
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
6627
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
6628
6628
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
6629
6629
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
6630
6630
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -6875,7 +6875,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6875
6875
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
6876
6876
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
6877
6877
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
6878
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6878
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6879
6879
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
6880
6880
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
6881
6881
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -6889,14 +6889,14 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6889
6889
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
6890
6890
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
6891
6891
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
6892
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6892
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6893
6893
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
6894
6894
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
6895
6895
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
6896
6896
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
6897
6897
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
6898
6898
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
6899
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
6899
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
6900
6900
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
6901
6901
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
6902
6902
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -6987,7 +6987,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
6987
6987
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
6988
6988
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
6989
6989
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
6990
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6990
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
6991
6991
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
6992
6992
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
6993
6993
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -7168,7 +7168,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
7168
7168
  };
7169
7169
  itemHiddenStyles: {
7170
7170
  [x: string]: import('@emotion/serialize').CSSInterpolation;
7171
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
7171
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
7172
7172
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
7173
7173
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
7174
7174
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -7603,7 +7603,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
7603
7603
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
7604
7604
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
7605
7605
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
7606
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7606
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7607
7607
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
7608
7608
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
7609
7609
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -7639,7 +7639,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
7639
7639
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
7640
7640
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
7641
7641
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
7642
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
7642
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
7643
7643
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
7644
7644
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
7645
7645
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -7890,7 +7890,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
7890
7890
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
7891
7891
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
7892
7892
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
7893
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7893
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7894
7894
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
7895
7895
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
7896
7896
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -7904,14 +7904,14 @@ export declare function useLegendTheme(theme: DefaultTheme): {
7904
7904
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
7905
7905
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
7906
7906
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
7907
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7907
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
7908
7908
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
7909
7909
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
7910
7910
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
7911
7911
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
7912
7912
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
7913
7913
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
7914
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
7914
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
7915
7915
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
7916
7916
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
7917
7917
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -8002,7 +8002,1022 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8002
8002
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
8003
8003
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
8004
8004
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
8005
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8005
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8006
+ OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
8007
+ OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
8008
+ OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
8009
+ OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
8010
+ OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
8011
+ OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
8012
+ OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8013
+ OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
8014
+ OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
8015
+ OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
8016
+ OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
8017
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
8018
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
8019
+ WebkitBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
8020
+ WebkitBoxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
8021
+ WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
8022
+ WebkitBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
8023
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
8024
+ WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
8025
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
8026
+ colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
8027
+ glyphOrientationVertical?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
8028
+ ":-moz-any()"?: CSSObject | undefined;
8029
+ ":-moz-dir"?: CSSObject | undefined;
8030
+ ":-webkit-any()"?: CSSObject | undefined;
8031
+ "::cue"?: CSSObject | undefined;
8032
+ "::cue-region"?: CSSObject | undefined;
8033
+ "::highlight"?: CSSObject | undefined;
8034
+ "::part"?: CSSObject | undefined;
8035
+ "::picker"?: CSSObject | undefined;
8036
+ "::slotted"?: CSSObject | undefined;
8037
+ "::view-transition-group"?: CSSObject | undefined;
8038
+ "::view-transition-image-pair"?: CSSObject | undefined;
8039
+ "::view-transition-new"?: CSSObject | undefined;
8040
+ "::view-transition-old"?: CSSObject | undefined;
8041
+ ":active-view-transition-type"?: CSSObject | undefined;
8042
+ ":dir"?: CSSObject | undefined;
8043
+ ":has"?: CSSObject | undefined;
8044
+ ":host"?: CSSObject | undefined;
8045
+ ":host-context"?: CSSObject | undefined;
8046
+ ":is"?: CSSObject | undefined;
8047
+ ":lang"?: CSSObject | undefined;
8048
+ ":matches()"?: CSSObject | undefined;
8049
+ ":not"?: CSSObject | undefined;
8050
+ ":nth-child"?: CSSObject | undefined;
8051
+ ":nth-last-child"?: CSSObject | undefined;
8052
+ ":nth-last-of-type"?: CSSObject | undefined;
8053
+ ":nth-of-type"?: CSSObject | undefined;
8054
+ ":state"?: CSSObject | undefined;
8055
+ ":where"?: CSSObject | undefined;
8056
+ ":-khtml-any-link"?: CSSObject | undefined;
8057
+ ":-moz-any-link"?: CSSObject | undefined;
8058
+ ":-moz-focusring"?: CSSObject | undefined;
8059
+ ":-moz-full-screen"?: CSSObject | undefined;
8060
+ ":-moz-placeholder"?: CSSObject | undefined;
8061
+ ":-moz-read-only"?: CSSObject | undefined;
8062
+ ":-moz-read-write"?: CSSObject | undefined;
8063
+ ":-moz-ui-invalid"?: CSSObject | undefined;
8064
+ ":-moz-ui-valid"?: CSSObject | undefined;
8065
+ ":-ms-fullscreen"?: CSSObject | undefined;
8066
+ ":-ms-input-placeholder"?: CSSObject | undefined;
8067
+ ":-webkit-any-link"?: CSSObject | undefined;
8068
+ ":-webkit-autofill"?: CSSObject | undefined;
8069
+ ":-webkit-full-screen"?: CSSObject | undefined;
8070
+ "::-moz-placeholder"?: CSSObject | undefined;
8071
+ "::-moz-progress-bar"?: CSSObject | undefined;
8072
+ "::-moz-range-progress"?: CSSObject | undefined;
8073
+ "::-moz-range-thumb"?: CSSObject | undefined;
8074
+ "::-moz-range-track"?: CSSObject | undefined;
8075
+ "::-moz-selection"?: CSSObject | undefined;
8076
+ "::-ms-backdrop"?: CSSObject | undefined;
8077
+ "::-ms-browse"?: CSSObject | undefined;
8078
+ "::-ms-check"?: CSSObject | undefined;
8079
+ "::-ms-clear"?: CSSObject | undefined;
8080
+ "::-ms-expand"?: CSSObject | undefined;
8081
+ "::-ms-fill"?: CSSObject | undefined;
8082
+ "::-ms-fill-lower"?: CSSObject | undefined;
8083
+ "::-ms-fill-upper"?: CSSObject | undefined;
8084
+ "::-ms-input-placeholder"?: CSSObject | undefined;
8085
+ "::-ms-reveal"?: CSSObject | undefined;
8086
+ "::-ms-thumb"?: CSSObject | undefined;
8087
+ "::-ms-ticks-after"?: CSSObject | undefined;
8088
+ "::-ms-ticks-before"?: CSSObject | undefined;
8089
+ "::-ms-tooltip"?: CSSObject | undefined;
8090
+ "::-ms-track"?: CSSObject | undefined;
8091
+ "::-ms-value"?: CSSObject | undefined;
8092
+ "::-webkit-backdrop"?: CSSObject | undefined;
8093
+ "::-webkit-file-upload-button"?: CSSObject | undefined;
8094
+ "::-webkit-input-placeholder"?: CSSObject | undefined;
8095
+ "::-webkit-progress-bar"?: CSSObject | undefined;
8096
+ "::-webkit-progress-inner-value"?: CSSObject | undefined;
8097
+ "::-webkit-progress-value"?: CSSObject | undefined;
8098
+ "::-webkit-slider-runnable-track"?: CSSObject | undefined;
8099
+ "::-webkit-slider-thumb"?: CSSObject | undefined;
8100
+ "::after"?: CSSObject | undefined;
8101
+ "::backdrop"?: CSSObject | undefined;
8102
+ "::before"?: CSSObject | undefined;
8103
+ "::checkmark"?: CSSObject | undefined;
8104
+ "::details-content"?: CSSObject | undefined;
8105
+ "::file-selector-button"?: CSSObject | undefined;
8106
+ "::first-letter"?: CSSObject | undefined;
8107
+ "::first-line"?: CSSObject | undefined;
8108
+ "::grammar-error"?: CSSObject | undefined;
8109
+ "::marker"?: CSSObject | undefined;
8110
+ "::picker-icon"?: CSSObject | undefined;
8111
+ "::placeholder"?: CSSObject | undefined;
8112
+ "::scroll-marker"?: CSSObject | undefined;
8113
+ "::scroll-marker-group"?: CSSObject | undefined;
8114
+ "::selection"?: CSSObject | undefined;
8115
+ "::spelling-error"?: CSSObject | undefined;
8116
+ "::target-text"?: CSSObject | undefined;
8117
+ "::view-transition"?: CSSObject | undefined;
8118
+ ":active"?: CSSObject | undefined;
8119
+ ":active-view-transition"?: CSSObject | undefined;
8120
+ ":after"?: CSSObject | undefined;
8121
+ ":any-link"?: CSSObject | undefined;
8122
+ ":autofill"?: CSSObject | undefined;
8123
+ ":before"?: CSSObject | undefined;
8124
+ ":blank"?: CSSObject | undefined;
8125
+ ":buffering"?: CSSObject | undefined;
8126
+ ":checked"?: CSSObject | undefined;
8127
+ ":current"?: CSSObject | undefined;
8128
+ ":default"?: CSSObject | undefined;
8129
+ ":defined"?: CSSObject | undefined;
8130
+ ":disabled"?: CSSObject | undefined;
8131
+ ":empty"?: CSSObject | undefined;
8132
+ ":enabled"?: CSSObject | undefined;
8133
+ ":first"?: CSSObject | undefined;
8134
+ ":first-child"?: CSSObject | undefined;
8135
+ ":first-letter"?: CSSObject | undefined;
8136
+ ":first-line"?: CSSObject | undefined;
8137
+ ":first-of-type"?: CSSObject | undefined;
8138
+ ":focus"?: CSSObject | undefined;
8139
+ ":focus-visible"?: CSSObject | undefined;
8140
+ ":focus-within"?: CSSObject | undefined;
8141
+ ":fullscreen"?: CSSObject | undefined;
8142
+ ":future"?: CSSObject | undefined;
8143
+ ":has-slotted"?: CSSObject | undefined;
8144
+ ":hover"?: CSSObject | undefined;
8145
+ ":in-range"?: CSSObject | undefined;
8146
+ ":indeterminate"?: CSSObject | undefined;
8147
+ ":invalid"?: CSSObject | undefined;
8148
+ ":last-child"?: CSSObject | undefined;
8149
+ ":last-of-type"?: CSSObject | undefined;
8150
+ ":left"?: CSSObject | undefined;
8151
+ ":link"?: CSSObject | undefined;
8152
+ ":local-link"?: CSSObject | undefined;
8153
+ ":modal"?: CSSObject | undefined;
8154
+ ":muted"?: CSSObject | undefined;
8155
+ ":only-child"?: CSSObject | undefined;
8156
+ ":only-of-type"?: CSSObject | undefined;
8157
+ ":open"?: CSSObject | undefined;
8158
+ ":optional"?: CSSObject | undefined;
8159
+ ":out-of-range"?: CSSObject | undefined;
8160
+ ":past"?: CSSObject | undefined;
8161
+ ":paused"?: CSSObject | undefined;
8162
+ ":picture-in-picture"?: CSSObject | undefined;
8163
+ ":placeholder-shown"?: CSSObject | undefined;
8164
+ ":playing"?: CSSObject | undefined;
8165
+ ":popover-open"?: CSSObject | undefined;
8166
+ ":read-only"?: CSSObject | undefined;
8167
+ ":read-write"?: CSSObject | undefined;
8168
+ ":required"?: CSSObject | undefined;
8169
+ ":right"?: CSSObject | undefined;
8170
+ ":root"?: CSSObject | undefined;
8171
+ ":scope"?: CSSObject | undefined;
8172
+ ":seeking"?: CSSObject | undefined;
8173
+ ":stalled"?: CSSObject | undefined;
8174
+ ":target"?: CSSObject | undefined;
8175
+ ":target-current"?: CSSObject | undefined;
8176
+ ":target-within"?: CSSObject | undefined;
8177
+ ":user-invalid"?: CSSObject | undefined;
8178
+ ":user-valid"?: CSSObject | undefined;
8179
+ ":valid"?: CSSObject | undefined;
8180
+ ":visited"?: CSSObject | undefined;
8181
+ ":volume-locked"?: CSSObject | undefined;
8182
+ ":xr-overlay"?: CSSObject | undefined;
8183
+ };
8184
+ labelTextStyles: {
8185
+ [x: string]: import('@emotion/serialize').CSSInterpolation;
8186
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
8187
+ alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
8188
+ alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
8189
+ alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
8190
+ alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
8191
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
8192
+ anchorName?: readonly string[] | import("csstype").Property.AnchorName | readonly import("csstype").Property.AnchorName[] | undefined;
8193
+ anchorScope?: readonly string[] | import("csstype").Property.AnchorScope | readonly import("csstype").Property.AnchorScope[] | undefined;
8194
+ animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
8195
+ animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
8196
+ animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
8197
+ animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
8198
+ animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
8199
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
8200
+ animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
8201
+ animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
8202
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
8203
+ animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
8204
+ animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
8205
+ animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
8206
+ appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
8207
+ aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ("auto" | (string & {}) | import('csstype').Globals)[] | undefined;
8208
+ backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
8209
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
8210
+ backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
8211
+ backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
8212
+ backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
8213
+ backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
8214
+ backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
8215
+ backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
8216
+ backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
8217
+ backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
8218
+ backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
8219
+ backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
8220
+ baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
8221
+ blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
8222
+ borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
8223
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
8224
+ borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
8225
+ borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
8226
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
8227
+ borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
8228
+ borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
8229
+ borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
8230
+ borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
8231
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
8232
+ borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
8233
+ borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
8234
+ borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
8235
+ borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
8236
+ borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
8237
+ borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
8238
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
8239
+ borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
8240
+ borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
8241
+ borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
8242
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
8243
+ borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
8244
+ borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
8245
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
8246
+ borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
8247
+ borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
8248
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
8249
+ borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
8250
+ borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
8251
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
8252
+ borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
8253
+ borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
8254
+ borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
8255
+ borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
8256
+ borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
8257
+ borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
8258
+ borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
8259
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
8260
+ borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
8261
+ bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
8262
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
8263
+ boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
8264
+ boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
8265
+ breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
8266
+ breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
8267
+ breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
8268
+ captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
8269
+ caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
8270
+ caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
8271
+ clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
8272
+ clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
8273
+ clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
8274
+ color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
8275
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
8276
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | readonly NonNullable<import("csstype").Property.ColorInterpolationFilters | undefined>[] | readonly import("csstype").Property.ColorInterpolationFilters[] | undefined;
8277
+ colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
8278
+ columnCount?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
8279
+ columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
8280
+ columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
8281
+ columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
8282
+ columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
8283
+ columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
8284
+ columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
8285
+ columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
8286
+ contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
8287
+ containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
8288
+ containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
8289
+ containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
8290
+ containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
8291
+ containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
8292
+ containerType?: readonly string[] | import("csstype").Property.ContainerType | readonly import("csstype").Property.ContainerType[] | undefined;
8293
+ content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
8294
+ contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
8295
+ counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
8296
+ counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
8297
+ counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
8298
+ cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
8299
+ cx?: readonly (string | (string & {}))[] | import("csstype").Property.Cx<string | number> | readonly NonNullable<import("csstype").Property.Cx<string | number> | undefined>[] | undefined;
8300
+ cy?: readonly (string | (string & {}))[] | import("csstype").Property.Cy<string | number> | readonly NonNullable<import("csstype").Property.Cy<string | number> | undefined>[] | undefined;
8301
+ d?: readonly string[] | import("csstype").Property.D | readonly import("csstype").Property.D[] | undefined;
8302
+ direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
8303
+ display?: readonly string[] | import("csstype").Property.Display | readonly import("csstype").Property.Display[] | undefined;
8304
+ dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
8305
+ emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
8306
+ fieldSizing?: import("csstype").Property.FieldSizing | readonly NonNullable<import("csstype").Property.FieldSizing | undefined>[] | readonly import("csstype").Property.FieldSizing[] | undefined;
8307
+ fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
8308
+ fillOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
8309
+ fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
8310
+ filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
8311
+ flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
8312
+ flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
8313
+ flexGrow?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
8314
+ flexShrink?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
8315
+ flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
8316
+ float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
8317
+ floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
8318
+ floodOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
8319
+ fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
8320
+ fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
8321
+ fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
8322
+ fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
8323
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
8324
+ fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
8325
+ fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
8326
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import('csstype').Globals | "from-font")[] | undefined;
8327
+ fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
8328
+ fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
8329
+ fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
8330
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
8331
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
8332
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
8333
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
8334
+ fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
8335
+ fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
8336
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
8337
+ fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
8338
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
8339
+ fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
8340
+ fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
8341
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
8342
+ fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
8343
+ fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | "normal" | (string & {}) | import('csstype').Globals | "bolder" | "lighter")[] | undefined;
8344
+ fontWidth?: readonly string[] | import("csstype").Property.FontWidth | readonly import("csstype").Property.FontWidth[] | undefined;
8345
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
8346
+ gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
8347
+ gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
8348
+ gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
8349
+ gridColumnEnd?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
8350
+ gridColumnStart?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
8351
+ gridRowEnd?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
8352
+ gridRowStart?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
8353
+ gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
8354
+ gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
8355
+ gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
8356
+ hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
8357
+ height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
8358
+ hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
8359
+ hyphenateLimitChars?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
8360
+ hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
8361
+ imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
8362
+ imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
8363
+ imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
8364
+ initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ("normal" | (string & {}) | import('csstype').Globals)[] | undefined;
8365
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | readonly NonNullable<import("csstype").Property.InitialLetterAlign | undefined>[] | readonly import("csstype").Property.InitialLetterAlign[] | undefined;
8366
+ inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
8367
+ insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
8368
+ insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
8369
+ insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
8370
+ insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
8371
+ interpolateSize?: import("csstype").Property.InterpolateSize | readonly NonNullable<import("csstype").Property.InterpolateSize | undefined>[] | readonly import("csstype").Property.InterpolateSize[] | undefined;
8372
+ isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
8373
+ justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
8374
+ justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
8375
+ justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
8376
+ justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
8377
+ left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
8378
+ letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
8379
+ lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
8380
+ lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
8381
+ lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
8382
+ lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
8383
+ listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
8384
+ listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
8385
+ listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
8386
+ marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
8387
+ marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
8388
+ marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
8389
+ marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
8390
+ marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
8391
+ marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
8392
+ marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
8393
+ marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
8394
+ marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
8395
+ marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
8396
+ markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
8397
+ markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
8398
+ markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
8399
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
8400
+ maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
8401
+ maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
8402
+ maskBorderSlice?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
8403
+ maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
8404
+ maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
8405
+ maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
8406
+ maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
8407
+ maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
8408
+ maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
8409
+ maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
8410
+ maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
8411
+ maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
8412
+ maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
8413
+ maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
8414
+ masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
8415
+ mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto-add")[] | undefined;
8416
+ mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
8417
+ mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
8418
+ maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
8419
+ maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
8420
+ maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
8421
+ maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import('csstype').Globals)[] | undefined;
8422
+ maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
8423
+ minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
8424
+ minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
8425
+ minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
8426
+ minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
8427
+ mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
8428
+ motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
8429
+ motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
8430
+ motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
8431
+ objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
8432
+ objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
8433
+ objectViewBox?: readonly string[] | import("csstype").Property.ObjectViewBox | readonly import("csstype").Property.ObjectViewBox[] | undefined;
8434
+ offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
8435
+ offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
8436
+ offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
8437
+ offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
8438
+ offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
8439
+ offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
8440
+ opacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
8441
+ order?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
8442
+ orphans?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
8443
+ outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
8444
+ outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
8445
+ outlineStyle?: import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
8446
+ outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
8447
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
8448
+ overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
8449
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
8450
+ overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
8451
+ overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
8452
+ overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
8453
+ overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
8454
+ overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
8455
+ overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
8456
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
8457
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
8458
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
8459
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
8460
+ paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
8461
+ paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
8462
+ paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
8463
+ paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
8464
+ paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
8465
+ paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
8466
+ paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
8467
+ paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
8468
+ page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
8469
+ paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
8470
+ perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
8471
+ perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
8472
+ pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
8473
+ position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
8474
+ positionAnchor?: readonly string[] | import("csstype").Property.PositionAnchor | readonly import("csstype").Property.PositionAnchor[] | undefined;
8475
+ positionArea?: readonly string[] | import("csstype").Property.PositionArea | readonly import("csstype").Property.PositionArea[] | undefined;
8476
+ positionTryFallbacks?: readonly string[] | import("csstype").Property.PositionTryFallbacks | readonly import("csstype").Property.PositionTryFallbacks[] | undefined;
8477
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | readonly NonNullable<import("csstype").Property.PositionTryOrder | undefined>[] | readonly import("csstype").Property.PositionTryOrder[] | undefined;
8478
+ positionVisibility?: readonly string[] | import("csstype").Property.PositionVisibility | readonly import("csstype").Property.PositionVisibility[] | undefined;
8479
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
8480
+ quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
8481
+ r?: readonly (string | (string & {}))[] | import("csstype").Property.R<string | number> | readonly NonNullable<import("csstype").Property.R<string | number> | undefined>[] | undefined;
8482
+ resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
8483
+ right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
8484
+ rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
8485
+ rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
8486
+ rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
8487
+ rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
8488
+ rubyOverhang?: import("csstype").Property.RubyOverhang | readonly NonNullable<import("csstype").Property.RubyOverhang | undefined>[] | readonly import("csstype").Property.RubyOverhang[] | undefined;
8489
+ rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
8490
+ rx?: readonly (string | (string & {}))[] | import("csstype").Property.Rx<string | number> | readonly NonNullable<import("csstype").Property.Rx<string | number> | undefined>[] | undefined;
8491
+ ry?: readonly (string | (string & {}))[] | import("csstype").Property.Ry<string | number> | readonly NonNullable<import("csstype").Property.Ry<string | number> | undefined>[] | undefined;
8492
+ scale?: readonly ("none" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
8493
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
8494
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | readonly NonNullable<import("csstype").Property.ScrollInitialTarget | undefined>[] | readonly import("csstype").Property.ScrollInitialTarget[] | undefined;
8495
+ scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
8496
+ scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
8497
+ scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
8498
+ scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
8499
+ scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
8500
+ scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
8501
+ scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
8502
+ scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
8503
+ scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
8504
+ scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
8505
+ scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
8506
+ scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
8507
+ scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
8508
+ scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
8509
+ scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
8510
+ scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
8511
+ scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
8512
+ scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
8513
+ scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
8514
+ scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
8515
+ scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
8516
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
8517
+ scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
8518
+ scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
8519
+ scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
8520
+ scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
8521
+ scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
8522
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
8523
+ shapeImageThreshold?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
8524
+ shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
8525
+ shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
8526
+ shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
8527
+ speakAs?: readonly string[] | import("csstype").Property.SpeakAs | readonly import("csstype").Property.SpeakAs[] | undefined;
8528
+ stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
8529
+ stopOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
8530
+ stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
8531
+ strokeColor?: readonly string[] | import("csstype").Property.StrokeColor | readonly import("csstype").Property.StrokeColor[] | undefined;
8532
+ strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
8533
+ strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
8534
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
8535
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
8536
+ strokeMiterlimit?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
8537
+ strokeOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
8538
+ strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
8539
+ tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
8540
+ tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
8541
+ textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
8542
+ textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
8543
+ textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
8544
+ textAutospace?: readonly string[] | import("csstype").Property.TextAutospace | readonly import("csstype").Property.TextAutospace[] | undefined;
8545
+ textBox?: readonly string[] | import("csstype").Property.TextBox | readonly import("csstype").Property.TextBox[] | undefined;
8546
+ textBoxEdge?: readonly string[] | import("csstype").Property.TextBoxEdge | readonly import("csstype").Property.TextBoxEdge[] | undefined;
8547
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | readonly NonNullable<import("csstype").Property.TextBoxTrim | undefined>[] | readonly import("csstype").Property.TextBoxTrim[] | undefined;
8548
+ textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
8549
+ textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
8550
+ textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
8551
+ textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
8552
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
8553
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
8554
+ textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
8555
+ textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
8556
+ textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
8557
+ textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
8558
+ textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
8559
+ textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
8560
+ textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
8561
+ textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
8562
+ textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
8563
+ textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
8564
+ textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
8565
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | readonly NonNullable<import("csstype").Property.TextSpacingTrim | undefined>[] | readonly import("csstype").Property.TextSpacingTrim[] | undefined;
8566
+ textTransform?: readonly string[] | import("csstype").Property.TextTransform | readonly import("csstype").Property.TextTransform[] | undefined;
8567
+ textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
8568
+ textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
8569
+ textWrapMode?: import("csstype").Property.TextWrapMode | readonly NonNullable<import("csstype").Property.TextWrapMode | undefined>[] | readonly import("csstype").Property.TextWrapMode[] | undefined;
8570
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | readonly NonNullable<import("csstype").Property.TextWrapStyle | undefined>[] | readonly import("csstype").Property.TextWrapStyle[] | undefined;
8571
+ timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
8572
+ top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
8573
+ touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
8574
+ transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
8575
+ transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
8576
+ transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
8577
+ transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
8578
+ transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
8579
+ transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
8580
+ transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
8581
+ transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
8582
+ transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
8583
+ translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
8584
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
8585
+ userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
8586
+ vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
8587
+ verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
8588
+ viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
8589
+ viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
8590
+ viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
8591
+ viewTransitionClass?: readonly string[] | import("csstype").Property.ViewTransitionClass | readonly import("csstype").Property.ViewTransitionClass[] | undefined;
8592
+ viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
8593
+ visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
8594
+ whiteSpace?: readonly string[] | import("csstype").Property.WhiteSpace | readonly import("csstype").Property.WhiteSpace[] | undefined;
8595
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
8596
+ widows?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
8597
+ width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
8598
+ willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
8599
+ wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
8600
+ wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
8601
+ wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
8602
+ writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
8603
+ x?: readonly (string | (string & {}))[] | import("csstype").Property.X<string | number> | readonly NonNullable<import("csstype").Property.X<string | number> | undefined>[] | undefined;
8604
+ y?: readonly (string | (string & {}))[] | import("csstype").Property.Y<string | number> | readonly NonNullable<import("csstype").Property.Y<string | number> | undefined>[] | undefined;
8605
+ zIndex?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
8606
+ zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ("normal" | "reset" | (string & {}) | import('csstype').Globals)[] | undefined;
8607
+ all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
8608
+ animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
8609
+ animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
8610
+ background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
8611
+ backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
8612
+ border?: readonly (string | (string & {}))[] | import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | undefined;
8613
+ borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
8614
+ borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
8615
+ borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
8616
+ borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
8617
+ borderBlockStyle?: readonly string[] | import("csstype").Property.BorderBlockStyle | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
8618
+ borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
8619
+ borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
8620
+ borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
8621
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8622
+ borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
8623
+ borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
8624
+ borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
8625
+ borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
8626
+ borderInlineStyle?: readonly string[] | import("csstype").Property.BorderInlineStyle | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
8627
+ borderInlineWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
8628
+ borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
8629
+ borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
8630
+ borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
8631
+ borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
8632
+ borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
8633
+ borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
8634
+ caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
8635
+ columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
8636
+ columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
8637
+ containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
8638
+ container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
8639
+ flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
8640
+ flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
8641
+ font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
8642
+ gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
8643
+ grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
8644
+ gridArea?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
8645
+ gridColumn?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
8646
+ gridRow?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
8647
+ gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
8648
+ inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
8649
+ insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
8650
+ insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
8651
+ lineClamp?: readonly ("none" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
8652
+ listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
8653
+ margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
8654
+ marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
8655
+ marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
8656
+ mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
8657
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
8658
+ motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
8659
+ offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
8660
+ outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
8661
+ overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
8662
+ overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
8663
+ padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
8664
+ paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
8665
+ paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
8666
+ placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
8667
+ placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
8668
+ placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
8669
+ positionTry?: readonly string[] | import("csstype").Property.PositionTry | readonly import("csstype").Property.PositionTry[] | undefined;
8670
+ scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
8671
+ scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
8672
+ scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
8673
+ scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
8674
+ scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
8675
+ scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
8676
+ scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
8677
+ scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
8678
+ textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
8679
+ textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
8680
+ textWrap?: readonly string[] | import("csstype").Property.TextWrap | readonly import("csstype").Property.TextWrap[] | undefined;
8681
+ transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8682
+ viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
8683
+ MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
8684
+ MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
8685
+ MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
8686
+ MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
8687
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
8688
+ MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
8689
+ MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
8690
+ MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
8691
+ MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
8692
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
8693
+ MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
8694
+ MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
8695
+ MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
8696
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
8697
+ MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
8698
+ MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
8699
+ MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
8700
+ MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
8701
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
8702
+ MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
8703
+ MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
8704
+ MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
8705
+ MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
8706
+ MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
8707
+ MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
8708
+ MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
8709
+ MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
8710
+ MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
8711
+ MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
8712
+ MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
8713
+ MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
8714
+ MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
8715
+ MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
8716
+ MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
8717
+ MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
8718
+ MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
8719
+ MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
8720
+ MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
8721
+ MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
8722
+ MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
8723
+ MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
8724
+ MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
8725
+ MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
8726
+ MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
8727
+ MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
8728
+ MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
8729
+ MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
8730
+ MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
8731
+ MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
8732
+ MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
8733
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
8734
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
8735
+ msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
8736
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
8737
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
8738
+ msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
8739
+ msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
8740
+ msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
8741
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
8742
+ msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
8743
+ msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
8744
+ msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
8745
+ msFlexPositive?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
8746
+ msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
8747
+ msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
8748
+ msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
8749
+ msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
8750
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
8751
+ msHyphenateLimitChars?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
8752
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "no-limit")[] | undefined;
8753
+ msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
8754
+ msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
8755
+ msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
8756
+ msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
8757
+ msOrder?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
8758
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
8759
+ msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
8760
+ msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
8761
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
8762
+ msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
8763
+ msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
8764
+ msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
8765
+ msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
8766
+ msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
8767
+ msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
8768
+ msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
8769
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
8770
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
8771
+ msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
8772
+ msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
8773
+ msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
8774
+ msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
8775
+ msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
8776
+ msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
8777
+ msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
8778
+ msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
8779
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
8780
+ msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
8781
+ msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
8782
+ msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
8783
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
8784
+ msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
8785
+ msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
8786
+ msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
8787
+ msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
8788
+ msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
8789
+ msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
8790
+ msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
8791
+ msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
8792
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
8793
+ msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
8794
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
8795
+ msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
8796
+ WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
8797
+ WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
8798
+ WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
8799
+ WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
8800
+ WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
8801
+ WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
8802
+ WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
8803
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
8804
+ WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
8805
+ WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
8806
+ WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
8807
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
8808
+ WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
8809
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
8810
+ WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
8811
+ WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
8812
+ WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
8813
+ WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
8814
+ WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
8815
+ WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
8816
+ WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
8817
+ WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
8818
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
8819
+ WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
8820
+ WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
8821
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
8822
+ WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
8823
+ WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
8824
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
8825
+ WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
8826
+ WebkitColumnCount?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
8827
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
8828
+ WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
8829
+ WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
8830
+ WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
8831
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
8832
+ WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
8833
+ WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
8834
+ WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
8835
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
8836
+ WebkitFlexGrow?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
8837
+ WebkitFlexShrink?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
8838
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
8839
+ WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
8840
+ WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
8841
+ WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
8842
+ WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
8843
+ WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
8844
+ WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
8845
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ("normal" | (string & {}) | import('csstype').Globals)[] | undefined;
8846
+ WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
8847
+ WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
8848
+ WebkitLineClamp?: readonly ("none" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
8849
+ WebkitLogicalHeight?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
8850
+ WebkitLogicalWidth?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
8851
+ WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
8852
+ WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
8853
+ WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
8854
+ WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
8855
+ WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
8856
+ WebkitMaskBoxImageSlice?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
8857
+ WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
8858
+ WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
8859
+ WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
8860
+ WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
8861
+ WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
8862
+ WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
8863
+ WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
8864
+ WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
8865
+ WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
8866
+ WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
8867
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
8868
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
8869
+ WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
8870
+ WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
8871
+ WebkitOrder?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
8872
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
8873
+ WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
8874
+ WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
8875
+ WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
8876
+ WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
8877
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
8878
+ WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
8879
+ WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
8880
+ WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
8881
+ WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
8882
+ WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
8883
+ WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
8884
+ WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
8885
+ WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
8886
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
8887
+ WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
8888
+ WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
8889
+ WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
8890
+ WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
8891
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
8892
+ WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
8893
+ WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
8894
+ WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
8895
+ WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
8896
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
8897
+ WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
8898
+ WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
8899
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
8900
+ WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
8901
+ WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
8902
+ WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
8903
+ WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
8904
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
8905
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
8906
+ WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
8907
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
8908
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8909
+ MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
8910
+ MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
8911
+ MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
8912
+ MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8913
+ msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
8914
+ msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
8915
+ msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
8916
+ msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
8917
+ msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
8918
+ msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
8919
+ msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8920
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
8921
+ WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
8922
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8923
+ WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
8924
+ WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
8925
+ WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
8926
+ WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
8927
+ WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
8928
+ WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
8929
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
8930
+ WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
8931
+ WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
8932
+ WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8933
+ boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
8934
+ boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
8935
+ boxFlex?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
8936
+ boxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
8937
+ boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
8938
+ boxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
8939
+ boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
8940
+ boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
8941
+ clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
8942
+ fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
8943
+ gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
8944
+ gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
8945
+ gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
8946
+ imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
8947
+ insetArea?: readonly string[] | import("csstype").Property.PositionArea | readonly import("csstype").Property.PositionArea[] | undefined;
8948
+ offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
8949
+ offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
8950
+ offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
8951
+ offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
8952
+ offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
8953
+ offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
8954
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
8955
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
8956
+ pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
8957
+ positionTryOptions?: readonly string[] | import("csstype").Property.PositionTryFallbacks | readonly import("csstype").Property.PositionTryFallbacks[] | undefined;
8958
+ scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
8959
+ scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
8960
+ scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
8961
+ scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
8962
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
8963
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
8964
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
8965
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
8966
+ KhtmlBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
8967
+ KhtmlBoxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
8968
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
8969
+ KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
8970
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
8971
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
8972
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
8973
+ KhtmlOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
8974
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
8975
+ MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
8976
+ MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
8977
+ MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
8978
+ MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
8979
+ MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
8980
+ MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
8981
+ MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
8982
+ MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
8983
+ MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
8984
+ MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
8985
+ MozBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
8986
+ MozBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
8987
+ MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
8988
+ MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
8989
+ MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
8990
+ MozColumnCount?: readonly ("auto" | (string & {}) | import('csstype').Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
8991
+ MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
8992
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
8993
+ MozForceBrokenImageIcon?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
8994
+ MozOpacity?: readonly ((string & {}) | import('csstype').Globals)[] | import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
8995
+ MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
8996
+ MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
8997
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | readonly NonNullable<import("csstype").Property.OutlineStyle | undefined>[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
8998
+ MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
8999
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
9000
+ MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
9001
+ MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
9002
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
9003
+ MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
9004
+ MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
9005
+ MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
9006
+ MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
9007
+ MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
9008
+ MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
9009
+ msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
9010
+ OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
9011
+ OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
9012
+ OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
9013
+ OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
9014
+ OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
9015
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
9016
+ OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
9017
+ OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
9018
+ OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
9019
+ OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
9020
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8006
9021
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
8007
9022
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
8008
9023
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
@@ -8183,7 +9198,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8183
9198
  };
8184
9199
  dotStyles: {
8185
9200
  [x: string]: import('@emotion/serialize').CSSInterpolation;
8186
- accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
9201
+ accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
8187
9202
  alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
8188
9203
  alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
8189
9204
  alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
@@ -8618,7 +9633,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8618
9633
  borderBlockWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
8619
9634
  borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
8620
9635
  borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
8621
- borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
9636
+ borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8622
9637
  borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
8623
9638
  borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
8624
9639
  borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
@@ -8654,7 +9669,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8654
9669
  marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
8655
9670
  marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
8656
9671
  mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
8657
- maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
9672
+ maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
8658
9673
  motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
8659
9674
  offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
8660
9675
  outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
@@ -8905,7 +9920,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8905
9920
  WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | readonly NonNullable<import("csstype").Property.WebkitUserSelect | undefined>[] | readonly import("csstype").Property.WebkitUserSelect[] | undefined;
8906
9921
  WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
8907
9922
  MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
8908
- MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
9923
+ MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8909
9924
  MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
8910
9925
  MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
8911
9926
  MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
@@ -8919,14 +9934,14 @@ export declare function useLegendTheme(theme: DefaultTheme): {
8919
9934
  msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
8920
9935
  WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("none" | "normal" | "auto" | "both" | (string & {}) | "reverse" | import('csstype').Globals | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
8921
9936
  WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
8922
- WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
9937
+ WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
8923
9938
  WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
8924
9939
  WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
8925
9940
  WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
8926
9941
  WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
8927
9942
  WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
8928
9943
  WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
8929
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
9944
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals | "alpha" | "luminance")[] | undefined;
8930
9945
  WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
8931
9946
  WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
8932
9947
  WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
@@ -9017,7 +10032,7 @@ export declare function useLegendTheme(theme: DefaultTheme): {
9017
10032
  OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
9018
10033
  OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
9019
10034
  OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
9020
- OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("none" | "round" | "stretch" | "repeat" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
10035
+ OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | "round" | "stretch" | (string & {}) | "space" | import('csstype').Globals)[] | undefined;
9021
10036
  OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
9022
10037
  OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
9023
10038
  OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;