@cube-dev/ui-kit 0.114.0 → 0.115.0

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 (2698) hide show
  1. package/LICENSE +21 -0
  2. package/dist/CHANGELOG.md +3315 -0
  3. package/dist/README.md +32 -0
  4. package/dist/_internal/hooks/use-chained-callback.js +15 -0
  5. package/dist/_internal/hooks/use-chained-callback.js.map +1 -0
  6. package/dist/_internal/hooks/use-debounced-value.js +46 -0
  7. package/dist/_internal/hooks/use-debounced-value.js.map +1 -0
  8. package/dist/_internal/hooks/use-deprecation-warning.js +17 -0
  9. package/dist/_internal/hooks/use-deprecation-warning.js.map +1 -0
  10. package/dist/_internal/hooks/use-event.js +19 -0
  11. package/dist/_internal/hooks/use-event.js.map +1 -0
  12. package/dist/_internal/hooks/use-is-first-render.js +16 -0
  13. package/dist/_internal/hooks/use-is-first-render.js.map +1 -0
  14. package/dist/_internal/hooks/use-sync-ref.js +16 -0
  15. package/dist/_internal/hooks/use-sync-ref.js.map +1 -0
  16. package/dist/_internal/hooks/use-timer/timer.js +52 -0
  17. package/dist/_internal/hooks/use-timer/timer.js.map +1 -0
  18. package/dist/_internal/hooks/use-timer/use-timer.js +32 -0
  19. package/dist/_internal/hooks/use-timer/use-timer.js.map +1 -0
  20. package/dist/_internal/hooks/use-warn.js +35 -0
  21. package/dist/_internal/hooks/use-warn.js.map +1 -0
  22. package/dist/_virtual/_rolldown/runtime.js +8 -0
  23. package/dist/chunks/cacheKey.js +71 -0
  24. package/dist/chunks/cacheKey.js.map +1 -0
  25. package/dist/chunks/definitions.js +261 -0
  26. package/dist/chunks/definitions.js.map +1 -0
  27. package/dist/chunks/renderChunk.js +68 -0
  28. package/dist/chunks/renderChunk.js.map +1 -0
  29. package/dist/components/Block.d.ts +11 -0
  30. package/dist/components/Block.js +22 -0
  31. package/dist/components/Block.js.map +1 -0
  32. package/dist/components/CollectionItem.d.ts +24 -0
  33. package/dist/components/CollectionItem.js +50 -0
  34. package/dist/components/CollectionItem.js.map +1 -0
  35. package/dist/components/GlobalStyles.js +310 -0
  36. package/dist/components/GlobalStyles.js.map +1 -0
  37. package/dist/components/GridProvider.d.ts +18 -0
  38. package/dist/components/GridProvider.js +56 -0
  39. package/dist/components/GridProvider.js.map +1 -0
  40. package/dist/components/HiddenInput.js +32 -0
  41. package/dist/components/HiddenInput.js.map +1 -0
  42. package/dist/components/Root.d.ts +30 -0
  43. package/dist/components/Root.js +131 -0
  44. package/dist/components/Root.js.map +1 -0
  45. package/dist/components/actions/Action/Action.d.ts +20 -0
  46. package/dist/components/actions/Action/Action.js +41 -0
  47. package/dist/components/actions/Action/Action.js.map +1 -0
  48. package/dist/components/actions/Banner/Banner.d.ts +49 -0
  49. package/dist/components/actions/Banner/Banner.js +83 -0
  50. package/dist/components/actions/Banner/Banner.js.map +1 -0
  51. package/dist/components/actions/Banner/index.d.ts +2 -0
  52. package/dist/components/actions/Button/Button.d.ts +1815 -0
  53. package/dist/components/actions/Button/Button.js +337 -0
  54. package/dist/components/actions/Button/Button.js.map +1 -0
  55. package/dist/components/actions/Button/index.d.ts +2 -0
  56. package/dist/components/actions/ButtonGroup/ButtonGroup.d.ts +9 -0
  57. package/dist/components/actions/ButtonGroup/ButtonGroup.js +22 -0
  58. package/dist/components/actions/ButtonGroup/ButtonGroup.js.map +1 -0
  59. package/dist/components/actions/CommandMenu/CommandMenu.d.ts +45 -0
  60. package/dist/components/actions/CommandMenu/CommandMenu.js +364 -0
  61. package/dist/components/actions/CommandMenu/CommandMenu.js.map +1 -0
  62. package/dist/components/actions/CommandMenu/index.d.ts +2 -0
  63. package/dist/components/actions/CommandMenu/styled.js +103 -0
  64. package/dist/components/actions/CommandMenu/styled.js.map +1 -0
  65. package/dist/components/actions/ItemAction/ItemAction.d.ts +28 -0
  66. package/dist/components/actions/ItemAction/ItemAction.js +158 -0
  67. package/dist/components/actions/ItemAction/ItemAction.js.map +1 -0
  68. package/dist/components/actions/ItemAction/index.d.ts +2 -0
  69. package/dist/components/actions/ItemActionContext.d.ts +30 -0
  70. package/dist/components/actions/ItemActionContext.js +24 -0
  71. package/dist/components/actions/ItemActionContext.js.map +1 -0
  72. package/dist/components/actions/ItemButton/ItemButton.d.ts +27 -0
  73. package/dist/components/actions/ItemButton/ItemButton.js +178 -0
  74. package/dist/components/actions/ItemButton/ItemButton.js.map +1 -0
  75. package/dist/components/actions/ItemButton/index.d.ts +3 -0
  76. package/dist/components/actions/Link/Link.d.ts +10 -0
  77. package/dist/components/actions/Link/Link.js +18 -0
  78. package/dist/components/actions/Link/Link.js.map +1 -0
  79. package/dist/components/actions/Menu/Menu.d.ts +68 -0
  80. package/dist/components/actions/Menu/Menu.js +136 -0
  81. package/dist/components/actions/Menu/Menu.js.map +1 -0
  82. package/dist/components/actions/Menu/MenuItem.d.ts +23 -0
  83. package/dist/components/actions/Menu/MenuItem.js +79 -0
  84. package/dist/components/actions/Menu/MenuItem.js.map +1 -0
  85. package/dist/components/actions/Menu/MenuSection.d.ts +17 -0
  86. package/dist/components/actions/Menu/MenuSection.js +51 -0
  87. package/dist/components/actions/Menu/MenuSection.js.map +1 -0
  88. package/dist/components/actions/Menu/MenuTrigger.d.ts +21 -0
  89. package/dist/components/actions/Menu/MenuTrigger.js +141 -0
  90. package/dist/components/actions/Menu/MenuTrigger.js.map +1 -0
  91. package/dist/components/actions/Menu/SubMenuTrigger.d.ts +50 -0
  92. package/dist/components/actions/Menu/SubMenuTrigger.js +243 -0
  93. package/dist/components/actions/Menu/SubMenuTrigger.js.map +1 -0
  94. package/dist/components/actions/Menu/SubmenuTriggerContext.js +9 -0
  95. package/dist/components/actions/Menu/SubmenuTriggerContext.js.map +1 -0
  96. package/dist/components/actions/Menu/context.d.ts +22 -0
  97. package/dist/components/actions/Menu/context.js +12 -0
  98. package/dist/components/actions/Menu/context.js.map +1 -0
  99. package/dist/components/actions/Menu/index.d.ts +7 -0
  100. package/dist/components/actions/Menu/styled.js +212 -0
  101. package/dist/components/actions/Menu/styled.js.map +1 -0
  102. package/dist/components/actions/index.d.ts +39 -0
  103. package/dist/components/actions/index.js +25 -0
  104. package/dist/components/actions/index.js.map +1 -0
  105. package/dist/components/actions/use-action.d.ts +75 -0
  106. package/dist/components/actions/use-action.js +230 -0
  107. package/dist/components/actions/use-action.js.map +1 -0
  108. package/dist/components/actions/use-anchored-menu.d.ts +42 -0
  109. package/dist/components/actions/use-anchored-menu.js +109 -0
  110. package/dist/components/actions/use-anchored-menu.js.map +1 -0
  111. package/dist/components/actions/use-context-menu.d.ts +48 -0
  112. package/dist/components/actions/use-context-menu.js +184 -0
  113. package/dist/components/actions/use-context-menu.js.map +1 -0
  114. package/dist/components/content/ActiveZone/ActiveZone.d.ts +16 -0
  115. package/dist/components/content/ActiveZone/ActiveZone.js +48 -0
  116. package/dist/components/content/ActiveZone/ActiveZone.js.map +1 -0
  117. package/dist/components/content/Alert/Alert.d.ts +9 -0
  118. package/dist/components/content/Alert/Alert.js +55 -0
  119. package/dist/components/content/Alert/Alert.js.map +1 -0
  120. package/dist/components/content/Alert/index.d.ts +3 -0
  121. package/dist/components/content/Alert/types.d.ts +31 -0
  122. package/dist/components/content/Alert/use-alert.js +30 -0
  123. package/dist/components/content/Alert/use-alert.js.map +1 -0
  124. package/dist/components/content/Avatar/Avatar.d.ts +16 -0
  125. package/dist/components/content/Avatar/Avatar.js +40 -0
  126. package/dist/components/content/Avatar/Avatar.js.map +1 -0
  127. package/dist/components/content/Badge/Badge.d.ts +15 -0
  128. package/dist/components/content/Badge/Badge.js +57 -0
  129. package/dist/components/content/Badge/Badge.js.map +1 -0
  130. package/dist/components/content/Card/Card.d.ts +11 -0
  131. package/dist/components/content/Card/Card.js +34 -0
  132. package/dist/components/content/Card/Card.js.map +1 -0
  133. package/dist/components/content/Content.d.ts +11 -0
  134. package/dist/components/content/Content.js +38 -0
  135. package/dist/components/content/Content.js.map +1 -0
  136. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.d.ts +24 -0
  137. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.js +167 -0
  138. package/dist/components/content/CopyPasteBlock/CopyPasteBlock.js.map +1 -0
  139. package/dist/components/content/CopyPasteBlock/index.d.ts +2 -0
  140. package/dist/components/content/CopySnippet/CopySnippet.d.ts +44 -0
  141. package/dist/components/content/CopySnippet/CopySnippet.js +198 -0
  142. package/dist/components/content/CopySnippet/CopySnippet.js.map +1 -0
  143. package/dist/components/content/CopySnippet/index.d.ts +2 -0
  144. package/dist/components/content/Disclosure/Disclosure.d.ts +82 -0
  145. package/dist/components/content/Disclosure/Disclosure.js +332 -0
  146. package/dist/components/content/Disclosure/Disclosure.js.map +1 -0
  147. package/dist/components/content/Disclosure/index.d.ts +2 -0
  148. package/dist/components/content/Divider.d.ts +11 -0
  149. package/dist/components/content/Divider.js +69 -0
  150. package/dist/components/content/Divider.js.map +1 -0
  151. package/dist/components/content/Footer.d.ts +11 -0
  152. package/dist/components/content/Footer.js +33 -0
  153. package/dist/components/content/Footer.js.map +1 -0
  154. package/dist/components/content/Header.d.ts +11 -0
  155. package/dist/components/content/Header.js +34 -0
  156. package/dist/components/content/Header.js.map +1 -0
  157. package/dist/components/content/HotKeys/HotKeys.d.ts +14 -0
  158. package/dist/components/content/HotKeys/HotKeys.js +92 -0
  159. package/dist/components/content/HotKeys/HotKeys.js.map +1 -0
  160. package/dist/components/content/HotKeys/index.d.ts +2 -0
  161. package/dist/components/content/Item/Item.d.ts +171 -0
  162. package/dist/components/content/Item/Item.js +575 -0
  163. package/dist/components/content/Item/Item.js.map +1 -0
  164. package/dist/components/content/Item/index.d.ts +4 -0
  165. package/dist/components/content/ItemBadge/ItemBadge.d.ts +23 -0
  166. package/dist/components/content/ItemBadge/ItemBadge.js +108 -0
  167. package/dist/components/content/ItemBadge/ItemBadge.js.map +1 -0
  168. package/dist/components/content/ItemBadge/index.d.ts +2 -0
  169. package/dist/components/content/Layout/GridLayout.d.ts +42 -0
  170. package/dist/components/content/Layout/GridLayout.js +50 -0
  171. package/dist/components/content/Layout/GridLayout.js.map +1 -0
  172. package/dist/components/content/Layout/Layout.d.ts +40 -0
  173. package/dist/components/content/Layout/Layout.js +218 -0
  174. package/dist/components/content/Layout/Layout.js.map +1 -0
  175. package/dist/components/content/Layout/LayoutBlock.d.ts +10 -0
  176. package/dist/components/content/Layout/LayoutBlock.js +31 -0
  177. package/dist/components/content/Layout/LayoutBlock.js.map +1 -0
  178. package/dist/components/content/Layout/LayoutCenter.d.ts +10 -0
  179. package/dist/components/content/Layout/LayoutCenter.js +33 -0
  180. package/dist/components/content/Layout/LayoutCenter.js.map +1 -0
  181. package/dist/components/content/Layout/LayoutContainer.d.ts +23 -0
  182. package/dist/components/content/Layout/LayoutContainer.js +72 -0
  183. package/dist/components/content/Layout/LayoutContainer.js.map +1 -0
  184. package/dist/components/content/Layout/LayoutContent.d.ts +23 -0
  185. package/dist/components/content/Layout/LayoutContent.js +149 -0
  186. package/dist/components/content/Layout/LayoutContent.js.map +1 -0
  187. package/dist/components/content/Layout/LayoutContext.d.ts +9 -0
  188. package/dist/components/content/Layout/LayoutContext.js +134 -0
  189. package/dist/components/content/Layout/LayoutContext.js.map +1 -0
  190. package/dist/components/content/Layout/LayoutFlex.d.ts +10 -0
  191. package/dist/components/content/Layout/LayoutFlex.js +35 -0
  192. package/dist/components/content/Layout/LayoutFlex.js.map +1 -0
  193. package/dist/components/content/Layout/LayoutFooter.d.ts +13 -0
  194. package/dist/components/content/Layout/LayoutFooter.js +53 -0
  195. package/dist/components/content/Layout/LayoutFooter.js.map +1 -0
  196. package/dist/components/content/Layout/LayoutGrid.d.ts +19 -0
  197. package/dist/components/content/Layout/LayoutGrid.js +38 -0
  198. package/dist/components/content/Layout/LayoutGrid.js.map +1 -0
  199. package/dist/components/content/Layout/LayoutHeader.d.ts +27 -0
  200. package/dist/components/content/Layout/LayoutHeader.js +145 -0
  201. package/dist/components/content/Layout/LayoutHeader.js.map +1 -0
  202. package/dist/components/content/Layout/LayoutPane.d.ts +39 -0
  203. package/dist/components/content/Layout/LayoutPane.js +359 -0
  204. package/dist/components/content/Layout/LayoutPane.js.map +1 -0
  205. package/dist/components/content/Layout/LayoutPanel.d.ts +74 -0
  206. package/dist/components/content/Layout/LayoutPanel.js +484 -0
  207. package/dist/components/content/Layout/LayoutPanel.js.map +1 -0
  208. package/dist/components/content/Layout/LayoutPanelHeader.d.ts +22 -0
  209. package/dist/components/content/Layout/LayoutPanelHeader.js +57 -0
  210. package/dist/components/content/Layout/LayoutPanelHeader.js.map +1 -0
  211. package/dist/components/content/Layout/LayoutToolbar.d.ts +10 -0
  212. package/dist/components/content/Layout/LayoutToolbar.js +40 -0
  213. package/dist/components/content/Layout/LayoutToolbar.js.map +1 -0
  214. package/dist/components/content/Layout/hooks/useTinyScrollbar.js +143 -0
  215. package/dist/components/content/Layout/hooks/useTinyScrollbar.js.map +1 -0
  216. package/dist/components/content/Layout/index.d.ts +37 -0
  217. package/dist/components/content/Layout/index.js +36 -0
  218. package/dist/components/content/Layout/index.js.map +1 -0
  219. package/dist/components/content/Layout/utils.js +16 -0
  220. package/dist/components/content/Layout/utils.js.map +1 -0
  221. package/dist/components/content/Paragraph.d.ts +12 -0
  222. package/dist/components/content/Paragraph.js +28 -0
  223. package/dist/components/content/Paragraph.js.map +1 -0
  224. package/dist/components/content/Placeholder/Placeholder.d.ts +16 -0
  225. package/dist/components/content/Placeholder/Placeholder.js +76 -0
  226. package/dist/components/content/Placeholder/Placeholder.js.map +1 -0
  227. package/dist/components/content/PrismCode/PrismCode.d.ts +27 -0
  228. package/dist/components/content/PrismCode/PrismCode.js +99 -0
  229. package/dist/components/content/PrismCode/PrismCode.js.map +1 -0
  230. package/dist/components/content/PrismCode/prismSetup.js +148 -0
  231. package/dist/components/content/PrismCode/prismSetup.js.map +1 -0
  232. package/dist/components/content/PrismDiffCode/PrismDiffCode.d.ts +25 -0
  233. package/dist/components/content/PrismDiffCode/PrismDiffCode.js +27 -0
  234. package/dist/components/content/PrismDiffCode/PrismDiffCode.js.map +1 -0
  235. package/dist/components/content/Result/Result.d.ts +36 -0
  236. package/dist/components/content/Result/Result.js +146 -0
  237. package/dist/components/content/Result/Result.js.map +1 -0
  238. package/dist/components/content/Skeleton/Skeleton.d.ts +89 -0
  239. package/dist/components/content/Skeleton/Skeleton.js +169 -0
  240. package/dist/components/content/Skeleton/Skeleton.js.map +1 -0
  241. package/dist/components/content/Tag/Tag.d.ts +18 -0
  242. package/dist/components/content/Tag/Tag.js +58 -0
  243. package/dist/components/content/Tag/Tag.js.map +1 -0
  244. package/dist/components/content/Text.d.ts +2935 -0
  245. package/dist/components/content/Text.js +101 -0
  246. package/dist/components/content/Text.js.map +1 -0
  247. package/dist/components/content/TextItem/TextItem.d.ts +42 -0
  248. package/dist/components/content/TextItem/TextItem.js +66 -0
  249. package/dist/components/content/TextItem/TextItem.js.map +1 -0
  250. package/dist/components/content/TextItem/index.d.ts +2 -0
  251. package/dist/components/content/Title.d.ts +18 -0
  252. package/dist/components/content/Title.js +86 -0
  253. package/dist/components/content/Title.js.map +1 -0
  254. package/dist/components/content/highlightText.js +26 -0
  255. package/dist/components/content/highlightText.js.map +1 -0
  256. package/dist/components/content/use-auto-tooltip.d.ts +14 -0
  257. package/dist/components/content/use-auto-tooltip.js +116 -0
  258. package/dist/components/content/use-auto-tooltip.js.map +1 -0
  259. package/dist/components/fields/Checkbox/Checkbox.d.ts +29 -0
  260. package/dist/components/fields/Checkbox/Checkbox.js +190 -0
  261. package/dist/components/fields/Checkbox/Checkbox.js.map +1 -0
  262. package/dist/components/fields/Checkbox/CheckboxGroup.d.ts +23 -0
  263. package/dist/components/fields/Checkbox/CheckboxGroup.js +82 -0
  264. package/dist/components/fields/Checkbox/CheckboxGroup.js.map +1 -0
  265. package/dist/components/fields/Checkbox/context.js +9 -0
  266. package/dist/components/fields/Checkbox/context.js.map +1 -0
  267. package/dist/components/fields/Checkbox/index.d.ts +3 -0
  268. package/dist/components/fields/ComboBox/ComboBox.d.ts +133 -0
  269. package/dist/components/fields/ComboBox/ComboBox.js +897 -0
  270. package/dist/components/fields/ComboBox/ComboBox.js.map +1 -0
  271. package/dist/components/fields/ComboBox/index.d.ts +2 -0
  272. package/dist/components/fields/DatePicker/DateInput.d.ts +28 -0
  273. package/dist/components/fields/DatePicker/DateInput.js +76 -0
  274. package/dist/components/fields/DatePicker/DateInput.js.map +1 -0
  275. package/dist/components/fields/DatePicker/DateInputBase.js +85 -0
  276. package/dist/components/fields/DatePicker/DateInputBase.js.map +1 -0
  277. package/dist/components/fields/DatePicker/DatePicker.d.ts +27 -0
  278. package/dist/components/fields/DatePicker/DatePicker.js +111 -0
  279. package/dist/components/fields/DatePicker/DatePicker.js.map +1 -0
  280. package/dist/components/fields/DatePicker/DatePickerButton.js +12 -0
  281. package/dist/components/fields/DatePicker/DatePickerButton.js.map +1 -0
  282. package/dist/components/fields/DatePicker/DatePickerElement.js +17 -0
  283. package/dist/components/fields/DatePicker/DatePickerElement.js.map +1 -0
  284. package/dist/components/fields/DatePicker/DatePickerInput.js +51 -0
  285. package/dist/components/fields/DatePicker/DatePickerInput.js.map +1 -0
  286. package/dist/components/fields/DatePicker/DatePickerSegment.js +76 -0
  287. package/dist/components/fields/DatePicker/DatePickerSegment.js.map +1 -0
  288. package/dist/components/fields/DatePicker/DateRangePicker.d.ts +27 -0
  289. package/dist/components/fields/DatePicker/DateRangePicker.js +137 -0
  290. package/dist/components/fields/DatePicker/DateRangePicker.js.map +1 -0
  291. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.d.ts +28 -0
  292. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.js +220 -0
  293. package/dist/components/fields/DatePicker/DateRangeSeparatedPicker.js.map +1 -0
  294. package/dist/components/fields/DatePicker/TimeInput.d.ts +46 -0
  295. package/dist/components/fields/DatePicker/TimeInput.js +65 -0
  296. package/dist/components/fields/DatePicker/TimeInput.js.map +1 -0
  297. package/dist/components/fields/DatePicker/index.d.ts +8 -0
  298. package/dist/components/fields/DatePicker/intl.js +11 -0
  299. package/dist/components/fields/DatePicker/intl.js.map +1 -0
  300. package/dist/components/fields/DatePicker/parseDate.d.ts +8 -0
  301. package/dist/components/fields/DatePicker/parseDate.js +21 -0
  302. package/dist/components/fields/DatePicker/parseDate.js.map +1 -0
  303. package/dist/components/fields/DatePicker/props.js +17 -0
  304. package/dist/components/fields/DatePicker/props.js.map +1 -0
  305. package/dist/components/fields/DatePicker/types.d.ts +35 -0
  306. package/dist/components/fields/DatePicker/utils.js +45 -0
  307. package/dist/components/fields/DatePicker/utils.js.map +1 -0
  308. package/dist/components/fields/FileInput/FileInput.d.ts +42 -0
  309. package/dist/components/fields/FileInput/FileInput.js +182 -0
  310. package/dist/components/fields/FileInput/FileInput.js.map +1 -0
  311. package/dist/components/fields/FilterListBox/FilterListBox.d.ts +87 -0
  312. package/dist/components/fields/FilterListBox/FilterListBox.js +487 -0
  313. package/dist/components/fields/FilterListBox/FilterListBox.js.map +1 -0
  314. package/dist/components/fields/FilterListBox/index.d.ts +2 -0
  315. package/dist/components/fields/FilterPicker/FilterPicker.d.ts +86 -0
  316. package/dist/components/fields/FilterPicker/FilterPicker.js +451 -0
  317. package/dist/components/fields/FilterPicker/FilterPicker.js.map +1 -0
  318. package/dist/components/fields/FilterPicker/index.d.ts +2 -0
  319. package/dist/components/fields/Input/Input.d.ts +20 -0
  320. package/dist/components/fields/Input/Input.js +19 -0
  321. package/dist/components/fields/Input/Input.js.map +1 -0
  322. package/dist/components/fields/Input/index.d.ts +2 -0
  323. package/dist/components/fields/ListBox/ListBox.d.ts +133 -0
  324. package/dist/components/fields/ListBox/ListBox.js +709 -0
  325. package/dist/components/fields/ListBox/ListBox.js.map +1 -0
  326. package/dist/components/fields/ListBox/index.d.ts +2 -0
  327. package/dist/components/fields/NumberInput/NumberInput.d.ts +19 -0
  328. package/dist/components/fields/NumberInput/NumberInput.js +73 -0
  329. package/dist/components/fields/NumberInput/NumberInput.js.map +1 -0
  330. package/dist/components/fields/NumberInput/StepButton.js +45 -0
  331. package/dist/components/fields/NumberInput/StepButton.js.map +1 -0
  332. package/dist/components/fields/PasswordInput/PasswordInput.d.ts +17 -0
  333. package/dist/components/fields/PasswordInput/PasswordInput.js +70 -0
  334. package/dist/components/fields/PasswordInput/PasswordInput.js.map +1 -0
  335. package/dist/components/fields/Picker/Picker.d.ts +84 -0
  336. package/dist/components/fields/Picker/Picker.js +372 -0
  337. package/dist/components/fields/Picker/Picker.js.map +1 -0
  338. package/dist/components/fields/Picker/index.d.ts +2 -0
  339. package/dist/components/fields/RadioGroup/Radio.d.ts +63 -0
  340. package/dist/components/fields/RadioGroup/Radio.js +242 -0
  341. package/dist/components/fields/RadioGroup/Radio.js.map +1 -0
  342. package/dist/components/fields/RadioGroup/RadioGroup.d.ts +31 -0
  343. package/dist/components/fields/RadioGroup/RadioGroup.js +109 -0
  344. package/dist/components/fields/RadioGroup/RadioGroup.js.map +1 -0
  345. package/dist/components/fields/RadioGroup/context.js +12 -0
  346. package/dist/components/fields/RadioGroup/context.js.map +1 -0
  347. package/dist/components/fields/RadioGroup/index.d.ts +3 -0
  348. package/dist/components/fields/SearchInput/SearchInput.d.ts +19 -0
  349. package/dist/components/fields/SearchInput/SearchInput.js +53 -0
  350. package/dist/components/fields/SearchInput/SearchInput.js.map +1 -0
  351. package/dist/components/fields/SearchInput/index.d.ts +2 -0
  352. package/dist/components/fields/Select/Select.d.ts +967 -0
  353. package/dist/components/fields/Select/Select.js +440 -0
  354. package/dist/components/fields/Select/Select.js.map +1 -0
  355. package/dist/components/fields/Select/index.d.ts +2 -0
  356. package/dist/components/fields/Slider/Gradation.js +21 -0
  357. package/dist/components/fields/Slider/Gradation.js.map +1 -0
  358. package/dist/components/fields/Slider/HueSlider.d.ts +19 -0
  359. package/dist/components/fields/Slider/HueSlider.js +72 -0
  360. package/dist/components/fields/Slider/HueSlider.js.map +1 -0
  361. package/dist/components/fields/Slider/RangeSlider.d.ts +17 -0
  362. package/dist/components/fields/Slider/RangeSlider.js +61 -0
  363. package/dist/components/fields/Slider/RangeSlider.js.map +1 -0
  364. package/dist/components/fields/Slider/Slider.d.ts +25 -0
  365. package/dist/components/fields/Slider/Slider.js +67 -0
  366. package/dist/components/fields/Slider/Slider.js.map +1 -0
  367. package/dist/components/fields/Slider/SliderBase.js +119 -0
  368. package/dist/components/fields/Slider/SliderBase.js.map +1 -0
  369. package/dist/components/fields/Slider/SliderThumb.js +51 -0
  370. package/dist/components/fields/Slider/SliderThumb.js.map +1 -0
  371. package/dist/components/fields/Slider/SliderTrack.js +27 -0
  372. package/dist/components/fields/Slider/SliderTrack.js.map +1 -0
  373. package/dist/components/fields/Slider/elements.js +152 -0
  374. package/dist/components/fields/Slider/elements.js.map +1 -0
  375. package/dist/components/fields/Slider/index.d.ts +7 -0
  376. package/dist/components/fields/Slider/index.js +7 -0
  377. package/dist/components/fields/Slider/types.d.ts +25 -0
  378. package/dist/components/fields/Switch/Switch.d.ts +26 -0
  379. package/dist/components/fields/Switch/Switch.js +195 -0
  380. package/dist/components/fields/Switch/Switch.js.map +1 -0
  381. package/dist/components/fields/TextArea/TextArea.d.ts +25 -0
  382. package/dist/components/fields/TextArea/TextArea.js +92 -0
  383. package/dist/components/fields/TextArea/TextArea.js.map +1 -0
  384. package/dist/components/fields/TextArea/index.d.ts +2 -0
  385. package/dist/components/fields/TextInput/TextInput.d.ts +12 -0
  386. package/dist/components/fields/TextInput/TextInput.js +44 -0
  387. package/dist/components/fields/TextInput/TextInput.js.map +1 -0
  388. package/dist/components/fields/TextInput/TextInputBase.d.ts +53 -0
  389. package/dist/components/fields/TextInput/TextInputBase.js +274 -0
  390. package/dist/components/fields/TextInput/TextInputBase.js.map +1 -0
  391. package/dist/components/fields/TextInput/index.d.ts +3 -0
  392. package/dist/components/fields/TextInputMapper/TextInputMapper.d.ts +38 -0
  393. package/dist/components/fields/TextInputMapper/TextInputMapper.js +237 -0
  394. package/dist/components/fields/TextInputMapper/TextInputMapper.js.map +1 -0
  395. package/dist/components/fields/TextInputMapper/index.d.ts +2 -0
  396. package/dist/components/fields/index.d.ts +47 -0
  397. package/dist/components/form/FieldWrapper/FieldWrapper.d.ts +13 -0
  398. package/dist/components/form/FieldWrapper/FieldWrapper.js +170 -0
  399. package/dist/components/form/FieldWrapper/FieldWrapper.js.map +1 -0
  400. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.d.ts +12 -0
  401. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.js +41 -0
  402. package/dist/components/form/FieldWrapper/extract-field-wrapper-props.js.map +1 -0
  403. package/dist/components/form/FieldWrapper/index.d.ts +4 -0
  404. package/dist/components/form/FieldWrapper/types.d.ts +42 -0
  405. package/dist/components/form/Form/Field.d.ts +23 -0
  406. package/dist/components/form/Form/Field.js +139 -0
  407. package/dist/components/form/Form/Field.js.map +1 -0
  408. package/dist/components/form/Form/Form.d.ts +35 -0
  409. package/dist/components/form/Form/Form.js +151 -0
  410. package/dist/components/form/Form/Form.js.map +1 -0
  411. package/dist/components/form/Form/ResetButton/ResetButton.d.ts +16 -0
  412. package/dist/components/form/Form/ResetButton/ResetButton.js +38 -0
  413. package/dist/components/form/Form/ResetButton/ResetButton.js.map +1 -0
  414. package/dist/components/form/Form/ResetButton/index.d.ts +2 -0
  415. package/dist/components/form/Form/SubmitButton/SubmitButton.d.ts +16 -0
  416. package/dist/components/form/Form/SubmitButton/SubmitButton.js +30 -0
  417. package/dist/components/form/Form/SubmitButton/SubmitButton.js.map +1 -0
  418. package/dist/components/form/Form/SubmitButton/index.d.ts +2 -0
  419. package/dist/components/form/Form/SubmitError.d.ts +13 -0
  420. package/dist/components/form/Form/SubmitError.js +27 -0
  421. package/dist/components/form/Form/SubmitError.js.map +1 -0
  422. package/dist/components/form/Form/index.d.ts +38 -0
  423. package/dist/components/form/Form/index.js +22 -0
  424. package/dist/components/form/Form/index.js.map +1 -0
  425. package/dist/components/form/Form/types.d.ts +23 -0
  426. package/dist/components/form/Form/use-field/index.d.ts +4 -0
  427. package/dist/components/form/Form/use-field/types.d.ts +43 -0
  428. package/dist/components/form/Form/use-field/use-field-props.d.ts +29 -0
  429. package/dist/components/form/Form/use-field/use-field-props.js +71 -0
  430. package/dist/components/form/Form/use-field/use-field-props.js.map +1 -0
  431. package/dist/components/form/Form/use-field/use-field.d.ts +14 -0
  432. package/dist/components/form/Form/use-field/use-field.js +134 -0
  433. package/dist/components/form/Form/use-field/use-field.js.map +1 -0
  434. package/dist/components/form/Form/use-form.d.ts +77 -0
  435. package/dist/components/form/Form/use-form.js +322 -0
  436. package/dist/components/form/Form/use-form.js.map +1 -0
  437. package/dist/components/form/Form/validation.js +133 -0
  438. package/dist/components/form/Form/validation.js.map +1 -0
  439. package/dist/components/form/Label.d.ts +25 -0
  440. package/dist/components/form/Label.js +100 -0
  441. package/dist/components/form/Label.js.map +1 -0
  442. package/dist/components/form/index.d.ts +19 -0
  443. package/dist/components/form/wrapper.d.ts +15 -0
  444. package/dist/components/form/wrapper.js +38 -0
  445. package/dist/components/form/wrapper.js.map +1 -0
  446. package/dist/components/helpers/DisplayTransition/DisplayTransition.d.ts +36 -0
  447. package/dist/components/helpers/DisplayTransition/DisplayTransition.js +218 -0
  448. package/dist/components/helpers/DisplayTransition/DisplayTransition.js.map +1 -0
  449. package/dist/components/helpers/IconSwitch/IconSwitch.js +124 -0
  450. package/dist/components/helpers/IconSwitch/IconSwitch.js.map +1 -0
  451. package/dist/components/layout/Flex.d.ts +11 -0
  452. package/dist/components/layout/Flex.js +25 -0
  453. package/dist/components/layout/Flex.js.map +1 -0
  454. package/dist/components/layout/Flow.d.ts +11 -0
  455. package/dist/components/layout/Flow.js +26 -0
  456. package/dist/components/layout/Flow.js.map +1 -0
  457. package/dist/components/layout/Grid.d.ts +11 -0
  458. package/dist/components/layout/Grid.js +31 -0
  459. package/dist/components/layout/Grid.js.map +1 -0
  460. package/dist/components/layout/Panel.d.ts +28 -0
  461. package/dist/components/layout/Panel.js +133 -0
  462. package/dist/components/layout/Panel.js.map +1 -0
  463. package/dist/components/layout/Prefix.d.ts +15 -0
  464. package/dist/components/layout/Prefix.js +50 -0
  465. package/dist/components/layout/Prefix.js.map +1 -0
  466. package/dist/components/layout/ResizablePanel.d.ts +21 -0
  467. package/dist/components/layout/ResizablePanel.js +278 -0
  468. package/dist/components/layout/ResizablePanel.js.map +1 -0
  469. package/dist/components/layout/Space.d.ts +13 -0
  470. package/dist/components/layout/Space.js +38 -0
  471. package/dist/components/layout/Space.js.map +1 -0
  472. package/dist/components/layout/Suffix.d.ts +15 -0
  473. package/dist/components/layout/Suffix.js +49 -0
  474. package/dist/components/layout/Suffix.js.map +1 -0
  475. package/dist/components/navigation/Tabs/DraggableTabList.js +73 -0
  476. package/dist/components/navigation/Tabs/DraggableTabList.js.map +1 -0
  477. package/dist/components/navigation/Tabs/EditableTitle.js +100 -0
  478. package/dist/components/navigation/Tabs/EditableTitle.js.map +1 -0
  479. package/dist/components/navigation/Tabs/TabButton.js +321 -0
  480. package/dist/components/navigation/Tabs/TabButton.js.map +1 -0
  481. package/dist/components/navigation/Tabs/TabDropIndicator.js +54 -0
  482. package/dist/components/navigation/Tabs/TabDropIndicator.js.map +1 -0
  483. package/dist/components/navigation/Tabs/TabPanel.js +109 -0
  484. package/dist/components/navigation/Tabs/TabPanel.js.map +1 -0
  485. package/dist/components/navigation/Tabs/TabPicker.js +53 -0
  486. package/dist/components/navigation/Tabs/TabPicker.js.map +1 -0
  487. package/dist/components/navigation/Tabs/Tabs.d.ts +60 -0
  488. package/dist/components/navigation/Tabs/Tabs.js +419 -0
  489. package/dist/components/navigation/Tabs/Tabs.js.map +1 -0
  490. package/dist/components/navigation/Tabs/TabsAction.d.ts +46 -0
  491. package/dist/components/navigation/Tabs/TabsAction.js +63 -0
  492. package/dist/components/navigation/Tabs/TabsAction.js.map +1 -0
  493. package/dist/components/navigation/Tabs/TabsContext.js +29 -0
  494. package/dist/components/navigation/Tabs/TabsContext.js.map +1 -0
  495. package/dist/components/navigation/Tabs/index.d.ts +4 -0
  496. package/dist/components/navigation/Tabs/styled.js +318 -0
  497. package/dist/components/navigation/Tabs/styled.js.map +1 -0
  498. package/dist/components/navigation/Tabs/types.d.ts +257 -0
  499. package/dist/components/navigation/Tabs/types.js +14 -0
  500. package/dist/components/navigation/Tabs/types.js.map +1 -0
  501. package/dist/components/navigation/Tabs/use-tab-editing.js +46 -0
  502. package/dist/components/navigation/Tabs/use-tab-editing.js.map +1 -0
  503. package/dist/components/navigation/Tabs/use-tab-indicator.js +64 -0
  504. package/dist/components/navigation/Tabs/use-tab-indicator.js.map +1 -0
  505. package/dist/components/navigation/index.d.ts +5 -0
  506. package/dist/components/organisms/FileTabs/FileTabs.d.ts +55 -0
  507. package/dist/components/organisms/FileTabs/FileTabs.js +282 -0
  508. package/dist/components/organisms/FileTabs/FileTabs.js.map +1 -0
  509. package/dist/components/organisms/StatsCard/StatsCard.d.ts +20 -0
  510. package/dist/components/organisms/StatsCard/StatsCard.js +36 -0
  511. package/dist/components/organisms/StatsCard/StatsCard.js.map +1 -0
  512. package/dist/components/other/Calendar/Calendar.js +72 -0
  513. package/dist/components/other/Calendar/Calendar.js.map +1 -0
  514. package/dist/components/other/Calendar/CalendarCell.js +68 -0
  515. package/dist/components/other/Calendar/CalendarCell.js.map +1 -0
  516. package/dist/components/other/Calendar/CalendarGrid.js +45 -0
  517. package/dist/components/other/Calendar/CalendarGrid.js.map +1 -0
  518. package/dist/components/other/Calendar/RangeCalendar.js +70 -0
  519. package/dist/components/other/Calendar/RangeCalendar.js.map +1 -0
  520. package/dist/components/other/CloudLogo/CloudLogo.d.ts +11 -0
  521. package/dist/components/other/CloudLogo/CloudLogo.js +110 -0
  522. package/dist/components/other/CloudLogo/CloudLogo.js.map +1 -0
  523. package/dist/components/overlays/AlertDialog/AlertDialog.d.ts +28 -0
  524. package/dist/components/overlays/AlertDialog/AlertDialog.js +71 -0
  525. package/dist/components/overlays/AlertDialog/AlertDialog.js.map +1 -0
  526. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.d.ts +72 -0
  527. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.js +135 -0
  528. package/dist/components/overlays/AlertDialog/AlertDialogApiProvider.js.map +1 -0
  529. package/dist/components/overlays/AlertDialog/AlertDialogZone.d.ts +3 -0
  530. package/dist/components/overlays/AlertDialog/AlertDialogZone.js +63 -0
  531. package/dist/components/overlays/AlertDialog/AlertDialogZone.js.map +1 -0
  532. package/dist/components/overlays/AlertDialog/index.d.ts +4 -0
  533. package/dist/components/overlays/AlertDialog/types.d.ts +22 -0
  534. package/dist/components/overlays/Dialog/Dialog.d.ts +30 -0
  535. package/dist/components/overlays/Dialog/Dialog.js +228 -0
  536. package/dist/components/overlays/Dialog/Dialog.js.map +1 -0
  537. package/dist/components/overlays/Dialog/DialogContainer.d.ts +36 -0
  538. package/dist/components/overlays/Dialog/DialogContainer.js +44 -0
  539. package/dist/components/overlays/Dialog/DialogContainer.js.map +1 -0
  540. package/dist/components/overlays/Dialog/DialogForm.d.ts +37 -0
  541. package/dist/components/overlays/Dialog/DialogForm.js +76 -0
  542. package/dist/components/overlays/Dialog/DialogForm.js.map +1 -0
  543. package/dist/components/overlays/Dialog/DialogTrigger.d.ts +56 -0
  544. package/dist/components/overlays/Dialog/DialogTrigger.js +176 -0
  545. package/dist/components/overlays/Dialog/DialogTrigger.js.map +1 -0
  546. package/dist/components/overlays/Dialog/context.js +15 -0
  547. package/dist/components/overlays/Dialog/context.js.map +1 -0
  548. package/dist/components/overlays/Dialog/index.d.ts +6 -0
  549. package/dist/components/overlays/Dialog/use-dialog-container.d.ts +22 -0
  550. package/dist/components/overlays/Dialog/use-dialog-container.js +65 -0
  551. package/dist/components/overlays/Dialog/use-dialog-container.js.map +1 -0
  552. package/dist/components/overlays/Modal/Modal.d.ts +3 -0
  553. package/dist/components/overlays/Modal/Modal.js +113 -0
  554. package/dist/components/overlays/Modal/Modal.js.map +1 -0
  555. package/dist/components/overlays/Modal/OpenTransition.js +39 -0
  556. package/dist/components/overlays/Modal/OpenTransition.js.map +1 -0
  557. package/dist/components/overlays/Modal/Overlay.d.ts +3 -0
  558. package/dist/components/overlays/Modal/Overlay.js +44 -0
  559. package/dist/components/overlays/Modal/Overlay.js.map +1 -0
  560. package/dist/components/overlays/Modal/Popover.d.ts +6 -0
  561. package/dist/components/overlays/Modal/Popover.js +90 -0
  562. package/dist/components/overlays/Modal/Popover.js.map +1 -0
  563. package/dist/components/overlays/Modal/Tray.d.ts +5 -0
  564. package/dist/components/overlays/Modal/Tray.js +89 -0
  565. package/dist/components/overlays/Modal/Tray.js.map +1 -0
  566. package/dist/components/overlays/Modal/Underlay.d.ts +3 -0
  567. package/dist/components/overlays/Modal/Underlay.js +43 -0
  568. package/dist/components/overlays/Modal/Underlay.js.map +1 -0
  569. package/dist/components/overlays/Modal/index.d.ts +7 -0
  570. package/dist/components/overlays/Modal/types.d.ts +12 -0
  571. package/dist/components/overlays/Notifications/Notification.d.ts +38 -0
  572. package/dist/components/overlays/Notifications/Notification.js +78 -0
  573. package/dist/components/overlays/Notifications/Notification.js.map +1 -0
  574. package/dist/components/overlays/Notifications/NotificationAction.d.ts +26 -0
  575. package/dist/components/overlays/Notifications/NotificationAction.js +55 -0
  576. package/dist/components/overlays/Notifications/NotificationAction.js.map +1 -0
  577. package/dist/components/overlays/Notifications/NotificationCard.d.ts +56 -0
  578. package/dist/components/overlays/Notifications/NotificationCard.js +116 -0
  579. package/dist/components/overlays/Notifications/NotificationCard.js.map +1 -0
  580. package/dist/components/overlays/Notifications/NotificationContext.d.ts +8 -0
  581. package/dist/components/overlays/Notifications/NotificationContext.js +34 -0
  582. package/dist/components/overlays/Notifications/NotificationContext.js.map +1 -0
  583. package/dist/components/overlays/Notifications/NotificationItem.d.ts +17 -0
  584. package/dist/components/overlays/Notifications/NotificationItem.js +66 -0
  585. package/dist/components/overlays/Notifications/NotificationItem.js.map +1 -0
  586. package/dist/components/overlays/Notifications/OverlayContainer.js +305 -0
  587. package/dist/components/overlays/Notifications/OverlayContainer.js.map +1 -0
  588. package/dist/components/overlays/Notifications/OverlayProvider.d.ts +13 -0
  589. package/dist/components/overlays/Notifications/OverlayProvider.js +68 -0
  590. package/dist/components/overlays/Notifications/OverlayProvider.js.map +1 -0
  591. package/dist/components/overlays/Notifications/PersistentNotificationsList.d.ts +30 -0
  592. package/dist/components/overlays/Notifications/PersistentNotificationsList.js +120 -0
  593. package/dist/components/overlays/Notifications/PersistentNotificationsList.js.map +1 -0
  594. package/dist/components/overlays/Notifications/format-relative-time.d.ts +19 -0
  595. package/dist/components/overlays/Notifications/format-relative-time.js +36 -0
  596. package/dist/components/overlays/Notifications/format-relative-time.js.map +1 -0
  597. package/dist/components/overlays/Notifications/index.d.ts +43 -0
  598. package/dist/components/overlays/Notifications/index.js +40 -0
  599. package/dist/components/overlays/Notifications/index.js.map +1 -0
  600. package/dist/components/overlays/Notifications/types.d.ts +135 -0
  601. package/dist/components/overlays/Notifications/use-notification-state.js +176 -0
  602. package/dist/components/overlays/Notifications/use-notification-state.js.map +1 -0
  603. package/dist/components/overlays/Notifications/use-notifications.d.ts +42 -0
  604. package/dist/components/overlays/Notifications/use-notifications.js +146 -0
  605. package/dist/components/overlays/Notifications/use-notifications.js.map +1 -0
  606. package/dist/components/overlays/Notifications/use-overlay-timers.js +128 -0
  607. package/dist/components/overlays/Notifications/use-overlay-timers.js.map +1 -0
  608. package/dist/components/overlays/Notifications/use-persistent-notifications.d.ts +54 -0
  609. package/dist/components/overlays/Notifications/use-persistent-notifications.js +61 -0
  610. package/dist/components/overlays/Notifications/use-persistent-notifications.js.map +1 -0
  611. package/dist/components/overlays/Notifications/use-persistent-state.js +64 -0
  612. package/dist/components/overlays/Notifications/use-persistent-state.js.map +1 -0
  613. package/dist/components/overlays/Notifications/use-toast-state.js +108 -0
  614. package/dist/components/overlays/Notifications/use-toast-state.js.map +1 -0
  615. package/dist/components/overlays/Toast/ToastItem.d.ts +23 -0
  616. package/dist/components/overlays/Toast/ToastItem.js +34 -0
  617. package/dist/components/overlays/Toast/ToastItem.js.map +1 -0
  618. package/dist/components/overlays/Toast/ToastProvider.d.ts +2 -0
  619. package/dist/components/overlays/Toast/index.d.ts +54 -0
  620. package/dist/components/overlays/Toast/index.js +80 -0
  621. package/dist/components/overlays/Toast/index.js.map +1 -0
  622. package/dist/components/overlays/Toast/types.d.ts +74 -0
  623. package/dist/components/overlays/Toast/useProgressToast.d.ts +32 -0
  624. package/dist/components/overlays/Toast/useProgressToast.js +156 -0
  625. package/dist/components/overlays/Toast/useProgressToast.js.map +1 -0
  626. package/dist/components/overlays/Toast/useToast.d.ts +36 -0
  627. package/dist/components/overlays/Toast/useToast.js +89 -0
  628. package/dist/components/overlays/Toast/useToast.js.map +1 -0
  629. package/dist/components/overlays/Tooltip/Tooltip.d.ts +28 -0
  630. package/dist/components/overlays/Tooltip/Tooltip.js +160 -0
  631. package/dist/components/overlays/Tooltip/Tooltip.js.map +1 -0
  632. package/dist/components/overlays/Tooltip/TooltipProvider.d.ts +18 -0
  633. package/dist/components/overlays/Tooltip/TooltipProvider.js +30 -0
  634. package/dist/components/overlays/Tooltip/TooltipProvider.js.map +1 -0
  635. package/dist/components/overlays/Tooltip/TooltipTrigger.d.ts +60 -0
  636. package/dist/components/overlays/Tooltip/TooltipTrigger.js +117 -0
  637. package/dist/components/overlays/Tooltip/TooltipTrigger.js.map +1 -0
  638. package/dist/components/overlays/Tooltip/context.js +9 -0
  639. package/dist/components/overlays/Tooltip/context.js.map +1 -0
  640. package/dist/components/portal/Portal.d.ts +32 -0
  641. package/dist/components/portal/Portal.js +39 -0
  642. package/dist/components/portal/Portal.js.map +1 -0
  643. package/dist/components/portal/PortalProvider.js +21 -0
  644. package/dist/components/portal/PortalProvider.js.map +1 -0
  645. package/dist/components/portal/index.d.ts +3 -0
  646. package/dist/components/portal/types.d.ts +27 -0
  647. package/dist/components/portal/usePortal.js +41 -0
  648. package/dist/components/portal/usePortal.js.map +1 -0
  649. package/dist/components/shared/InvalidIcon.js +13 -0
  650. package/dist/components/shared/InvalidIcon.js.map +1 -0
  651. package/dist/components/shared/ValidIcon.js +13 -0
  652. package/dist/components/shared/ValidIcon.js.map +1 -0
  653. package/dist/components/status/LoadingAnimation/LoadingAnimation.d.ts +15 -0
  654. package/dist/components/status/LoadingAnimation/LoadingAnimation.js +119 -0
  655. package/dist/components/status/LoadingAnimation/LoadingAnimation.js.map +1 -0
  656. package/dist/components/status/LoadingAnimation/index.d.ts +2 -0
  657. package/dist/components/status/Spin/Cube.js +104 -0
  658. package/dist/components/status/Spin/Cube.js.map +1 -0
  659. package/dist/components/status/Spin/InternalSpinner.js +32 -0
  660. package/dist/components/status/Spin/InternalSpinner.js.map +1 -0
  661. package/dist/components/status/Spin/Spin.d.ts +9 -0
  662. package/dist/components/status/Spin/Spin.js +20 -0
  663. package/dist/components/status/Spin/Spin.js.map +1 -0
  664. package/dist/components/status/Spin/SpinsContainer.js +32 -0
  665. package/dist/components/status/Spin/SpinsContainer.js.map +1 -0
  666. package/dist/components/status/Spin/index.d.ts +3 -0
  667. package/dist/components/status/Spin/types.d.ts +24 -0
  668. package/dist/components/status/index.d.ts +6 -0
  669. package/dist/config.js +232 -0
  670. package/dist/config.js.map +1 -0
  671. package/dist/css-writer.d.ts +46 -0
  672. package/dist/css-writer.js +75 -0
  673. package/dist/css-writer.js.map +1 -0
  674. package/dist/data/item-themes.d.ts +8 -0
  675. package/dist/data/item-themes.js +816 -0
  676. package/dist/data/item-themes.js.map +1 -0
  677. package/dist/data/themes.d.ts +37 -0
  678. package/dist/data/themes.js +38 -0
  679. package/dist/data/themes.js.map +1 -0
  680. package/dist/extractor.d.ts +25 -0
  681. package/dist/extractor.js +151 -0
  682. package/dist/extractor.js.map +1 -0
  683. package/dist/icons/AdjustmentsHorizontalIcon.d.ts +12 -0
  684. package/dist/icons/AdjustmentsHorizontalIcon.js +23 -0
  685. package/dist/icons/AdjustmentsHorizontalIcon.js.map +1 -0
  686. package/dist/icons/AdjustmentsIcon.d.ts +12 -0
  687. package/dist/icons/AdjustmentsIcon.js +23 -0
  688. package/dist/icons/AdjustmentsIcon.js.map +1 -0
  689. package/dist/icons/AiIcon.d.ts +12 -0
  690. package/dist/icons/AiIcon.js +11 -0
  691. package/dist/icons/AiIcon.js.map +1 -0
  692. package/dist/icons/AreaChartIcon.d.ts +12 -0
  693. package/dist/icons/AreaChartIcon.js +11 -0
  694. package/dist/icons/AreaChartIcon.js.map +1 -0
  695. package/dist/icons/BackwardIcon.d.ts +12 -0
  696. package/dist/icons/BackwardIcon.js +11 -0
  697. package/dist/icons/BackwardIcon.js.map +1 -0
  698. package/dist/icons/BarChartIcon.d.ts +12 -0
  699. package/dist/icons/BarChartIcon.js +11 -0
  700. package/dist/icons/BarChartIcon.js.map +1 -0
  701. package/dist/icons/BellFilledIcon.d.ts +12 -0
  702. package/dist/icons/BellFilledIcon.js +11 -0
  703. package/dist/icons/BellFilledIcon.js.map +1 -0
  704. package/dist/icons/BellIcon.d.ts +12 -0
  705. package/dist/icons/BellIcon.js +11 -0
  706. package/dist/icons/BellIcon.js.map +1 -0
  707. package/dist/icons/BooleanIcon.d.ts +12 -0
  708. package/dist/icons/BooleanIcon.js +23 -0
  709. package/dist/icons/BooleanIcon.js.map +1 -0
  710. package/dist/icons/CalendarEditIcon.d.ts +12 -0
  711. package/dist/icons/CalendarEditIcon.js +23 -0
  712. package/dist/icons/CalendarEditIcon.js.map +1 -0
  713. package/dist/icons/CalendarIcon.d.ts +12 -0
  714. package/dist/icons/CalendarIcon.js +23 -0
  715. package/dist/icons/CalendarIcon.js.map +1 -0
  716. package/dist/icons/CaretDownIcon.d.ts +12 -0
  717. package/dist/icons/CaretDownIcon.js +11 -0
  718. package/dist/icons/CaretDownIcon.js.map +1 -0
  719. package/dist/icons/CaretUpIcon.d.ts +12 -0
  720. package/dist/icons/CaretUpIcon.js +11 -0
  721. package/dist/icons/CaretUpIcon.js.map +1 -0
  722. package/dist/icons/ChartAreaStackedIcon.d.ts +12 -0
  723. package/dist/icons/ChartAreaStackedIcon.js +23 -0
  724. package/dist/icons/ChartAreaStackedIcon.js.map +1 -0
  725. package/dist/icons/ChartAreaStackedPercentageIcon.d.ts +12 -0
  726. package/dist/icons/ChartAreaStackedPercentageIcon.js +23 -0
  727. package/dist/icons/ChartAreaStackedPercentageIcon.js.map +1 -0
  728. package/dist/icons/ChartBarGroupedHorizontalIcon.d.ts +12 -0
  729. package/dist/icons/ChartBarGroupedHorizontalIcon.js +23 -0
  730. package/dist/icons/ChartBarGroupedHorizontalIcon.js.map +1 -0
  731. package/dist/icons/ChartBarGroupedIcon.d.ts +12 -0
  732. package/dist/icons/ChartBarGroupedIcon.js +23 -0
  733. package/dist/icons/ChartBarGroupedIcon.js.map +1 -0
  734. package/dist/icons/ChartBarHorizontalIcon.d.ts +12 -0
  735. package/dist/icons/ChartBarHorizontalIcon.js +23 -0
  736. package/dist/icons/ChartBarHorizontalIcon.js.map +1 -0
  737. package/dist/icons/ChartBarLineIcon.d.ts +12 -0
  738. package/dist/icons/ChartBarLineIcon.js +23 -0
  739. package/dist/icons/ChartBarLineIcon.js.map +1 -0
  740. package/dist/icons/ChartBarStackedHorizontalIcon.d.ts +12 -0
  741. package/dist/icons/ChartBarStackedHorizontalIcon.js +23 -0
  742. package/dist/icons/ChartBarStackedHorizontalIcon.js.map +1 -0
  743. package/dist/icons/ChartBarStackedIcon.d.ts +12 -0
  744. package/dist/icons/ChartBarStackedIcon.js +23 -0
  745. package/dist/icons/ChartBarStackedIcon.js.map +1 -0
  746. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.d.ts +12 -0
  747. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.js +23 -0
  748. package/dist/icons/ChartBarStackedPercentageHorizontalIcon.js.map +1 -0
  749. package/dist/icons/ChartBarStackedPercentageIcon.d.ts +12 -0
  750. package/dist/icons/ChartBarStackedPercentageIcon.js +23 -0
  751. package/dist/icons/ChartBarStackedPercentageIcon.js.map +1 -0
  752. package/dist/icons/ChartBoxPlot2Icon.d.ts +12 -0
  753. package/dist/icons/ChartBoxPlot2Icon.js +23 -0
  754. package/dist/icons/ChartBoxPlot2Icon.js.map +1 -0
  755. package/dist/icons/ChartBoxPlotIcon.d.ts +12 -0
  756. package/dist/icons/ChartBoxPlotIcon.js +23 -0
  757. package/dist/icons/ChartBoxPlotIcon.js.map +1 -0
  758. package/dist/icons/ChartBubbleIcon.d.ts +12 -0
  759. package/dist/icons/ChartBubbleIcon.js +23 -0
  760. package/dist/icons/ChartBubbleIcon.js.map +1 -0
  761. package/dist/icons/ChartDonut2Icon.d.ts +12 -0
  762. package/dist/icons/ChartDonut2Icon.js +23 -0
  763. package/dist/icons/ChartDonut2Icon.js.map +1 -0
  764. package/dist/icons/ChartFunnelIcon.d.ts +12 -0
  765. package/dist/icons/ChartFunnelIcon.js +23 -0
  766. package/dist/icons/ChartFunnelIcon.js.map +1 -0
  767. package/dist/icons/ChartHeatmapIcon.d.ts +12 -0
  768. package/dist/icons/ChartHeatmapIcon.js +69 -0
  769. package/dist/icons/ChartHeatmapIcon.js.map +1 -0
  770. package/dist/icons/ChartKPIIcon.d.ts +12 -0
  771. package/dist/icons/ChartKPIIcon.js +23 -0
  772. package/dist/icons/ChartKPIIcon.js.map +1 -0
  773. package/dist/icons/ChartPie2Icon.d.ts +12 -0
  774. package/dist/icons/ChartPie2Icon.js +23 -0
  775. package/dist/icons/ChartPie2Icon.js.map +1 -0
  776. package/dist/icons/ChartScatterIcon.d.ts +12 -0
  777. package/dist/icons/ChartScatterIcon.js +23 -0
  778. package/dist/icons/ChartScatterIcon.js.map +1 -0
  779. package/dist/icons/CheckCircleFilledIcon.d.ts +12 -0
  780. package/dist/icons/CheckCircleFilledIcon.js +11 -0
  781. package/dist/icons/CheckCircleFilledIcon.js.map +1 -0
  782. package/dist/icons/CheckCircleIcon.d.ts +12 -0
  783. package/dist/icons/CheckCircleIcon.js +11 -0
  784. package/dist/icons/CheckCircleIcon.js.map +1 -0
  785. package/dist/icons/CheckIcon.d.ts +12 -0
  786. package/dist/icons/CheckIcon.js +11 -0
  787. package/dist/icons/CheckIcon.js.map +1 -0
  788. package/dist/icons/CircleFilledIcon.d.ts +12 -0
  789. package/dist/icons/CircleFilledIcon.js +11 -0
  790. package/dist/icons/CircleFilledIcon.js.map +1 -0
  791. package/dist/icons/ClearIcon.d.ts +12 -0
  792. package/dist/icons/ClearIcon.js +23 -0
  793. package/dist/icons/ClearIcon.js.map +1 -0
  794. package/dist/icons/CloseCircleFilledIcon.d.ts +12 -0
  795. package/dist/icons/CloseCircleFilledIcon.js +11 -0
  796. package/dist/icons/CloseCircleFilledIcon.js.map +1 -0
  797. package/dist/icons/CloseCircleIcon.d.ts +12 -0
  798. package/dist/icons/CloseCircleIcon.js +11 -0
  799. package/dist/icons/CloseCircleIcon.js.map +1 -0
  800. package/dist/icons/CloseIcon.d.ts +12 -0
  801. package/dist/icons/CloseIcon.js +11 -0
  802. package/dist/icons/CloseIcon.js.map +1 -0
  803. package/dist/icons/CodeIcon.d.ts +12 -0
  804. package/dist/icons/CodeIcon.js +11 -0
  805. package/dist/icons/CodeIcon.js.map +1 -0
  806. package/dist/icons/ColumnTotalIcon.d.ts +12 -0
  807. package/dist/icons/ColumnTotalIcon.js +27 -0
  808. package/dist/icons/ColumnTotalIcon.js.map +1 -0
  809. package/dist/icons/CopyIcon.d.ts +12 -0
  810. package/dist/icons/CopyIcon.js +11 -0
  811. package/dist/icons/CopyIcon.js.map +1 -0
  812. package/dist/icons/CountIcon.d.ts +12 -0
  813. package/dist/icons/CountIcon.js +23 -0
  814. package/dist/icons/CountIcon.js.map +1 -0
  815. package/dist/icons/CubeIcon.d.ts +12 -0
  816. package/dist/icons/CubeIcon.js +23 -0
  817. package/dist/icons/CubeIcon.js.map +1 -0
  818. package/dist/icons/CubePauseIcon.d.ts +12 -0
  819. package/dist/icons/CubePauseIcon.js +23 -0
  820. package/dist/icons/CubePauseIcon.js.map +1 -0
  821. package/dist/icons/CubePlayIcon.d.ts +12 -0
  822. package/dist/icons/CubePlayIcon.js +23 -0
  823. package/dist/icons/CubePlayIcon.js.map +1 -0
  824. package/dist/icons/CurrencyDollarIcon.d.ts +12 -0
  825. package/dist/icons/CurrencyDollarIcon.js +23 -0
  826. package/dist/icons/CurrencyDollarIcon.js.map +1 -0
  827. package/dist/icons/DangerIcon.d.ts +12 -0
  828. package/dist/icons/DangerIcon.js +11 -0
  829. package/dist/icons/DangerIcon.js.map +1 -0
  830. package/dist/icons/DashboardIcon.d.ts +12 -0
  831. package/dist/icons/DashboardIcon.js +11 -0
  832. package/dist/icons/DashboardIcon.js.map +1 -0
  833. package/dist/icons/DatabaseIcon.d.ts +12 -0
  834. package/dist/icons/DatabaseIcon.js +11 -0
  835. package/dist/icons/DatabaseIcon.js.map +1 -0
  836. package/dist/icons/DecimalDecreaseIcon.d.ts +12 -0
  837. package/dist/icons/DecimalDecreaseIcon.js +23 -0
  838. package/dist/icons/DecimalDecreaseIcon.js.map +1 -0
  839. package/dist/icons/DecimalIncreaseIcon.d.ts +12 -0
  840. package/dist/icons/DecimalIncreaseIcon.js +23 -0
  841. package/dist/icons/DecimalIncreaseIcon.js.map +1 -0
  842. package/dist/icons/DirectionIcon.d.ts +17 -0
  843. package/dist/icons/DirectionIcon.js +58 -0
  844. package/dist/icons/DirectionIcon.js.map +1 -0
  845. package/dist/icons/DonutIcon.d.ts +12 -0
  846. package/dist/icons/DonutIcon.js +11 -0
  847. package/dist/icons/DonutIcon.js.map +1 -0
  848. package/dist/icons/DownIcon.d.ts +12 -0
  849. package/dist/icons/DownIcon.js +11 -0
  850. package/dist/icons/DownIcon.js.map +1 -0
  851. package/dist/icons/EditIcon.d.ts +12 -0
  852. package/dist/icons/EditIcon.js +11 -0
  853. package/dist/icons/EditIcon.js.map +1 -0
  854. package/dist/icons/ExclamationCircleFilledIcon.d.ts +12 -0
  855. package/dist/icons/ExclamationCircleFilledIcon.js +11 -0
  856. package/dist/icons/ExclamationCircleFilledIcon.js.map +1 -0
  857. package/dist/icons/ExclamationCircleIcon.d.ts +12 -0
  858. package/dist/icons/ExclamationCircleIcon.js +11 -0
  859. package/dist/icons/ExclamationCircleIcon.js.map +1 -0
  860. package/dist/icons/ExclamationIcon.d.ts +12 -0
  861. package/dist/icons/ExclamationIcon.js +11 -0
  862. package/dist/icons/ExclamationIcon.js.map +1 -0
  863. package/dist/icons/EyeIcon.d.ts +12 -0
  864. package/dist/icons/EyeIcon.js +11 -0
  865. package/dist/icons/EyeIcon.js.map +1 -0
  866. package/dist/icons/EyeInvisibleIcon.d.ts +12 -0
  867. package/dist/icons/EyeInvisibleIcon.js +11 -0
  868. package/dist/icons/EyeInvisibleIcon.js.map +1 -0
  869. package/dist/icons/FilterIcon.d.ts +12 -0
  870. package/dist/icons/FilterIcon.js +11 -0
  871. package/dist/icons/FilterIcon.js.map +1 -0
  872. package/dist/icons/FolderFilledIcon.d.ts +12 -0
  873. package/dist/icons/FolderFilledIcon.js +20 -0
  874. package/dist/icons/FolderFilledIcon.js.map +1 -0
  875. package/dist/icons/FolderIcon.d.ts +12 -0
  876. package/dist/icons/FolderIcon.js +32 -0
  877. package/dist/icons/FolderIcon.js.map +1 -0
  878. package/dist/icons/FolderOpenFilledIcon.d.ts +12 -0
  879. package/dist/icons/FolderOpenFilledIcon.js +20 -0
  880. package/dist/icons/FolderOpenFilledIcon.js.map +1 -0
  881. package/dist/icons/FolderOpenIcon.d.ts +12 -0
  882. package/dist/icons/FolderOpenIcon.js +23 -0
  883. package/dist/icons/FolderOpenIcon.js.map +1 -0
  884. package/dist/icons/ForwardIcon.d.ts +12 -0
  885. package/dist/icons/ForwardIcon.js +11 -0
  886. package/dist/icons/ForwardIcon.js.map +1 -0
  887. package/dist/icons/HierarchyIcon.d.ts +12 -0
  888. package/dist/icons/HierarchyIcon.js +23 -0
  889. package/dist/icons/HierarchyIcon.js.map +1 -0
  890. package/dist/icons/HierarchyOpenIcon.d.ts +12 -0
  891. package/dist/icons/HierarchyOpenIcon.js +20 -0
  892. package/dist/icons/HierarchyOpenIcon.js.map +1 -0
  893. package/dist/icons/Icon.d.ts +18 -0
  894. package/dist/icons/Icon.js +56 -0
  895. package/dist/icons/Icon.js.map +1 -0
  896. package/dist/icons/InfoCircleIcon.d.ts +12 -0
  897. package/dist/icons/InfoCircleIcon.js +11 -0
  898. package/dist/icons/InfoCircleIcon.js.map +1 -0
  899. package/dist/icons/InfoIcon.d.ts +12 -0
  900. package/dist/icons/InfoIcon.js +11 -0
  901. package/dist/icons/InfoIcon.js.map +1 -0
  902. package/dist/icons/KeyIcon.d.ts +12 -0
  903. package/dist/icons/KeyIcon.js +11 -0
  904. package/dist/icons/KeyIcon.js.map +1 -0
  905. package/dist/icons/LeftIcon.d.ts +12 -0
  906. package/dist/icons/LeftIcon.js +11 -0
  907. package/dist/icons/LeftIcon.js.map +1 -0
  908. package/dist/icons/LineChartIcon.d.ts +12 -0
  909. package/dist/icons/LineChartIcon.js +11 -0
  910. package/dist/icons/LineChartIcon.js.map +1 -0
  911. package/dist/icons/LoadingIcon.d.ts +12 -0
  912. package/dist/icons/LoadingIcon.js +33 -0
  913. package/dist/icons/LoadingIcon.js.map +1 -0
  914. package/dist/icons/LockFilledIcon.d.ts +12 -0
  915. package/dist/icons/LockFilledIcon.js +11 -0
  916. package/dist/icons/LockFilledIcon.js.map +1 -0
  917. package/dist/icons/LockIcon.d.ts +12 -0
  918. package/dist/icons/LockIcon.js +11 -0
  919. package/dist/icons/LockIcon.js.map +1 -0
  920. package/dist/icons/MoreIcon.d.ts +12 -0
  921. package/dist/icons/MoreIcon.js +11 -0
  922. package/dist/icons/MoreIcon.js.map +1 -0
  923. package/dist/icons/NotAllowedIcon.d.ts +12 -0
  924. package/dist/icons/NotAllowedIcon.js +11 -0
  925. package/dist/icons/NotAllowedIcon.js.map +1 -0
  926. package/dist/icons/Number123Icon.d.ts +12 -0
  927. package/dist/icons/Number123Icon.js +23 -0
  928. package/dist/icons/Number123Icon.js.map +1 -0
  929. package/dist/icons/NumberIcon.d.ts +12 -0
  930. package/dist/icons/NumberIcon.js +11 -0
  931. package/dist/icons/NumberIcon.js.map +1 -0
  932. package/dist/icons/PauseCircleFilledIcon.d.ts +12 -0
  933. package/dist/icons/PauseCircleFilledIcon.js +20 -0
  934. package/dist/icons/PauseCircleFilledIcon.js.map +1 -0
  935. package/dist/icons/PauseCircleIcon.d.ts +12 -0
  936. package/dist/icons/PauseCircleIcon.js +23 -0
  937. package/dist/icons/PauseCircleIcon.js.map +1 -0
  938. package/dist/icons/PauseIcon.d.ts +12 -0
  939. package/dist/icons/PauseIcon.js +11 -0
  940. package/dist/icons/PauseIcon.js.map +1 -0
  941. package/dist/icons/PercentageIcon.d.ts +12 -0
  942. package/dist/icons/PercentageIcon.js +23 -0
  943. package/dist/icons/PercentageIcon.js.map +1 -0
  944. package/dist/icons/PieChartIcon.d.ts +12 -0
  945. package/dist/icons/PieChartIcon.js +11 -0
  946. package/dist/icons/PieChartIcon.js.map +1 -0
  947. package/dist/icons/PlayCircleIcon.d.ts +12 -0
  948. package/dist/icons/PlayCircleIcon.js +11 -0
  949. package/dist/icons/PlayCircleIcon.js.map +1 -0
  950. package/dist/icons/PlayIcon.d.ts +12 -0
  951. package/dist/icons/PlayIcon.js +11 -0
  952. package/dist/icons/PlayIcon.js.map +1 -0
  953. package/dist/icons/PlusIcon.d.ts +12 -0
  954. package/dist/icons/PlusIcon.js +11 -0
  955. package/dist/icons/PlusIcon.js.map +1 -0
  956. package/dist/icons/ProgressBarIcon.d.ts +12 -0
  957. package/dist/icons/ProgressBarIcon.js +23 -0
  958. package/dist/icons/ProgressBarIcon.js.map +1 -0
  959. package/dist/icons/ReloadIcon.d.ts +12 -0
  960. package/dist/icons/ReloadIcon.js +11 -0
  961. package/dist/icons/ReloadIcon.js.map +1 -0
  962. package/dist/icons/ReportIcon.d.ts +12 -0
  963. package/dist/icons/ReportIcon.js +11 -0
  964. package/dist/icons/ReportIcon.js.map +1 -0
  965. package/dist/icons/ReturnIcon.d.ts +12 -0
  966. package/dist/icons/ReturnIcon.js +11 -0
  967. package/dist/icons/ReturnIcon.js.map +1 -0
  968. package/dist/icons/RightIcon.d.ts +12 -0
  969. package/dist/icons/RightIcon.js +11 -0
  970. package/dist/icons/RightIcon.js.map +1 -0
  971. package/dist/icons/RowTotalsIcon.d.ts +12 -0
  972. package/dist/icons/RowTotalsIcon.js +27 -0
  973. package/dist/icons/RowTotalsIcon.js.map +1 -0
  974. package/dist/icons/SchemeIcon.d.ts +12 -0
  975. package/dist/icons/SchemeIcon.js +11 -0
  976. package/dist/icons/SchemeIcon.js.map +1 -0
  977. package/dist/icons/SearchIcon.d.ts +12 -0
  978. package/dist/icons/SearchIcon.js +11 -0
  979. package/dist/icons/SearchIcon.js.map +1 -0
  980. package/dist/icons/SemanticQueryIcon.d.ts +12 -0
  981. package/dist/icons/SemanticQueryIcon.js +32 -0
  982. package/dist/icons/SemanticQueryIcon.js.map +1 -0
  983. package/dist/icons/SettingsIcon.d.ts +12 -0
  984. package/dist/icons/SettingsIcon.js +11 -0
  985. package/dist/icons/SettingsIcon.js.map +1 -0
  986. package/dist/icons/ShieldFilledIcon.d.ts +12 -0
  987. package/dist/icons/ShieldFilledIcon.js +11 -0
  988. package/dist/icons/ShieldFilledIcon.js.map +1 -0
  989. package/dist/icons/ShieldIcon.d.ts +12 -0
  990. package/dist/icons/ShieldIcon.js +11 -0
  991. package/dist/icons/ShieldIcon.js.map +1 -0
  992. package/dist/icons/SlashIcon.d.ts +12 -0
  993. package/dist/icons/SlashIcon.js +11 -0
  994. package/dist/icons/SlashIcon.js.map +1 -0
  995. package/dist/icons/SparklesIcon.d.ts +12 -0
  996. package/dist/icons/SparklesIcon.js +11 -0
  997. package/dist/icons/SparklesIcon.js.map +1 -0
  998. package/dist/icons/SqlIcon.d.ts +12 -0
  999. package/dist/icons/SqlIcon.js +11 -0
  1000. package/dist/icons/SqlIcon.js.map +1 -0
  1001. package/dist/icons/StatsIcon.d.ts +12 -0
  1002. package/dist/icons/StatsIcon.js +23 -0
  1003. package/dist/icons/StatsIcon.js.map +1 -0
  1004. package/dist/icons/StopIcon.d.ts +12 -0
  1005. package/dist/icons/StopIcon.js +11 -0
  1006. package/dist/icons/StopIcon.js.map +1 -0
  1007. package/dist/icons/StringIcon.d.ts +12 -0
  1008. package/dist/icons/StringIcon.js +30 -0
  1009. package/dist/icons/StringIcon.js.map +1 -0
  1010. package/dist/icons/SubtotalsIcon.d.ts +12 -0
  1011. package/dist/icons/SubtotalsIcon.js +27 -0
  1012. package/dist/icons/SubtotalsIcon.js.map +1 -0
  1013. package/dist/icons/SwitchIcon.d.ts +12 -0
  1014. package/dist/icons/SwitchIcon.js +11 -0
  1015. package/dist/icons/SwitchIcon.js.map +1 -0
  1016. package/dist/icons/TableIcon.d.ts +12 -0
  1017. package/dist/icons/TableIcon.js +11 -0
  1018. package/dist/icons/TableIcon.js.map +1 -0
  1019. package/dist/icons/ThumbsDownIcon.d.ts +12 -0
  1020. package/dist/icons/ThumbsDownIcon.js +11 -0
  1021. package/dist/icons/ThumbsDownIcon.js.map +1 -0
  1022. package/dist/icons/ThumbsUpIcon.d.ts +12 -0
  1023. package/dist/icons/ThumbsUpIcon.js +11 -0
  1024. package/dist/icons/ThumbsUpIcon.js.map +1 -0
  1025. package/dist/icons/ThunderboltCrossedIcon.d.ts +12 -0
  1026. package/dist/icons/ThunderboltCrossedIcon.js +11 -0
  1027. package/dist/icons/ThunderboltCrossedIcon.js.map +1 -0
  1028. package/dist/icons/ThunderboltFilledIcon.d.ts +12 -0
  1029. package/dist/icons/ThunderboltFilledIcon.js +11 -0
  1030. package/dist/icons/ThunderboltFilledIcon.js.map +1 -0
  1031. package/dist/icons/ThunderboltIcon.d.ts +12 -0
  1032. package/dist/icons/ThunderboltIcon.js +11 -0
  1033. package/dist/icons/ThunderboltIcon.js.map +1 -0
  1034. package/dist/icons/TimeIcon.d.ts +12 -0
  1035. package/dist/icons/TimeIcon.js +11 -0
  1036. package/dist/icons/TimeIcon.js.map +1 -0
  1037. package/dist/icons/TrashIcon.d.ts +12 -0
  1038. package/dist/icons/TrashIcon.js +11 -0
  1039. package/dist/icons/TrashIcon.js.map +1 -0
  1040. package/dist/icons/UnlockIcon.d.ts +12 -0
  1041. package/dist/icons/UnlockIcon.js +11 -0
  1042. package/dist/icons/UnlockIcon.js.map +1 -0
  1043. package/dist/icons/UpIcon.d.ts +12 -0
  1044. package/dist/icons/UpIcon.js +11 -0
  1045. package/dist/icons/UpIcon.js.map +1 -0
  1046. package/dist/icons/UserGroupIcon.d.ts +12 -0
  1047. package/dist/icons/UserGroupIcon.js +30 -0
  1048. package/dist/icons/UserGroupIcon.js.map +1 -0
  1049. package/dist/icons/UserIcon.d.ts +12 -0
  1050. package/dist/icons/UserIcon.js +30 -0
  1051. package/dist/icons/UserIcon.js.map +1 -0
  1052. package/dist/icons/UserLockIcon.d.ts +12 -0
  1053. package/dist/icons/UserLockIcon.js +23 -0
  1054. package/dist/icons/UserLockIcon.js.map +1 -0
  1055. package/dist/icons/ViewIcon.d.ts +12 -0
  1056. package/dist/icons/ViewIcon.js +23 -0
  1057. package/dist/icons/ViewIcon.js.map +1 -0
  1058. package/dist/icons/WarningFilledIcon.d.ts +12 -0
  1059. package/dist/icons/WarningFilledIcon.js +11 -0
  1060. package/dist/icons/WarningFilledIcon.js.map +1 -0
  1061. package/dist/icons/WarningIcon.d.ts +12 -0
  1062. package/dist/icons/WarningIcon.js +11 -0
  1063. package/dist/icons/WarningIcon.js.map +1 -0
  1064. package/dist/icons/index.d.ts +129 -0
  1065. package/dist/icons/wrap-icon.d.ts +13 -0
  1066. package/dist/icons/wrap-icon.js +21 -0
  1067. package/dist/icons/wrap-icon.js.map +1 -0
  1068. package/dist/index.d.ts +388 -0
  1069. package/dist/index.js +342 -0
  1070. package/dist/index.js.map +1 -0
  1071. package/dist/injector/injector.js +401 -0
  1072. package/dist/injector/injector.js.map +1 -0
  1073. package/dist/injector/sheet-manager.js +715 -0
  1074. package/dist/injector/sheet-manager.js.map +1 -0
  1075. package/dist/injector/types.d.ts +19 -0
  1076. package/dist/keyframes/index.js +157 -0
  1077. package/dist/keyframes/index.js.map +1 -0
  1078. package/dist/node_modules/.pnpm/csstype@3.1.2/node_modules/csstype/index.d.ts +629 -0
  1079. package/dist/parser/classify.js +325 -0
  1080. package/dist/parser/classify.js.map +1 -0
  1081. package/dist/parser/const.js +34 -0
  1082. package/dist/parser/const.js.map +1 -0
  1083. package/dist/parser/lru.js +110 -0
  1084. package/dist/parser/lru.js.map +1 -0
  1085. package/dist/parser/parser.js +117 -0
  1086. package/dist/parser/parser.js.map +1 -0
  1087. package/dist/parser/tokenizer.js +70 -0
  1088. package/dist/parser/tokenizer.js.map +1 -0
  1089. package/dist/parser/types.d.ts +38 -0
  1090. package/dist/parser/types.js +47 -0
  1091. package/dist/parser/types.js.map +1 -0
  1092. package/dist/pipeline/conditions.js +378 -0
  1093. package/dist/pipeline/conditions.js.map +1 -0
  1094. package/dist/pipeline/exclusive.js +232 -0
  1095. package/dist/pipeline/exclusive.js.map +1 -0
  1096. package/dist/pipeline/index.js +633 -0
  1097. package/dist/pipeline/index.js.map +1 -0
  1098. package/dist/pipeline/materialize.js +822 -0
  1099. package/dist/pipeline/materialize.js.map +1 -0
  1100. package/dist/pipeline/parseStateKey.js +422 -0
  1101. package/dist/pipeline/parseStateKey.js.map +1 -0
  1102. package/dist/pipeline/simplify.js +558 -0
  1103. package/dist/pipeline/simplify.js.map +1 -0
  1104. package/dist/plugins/okhsl-plugin.js +344 -0
  1105. package/dist/plugins/okhsl-plugin.js.map +1 -0
  1106. package/dist/plugins/types.d.ts +52 -0
  1107. package/dist/properties/index.js +142 -0
  1108. package/dist/properties/index.js.map +1 -0
  1109. package/dist/provider.d.ts +23 -0
  1110. package/dist/provider.js +53 -0
  1111. package/dist/provider.js.map +1 -0
  1112. package/dist/providers/TrackingProvider.d.ts +11 -0
  1113. package/dist/providers/TrackingProvider.js +21 -0
  1114. package/dist/providers/TrackingProvider.js.map +1 -0
  1115. package/dist/providers/navigation.types.d.ts +29 -0
  1116. package/dist/providers/navigationAdapter.default.d.ts +12 -0
  1117. package/dist/providers/navigationAdapter.default.js +38 -0
  1118. package/dist/providers/navigationAdapter.default.js.map +1 -0
  1119. package/dist/shared/form.d.ts +114 -0
  1120. package/dist/shared/index.d.ts +10 -0
  1121. package/dist/states/index.js +162 -0
  1122. package/dist/states/index.js.map +1 -0
  1123. package/dist/styles/align.js +15 -0
  1124. package/dist/styles/align.js.map +1 -0
  1125. package/dist/styles/border.js +115 -0
  1126. package/dist/styles/border.js.map +1 -0
  1127. package/dist/styles/color.js +24 -0
  1128. package/dist/styles/color.js.map +1 -0
  1129. package/dist/styles/createStyle.js +78 -0
  1130. package/dist/styles/createStyle.js.map +1 -0
  1131. package/dist/styles/dimension.js +100 -0
  1132. package/dist/styles/dimension.js.map +1 -0
  1133. package/dist/styles/display.js +68 -0
  1134. package/dist/styles/display.js.map +1 -0
  1135. package/dist/styles/fade.js +58 -0
  1136. package/dist/styles/fade.js.map +1 -0
  1137. package/dist/styles/fill.js +52 -0
  1138. package/dist/styles/fill.js.map +1 -0
  1139. package/dist/styles/flow.js +13 -0
  1140. package/dist/styles/flow.js.map +1 -0
  1141. package/dist/styles/gap.js +37 -0
  1142. package/dist/styles/gap.js.map +1 -0
  1143. package/dist/styles/height.js +21 -0
  1144. package/dist/styles/height.js.map +1 -0
  1145. package/dist/styles/index.js +10 -0
  1146. package/dist/styles/index.js.map +1 -0
  1147. package/dist/styles/inset.js +143 -0
  1148. package/dist/styles/inset.js.map +1 -0
  1149. package/dist/styles/justify.js +15 -0
  1150. package/dist/styles/justify.js.map +1 -0
  1151. package/dist/styles/margin.js +97 -0
  1152. package/dist/styles/margin.js.map +1 -0
  1153. package/dist/styles/outline.js +66 -0
  1154. package/dist/styles/outline.js.map +1 -0
  1155. package/dist/styles/padding.js +97 -0
  1156. package/dist/styles/padding.js.map +1 -0
  1157. package/dist/styles/predefined.js +233 -0
  1158. package/dist/styles/predefined.js.map +1 -0
  1159. package/dist/styles/preset.js +126 -0
  1160. package/dist/styles/preset.js.map +1 -0
  1161. package/dist/styles/radius.js +52 -0
  1162. package/dist/styles/radius.js.map +1 -0
  1163. package/dist/styles/scrollbar.js +109 -0
  1164. package/dist/styles/scrollbar.js.map +1 -0
  1165. package/dist/styles/shadow.js +28 -0
  1166. package/dist/styles/shadow.js.map +1 -0
  1167. package/dist/styles/styledScrollbar.js +39 -0
  1168. package/dist/styles/styledScrollbar.js.map +1 -0
  1169. package/dist/styles/transition.js +139 -0
  1170. package/dist/styles/transition.js.map +1 -0
  1171. package/dist/styles/types.d.ts +495 -0
  1172. package/dist/styles/width.js +21 -0
  1173. package/dist/styles/width.js.map +1 -0
  1174. package/dist/tasty/chunks/cacheKey.js +71 -0
  1175. package/dist/tasty/chunks/cacheKey.js.map +1 -0
  1176. package/dist/tasty/chunks/definitions.d.ts +38 -0
  1177. package/dist/tasty/chunks/definitions.js +261 -0
  1178. package/dist/tasty/chunks/definitions.js.map +1 -0
  1179. package/dist/tasty/chunks/renderChunk.js +68 -0
  1180. package/dist/tasty/chunks/renderChunk.js.map +1 -0
  1181. package/dist/tasty/config.d.ts +283 -0
  1182. package/dist/tasty/config.js +401 -0
  1183. package/dist/tasty/config.js.map +1 -0
  1184. package/dist/tasty/debug.d.ts +200 -0
  1185. package/dist/tasty/debug.js +734 -0
  1186. package/dist/tasty/debug.js.map +1 -0
  1187. package/dist/tasty/hooks/useGlobalStyles.d.ts +28 -0
  1188. package/dist/tasty/hooks/useGlobalStyles.js +57 -0
  1189. package/dist/tasty/hooks/useGlobalStyles.js.map +1 -0
  1190. package/dist/tasty/hooks/useKeyframes.d.ts +57 -0
  1191. package/dist/tasty/hooks/useKeyframes.js +55 -0
  1192. package/dist/tasty/hooks/useKeyframes.js.map +1 -0
  1193. package/dist/tasty/hooks/useProperty.d.ts +80 -0
  1194. package/dist/tasty/hooks/useProperty.js +92 -0
  1195. package/dist/tasty/hooks/useProperty.js.map +1 -0
  1196. package/dist/tasty/hooks/useRawCSS.d.ts +54 -0
  1197. package/dist/tasty/hooks/useRawCSS.js +29 -0
  1198. package/dist/tasty/hooks/useRawCSS.js.map +1 -0
  1199. package/dist/tasty/hooks/useStyles.d.ts +41 -0
  1200. package/dist/tasty/hooks/useStyles.js +170 -0
  1201. package/dist/tasty/hooks/useStyles.js.map +1 -0
  1202. package/dist/tasty/index.d.ts +35 -0
  1203. package/dist/tasty/injector/index.d.ts +158 -0
  1204. package/dist/tasty/injector/index.js +155 -0
  1205. package/dist/tasty/injector/index.js.map +1 -0
  1206. package/dist/tasty/injector/injector.d.ts +137 -0
  1207. package/dist/tasty/injector/injector.js +401 -0
  1208. package/dist/tasty/injector/injector.js.map +1 -0
  1209. package/dist/tasty/injector/sheet-manager.d.ts +128 -0
  1210. package/dist/tasty/injector/sheet-manager.js +715 -0
  1211. package/dist/tasty/injector/sheet-manager.js.map +1 -0
  1212. package/dist/tasty/injector/types.d.ts +136 -0
  1213. package/dist/tasty/keyframes/index.js +207 -0
  1214. package/dist/tasty/keyframes/index.js.map +1 -0
  1215. package/dist/tasty/parser/classify.js +325 -0
  1216. package/dist/tasty/parser/classify.js.map +1 -0
  1217. package/dist/tasty/parser/const.js +34 -0
  1218. package/dist/tasty/parser/const.js.map +1 -0
  1219. package/dist/tasty/parser/lru.js +110 -0
  1220. package/dist/tasty/parser/lru.js.map +1 -0
  1221. package/dist/tasty/parser/parser.d.ts +26 -0
  1222. package/dist/tasty/parser/parser.js +117 -0
  1223. package/dist/tasty/parser/parser.js.map +1 -0
  1224. package/dist/tasty/parser/tokenizer.js +70 -0
  1225. package/dist/tasty/parser/tokenizer.js.map +1 -0
  1226. package/dist/tasty/parser/types.d.ts +47 -0
  1227. package/dist/tasty/parser/types.js +47 -0
  1228. package/dist/tasty/parser/types.js.map +1 -0
  1229. package/dist/tasty/pipeline/conditions.js +378 -0
  1230. package/dist/tasty/pipeline/conditions.js.map +1 -0
  1231. package/dist/tasty/pipeline/exclusive.js +232 -0
  1232. package/dist/tasty/pipeline/exclusive.js.map +1 -0
  1233. package/dist/tasty/pipeline/index.d.ts +52 -0
  1234. package/dist/tasty/pipeline/index.js +639 -0
  1235. package/dist/tasty/pipeline/index.js.map +1 -0
  1236. package/dist/tasty/pipeline/materialize.js +822 -0
  1237. package/dist/tasty/pipeline/materialize.js.map +1 -0
  1238. package/dist/tasty/pipeline/parseStateKey.js +422 -0
  1239. package/dist/tasty/pipeline/parseStateKey.js.map +1 -0
  1240. package/dist/tasty/pipeline/simplify.js +558 -0
  1241. package/dist/tasty/pipeline/simplify.js.map +1 -0
  1242. package/dist/tasty/plugins/okhsl-plugin.d.ts +36 -0
  1243. package/dist/tasty/plugins/okhsl-plugin.js +370 -0
  1244. package/dist/tasty/plugins/okhsl-plugin.js.map +1 -0
  1245. package/dist/tasty/plugins/types.d.ts +72 -0
  1246. package/dist/tasty/properties/index.js +159 -0
  1247. package/dist/tasty/properties/index.js.map +1 -0
  1248. package/dist/tasty/states/index.d.ts +44 -0
  1249. package/dist/tasty/states/index.js +390 -0
  1250. package/dist/tasty/states/index.js.map +1 -0
  1251. package/dist/tasty/static/index.d.ts +6 -0
  1252. package/dist/tasty/static/index.js +6 -0
  1253. package/dist/tasty/static/tastyStatic.d.ts +47 -0
  1254. package/dist/tasty/static/tastyStatic.js +32 -0
  1255. package/dist/tasty/static/tastyStatic.js.map +1 -0
  1256. package/dist/tasty/static/types.d.ts +50 -0
  1257. package/dist/tasty/static/types.js +25 -0
  1258. package/dist/tasty/static/types.js.map +1 -0
  1259. package/dist/tasty/styles/align.d.ts +16 -0
  1260. package/dist/tasty/styles/align.js +15 -0
  1261. package/dist/tasty/styles/align.js.map +1 -0
  1262. package/dist/tasty/styles/border.d.ts +26 -0
  1263. package/dist/tasty/styles/border.js +115 -0
  1264. package/dist/tasty/styles/border.js.map +1 -0
  1265. package/dist/tasty/styles/color.d.ts +15 -0
  1266. package/dist/tasty/styles/color.js +24 -0
  1267. package/dist/tasty/styles/color.js.map +1 -0
  1268. package/dist/tasty/styles/createStyle.js +78 -0
  1269. package/dist/tasty/styles/createStyle.js.map +1 -0
  1270. package/dist/tasty/styles/dimension.js +100 -0
  1271. package/dist/tasty/styles/dimension.js.map +1 -0
  1272. package/dist/tasty/styles/display.d.ts +38 -0
  1273. package/dist/tasty/styles/display.js +68 -0
  1274. package/dist/tasty/styles/display.js.map +1 -0
  1275. package/dist/tasty/styles/fade.d.ts +16 -0
  1276. package/dist/tasty/styles/fade.js +58 -0
  1277. package/dist/tasty/styles/fade.js.map +1 -0
  1278. package/dist/tasty/styles/fill.d.ts +45 -0
  1279. package/dist/tasty/styles/fill.js +52 -0
  1280. package/dist/tasty/styles/fill.js.map +1 -0
  1281. package/dist/tasty/styles/flow.d.ts +17 -0
  1282. package/dist/tasty/styles/flow.js +13 -0
  1283. package/dist/tasty/styles/flow.js.map +1 -0
  1284. package/dist/tasty/styles/gap.d.ts +32 -0
  1285. package/dist/tasty/styles/gap.js +37 -0
  1286. package/dist/tasty/styles/gap.js.map +1 -0
  1287. package/dist/tasty/styles/height.d.ts +18 -0
  1288. package/dist/tasty/styles/height.js +21 -0
  1289. package/dist/tasty/styles/height.js.map +1 -0
  1290. package/dist/tasty/styles/index.d.ts +3 -0
  1291. package/dist/tasty/styles/index.js +10 -0
  1292. package/dist/tasty/styles/index.js.map +1 -0
  1293. package/dist/tasty/styles/inset.d.ts +51 -0
  1294. package/dist/tasty/styles/inset.js +143 -0
  1295. package/dist/tasty/styles/inset.js.map +1 -0
  1296. package/dist/tasty/styles/justify.d.ts +16 -0
  1297. package/dist/tasty/styles/justify.js +15 -0
  1298. package/dist/tasty/styles/justify.js.map +1 -0
  1299. package/dist/tasty/styles/list.d.ts +17 -0
  1300. package/dist/tasty/styles/list.js +99 -0
  1301. package/dist/tasty/styles/list.js.map +1 -0
  1302. package/dist/tasty/styles/margin.d.ts +29 -0
  1303. package/dist/tasty/styles/margin.js +97 -0
  1304. package/dist/tasty/styles/margin.js.map +1 -0
  1305. package/dist/tasty/styles/outline.d.ts +30 -0
  1306. package/dist/tasty/styles/outline.js +66 -0
  1307. package/dist/tasty/styles/outline.js.map +1 -0
  1308. package/dist/tasty/styles/padding.d.ts +29 -0
  1309. package/dist/tasty/styles/padding.js +97 -0
  1310. package/dist/tasty/styles/padding.js.map +1 -0
  1311. package/dist/tasty/styles/predefined.d.ts +74 -0
  1312. package/dist/tasty/styles/predefined.js +242 -0
  1313. package/dist/tasty/styles/predefined.js.map +1 -0
  1314. package/dist/tasty/styles/preset.d.ts +48 -0
  1315. package/dist/tasty/styles/preset.js +126 -0
  1316. package/dist/tasty/styles/preset.js.map +1 -0
  1317. package/dist/tasty/styles/radius.d.ts +15 -0
  1318. package/dist/tasty/styles/radius.js +52 -0
  1319. package/dist/tasty/styles/radius.js.map +1 -0
  1320. package/dist/tasty/styles/scrollbar.d.ts +22 -0
  1321. package/dist/tasty/styles/scrollbar.js +109 -0
  1322. package/dist/tasty/styles/scrollbar.js.map +1 -0
  1323. package/dist/tasty/styles/shadow.d.ts +15 -0
  1324. package/dist/tasty/styles/shadow.js +28 -0
  1325. package/dist/tasty/styles/shadow.js.map +1 -0
  1326. package/dist/tasty/styles/styledScrollbar.d.ts +48 -0
  1327. package/dist/tasty/styles/styledScrollbar.js +39 -0
  1328. package/dist/tasty/styles/styledScrollbar.js.map +1 -0
  1329. package/dist/tasty/styles/transition.d.ts +15 -0
  1330. package/dist/tasty/styles/transition.js +139 -0
  1331. package/dist/tasty/styles/transition.js.map +1 -0
  1332. package/dist/tasty/styles/types.d.ts +499 -0
  1333. package/dist/tasty/styles/width.d.ts +18 -0
  1334. package/dist/tasty/styles/width.js +21 -0
  1335. package/dist/tasty/styles/width.js.map +1 -0
  1336. package/dist/tasty/tasty.d.ts +936 -0
  1337. package/dist/tasty/tasty.js +191 -0
  1338. package/dist/tasty/tasty.js.map +1 -0
  1339. package/dist/tasty/types.d.ts +192 -0
  1340. package/dist/tasty/utils/cache-wrapper.js +25 -0
  1341. package/dist/tasty/utils/cache-wrapper.js.map +1 -0
  1342. package/dist/tasty/utils/case-converter.js +9 -0
  1343. package/dist/tasty/utils/case-converter.js.map +1 -0
  1344. package/dist/tasty/utils/colors.d.ts +6 -0
  1345. package/dist/tasty/utils/colors.js +10 -0
  1346. package/dist/tasty/utils/colors.js.map +1 -0
  1347. package/dist/tasty/utils/dotize.d.ts +27 -0
  1348. package/dist/tasty/utils/dotize.js +123 -0
  1349. package/dist/tasty/utils/dotize.js.map +1 -0
  1350. package/dist/tasty/utils/filter-base-props.d.ts +16 -0
  1351. package/dist/tasty/utils/filter-base-props.js +46 -0
  1352. package/dist/tasty/utils/filter-base-props.js.map +1 -0
  1353. package/dist/tasty/utils/get-display-name.d.ts +8 -0
  1354. package/dist/tasty/utils/get-display-name.js +11 -0
  1355. package/dist/tasty/utils/get-display-name.js.map +1 -0
  1356. package/dist/tasty/utils/hsl-to-rgb.js +39 -0
  1357. package/dist/tasty/utils/hsl-to-rgb.js.map +1 -0
  1358. package/dist/tasty/utils/is-dev-env.js +20 -0
  1359. package/dist/tasty/utils/is-dev-env.js.map +1 -0
  1360. package/dist/tasty/utils/merge-styles.d.ts +8 -0
  1361. package/dist/tasty/utils/merge-styles.js +147 -0
  1362. package/dist/tasty/utils/merge-styles.js.map +1 -0
  1363. package/dist/tasty/utils/mod-attrs.d.ts +9 -0
  1364. package/dist/tasty/utils/mod-attrs.js +22 -0
  1365. package/dist/tasty/utils/mod-attrs.js.map +1 -0
  1366. package/dist/tasty/utils/okhsl-to-rgb.js +297 -0
  1367. package/dist/tasty/utils/okhsl-to-rgb.js.map +1 -0
  1368. package/dist/tasty/utils/process-tokens.d.ts +32 -0
  1369. package/dist/tasty/utils/process-tokens.js +172 -0
  1370. package/dist/tasty/utils/process-tokens.js.map +1 -0
  1371. package/dist/tasty/utils/resolve-recipes.d.ts +18 -0
  1372. package/dist/tasty/utils/resolve-recipes.js +144 -0
  1373. package/dist/tasty/utils/resolve-recipes.js.map +1 -0
  1374. package/dist/tasty/utils/string.js +9 -0
  1375. package/dist/tasty/utils/string.js.map +1 -0
  1376. package/dist/tasty/utils/styles.d.ts +204 -0
  1377. package/dist/tasty/utils/styles.js +577 -0
  1378. package/dist/tasty/utils/styles.js.map +1 -0
  1379. package/dist/tasty/utils/typography.d.ts +37 -0
  1380. package/dist/tasty/utils/typography.js +54 -0
  1381. package/dist/tasty/utils/typography.js.map +1 -0
  1382. package/dist/tasty/utils/warnings.d.ts +17 -0
  1383. package/dist/tasty/utils/warnings.js +17 -0
  1384. package/dist/tasty/utils/warnings.js.map +1 -0
  1385. package/dist/tasty/zero/babel.d.ts +111 -0
  1386. package/dist/tasty/zero/babel.js +283 -0
  1387. package/dist/tasty/zero/babel.js.map +1 -0
  1388. package/dist/tasty/zero/index.d.ts +4 -0
  1389. package/dist/tasty/zero/index.js +5 -0
  1390. package/dist/tasty/zero/next.d.ts +61 -0
  1391. package/dist/tasty/zero/next.js +79 -0
  1392. package/dist/tasty/zero/next.js.map +1 -0
  1393. package/dist/tokens/base.d.ts +14 -0
  1394. package/dist/tokens/base.js +40 -0
  1395. package/dist/tokens/base.js.map +1 -0
  1396. package/dist/tokens/colors.d.ts +13 -0
  1397. package/dist/tokens/colors.js +90 -0
  1398. package/dist/tokens/colors.js.map +1 -0
  1399. package/dist/tokens/index.d.ts +30 -0
  1400. package/dist/tokens/index.js +54 -0
  1401. package/dist/tokens/index.js.map +1 -0
  1402. package/dist/tokens/layout.d.ts +13 -0
  1403. package/dist/tokens/layout.js +18 -0
  1404. package/dist/tokens/layout.js.map +1 -0
  1405. package/dist/tokens/shadows.d.ts +18 -0
  1406. package/dist/tokens/shadows.js +22 -0
  1407. package/dist/tokens/shadows.js.map +1 -0
  1408. package/dist/tokens/sizes.d.ts +31 -0
  1409. package/dist/tokens/sizes.js +39 -0
  1410. package/dist/tokens/sizes.js.map +1 -0
  1411. package/dist/tokens/spacing.d.ts +14 -0
  1412. package/dist/tokens/spacing.js +19 -0
  1413. package/dist/tokens/spacing.js.map +1 -0
  1414. package/dist/tokens/typography.d.ts +35 -0
  1415. package/dist/tokens/typography.js +238 -0
  1416. package/dist/tokens/typography.js.map +1 -0
  1417. package/dist/utils/ResizeSensor.d.ts +14 -0
  1418. package/dist/utils/ResizeSensor.js +241 -0
  1419. package/dist/utils/ResizeSensor.js.map +1 -0
  1420. package/dist/utils/cache-wrapper.js +25 -0
  1421. package/dist/utils/cache-wrapper.js.map +1 -0
  1422. package/dist/utils/case-converter.js +9 -0
  1423. package/dist/utils/case-converter.js.map +1 -0
  1424. package/dist/utils/hsl-to-rgb.js +39 -0
  1425. package/dist/utils/hsl-to-rgb.js.map +1 -0
  1426. package/dist/utils/index.d.ts +27 -0
  1427. package/dist/utils/is-dev-env.js +20 -0
  1428. package/dist/utils/is-dev-env.js.map +1 -0
  1429. package/dist/utils/merge-styles.js +147 -0
  1430. package/dist/utils/merge-styles.js.map +1 -0
  1431. package/dist/utils/modules.d.ts +6 -0
  1432. package/dist/utils/modules.js +9 -0
  1433. package/dist/utils/modules.js.map +1 -0
  1434. package/dist/utils/okhsl-to-rgb.js +297 -0
  1435. package/dist/utils/okhsl-to-rgb.js.map +1 -0
  1436. package/dist/utils/process-tokens.js +29 -0
  1437. package/dist/utils/process-tokens.js.map +1 -0
  1438. package/dist/utils/promise.d.ts +6 -0
  1439. package/dist/utils/promise.js +11 -0
  1440. package/dist/utils/promise.js.map +1 -0
  1441. package/dist/utils/raf.d.ts +22 -0
  1442. package/dist/utils/raf.js +41 -0
  1443. package/dist/utils/raf.js.map +1 -0
  1444. package/dist/utils/random.d.ts +10 -0
  1445. package/dist/utils/random.js +17 -0
  1446. package/dist/utils/random.js.map +1 -0
  1447. package/dist/utils/range.d.ts +6 -0
  1448. package/dist/utils/range.js +9 -0
  1449. package/dist/utils/range.js.map +1 -0
  1450. package/dist/utils/react/RenderCache.d.ts +23 -0
  1451. package/dist/utils/react/RenderCache.js +30 -0
  1452. package/dist/utils/react/RenderCache.js.map +1 -0
  1453. package/dist/utils/react/Slots.d.ts +10 -0
  1454. package/dist/utils/react/Slots.js +40 -0
  1455. package/dist/utils/react/Slots.js.map +1 -0
  1456. package/dist/utils/react/chain.d.ts +9 -0
  1457. package/dist/utils/react/chain.js +14 -0
  1458. package/dist/utils/react/chain.js.map +1 -0
  1459. package/dist/utils/react/forwardRefWithGenerics.d.ts +33 -0
  1460. package/dist/utils/react/forwardRefWithGenerics.js +33 -0
  1461. package/dist/utils/react/forwardRefWithGenerics.js.map +1 -0
  1462. package/dist/utils/react/index.d.ts +19 -0
  1463. package/dist/utils/react/interactions.js +24 -0
  1464. package/dist/utils/react/interactions.js.map +1 -0
  1465. package/dist/utils/react/isTextOnly.d.ts +6 -0
  1466. package/dist/utils/react/isTextOnly.js +11 -0
  1467. package/dist/utils/react/isTextOnly.js.map +1 -0
  1468. package/dist/utils/react/mapProps.js +14 -0
  1469. package/dist/utils/react/mapProps.js.map +1 -0
  1470. package/dist/utils/react/mergeProps.d.ts +17 -0
  1471. package/dist/utils/react/mergeProps.js +34 -0
  1472. package/dist/utils/react/mergeProps.js.map +1 -0
  1473. package/dist/utils/react/nullableValue.d.ts +12 -0
  1474. package/dist/utils/react/nullableValue.js +29 -0
  1475. package/dist/utils/react/nullableValue.js.map +1 -0
  1476. package/dist/utils/react/resolveIcon.d.ts +30 -0
  1477. package/dist/utils/react/resolveIcon.js +41 -0
  1478. package/dist/utils/react/resolveIcon.js.map +1 -0
  1479. package/dist/utils/react/sharedStore.js +38 -0
  1480. package/dist/utils/react/sharedStore.js.map +1 -0
  1481. package/dist/utils/react/useCombinedRefs.d.ts +9 -0
  1482. package/dist/utils/react/useCombinedRefs.js +24 -0
  1483. package/dist/utils/react/useCombinedRefs.js.map +1 -0
  1484. package/dist/utils/react/useControlledFocusVisible.d.ts +15 -0
  1485. package/dist/utils/react/useControlledFocusVisible.js +34 -0
  1486. package/dist/utils/react/useControlledFocusVisible.js.map +1 -0
  1487. package/dist/utils/react/useEventBus.d.ts +92 -0
  1488. package/dist/utils/react/useEventBus.js +125 -0
  1489. package/dist/utils/react/useEventBus.js.map +1 -0
  1490. package/dist/utils/react/useId.js +56 -0
  1491. package/dist/utils/react/useId.js.map +1 -0
  1492. package/dist/utils/react/useIsDarwin.js +36 -0
  1493. package/dist/utils/react/useIsDarwin.js.map +1 -0
  1494. package/dist/utils/react/useKeySymbols.js +68 -0
  1495. package/dist/utils/react/useKeySymbols.js.map +1 -0
  1496. package/dist/utils/react/useLayoutEffect.d.ts +8 -0
  1497. package/dist/utils/react/useLayoutEffect.js +9 -0
  1498. package/dist/utils/react/useLayoutEffect.js.map +1 -0
  1499. package/dist/utils/react/useLocalStorage.d.ts +37 -0
  1500. package/dist/utils/react/useLocalStorage.js +100 -0
  1501. package/dist/utils/react/useLocalStorage.js.map +1 -0
  1502. package/dist/utils/react/useMergeStyles.d.ts +32 -0
  1503. package/dist/utils/react/useMergeStyles.js +39 -0
  1504. package/dist/utils/react/useMergeStyles.js.map +1 -0
  1505. package/dist/utils/react/useQaProps.d.ts +23 -0
  1506. package/dist/utils/react/useQaProps.js +31 -0
  1507. package/dist/utils/react/useQaProps.js.map +1 -0
  1508. package/dist/utils/react/useViewportSize.d.ts +13 -0
  1509. package/dist/utils/react/useViewportSize.js +36 -0
  1510. package/dist/utils/react/useViewportSize.js.map +1 -0
  1511. package/dist/utils/react/wrapNodeIfPlain.d.ts +8 -0
  1512. package/dist/utils/react/wrapNodeIfPlain.js +14 -0
  1513. package/dist/utils/react/wrapNodeIfPlain.js.map +1 -0
  1514. package/dist/utils/resolve-recipes.js +144 -0
  1515. package/dist/utils/resolve-recipes.js.map +1 -0
  1516. package/dist/utils/string.js +9 -0
  1517. package/dist/utils/string.js.map +1 -0
  1518. package/dist/utils/styles.d.ts +23 -0
  1519. package/dist/utils/styles.js +338 -0
  1520. package/dist/utils/styles.js.map +1 -0
  1521. package/dist/utils/tree.d.ts +6 -0
  1522. package/dist/utils/tree.js +17 -0
  1523. package/dist/utils/tree.js.map +1 -0
  1524. package/dist/utils/warnings.d.ts +6 -0
  1525. package/dist/utils/warnings.js +30 -0
  1526. package/dist/utils/warnings.js.map +1 -0
  1527. package/dist/version.d.ts +12 -0
  1528. package/dist/version.js +13 -0
  1529. package/dist/version.js.map +1 -0
  1530. package/package.json +146 -38
  1531. package/CHANGELOG.md +0 -3265
  1532. package/es/_internal/hooks/index.js +0 -18
  1533. package/es/_internal/hooks/use-chained-callback.js +0 -19
  1534. package/es/_internal/hooks/use-debounced-value.js +0 -53
  1535. package/es/_internal/hooks/use-deprecation-warning.js +0 -20
  1536. package/es/_internal/hooks/use-effect-once.js +0 -13
  1537. package/es/_internal/hooks/use-event.js +0 -21
  1538. package/es/_internal/hooks/use-is-first-render.js +0 -18
  1539. package/es/_internal/hooks/use-sync-ref.js +0 -18
  1540. package/es/_internal/hooks/use-timer/index.js +0 -11
  1541. package/es/_internal/hooks/use-timer/timer.js +0 -60
  1542. package/es/_internal/hooks/use-timer/use-timer.js +0 -45
  1543. package/es/_internal/hooks/use-update-effect.js +0 -19
  1544. package/es/_internal/hooks/use-warn.js +0 -39
  1545. package/es/_internal/index.js +0 -10
  1546. package/es/components/Block.js +0 -21
  1547. package/es/components/CollectionItem.js +0 -62
  1548. package/es/components/GlobalStyles.js +0 -324
  1549. package/es/components/GridProvider.js +0 -63
  1550. package/es/components/HiddenInput.js +0 -34
  1551. package/es/components/OpenTrasition.js +0 -32
  1552. package/es/components/Root.js +0 -49
  1553. package/es/components/actions/Action/Action.js +0 -37
  1554. package/es/components/actions/Banner/Banner.js +0 -77
  1555. package/es/components/actions/Banner/index.js +0 -10
  1556. package/es/components/actions/Button/Button.js +0 -343
  1557. package/es/components/actions/Button/index.js +0 -10
  1558. package/es/components/actions/ButtonGroup/ButtonGroup.js +0 -23
  1559. package/es/components/actions/CommandMenu/CommandMenu.js +0 -461
  1560. package/es/components/actions/CommandMenu/index.js +0 -11
  1561. package/es/components/actions/CommandMenu/styled.js +0 -104
  1562. package/es/components/actions/ItemAction/ItemAction.js +0 -184
  1563. package/es/components/actions/ItemAction/index.js +0 -10
  1564. package/es/components/actions/ItemActionContext.js +0 -30
  1565. package/es/components/actions/ItemButton/ItemButton.js +0 -158
  1566. package/es/components/actions/ItemButton/index.js +0 -10
  1567. package/es/components/actions/Link/Link.js +0 -15
  1568. package/es/components/actions/Menu/Menu.js +0 -136
  1569. package/es/components/actions/Menu/MenuItem.js +0 -82
  1570. package/es/components/actions/Menu/MenuSection.js +0 -37
  1571. package/es/components/actions/Menu/MenuTrigger.js +0 -137
  1572. package/es/components/actions/Menu/SubMenuTrigger.js +0 -288
  1573. package/es/components/actions/Menu/SubmenuTriggerContext.js +0 -18
  1574. package/es/components/actions/Menu/context.js +0 -14
  1575. package/es/components/actions/Menu/index.js +0 -19
  1576. package/es/components/actions/Menu/styled.js +0 -223
  1577. package/es/components/actions/index.js +0 -24
  1578. package/es/components/actions/use-action.js +0 -258
  1579. package/es/components/actions/use-anchored-menu.js +0 -107
  1580. package/es/components/actions/use-context-menu.js +0 -206
  1581. package/es/components/content/ActiveZone/ActiveZone.js +0 -38
  1582. package/es/components/content/Alert/Alert.js +0 -52
  1583. package/es/components/content/Alert/index.js +0 -10
  1584. package/es/components/content/Alert/types.js +0 -10
  1585. package/es/components/content/Alert/use-alert.js +0 -31
  1586. package/es/components/content/Avatar/Avatar.js +0 -33
  1587. package/es/components/content/Badge/Badge.js +0 -54
  1588. package/es/components/content/Card/Card.js +0 -29
  1589. package/es/components/content/Content.js +0 -33
  1590. package/es/components/content/CopyPasteBlock/CopyPasteBlock.js +0 -160
  1591. package/es/components/content/CopyPasteBlock/index.js +0 -10
  1592. package/es/components/content/CopySnippet/CopySnippet.js +0 -190
  1593. package/es/components/content/CopySnippet/index.js +0 -10
  1594. package/es/components/content/Disclosure/Disclosure.js +0 -301
  1595. package/es/components/content/Disclosure/index.js +0 -10
  1596. package/es/components/content/Divider.js +0 -54
  1597. package/es/components/content/Footer.js +0 -28
  1598. package/es/components/content/Header.js +0 -29
  1599. package/es/components/content/HotKeys/HotKeys.js +0 -66
  1600. package/es/components/content/HotKeys/index.js +0 -10
  1601. package/es/components/content/Item/Item.js +0 -586
  1602. package/es/components/content/Item/index.js +0 -11
  1603. package/es/components/content/ItemBadge/ItemBadge.js +0 -119
  1604. package/es/components/content/ItemBadge/index.js +0 -10
  1605. package/es/components/content/Layout/GridLayout.js +0 -50
  1606. package/es/components/content/Layout/Layout.js +0 -227
  1607. package/es/components/content/Layout/LayoutBlock.js +0 -31
  1608. package/es/components/content/Layout/LayoutCenter.js +0 -32
  1609. package/es/components/content/Layout/LayoutContainer.js +0 -57
  1610. package/es/components/content/Layout/LayoutContent.js +0 -121
  1611. package/es/components/content/Layout/LayoutContext.js +0 -145
  1612. package/es/components/content/Layout/LayoutFlex.js +0 -33
  1613. package/es/components/content/Layout/LayoutFooter.js +0 -52
  1614. package/es/components/content/Layout/LayoutGrid.js +0 -33
  1615. package/es/components/content/Layout/LayoutHeader.js +0 -113
  1616. package/es/components/content/Layout/LayoutPane.js +0 -336
  1617. package/es/components/content/Layout/LayoutPanel.js +0 -486
  1618. package/es/components/content/Layout/LayoutPanelHeader.js +0 -51
  1619. package/es/components/content/Layout/LayoutToolbar.js +0 -38
  1620. package/es/components/content/Layout/hooks/useTinyScrollbar.js +0 -177
  1621. package/es/components/content/Layout/index.js +0 -39
  1622. package/es/components/content/Layout/utils.js +0 -23
  1623. package/es/components/content/List/SectionHeading.js +0 -23
  1624. package/es/components/content/List/index.js +0 -10
  1625. package/es/components/content/Paragraph.js +0 -23
  1626. package/es/components/content/Placeholder/Placeholder.js +0 -73
  1627. package/es/components/content/PrismCode/PrismCode.js +0 -102
  1628. package/es/components/content/PrismCode/prismSetup.js +0 -211
  1629. package/es/components/content/PrismDiffCode/PrismDiffCode.js +0 -44
  1630. package/es/components/content/Result/Result.js +0 -129
  1631. package/es/components/content/Skeleton/Skeleton.js +0 -83
  1632. package/es/components/content/Tag/Tag.js +0 -44
  1633. package/es/components/content/Text.js +0 -104
  1634. package/es/components/content/TextItem/TextItem.js +0 -64
  1635. package/es/components/content/TextItem/index.js +0 -10
  1636. package/es/components/content/Title.js +0 -69
  1637. package/es/components/content/highlightText.js +0 -33
  1638. package/es/components/content/use-auto-tooltip.js +0 -148
  1639. package/es/components/fields/Checkbox/Checkbox.js +0 -167
  1640. package/es/components/fields/Checkbox/CheckboxGroup.js +0 -73
  1641. package/es/components/fields/Checkbox/context.js +0 -11
  1642. package/es/components/fields/Checkbox/index.js +0 -11
  1643. package/es/components/fields/ComboBox/ComboBox.js +0 -1031
  1644. package/es/components/fields/ComboBox/index.js +0 -10
  1645. package/es/components/fields/DatePicker/DateInput.js +0 -61
  1646. package/es/components/fields/DatePicker/DateInputBase.js +0 -62
  1647. package/es/components/fields/DatePicker/DatePicker.js +0 -73
  1648. package/es/components/fields/DatePicker/DatePickerButton.js +0 -16
  1649. package/es/components/fields/DatePicker/DatePickerElement.js +0 -21
  1650. package/es/components/fields/DatePicker/DatePickerInput.js +0 -51
  1651. package/es/components/fields/DatePicker/DatePickerSegment.js +0 -68
  1652. package/es/components/fields/DatePicker/DateRangePicker.js +0 -82
  1653. package/es/components/fields/DatePicker/DateRangeSeparatedPicker.js +0 -133
  1654. package/es/components/fields/DatePicker/TimeInput.js +0 -51
  1655. package/es/components/fields/DatePicker/index.js +0 -16
  1656. package/es/components/fields/DatePicker/intl.js +0 -14
  1657. package/es/components/fields/DatePicker/parseDate.js +0 -30
  1658. package/es/components/fields/DatePicker/props.js +0 -20
  1659. package/es/components/fields/DatePicker/types.js +0 -10
  1660. package/es/components/fields/DatePicker/utils.js +0 -104
  1661. package/es/components/fields/FileInput/FileInput.js +0 -162
  1662. package/es/components/fields/FilterListBox/FilterListBox.js +0 -655
  1663. package/es/components/fields/FilterListBox/index.js +0 -10
  1664. package/es/components/fields/FilterPicker/FilterPicker.js +0 -551
  1665. package/es/components/fields/FilterPicker/index.js +0 -10
  1666. package/es/components/fields/Input/Input.js +0 -21
  1667. package/es/components/fields/Input/index.js +0 -10
  1668. package/es/components/fields/ListBox/ListBox.js +0 -712
  1669. package/es/components/fields/ListBox/index.js +0 -10
  1670. package/es/components/fields/NumberInput/NumberInput.js +0 -58
  1671. package/es/components/fields/NumberInput/StepButton.js +0 -40
  1672. package/es/components/fields/PasswordInput/PasswordInput.js +0 -54
  1673. package/es/components/fields/Picker/Picker.js +0 -420
  1674. package/es/components/fields/Picker/index.js +0 -10
  1675. package/es/components/fields/RadioGroup/Radio.js +0 -226
  1676. package/es/components/fields/RadioGroup/RadioGroup.js +0 -99
  1677. package/es/components/fields/RadioGroup/context.js +0 -14
  1678. package/es/components/fields/RadioGroup/index.js +0 -11
  1679. package/es/components/fields/SearchInput/SearchInput.js +0 -38
  1680. package/es/components/fields/SearchInput/index.js +0 -10
  1681. package/es/components/fields/Select/Select.js +0 -347
  1682. package/es/components/fields/Select/index.js +0 -10
  1683. package/es/components/fields/Slider/Gradation.js +0 -24
  1684. package/es/components/fields/Slider/Header.js +0 -12
  1685. package/es/components/fields/Slider/HueSlider.js +0 -65
  1686. package/es/components/fields/Slider/RangeSlider.js +0 -34
  1687. package/es/components/fields/Slider/Slider.js +0 -43
  1688. package/es/components/fields/Slider/SliderBase.js +0 -126
  1689. package/es/components/fields/Slider/SliderInput.js +0 -34
  1690. package/es/components/fields/Slider/SliderThumb.js +0 -38
  1691. package/es/components/fields/Slider/SliderTrack.js +0 -30
  1692. package/es/components/fields/Slider/elements.js +0 -154
  1693. package/es/components/fields/Slider/index.js +0 -14
  1694. package/es/components/fields/Slider/types.js +0 -10
  1695. package/es/components/fields/Switch/Switch.js +0 -169
  1696. package/es/components/fields/Switch/index.js +0 -10
  1697. package/es/components/fields/TextArea/TextArea.js +0 -99
  1698. package/es/components/fields/TextArea/index.js +0 -10
  1699. package/es/components/fields/TextInput/TextInput.js +0 -42
  1700. package/es/components/fields/TextInput/TextInputBase.js +0 -244
  1701. package/es/components/fields/TextInput/index.js +0 -11
  1702. package/es/components/fields/TextInputMapper/TextInputMapper.js +0 -188
  1703. package/es/components/fields/TextInputMapper/index.js +0 -10
  1704. package/es/components/fields/index.js +0 -28
  1705. package/es/components/form/FieldWrapper/FieldWrapper.js +0 -130
  1706. package/es/components/form/FieldWrapper/extract-field-wrapper-props.js +0 -47
  1707. package/es/components/form/FieldWrapper/index.js +0 -12
  1708. package/es/components/form/FieldWrapper/types.js +0 -10
  1709. package/es/components/form/Form/Field.js +0 -179
  1710. package/es/components/form/Form/Form.js +0 -155
  1711. package/es/components/form/Form/ResetButton/ResetButton.js +0 -38
  1712. package/es/components/form/Form/ResetButton/index.js +0 -10
  1713. package/es/components/form/Form/SubmitButton/SubmitButton.js +0 -26
  1714. package/es/components/form/Form/SubmitButton/index.js +0 -10
  1715. package/es/components/form/Form/SubmitError.js +0 -30
  1716. package/es/components/form/Form/index.js +0 -27
  1717. package/es/components/form/Form/types.js +0 -10
  1718. package/es/components/form/Form/use-field/index.js +0 -12
  1719. package/es/components/form/Form/use-field/types.js +0 -10
  1720. package/es/components/form/Form/use-field/use-field-props.js +0 -106
  1721. package/es/components/form/Form/use-field/use-field.js +0 -184
  1722. package/es/components/form/Form/use-form.js +0 -395
  1723. package/es/components/form/Form/validation.js +0 -164
  1724. package/es/components/form/Label.js +0 -79
  1725. package/es/components/form/index.js +0 -13
  1726. package/es/components/form/wrapper.js +0 -47
  1727. package/es/components/helpers/DisplayTransition/DisplayTransition.js +0 -301
  1728. package/es/components/helpers/DisplayTransition/index.js +0 -10
  1729. package/es/components/helpers/IconSwitch/IconSwitch.js +0 -138
  1730. package/es/components/helpers/index.js +0 -11
  1731. package/es/components/layout/Flex.js +0 -22
  1732. package/es/components/layout/Flow.js +0 -23
  1733. package/es/components/layout/Grid.js +0 -28
  1734. package/es/components/layout/Panel.js +0 -109
  1735. package/es/components/layout/Prefix.js +0 -43
  1736. package/es/components/layout/ResizablePanel.js +0 -291
  1737. package/es/components/layout/Space.js +0 -36
  1738. package/es/components/layout/Suffix.js +0 -42
  1739. package/es/components/navigation/Tabs/DraggableTabList.js +0 -103
  1740. package/es/components/navigation/Tabs/EditableTitle.js +0 -116
  1741. package/es/components/navigation/Tabs/TabButton.js +0 -318
  1742. package/es/components/navigation/Tabs/TabDropIndicator.js +0 -60
  1743. package/es/components/navigation/Tabs/TabPanel.js +0 -126
  1744. package/es/components/navigation/Tabs/TabPicker.js +0 -46
  1745. package/es/components/navigation/Tabs/Tabs.js +0 -436
  1746. package/es/components/navigation/Tabs/TabsAction.js +0 -70
  1747. package/es/components/navigation/Tabs/TabsContext.js +0 -36
  1748. package/es/components/navigation/Tabs/index.js +0 -10
  1749. package/es/components/navigation/Tabs/styled.js +0 -367
  1750. package/es/components/navigation/Tabs/types.js +0 -17
  1751. package/es/components/navigation/Tabs/use-tab-editing.js +0 -61
  1752. package/es/components/navigation/Tabs/use-tab-indicator.js +0 -77
  1753. package/es/components/navigation/index.js +0 -10
  1754. package/es/components/organisms/FileTabs/FileTabs.js +0 -255
  1755. package/es/components/organisms/StatsCard/StatsCard.js +0 -16
  1756. package/es/components/other/Calendar/Calendar.js +0 -57
  1757. package/es/components/other/Calendar/CalendarCell.js +0 -66
  1758. package/es/components/other/Calendar/CalendarGrid.js +0 -32
  1759. package/es/components/other/Calendar/RangeCalendar.js +0 -57
  1760. package/es/components/other/CloudLogo/CloudLogo.js +0 -33
  1761. package/es/components/overlays/AlertDialog/AlertDialog.js +0 -58
  1762. package/es/components/overlays/AlertDialog/AlertDialogApiProvider.js +0 -134
  1763. package/es/components/overlays/AlertDialog/AlertDialogZone.js +0 -66
  1764. package/es/components/overlays/AlertDialog/index.js +0 -12
  1765. package/es/components/overlays/AlertDialog/types.js +0 -10
  1766. package/es/components/overlays/Dialog/Dialog.js +0 -240
  1767. package/es/components/overlays/Dialog/DialogContainer.js +0 -39
  1768. package/es/components/overlays/Dialog/DialogForm.js +0 -45
  1769. package/es/components/overlays/Dialog/DialogTrigger.js +0 -132
  1770. package/es/components/overlays/Dialog/context.js +0 -17
  1771. package/es/components/overlays/Dialog/index.js +0 -14
  1772. package/es/components/overlays/Dialog/use-dialog-container.js +0 -62
  1773. package/es/components/overlays/Modal/Modal.js +0 -94
  1774. package/es/components/overlays/Modal/OpenTransition.js +0 -28
  1775. package/es/components/overlays/Modal/Overlay.js +0 -40
  1776. package/es/components/overlays/Modal/Popover.js +0 -69
  1777. package/es/components/overlays/Modal/Tray.js +0 -72
  1778. package/es/components/overlays/Modal/Underlay.js +0 -44
  1779. package/es/components/overlays/Modal/index.js +0 -15
  1780. package/es/components/overlays/Modal/types.js +0 -10
  1781. package/es/components/overlays/Notifications/Notification.js +0 -89
  1782. package/es/components/overlays/Notifications/NotificationAction.js +0 -82
  1783. package/es/components/overlays/Notifications/NotificationCard.js +0 -87
  1784. package/es/components/overlays/Notifications/NotificationContext.js +0 -44
  1785. package/es/components/overlays/Notifications/NotificationItem.js +0 -63
  1786. package/es/components/overlays/Notifications/OverlayContainer.js +0 -346
  1787. package/es/components/overlays/Notifications/OverlayProvider.js +0 -69
  1788. package/es/components/overlays/Notifications/PersistentNotificationsList.js +0 -120
  1789. package/es/components/overlays/Notifications/format-relative-time.js +0 -55
  1790. package/es/components/overlays/Notifications/index.js +0 -51
  1791. package/es/components/overlays/Notifications/types.js +0 -10
  1792. package/es/components/overlays/Notifications/use-notification-state.js +0 -239
  1793. package/es/components/overlays/Notifications/use-notifications.js +0 -175
  1794. package/es/components/overlays/Notifications/use-overlay-timers.js +0 -141
  1795. package/es/components/overlays/Notifications/use-persistent-notifications.js +0 -63
  1796. package/es/components/overlays/Notifications/use-persistent-state.js +0 -85
  1797. package/es/components/overlays/Notifications/use-toast-state.js +0 -143
  1798. package/es/components/overlays/OverlayWrapper.js +0 -19
  1799. package/es/components/overlays/Toast/ToastItem.js +0 -32
  1800. package/es/components/overlays/Toast/ToastProvider.js +0 -14
  1801. package/es/components/overlays/Toast/index.js +0 -93
  1802. package/es/components/overlays/Toast/types.js +0 -10
  1803. package/es/components/overlays/Toast/useProgressToast.js +0 -203
  1804. package/es/components/overlays/Toast/useToast.js +0 -107
  1805. package/es/components/overlays/Tooltip/Tooltip.js +0 -146
  1806. package/es/components/overlays/Tooltip/TooltipProvider.js +0 -32
  1807. package/es/components/overlays/Tooltip/TooltipTrigger.js +0 -119
  1808. package/es/components/overlays/Tooltip/context.js +0 -11
  1809. package/es/components/overlays/Tooltip/index.js +0 -12
  1810. package/es/components/portal/Portal.js +0 -44
  1811. package/es/components/portal/PortalProvider.js +0 -24
  1812. package/es/components/portal/index.js +0 -11
  1813. package/es/components/portal/types.js +0 -10
  1814. package/es/components/portal/usePortal.js +0 -41
  1815. package/es/components/shared/InvalidIcon.js +0 -12
  1816. package/es/components/shared/ValidIcon.js +0 -12
  1817. package/es/components/status/LoadingAnimation/LoadingAnimation.js +0 -76
  1818. package/es/components/status/LoadingAnimation/index.js +0 -10
  1819. package/es/components/status/Spin/Cube.js +0 -106
  1820. package/es/components/status/Spin/InternalSpinner.js +0 -26
  1821. package/es/components/status/Spin/Spin.js +0 -21
  1822. package/es/components/status/Spin/SpinsContainer.js +0 -37
  1823. package/es/components/status/Spin/index.js +0 -10
  1824. package/es/components/status/Spin/types.js +0 -10
  1825. package/es/components/status/index.js +0 -11
  1826. package/es/data/item-themes.js +0 -847
  1827. package/es/data/themes.js +0 -41
  1828. package/es/icons/AdjustmentsHorizontalIcon.js +0 -12
  1829. package/es/icons/AdjustmentsIcon.js +0 -12
  1830. package/es/icons/AiIcon.js +0 -13
  1831. package/es/icons/AreaChartIcon.js +0 -13
  1832. package/es/icons/BackwardIcon.js +0 -13
  1833. package/es/icons/BarChartIcon.js +0 -13
  1834. package/es/icons/BellFilledIcon.js +0 -13
  1835. package/es/icons/BellIcon.js +0 -13
  1836. package/es/icons/BooleanIcon.js +0 -12
  1837. package/es/icons/CalendarEditIcon.js +0 -12
  1838. package/es/icons/CalendarIcon.js +0 -12
  1839. package/es/icons/CaretDownIcon.js +0 -13
  1840. package/es/icons/CaretUpIcon.js +0 -13
  1841. package/es/icons/ChartAreaStackedIcon.js +0 -12
  1842. package/es/icons/ChartAreaStackedPercentageIcon.js +0 -12
  1843. package/es/icons/ChartBarGroupedHorizontalIcon.js +0 -12
  1844. package/es/icons/ChartBarGroupedIcon.js +0 -12
  1845. package/es/icons/ChartBarHorizontalIcon.js +0 -12
  1846. package/es/icons/ChartBarLineIcon.js +0 -12
  1847. package/es/icons/ChartBarStackedHorizontalIcon.js +0 -12
  1848. package/es/icons/ChartBarStackedIcon.js +0 -12
  1849. package/es/icons/ChartBarStackedPercentageHorizontalIcon.js +0 -12
  1850. package/es/icons/ChartBarStackedPercentageIcon.js +0 -12
  1851. package/es/icons/ChartBoxPlot2Icon.js +0 -12
  1852. package/es/icons/ChartBoxPlotIcon.js +0 -12
  1853. package/es/icons/ChartBubbleIcon.js +0 -12
  1854. package/es/icons/ChartDonut2Icon.js +0 -12
  1855. package/es/icons/ChartFunnelIcon.js +0 -12
  1856. package/es/icons/ChartHeatmapIcon.js +0 -12
  1857. package/es/icons/ChartKPIIcon.js +0 -12
  1858. package/es/icons/ChartPie2Icon.js +0 -12
  1859. package/es/icons/ChartScatterIcon.js +0 -12
  1860. package/es/icons/CheckCircleFilledIcon.js +0 -13
  1861. package/es/icons/CheckCircleIcon.js +0 -13
  1862. package/es/icons/CheckIcon.js +0 -13
  1863. package/es/icons/CircleFilledIcon.js +0 -13
  1864. package/es/icons/ClearIcon.js +0 -12
  1865. package/es/icons/CloseCircleFilledIcon.js +0 -13
  1866. package/es/icons/CloseCircleIcon.js +0 -13
  1867. package/es/icons/CloseIcon.js +0 -13
  1868. package/es/icons/CodeIcon.js +0 -13
  1869. package/es/icons/ColumnTotalIcon.js +0 -12
  1870. package/es/icons/CopyIcon.js +0 -13
  1871. package/es/icons/CountIcon.js +0 -12
  1872. package/es/icons/CubeIcon.js +0 -12
  1873. package/es/icons/CubePauseIcon.js +0 -12
  1874. package/es/icons/CubePlayIcon.js +0 -12
  1875. package/es/icons/CurrencyDollarIcon.js +0 -12
  1876. package/es/icons/DangerIcon.js +0 -13
  1877. package/es/icons/DashboardIcon.js +0 -13
  1878. package/es/icons/DatabaseIcon.js +0 -13
  1879. package/es/icons/DecimalDecreaseIcon.js +0 -12
  1880. package/es/icons/DecimalIncreaseIcon.js +0 -12
  1881. package/es/icons/DirectionIcon.js +0 -63
  1882. package/es/icons/DonutIcon.js +0 -13
  1883. package/es/icons/DownIcon.js +0 -13
  1884. package/es/icons/EditIcon.js +0 -13
  1885. package/es/icons/ExclamationCircleFilledIcon.js +0 -13
  1886. package/es/icons/ExclamationCircleIcon.js +0 -13
  1887. package/es/icons/ExclamationIcon.js +0 -13
  1888. package/es/icons/EyeIcon.js +0 -13
  1889. package/es/icons/EyeInvisibleIcon.js +0 -13
  1890. package/es/icons/FilterIcon.js +0 -13
  1891. package/es/icons/FolderFilledIcon.js +0 -12
  1892. package/es/icons/FolderIcon.js +0 -12
  1893. package/es/icons/FolderOpenFilledIcon.js +0 -12
  1894. package/es/icons/FolderOpenIcon.js +0 -12
  1895. package/es/icons/ForwardIcon.js +0 -13
  1896. package/es/icons/HierarchyIcon.js +0 -12
  1897. package/es/icons/HierarchyOpenIcon.js +0 -12
  1898. package/es/icons/Icon.js +0 -52
  1899. package/es/icons/InfoCircleIcon.js +0 -13
  1900. package/es/icons/InfoIcon.js +0 -13
  1901. package/es/icons/KeyIcon.js +0 -13
  1902. package/es/icons/LeftIcon.js +0 -13
  1903. package/es/icons/LineChartIcon.js +0 -13
  1904. package/es/icons/LoadingIcon.js +0 -12
  1905. package/es/icons/LockFilledIcon.js +0 -13
  1906. package/es/icons/LockIcon.js +0 -13
  1907. package/es/icons/MoreIcon.js +0 -13
  1908. package/es/icons/NotAllowedIcon.js +0 -13
  1909. package/es/icons/Number123Icon.js +0 -12
  1910. package/es/icons/NumberIcon.js +0 -13
  1911. package/es/icons/PauseCircleFilledIcon.js +0 -12
  1912. package/es/icons/PauseCircleIcon.js +0 -12
  1913. package/es/icons/PauseIcon.js +0 -13
  1914. package/es/icons/PercentageIcon.js +0 -12
  1915. package/es/icons/PieChartIcon.js +0 -13
  1916. package/es/icons/PlayCircleIcon.js +0 -13
  1917. package/es/icons/PlayIcon.js +0 -13
  1918. package/es/icons/PlusIcon.js +0 -13
  1919. package/es/icons/ProgressBarIcon.js +0 -12
  1920. package/es/icons/ReloadIcon.js +0 -13
  1921. package/es/icons/ReportIcon.js +0 -13
  1922. package/es/icons/ReturnIcon.js +0 -13
  1923. package/es/icons/RightIcon.js +0 -13
  1924. package/es/icons/RowTotalsIcon.js +0 -12
  1925. package/es/icons/SchemeIcon.js +0 -13
  1926. package/es/icons/SearchIcon.js +0 -13
  1927. package/es/icons/SemanticQueryIcon.js +0 -12
  1928. package/es/icons/SettingsIcon.js +0 -13
  1929. package/es/icons/ShieldFilledIcon.js +0 -13
  1930. package/es/icons/ShieldIcon.js +0 -13
  1931. package/es/icons/SlashIcon.js +0 -13
  1932. package/es/icons/SparklesIcon.js +0 -13
  1933. package/es/icons/SqlIcon.js +0 -13
  1934. package/es/icons/StatsIcon.js +0 -12
  1935. package/es/icons/StopIcon.js +0 -13
  1936. package/es/icons/StringIcon.js +0 -12
  1937. package/es/icons/SubtotalsIcon.js +0 -12
  1938. package/es/icons/SwitchIcon.js +0 -13
  1939. package/es/icons/TableIcon.js +0 -13
  1940. package/es/icons/ThumbsDownIcon.js +0 -13
  1941. package/es/icons/ThumbsUpIcon.js +0 -13
  1942. package/es/icons/ThunderboltCrossedIcon.js +0 -13
  1943. package/es/icons/ThunderboltFilledIcon.js +0 -13
  1944. package/es/icons/ThunderboltIcon.js +0 -13
  1945. package/es/icons/TimeIcon.js +0 -13
  1946. package/es/icons/TrashIcon.js +0 -13
  1947. package/es/icons/UnlockIcon.js +0 -13
  1948. package/es/icons/UpIcon.js +0 -13
  1949. package/es/icons/UserGroupIcon.js +0 -12
  1950. package/es/icons/UserIcon.js +0 -12
  1951. package/es/icons/UserLockIcon.js +0 -12
  1952. package/es/icons/ViewIcon.js +0 -12
  1953. package/es/icons/WarningFilledIcon.js +0 -13
  1954. package/es/icons/WarningIcon.js +0 -13
  1955. package/es/icons/index.js +0 -137
  1956. package/es/icons/wrap-icon.js +0 -20
  1957. package/es/index.js +0 -108
  1958. package/es/provider.js +0 -55
  1959. package/es/providers/TrackingProvider.js +0 -26
  1960. package/es/providers/navigation.types.js +0 -10
  1961. package/es/providers/navigationAdapter.default.js +0 -58
  1962. package/es/shared/form.js +0 -10
  1963. package/es/shared/index.js +0 -10
  1964. package/es/stories/Form.legacy-stories.js +0 -89
  1965. package/es/stories/FormFieldArgs.js +0 -357
  1966. package/es/stories/SimpleLayout.stories.js +0 -26
  1967. package/es/stories/Tasty.stories.js +0 -20
  1968. package/es/stories/components/ConfirmDeletionDialogForm.js +0 -32
  1969. package/es/stories/components/DialogFormApp.js +0 -15
  1970. package/es/stories/components/StyledButton.js +0 -37
  1971. package/es/stories/lists/baseProps.js +0 -38
  1972. package/es/stories/playground/PlaygroundEditor.js +0 -89
  1973. package/es/stories/playground/PlaygroundLayout.js +0 -16
  1974. package/es/stories/playground/PlaygroundOutput.js +0 -92
  1975. package/es/stories/playground/PlaygroundPreview.js +0 -91
  1976. package/es/stories/playground/components/Button.js +0 -45
  1977. package/es/stories/playground/components/Card.js +0 -20
  1978. package/es/stories/playground/components/ScrollProgress.js +0 -17
  1979. package/es/stories/playground/examples.js +0 -158
  1980. package/es/tasty/chunks/cacheKey.js +0 -98
  1981. package/es/tasty/chunks/definitions.js +0 -337
  1982. package/es/tasty/chunks/index.js +0 -12
  1983. package/es/tasty/chunks/renderChunk.js +0 -97
  1984. package/es/tasty/config.js +0 -469
  1985. package/es/tasty/debug.js +0 -961
  1986. package/es/tasty/hooks/index.js +0 -14
  1987. package/es/tasty/hooks/useGlobalStyles.js +0 -74
  1988. package/es/tasty/hooks/useKeyframes.js +0 -82
  1989. package/es/tasty/hooks/useProperty.js +0 -100
  1990. package/es/tasty/hooks/useRawCSS.js +0 -40
  1991. package/es/tasty/hooks/useStyles.js +0 -241
  1992. package/es/tasty/index.js +0 -35
  1993. package/es/tasty/injector/index.js +0 -175
  1994. package/es/tasty/injector/injector.js +0 -549
  1995. package/es/tasty/injector/sheet-manager.js +0 -1046
  1996. package/es/tasty/injector/types.js +0 -10
  1997. package/es/tasty/keyframes/index.js +0 -301
  1998. package/es/tasty/parser/classify.js +0 -419
  1999. package/es/tasty/parser/const.js +0 -38
  2000. package/es/tasty/parser/lru.js +0 -140
  2001. package/es/tasty/parser/parser.js +0 -146
  2002. package/es/tasty/parser/tokenizer.js +0 -92
  2003. package/es/tasty/parser/types.js +0 -53
  2004. package/es/tasty/pipeline/conditions.js +0 -445
  2005. package/es/tasty/pipeline/exclusive.js +0 -311
  2006. package/es/tasty/pipeline/index.js +0 -951
  2007. package/es/tasty/pipeline/materialize.js +0 -1264
  2008. package/es/tasty/pipeline/parseStateKey.js +0 -599
  2009. package/es/tasty/pipeline/simplify.js +0 -898
  2010. package/es/tasty/plugins/index.js +0 -26
  2011. package/es/tasty/plugins/okhsl-plugin.js +0 -400
  2012. package/es/tasty/plugins/types.js +0 -10
  2013. package/es/tasty/properties/index.js +0 -239
  2014. package/es/tasty/states/index.js +0 -548
  2015. package/es/tasty/static/index.js +0 -47
  2016. package/es/tasty/static/tastyStatic.js +0 -55
  2017. package/es/tasty/static/types.js +0 -34
  2018. package/es/tasty/styles/align.js +0 -20
  2019. package/es/tasty/styles/border.js +0 -150
  2020. package/es/tasty/styles/boxShadow.combinator.js +0 -23
  2021. package/es/tasty/styles/color.js +0 -40
  2022. package/es/tasty/styles/createStyle.js +0 -125
  2023. package/es/tasty/styles/dimension.js +0 -132
  2024. package/es/tasty/styles/display.js +0 -95
  2025. package/es/tasty/styles/fade.js +0 -72
  2026. package/es/tasty/styles/fill.js +0 -84
  2027. package/es/tasty/styles/flow.js +0 -20
  2028. package/es/tasty/styles/gap.js +0 -53
  2029. package/es/tasty/styles/height.js +0 -15
  2030. package/es/tasty/styles/index.js +0 -14
  2031. package/es/tasty/styles/inset.js +0 -184
  2032. package/es/tasty/styles/justify.js +0 -20
  2033. package/es/tasty/styles/list.js +0 -101
  2034. package/es/tasty/styles/margin.js +0 -130
  2035. package/es/tasty/styles/outline.js +0 -75
  2036. package/es/tasty/styles/padding.js +0 -130
  2037. package/es/tasty/styles/place.js +0 -20
  2038. package/es/tasty/styles/predefined.js +0 -368
  2039. package/es/tasty/styles/preset.js +0 -192
  2040. package/es/tasty/styles/radius.js +0 -66
  2041. package/es/tasty/styles/reset.js +0 -77
  2042. package/es/tasty/styles/scrollbar.js +0 -151
  2043. package/es/tasty/styles/shadow.js +0 -27
  2044. package/es/tasty/styles/styledScrollbar.js +0 -56
  2045. package/es/tasty/styles/transition.js +0 -135
  2046. package/es/tasty/styles/types.js +0 -10
  2047. package/es/tasty/styles/width.js +0 -15
  2048. package/es/tasty/tasty.js +0 -256
  2049. package/es/tasty/types.js +0 -10
  2050. package/es/tasty/utils/cache-wrapper.js +0 -31
  2051. package/es/tasty/utils/case-converter.js +0 -12
  2052. package/es/tasty/utils/colors.js +0 -15
  2053. package/es/tasty/utils/dotize.js +0 -196
  2054. package/es/tasty/utils/filter-base-props.js +0 -62
  2055. package/es/tasty/utils/get-display-name.js +0 -16
  2056. package/es/tasty/utils/hsl-to-rgb.js +0 -53
  2057. package/es/tasty/utils/is-dev-env.js +0 -36
  2058. package/es/tasty/utils/merge-styles.js +0 -40
  2059. package/es/tasty/utils/mod-attrs.js +0 -44
  2060. package/es/tasty/utils/okhsl-to-rgb.js +0 -298
  2061. package/es/tasty/utils/process-tokens.js +0 -240
  2062. package/es/tasty/utils/resolve-recipes.js +0 -123
  2063. package/es/tasty/utils/rgb-to-okhsl.js +0 -448
  2064. package/es/tasty/utils/string.js +0 -12
  2065. package/es/tasty/utils/styles.js +0 -833
  2066. package/es/tasty/utils/typography.js +0 -67
  2067. package/es/tasty/utils/warnings.js +0 -30
  2068. package/es/tasty/zero/babel.js +0 -441
  2069. package/es/tasty/zero/css-writer.js +0 -92
  2070. package/es/tasty/zero/extractor.js +0 -222
  2071. package/es/tasty/zero/index.js +0 -28
  2072. package/es/tasty/zero/next.js +0 -102
  2073. package/es/tokens/base.js +0 -68
  2074. package/es/tokens/colors.js +0 -123
  2075. package/es/tokens/index.js +0 -63
  2076. package/es/tokens/layout.js +0 -26
  2077. package/es/tokens/shadows.js +0 -27
  2078. package/es/tokens/sizes.js +0 -42
  2079. package/es/tokens/spacing.js +0 -22
  2080. package/es/tokens/typography.js +0 -250
  2081. package/es/utils/ResizeSensor.js +0 -318
  2082. package/es/utils/index.js +0 -27
  2083. package/es/utils/modules.js +0 -12
  2084. package/es/utils/promise.js +0 -14
  2085. package/es/utils/raf.js +0 -47
  2086. package/es/utils/random.js +0 -20
  2087. package/es/utils/range.js +0 -12
  2088. package/es/utils/react/RenderCache.js +0 -38
  2089. package/es/utils/react/Slots.js +0 -43
  2090. package/es/utils/react/chain.js +0 -21
  2091. package/es/utils/react/forwardRefWithGenerics.js +0 -36
  2092. package/es/utils/react/index.js +0 -26
  2093. package/es/utils/react/interactions.js +0 -27
  2094. package/es/utils/react/isTextOnly.js +0 -13
  2095. package/es/utils/react/mapProps.js +0 -25
  2096. package/es/utils/react/mergeProps.js +0 -65
  2097. package/es/utils/react/nullableValue.js +0 -37
  2098. package/es/utils/react/resolveIcon.js +0 -34
  2099. package/es/utils/react/sharedStore.js +0 -51
  2100. package/es/utils/react/useCombinedRefs.js +0 -31
  2101. package/es/utils/react/useControlledFocusVisible.js +0 -42
  2102. package/es/utils/react/useEventBus.js +0 -137
  2103. package/es/utils/react/useId.js +0 -81
  2104. package/es/utils/react/useIsDarwin.js +0 -42
  2105. package/es/utils/react/useKeySymbols.js +0 -81
  2106. package/es/utils/react/useLayoutEffect.js +0 -14
  2107. package/es/utils/react/useLocalStorage.js +0 -130
  2108. package/es/utils/react/useMergeStyles.js +0 -49
  2109. package/es/utils/react/useQaProps.js +0 -44
  2110. package/es/utils/react/useViewportSize.js +0 -53
  2111. package/es/utils/react/wrapNodeIfPlain.js +0 -18
  2112. package/es/utils/tree.js +0 -24
  2113. package/es/utils/warnings.js +0 -44
  2114. package/es/version.js +0 -25
  2115. package/types/_internal/hooks/index.d.ts +0 -9
  2116. package/types/_internal/hooks/use-chained-callback.d.ts +0 -1
  2117. package/types/_internal/hooks/use-debounced-value.d.ts +0 -1
  2118. package/types/_internal/hooks/use-deprecation-warning.d.ts +0 -2
  2119. package/types/_internal/hooks/use-effect-once.d.ts +0 -2
  2120. package/types/_internal/hooks/use-event.d.ts +0 -7
  2121. package/types/_internal/hooks/use-is-first-render.d.ts +0 -1
  2122. package/types/_internal/hooks/use-sync-ref.d.ts +0 -2
  2123. package/types/_internal/hooks/use-timer/index.d.ts +0 -2
  2124. package/types/_internal/hooks/use-timer/timer.d.ts +0 -15
  2125. package/types/_internal/hooks/use-timer/use-timer.d.ts +0 -10
  2126. package/types/_internal/hooks/use-update-effect.d.ts +0 -2
  2127. package/types/_internal/hooks/use-warn.d.ts +0 -15
  2128. package/types/_internal/index.d.ts +0 -1
  2129. package/types/components/Block.d.ts +0 -4
  2130. package/types/components/CollectionItem.d.ts +0 -30
  2131. package/types/components/GlobalStyles.d.ts +0 -14
  2132. package/types/components/GridProvider.d.ts +0 -10
  2133. package/types/components/HiddenInput.d.ts +0 -831
  2134. package/types/components/OpenTrasition.d.ts +0 -13
  2135. package/types/components/Root.d.ts +0 -22
  2136. package/types/components/actions/Action/Action.d.ts +0 -10
  2137. package/types/components/actions/Banner/Banner.d.ts +0 -42
  2138. package/types/components/actions/Banner/index.d.ts +0 -2
  2139. package/types/components/actions/Button/Button.d.ts +0 -1818
  2140. package/types/components/actions/Button/index.d.ts +0 -1
  2141. package/types/components/actions/ButtonGroup/ButtonGroup.d.ts +0 -2
  2142. package/types/components/actions/CommandMenu/CommandMenu.d.ts +0 -38
  2143. package/types/components/actions/CommandMenu/index.d.ts +0 -2
  2144. package/types/components/actions/CommandMenu/styled.d.ts +0 -4155
  2145. package/types/components/actions/ItemAction/ItemAction.d.ts +0 -19
  2146. package/types/components/actions/ItemAction/index.d.ts +0 -2
  2147. package/types/components/actions/ItemActionContext.d.ts +0 -18
  2148. package/types/components/actions/ItemButton/ItemButton.d.ts +0 -16
  2149. package/types/components/actions/ItemButton/index.d.ts +0 -1
  2150. package/types/components/actions/Link/Link.d.ts +0 -2
  2151. package/types/components/actions/Menu/Menu.d.ts +0 -56
  2152. package/types/components/actions/Menu/MenuItem.d.ts +0 -15
  2153. package/types/components/actions/Menu/MenuSection.d.ts +0 -9
  2154. package/types/components/actions/Menu/MenuTrigger.d.ts +0 -19
  2155. package/types/components/actions/Menu/SubMenuTrigger.d.ts +0 -44
  2156. package/types/components/actions/Menu/SubmenuTriggerContext.d.ts +0 -13
  2157. package/types/components/actions/Menu/context.d.ts +0 -16
  2158. package/types/components/actions/Menu/index.d.ts +0 -9
  2159. package/types/components/actions/Menu/styled.d.ts +0 -5502
  2160. package/types/components/actions/index.d.ts +0 -18
  2161. package/types/components/actions/use-action.d.ts +0 -51
  2162. package/types/components/actions/use-anchored-menu.d.ts +0 -35
  2163. package/types/components/actions/use-context-menu.d.ts +0 -42
  2164. package/types/components/content/ActiveZone/ActiveZone.d.ts +0 -9
  2165. package/types/components/content/Alert/Alert.d.ts +0 -2
  2166. package/types/components/content/Alert/index.d.ts +0 -2
  2167. package/types/components/content/Alert/types.d.ts +0 -24
  2168. package/types/components/content/Alert/use-alert.d.ts +0 -9
  2169. package/types/components/content/Avatar/Avatar.d.ts +0 -7
  2170. package/types/components/content/Badge/Badge.d.ts +0 -8
  2171. package/types/components/content/Card/Card.d.ts +0 -4
  2172. package/types/components/content/Content.d.ts +0 -4
  2173. package/types/components/content/CopyPasteBlock/CopyPasteBlock.d.ts +0 -16
  2174. package/types/components/content/CopyPasteBlock/index.d.ts +0 -1
  2175. package/types/components/content/CopySnippet/CopySnippet.d.ts +0 -37
  2176. package/types/components/content/CopySnippet/index.d.ts +0 -1
  2177. package/types/components/content/Disclosure/Disclosure.d.ts +0 -74
  2178. package/types/components/content/Disclosure/index.d.ts +0 -1
  2179. package/types/components/content/Divider.d.ts +0 -4
  2180. package/types/components/content/Footer.d.ts +0 -4
  2181. package/types/components/content/Header.d.ts +0 -4
  2182. package/types/components/content/HotKeys/HotKeys.d.ts +0 -7
  2183. package/types/components/content/HotKeys/index.d.ts +0 -2
  2184. package/types/components/content/Item/Item.d.ts +0 -162
  2185. package/types/components/content/Item/index.d.ts +0 -2
  2186. package/types/components/content/ItemBadge/ItemBadge.d.ts +0 -16
  2187. package/types/components/content/ItemBadge/index.d.ts +0 -2
  2188. package/types/components/content/Layout/GridLayout.d.ts +0 -36
  2189. package/types/components/content/Layout/Layout.d.ts +0 -34
  2190. package/types/components/content/Layout/LayoutBlock.d.ts +0 -5
  2191. package/types/components/content/Layout/LayoutCenter.d.ts +0 -5
  2192. package/types/components/content/Layout/LayoutContainer.d.ts +0 -15
  2193. package/types/components/content/Layout/LayoutContent.d.ts +0 -16
  2194. package/types/components/content/Layout/LayoutContext.d.ts +0 -81
  2195. package/types/components/content/Layout/LayoutFlex.d.ts +0 -5
  2196. package/types/components/content/Layout/LayoutFooter.d.ts +0 -7
  2197. package/types/components/content/Layout/LayoutGrid.d.ts +0 -12
  2198. package/types/components/content/Layout/LayoutHeader.d.ts +0 -21
  2199. package/types/components/content/Layout/LayoutPane.d.ts +0 -31
  2200. package/types/components/content/Layout/LayoutPanel.d.ts +0 -66
  2201. package/types/components/content/Layout/LayoutPanelHeader.d.ts +0 -15
  2202. package/types/components/content/Layout/LayoutToolbar.d.ts +0 -5
  2203. package/types/components/content/Layout/hooks/useTinyScrollbar.d.ts +0 -25
  2204. package/types/components/content/Layout/index.d.ts +0 -47
  2205. package/types/components/content/Layout/utils.d.ts +0 -5
  2206. package/types/components/content/List/SectionHeading.d.ts +0 -449
  2207. package/types/components/content/List/index.d.ts +0 -1
  2208. package/types/components/content/Paragraph.d.ts +0 -5
  2209. package/types/components/content/Placeholder/Placeholder.d.ts +0 -7
  2210. package/types/components/content/PrismCode/PrismCode.d.ts +0 -19
  2211. package/types/components/content/PrismCode/prismSetup.d.ts +0 -4
  2212. package/types/components/content/PrismDiffCode/PrismDiffCode.d.ts +0 -12
  2213. package/types/components/content/Result/Result.d.ts +0 -29
  2214. package/types/components/content/Skeleton/Skeleton.d.ts +0 -38
  2215. package/types/components/content/Tag/Tag.d.ts +0 -10
  2216. package/types/components/content/Text.d.ts +0 -2929
  2217. package/types/components/content/TextItem/TextItem.d.ts +0 -34
  2218. package/types/components/content/TextItem/index.d.ts +0 -2
  2219. package/types/components/content/Title.d.ts +0 -11
  2220. package/types/components/content/highlightText.d.ts +0 -7
  2221. package/types/components/content/use-auto-tooltip.d.ts +0 -23
  2222. package/types/components/fields/Checkbox/Checkbox.d.ts +0 -20
  2223. package/types/components/fields/Checkbox/CheckboxGroup.d.ts +0 -14
  2224. package/types/components/fields/Checkbox/context.d.ts +0 -1
  2225. package/types/components/fields/Checkbox/index.d.ts +0 -2
  2226. package/types/components/fields/ComboBox/ComboBox.d.ts +0 -125
  2227. package/types/components/fields/ComboBox/index.d.ts +0 -2
  2228. package/types/components/fields/DatePicker/DateInput.d.ts +0 -19
  2229. package/types/components/fields/DatePicker/DateInputBase.d.ts +0 -21
  2230. package/types/components/fields/DatePicker/DatePicker.d.ts +0 -17
  2231. package/types/components/fields/DatePicker/DatePickerButton.d.ts +0 -5
  2232. package/types/components/fields/DatePicker/DatePickerElement.d.ts +0 -449
  2233. package/types/components/fields/DatePicker/DatePickerInput.d.ts +0 -11
  2234. package/types/components/fields/DatePicker/DatePickerSegment.d.ts +0 -9
  2235. package/types/components/fields/DatePicker/DateRangePicker.d.ts +0 -18
  2236. package/types/components/fields/DatePicker/DateRangeSeparatedPicker.d.ts +0 -20
  2237. package/types/components/fields/DatePicker/TimeInput.d.ts +0 -36
  2238. package/types/components/fields/DatePicker/index.d.ts +0 -7
  2239. package/types/components/fields/DatePicker/intl.d.ts +0 -5
  2240. package/types/components/fields/DatePicker/parseDate.d.ts +0 -1
  2241. package/types/components/fields/DatePicker/props.d.ts +0 -3
  2242. package/types/components/fields/DatePicker/types.d.ts +0 -29
  2243. package/types/components/fields/DatePicker/utils.d.ts +0 -4
  2244. package/types/components/fields/FileInput/FileInput.d.ts +0 -33
  2245. package/types/components/fields/FilterListBox/FilterListBox.d.ts +0 -81
  2246. package/types/components/fields/FilterListBox/index.d.ts +0 -1
  2247. package/types/components/fields/FilterPicker/FilterPicker.d.ts +0 -74
  2248. package/types/components/fields/FilterPicker/index.d.ts +0 -1
  2249. package/types/components/fields/Input/Input.d.ts +0 -14
  2250. package/types/components/fields/Input/index.d.ts +0 -1
  2251. package/types/components/fields/ListBox/ListBox.d.ts +0 -124
  2252. package/types/components/fields/ListBox/index.d.ts +0 -2
  2253. package/types/components/fields/NumberInput/NumberInput.d.ts +0 -13
  2254. package/types/components/fields/NumberInput/StepButton.d.ts +0 -4
  2255. package/types/components/fields/PasswordInput/PasswordInput.d.ts +0 -11
  2256. package/types/components/fields/Picker/Picker.d.ts +0 -73
  2257. package/types/components/fields/Picker/index.d.ts +0 -2
  2258. package/types/components/fields/RadioGroup/Radio.d.ts +0 -57
  2259. package/types/components/fields/RadioGroup/RadioGroup.d.ts +0 -22
  2260. package/types/components/fields/RadioGroup/context.d.ts +0 -13
  2261. package/types/components/fields/RadioGroup/index.d.ts +0 -2
  2262. package/types/components/fields/SearchInput/SearchInput.d.ts +0 -13
  2263. package/types/components/fields/SearchInput/index.d.ts +0 -1
  2264. package/types/components/fields/Select/Select.d.ts +0 -936
  2265. package/types/components/fields/Select/index.d.ts +0 -1
  2266. package/types/components/fields/Slider/Gradation.d.ts +0 -7
  2267. package/types/components/fields/Slider/Header.d.ts +0 -1
  2268. package/types/components/fields/Slider/HueSlider.d.ts +0 -12
  2269. package/types/components/fields/Slider/RangeSlider.d.ts +0 -10
  2270. package/types/components/fields/Slider/Slider.d.ts +0 -16
  2271. package/types/components/fields/Slider/SliderBase.d.ts +0 -18
  2272. package/types/components/fields/Slider/SliderInput.d.ts +0 -10
  2273. package/types/components/fields/Slider/SliderThumb.d.ts +0 -14
  2274. package/types/components/fields/Slider/SliderTrack.d.ts +0 -9
  2275. package/types/components/fields/Slider/elements.d.ts +0 -4986
  2276. package/types/components/fields/Slider/index.d.ts +0 -6
  2277. package/types/components/fields/Slider/types.d.ts +0 -17
  2278. package/types/components/fields/Switch/Switch.d.ts +0 -19
  2279. package/types/components/fields/Switch/index.d.ts +0 -1
  2280. package/types/components/fields/TextArea/TextArea.d.ts +0 -18
  2281. package/types/components/fields/TextArea/index.d.ts +0 -1
  2282. package/types/components/fields/TextInput/TextInput.d.ts +0 -6
  2283. package/types/components/fields/TextInput/TextInputBase.d.ts +0 -45
  2284. package/types/components/fields/TextInput/index.d.ts +0 -2
  2285. package/types/components/fields/TextInputMapper/TextInputMapper.d.ts +0 -31
  2286. package/types/components/fields/TextInputMapper/index.d.ts +0 -1
  2287. package/types/components/fields/index.d.ts +0 -19
  2288. package/types/components/form/FieldWrapper/FieldWrapper.d.ts +0 -6
  2289. package/types/components/form/FieldWrapper/extract-field-wrapper-props.d.ts +0 -9
  2290. package/types/components/form/FieldWrapper/index.d.ts +0 -3
  2291. package/types/components/form/FieldWrapper/types.d.ts +0 -39
  2292. package/types/components/form/Form/Field.d.ts +0 -15
  2293. package/types/components/form/Form/Form.d.ts +0 -32
  2294. package/types/components/form/Form/ResetButton/ResetButton.d.ts +0 -8
  2295. package/types/components/form/Form/ResetButton/index.d.ts +0 -1
  2296. package/types/components/form/Form/SubmitButton/SubmitButton.d.ts +0 -8
  2297. package/types/components/form/Form/SubmitButton/index.d.ts +0 -1
  2298. package/types/components/form/Form/SubmitError.d.ts +0 -6
  2299. package/types/components/form/Form/index.d.ts +0 -31
  2300. package/types/components/form/Form/types.d.ts +0 -17
  2301. package/types/components/form/Form/use-field/index.d.ts +0 -3
  2302. package/types/components/form/Form/use-field/types.d.ts +0 -38
  2303. package/types/components/form/Form/use-field/use-field-props.d.ts +0 -19
  2304. package/types/components/form/Form/use-field/use-field.d.ts +0 -7
  2305. package/types/components/form/Form/use-form.d.ts +0 -76
  2306. package/types/components/form/Form/validation.d.ts +0 -5
  2307. package/types/components/form/Label.d.ts +0 -16
  2308. package/types/components/form/index.d.ts +0 -4
  2309. package/types/components/form/wrapper.d.ts +0 -8
  2310. package/types/components/helpers/DisplayTransition/DisplayTransition.d.ts +0 -30
  2311. package/types/components/helpers/DisplayTransition/index.d.ts +0 -2
  2312. package/types/components/helpers/IconSwitch/IconSwitch.d.ts +0 -20
  2313. package/types/components/helpers/index.d.ts +0 -2
  2314. package/types/components/layout/Flex.d.ts +0 -4
  2315. package/types/components/layout/Flow.d.ts +0 -4
  2316. package/types/components/layout/Grid.d.ts +0 -4
  2317. package/types/components/layout/Panel.d.ts +0 -20
  2318. package/types/components/layout/Prefix.d.ts +0 -7
  2319. package/types/components/layout/ResizablePanel.d.ts +0 -14
  2320. package/types/components/layout/Space.d.ts +0 -5
  2321. package/types/components/layout/Suffix.d.ts +0 -7
  2322. package/types/components/navigation/Tabs/DraggableTabList.d.ts +0 -22
  2323. package/types/components/navigation/Tabs/EditableTitle.d.ts +0 -24
  2324. package/types/components/navigation/Tabs/TabButton.d.ts +0 -22
  2325. package/types/components/navigation/Tabs/TabDropIndicator.d.ts +0 -17
  2326. package/types/components/navigation/Tabs/TabPanel.d.ts +0 -48
  2327. package/types/components/navigation/Tabs/TabPicker.d.ts +0 -22
  2328. package/types/components/navigation/Tabs/Tabs.d.ts +0 -53
  2329. package/types/components/navigation/Tabs/TabsAction.d.ts +0 -38
  2330. package/types/components/navigation/Tabs/TabsContext.d.ts +0 -56
  2331. package/types/components/navigation/Tabs/index.d.ts +0 -3
  2332. package/types/components/navigation/Tabs/styled.d.ts +0 -5936
  2333. package/types/components/navigation/Tabs/types.d.ts +0 -271
  2334. package/types/components/navigation/Tabs/use-tab-editing.d.ts +0 -29
  2335. package/types/components/navigation/Tabs/use-tab-indicator.d.ts +0 -20
  2336. package/types/components/navigation/index.d.ts +0 -2
  2337. package/types/components/organisms/FileTabs/FileTabs.d.ts +0 -37
  2338. package/types/components/organisms/StatsCard/StatsCard.d.ts +0 -8
  2339. package/types/components/other/Calendar/Calendar.d.ts +0 -9
  2340. package/types/components/other/Calendar/CalendarCell.d.ts +0 -5
  2341. package/types/components/other/Calendar/CalendarGrid.d.ts +0 -4
  2342. package/types/components/other/Calendar/RangeCalendar.d.ts +0 -4
  2343. package/types/components/other/CloudLogo/CloudLogo.d.ts +0 -3
  2344. package/types/components/overlays/AlertDialog/AlertDialog.d.ts +0 -21
  2345. package/types/components/overlays/AlertDialog/AlertDialogApiProvider.d.ts +0 -67
  2346. package/types/components/overlays/AlertDialog/AlertDialogZone.d.ts +0 -8
  2347. package/types/components/overlays/AlertDialog/index.d.ts +0 -3
  2348. package/types/components/overlays/AlertDialog/types.d.ts +0 -39
  2349. package/types/components/overlays/Dialog/Dialog.d.ts +0 -20
  2350. package/types/components/overlays/Dialog/DialogContainer.d.ts +0 -28
  2351. package/types/components/overlays/Dialog/DialogForm.d.ts +0 -27
  2352. package/types/components/overlays/Dialog/DialogTrigger.d.ts +0 -50
  2353. package/types/components/overlays/Dialog/context.d.ts +0 -9
  2354. package/types/components/overlays/Dialog/index.d.ts +0 -5
  2355. package/types/components/overlays/Dialog/use-dialog-container.d.ts +0 -15
  2356. package/types/components/overlays/Modal/Modal.d.ts +0 -13
  2357. package/types/components/overlays/Modal/OpenTransition.d.ts +0 -7
  2358. package/types/components/overlays/Modal/Overlay.d.ts +0 -7
  2359. package/types/components/overlays/Modal/Popover.d.ts +0 -20
  2360. package/types/components/overlays/Modal/Tray.d.ts +0 -19
  2361. package/types/components/overlays/Modal/Underlay.d.ts +0 -8
  2362. package/types/components/overlays/Modal/index.d.ts +0 -6
  2363. package/types/components/overlays/Modal/types.d.ts +0 -18
  2364. package/types/components/overlays/Notifications/Notification.d.ts +0 -32
  2365. package/types/components/overlays/Notifications/NotificationAction.d.ts +0 -27
  2366. package/types/components/overlays/Notifications/NotificationCard.d.ts +0 -37
  2367. package/types/components/overlays/Notifications/NotificationContext.d.ts +0 -16
  2368. package/types/components/overlays/Notifications/NotificationItem.d.ts +0 -7
  2369. package/types/components/overlays/Notifications/OverlayContainer.d.ts +0 -12
  2370. package/types/components/overlays/Notifications/OverlayProvider.d.ts +0 -3
  2371. package/types/components/overlays/Notifications/PersistentNotificationsList.d.ts +0 -19
  2372. package/types/components/overlays/Notifications/format-relative-time.d.ts +0 -14
  2373. package/types/components/overlays/Notifications/index.d.ts +0 -40
  2374. package/types/components/overlays/Notifications/types.d.ts +0 -154
  2375. package/types/components/overlays/Notifications/use-notification-state.d.ts +0 -23
  2376. package/types/components/overlays/Notifications/use-notifications.d.ts +0 -36
  2377. package/types/components/overlays/Notifications/use-overlay-timers.d.ts +0 -26
  2378. package/types/components/overlays/Notifications/use-persistent-notifications.d.ts +0 -48
  2379. package/types/components/overlays/Notifications/use-persistent-state.d.ts +0 -23
  2380. package/types/components/overlays/Notifications/use-toast-state.d.ts +0 -16
  2381. package/types/components/overlays/OverlayWrapper.d.ts +0 -11
  2382. package/types/components/overlays/Toast/ToastItem.d.ts +0 -16
  2383. package/types/components/overlays/Toast/ToastProvider.d.ts +0 -5
  2384. package/types/components/overlays/Toast/index.d.ts +0 -49
  2385. package/types/components/overlays/Toast/types.d.ts +0 -68
  2386. package/types/components/overlays/Toast/useProgressToast.d.ts +0 -26
  2387. package/types/components/overlays/Toast/useToast.d.ts +0 -30
  2388. package/types/components/overlays/Tooltip/Tooltip.d.ts +0 -21
  2389. package/types/components/overlays/Tooltip/TooltipProvider.d.ts +0 -11
  2390. package/types/components/overlays/Tooltip/TooltipTrigger.d.ts +0 -53
  2391. package/types/components/overlays/Tooltip/context.d.ts +0 -22
  2392. package/types/components/overlays/Tooltip/index.d.ts +0 -3
  2393. package/types/components/portal/Portal.d.ts +0 -25
  2394. package/types/components/portal/PortalProvider.d.ts +0 -13
  2395. package/types/components/portal/index.d.ts +0 -3
  2396. package/types/components/portal/types.d.ts +0 -21
  2397. package/types/components/portal/usePortal.d.ts +0 -9
  2398. package/types/components/shared/InvalidIcon.d.ts +0 -1
  2399. package/types/components/shared/ValidIcon.d.ts +0 -1
  2400. package/types/components/status/LoadingAnimation/LoadingAnimation.d.ts +0 -5
  2401. package/types/components/status/LoadingAnimation/index.d.ts +0 -2
  2402. package/types/components/status/Spin/Cube.d.ts +0 -2
  2403. package/types/components/status/Spin/InternalSpinner.d.ts +0 -2
  2404. package/types/components/status/Spin/Spin.d.ts +0 -2
  2405. package/types/components/status/Spin/SpinsContainer.d.ts +0 -6
  2406. package/types/components/status/Spin/index.d.ts +0 -2
  2407. package/types/components/status/Spin/types.d.ts +0 -23
  2408. package/types/components/status/index.d.ts +0 -2
  2409. package/types/data/item-themes.d.ts +0 -51
  2410. package/types/data/themes.d.ts +0 -33
  2411. package/types/icons/AdjustmentsHorizontalIcon.d.ts +0 -4
  2412. package/types/icons/AdjustmentsIcon.d.ts +0 -4
  2413. package/types/icons/AiIcon.d.ts +0 -4
  2414. package/types/icons/AreaChartIcon.d.ts +0 -4
  2415. package/types/icons/BackwardIcon.d.ts +0 -4
  2416. package/types/icons/BarChartIcon.d.ts +0 -4
  2417. package/types/icons/BellFilledIcon.d.ts +0 -4
  2418. package/types/icons/BellIcon.d.ts +0 -4
  2419. package/types/icons/BooleanIcon.d.ts +0 -4
  2420. package/types/icons/CalendarEditIcon.d.ts +0 -4
  2421. package/types/icons/CalendarIcon.d.ts +0 -4
  2422. package/types/icons/CaretDownIcon.d.ts +0 -4
  2423. package/types/icons/CaretUpIcon.d.ts +0 -4
  2424. package/types/icons/ChartAreaStackedIcon.d.ts +0 -4
  2425. package/types/icons/ChartAreaStackedPercentageIcon.d.ts +0 -4
  2426. package/types/icons/ChartBarGroupedHorizontalIcon.d.ts +0 -4
  2427. package/types/icons/ChartBarGroupedIcon.d.ts +0 -4
  2428. package/types/icons/ChartBarHorizontalIcon.d.ts +0 -4
  2429. package/types/icons/ChartBarLineIcon.d.ts +0 -4
  2430. package/types/icons/ChartBarStackedHorizontalIcon.d.ts +0 -4
  2431. package/types/icons/ChartBarStackedIcon.d.ts +0 -4
  2432. package/types/icons/ChartBarStackedPercentageHorizontalIcon.d.ts +0 -4
  2433. package/types/icons/ChartBarStackedPercentageIcon.d.ts +0 -4
  2434. package/types/icons/ChartBoxPlot2Icon.d.ts +0 -4
  2435. package/types/icons/ChartBoxPlotIcon.d.ts +0 -4
  2436. package/types/icons/ChartBubbleIcon.d.ts +0 -4
  2437. package/types/icons/ChartDonut2Icon.d.ts +0 -4
  2438. package/types/icons/ChartFunnelIcon.d.ts +0 -4
  2439. package/types/icons/ChartHeatmapIcon.d.ts +0 -4
  2440. package/types/icons/ChartKPIIcon.d.ts +0 -4
  2441. package/types/icons/ChartPie2Icon.d.ts +0 -4
  2442. package/types/icons/ChartScatterIcon.d.ts +0 -4
  2443. package/types/icons/CheckCircleFilledIcon.d.ts +0 -4
  2444. package/types/icons/CheckCircleIcon.d.ts +0 -4
  2445. package/types/icons/CheckIcon.d.ts +0 -4
  2446. package/types/icons/CircleFilledIcon.d.ts +0 -4
  2447. package/types/icons/ClearIcon.d.ts +0 -4
  2448. package/types/icons/CloseCircleFilledIcon.d.ts +0 -4
  2449. package/types/icons/CloseCircleIcon.d.ts +0 -4
  2450. package/types/icons/CloseIcon.d.ts +0 -4
  2451. package/types/icons/CodeIcon.d.ts +0 -4
  2452. package/types/icons/ColumnTotalIcon.d.ts +0 -4
  2453. package/types/icons/CopyIcon.d.ts +0 -4
  2454. package/types/icons/CountIcon.d.ts +0 -4
  2455. package/types/icons/CubeIcon.d.ts +0 -4
  2456. package/types/icons/CubePauseIcon.d.ts +0 -4
  2457. package/types/icons/CubePlayIcon.d.ts +0 -4
  2458. package/types/icons/CurrencyDollarIcon.d.ts +0 -4
  2459. package/types/icons/DangerIcon.d.ts +0 -4
  2460. package/types/icons/DashboardIcon.d.ts +0 -4
  2461. package/types/icons/DatabaseIcon.d.ts +0 -4
  2462. package/types/icons/DecimalDecreaseIcon.d.ts +0 -4
  2463. package/types/icons/DecimalIncreaseIcon.d.ts +0 -4
  2464. package/types/icons/DirectionIcon.d.ts +0 -11
  2465. package/types/icons/DonutIcon.d.ts +0 -4
  2466. package/types/icons/DownIcon.d.ts +0 -4
  2467. package/types/icons/EditIcon.d.ts +0 -4
  2468. package/types/icons/ExclamationCircleFilledIcon.d.ts +0 -4
  2469. package/types/icons/ExclamationCircleIcon.d.ts +0 -4
  2470. package/types/icons/ExclamationIcon.d.ts +0 -4
  2471. package/types/icons/EyeIcon.d.ts +0 -4
  2472. package/types/icons/EyeInvisibleIcon.d.ts +0 -4
  2473. package/types/icons/FilterIcon.d.ts +0 -4
  2474. package/types/icons/FolderFilledIcon.d.ts +0 -4
  2475. package/types/icons/FolderIcon.d.ts +0 -4
  2476. package/types/icons/FolderOpenFilledIcon.d.ts +0 -4
  2477. package/types/icons/FolderOpenIcon.d.ts +0 -4
  2478. package/types/icons/ForwardIcon.d.ts +0 -4
  2479. package/types/icons/HierarchyIcon.d.ts +0 -4
  2480. package/types/icons/HierarchyOpenIcon.d.ts +0 -4
  2481. package/types/icons/Icon.d.ts +0 -9
  2482. package/types/icons/InfoCircleIcon.d.ts +0 -4
  2483. package/types/icons/InfoIcon.d.ts +0 -4
  2484. package/types/icons/KeyIcon.d.ts +0 -4
  2485. package/types/icons/LeftIcon.d.ts +0 -4
  2486. package/types/icons/LineChartIcon.d.ts +0 -4
  2487. package/types/icons/LoadingIcon.d.ts +0 -4
  2488. package/types/icons/LockFilledIcon.d.ts +0 -4
  2489. package/types/icons/LockIcon.d.ts +0 -4
  2490. package/types/icons/MoreIcon.d.ts +0 -4
  2491. package/types/icons/NotAllowedIcon.d.ts +0 -4
  2492. package/types/icons/Number123Icon.d.ts +0 -4
  2493. package/types/icons/NumberIcon.d.ts +0 -4
  2494. package/types/icons/PauseCircleFilledIcon.d.ts +0 -4
  2495. package/types/icons/PauseCircleIcon.d.ts +0 -4
  2496. package/types/icons/PauseIcon.d.ts +0 -4
  2497. package/types/icons/PercentageIcon.d.ts +0 -4
  2498. package/types/icons/PieChartIcon.d.ts +0 -4
  2499. package/types/icons/PlayCircleIcon.d.ts +0 -4
  2500. package/types/icons/PlayIcon.d.ts +0 -4
  2501. package/types/icons/PlusIcon.d.ts +0 -4
  2502. package/types/icons/ProgressBarIcon.d.ts +0 -4
  2503. package/types/icons/ReloadIcon.d.ts +0 -4
  2504. package/types/icons/ReportIcon.d.ts +0 -4
  2505. package/types/icons/ReturnIcon.d.ts +0 -4
  2506. package/types/icons/RightIcon.d.ts +0 -4
  2507. package/types/icons/RowTotalsIcon.d.ts +0 -4
  2508. package/types/icons/SchemeIcon.d.ts +0 -4
  2509. package/types/icons/SearchIcon.d.ts +0 -4
  2510. package/types/icons/SemanticQueryIcon.d.ts +0 -4
  2511. package/types/icons/SettingsIcon.d.ts +0 -4
  2512. package/types/icons/ShieldFilledIcon.d.ts +0 -4
  2513. package/types/icons/ShieldIcon.d.ts +0 -4
  2514. package/types/icons/SlashIcon.d.ts +0 -4
  2515. package/types/icons/SparklesIcon.d.ts +0 -4
  2516. package/types/icons/SqlIcon.d.ts +0 -4
  2517. package/types/icons/StatsIcon.d.ts +0 -4
  2518. package/types/icons/StopIcon.d.ts +0 -4
  2519. package/types/icons/StringIcon.d.ts +0 -4
  2520. package/types/icons/SubtotalsIcon.d.ts +0 -4
  2521. package/types/icons/SwitchIcon.d.ts +0 -4
  2522. package/types/icons/TableIcon.d.ts +0 -4
  2523. package/types/icons/ThumbsDownIcon.d.ts +0 -4
  2524. package/types/icons/ThumbsUpIcon.d.ts +0 -4
  2525. package/types/icons/ThunderboltCrossedIcon.d.ts +0 -4
  2526. package/types/icons/ThunderboltFilledIcon.d.ts +0 -4
  2527. package/types/icons/ThunderboltIcon.d.ts +0 -4
  2528. package/types/icons/TimeIcon.d.ts +0 -4
  2529. package/types/icons/TrashIcon.d.ts +0 -4
  2530. package/types/icons/UnlockIcon.d.ts +0 -4
  2531. package/types/icons/UpIcon.d.ts +0 -4
  2532. package/types/icons/UserGroupIcon.d.ts +0 -4
  2533. package/types/icons/UserIcon.d.ts +0 -4
  2534. package/types/icons/UserLockIcon.d.ts +0 -4
  2535. package/types/icons/ViewIcon.d.ts +0 -4
  2536. package/types/icons/WarningFilledIcon.d.ts +0 -4
  2537. package/types/icons/WarningIcon.d.ts +0 -4
  2538. package/types/icons/index.d.ts +0 -130
  2539. package/types/icons/wrap-icon.d.ts +0 -6
  2540. package/types/index.d.ts +0 -134
  2541. package/types/provider.d.ts +0 -17
  2542. package/types/providers/TrackingProvider.d.ts +0 -10
  2543. package/types/providers/navigation.types.d.ts +0 -24
  2544. package/types/providers/navigationAdapter.default.d.ts +0 -6
  2545. package/types/shared/form.d.ts +0 -106
  2546. package/types/shared/index.d.ts +0 -4
  2547. package/types/stories/Form.legacy-stories.d.ts +0 -27
  2548. package/types/stories/FormFieldArgs.d.ts +0 -413
  2549. package/types/stories/SimpleLayout.stories.d.ts +0 -19
  2550. package/types/stories/Tasty.stories.d.ts +0 -11
  2551. package/types/stories/components/ConfirmDeletionDialogForm.d.ts +0 -6
  2552. package/types/stories/components/DialogFormApp.d.ts +0 -1
  2553. package/types/stories/components/StyledButton.d.ts +0 -7
  2554. package/types/stories/lists/baseProps.d.ts +0 -1
  2555. package/types/stories/playground/PlaygroundEditor.d.ts +0 -6
  2556. package/types/stories/playground/PlaygroundLayout.d.ts +0 -8
  2557. package/types/stories/playground/PlaygroundOutput.d.ts +0 -5
  2558. package/types/stories/playground/PlaygroundPreview.d.ts +0 -6
  2559. package/types/stories/playground/components/Button.d.ts +0 -11
  2560. package/types/stories/playground/components/Card.d.ts +0 -7
  2561. package/types/stories/playground/components/ScrollProgress.d.ts +0 -5
  2562. package/types/stories/playground/examples.d.ts +0 -7
  2563. package/types/tasty/chunks/cacheKey.d.ts +0 -26
  2564. package/types/tasty/chunks/definitions.d.ts +0 -120
  2565. package/types/tasty/chunks/index.d.ts +0 -4
  2566. package/types/tasty/chunks/renderChunk.d.ts +0 -25
  2567. package/types/tasty/config.d.ts +0 -320
  2568. package/types/tasty/debug.d.ts +0 -196
  2569. package/types/tasty/hooks/index.d.ts +0 -7
  2570. package/types/tasty/hooks/useGlobalStyles.d.ts +0 -22
  2571. package/types/tasty/hooks/useKeyframes.d.ts +0 -52
  2572. package/types/tasty/hooks/useProperty.d.ts +0 -75
  2573. package/types/tasty/hooks/useRawCSS.d.ts +0 -50
  2574. package/types/tasty/hooks/useStyles.d.ts +0 -35
  2575. package/types/tasty/index.d.ts +0 -31
  2576. package/types/tasty/injector/index.d.ts +0 -154
  2577. package/types/tasty/injector/injector.d.ts +0 -135
  2578. package/types/tasty/injector/sheet-manager.d.ts +0 -122
  2579. package/types/tasty/injector/types.d.ts +0 -139
  2580. package/types/tasty/keyframes/index.d.ts +0 -49
  2581. package/types/tasty/parser/classify.d.ts +0 -5
  2582. package/types/tasty/parser/const.d.ts +0 -6
  2583. package/types/tasty/parser/lru.d.ts +0 -16
  2584. package/types/tasty/parser/parser.d.ts +0 -21
  2585. package/types/tasty/parser/tokenizer.d.ts +0 -2
  2586. package/types/tasty/parser/types.d.ts +0 -55
  2587. package/types/tasty/pipeline/conditions.d.ts +0 -250
  2588. package/types/tasty/pipeline/exclusive.d.ts +0 -103
  2589. package/types/tasty/pipeline/index.d.ts +0 -83
  2590. package/types/tasty/pipeline/materialize.d.ts +0 -162
  2591. package/types/tasty/pipeline/parseStateKey.d.ts +0 -20
  2592. package/types/tasty/pipeline/simplify.d.ts +0 -28
  2593. package/types/tasty/plugins/index.d.ts +0 -17
  2594. package/types/tasty/plugins/okhsl-plugin.d.ts +0 -45
  2595. package/types/tasty/plugins/types.d.ts +0 -66
  2596. package/types/tasty/properties/index.d.ts +0 -100
  2597. package/types/tasty/states/index.d.ts +0 -107
  2598. package/types/tasty/static/index.d.ts +0 -39
  2599. package/types/tasty/static/tastyStatic.d.ts +0 -41
  2600. package/types/tasty/static/types.d.ts +0 -44
  2601. package/types/tasty/styles/align.d.ts +0 -9
  2602. package/types/tasty/styles/border.d.ts +0 -19
  2603. package/types/tasty/styles/boxShadow.combinator.d.ts +0 -6
  2604. package/types/tasty/styles/color.d.ts +0 -8
  2605. package/types/tasty/styles/createStyle.d.ts +0 -6
  2606. package/types/tasty/styles/dimension.d.ts +0 -16
  2607. package/types/tasty/styles/display.d.ts +0 -28
  2608. package/types/tasty/styles/fade.d.ts +0 -9
  2609. package/types/tasty/styles/fill.d.ts +0 -26
  2610. package/types/tasty/styles/flow.d.ts +0 -9
  2611. package/types/tasty/styles/gap.d.ts +0 -23
  2612. package/types/tasty/styles/height.d.ts +0 -10
  2613. package/types/tasty/styles/index.d.ts +0 -7
  2614. package/types/tasty/styles/inset.d.ts +0 -38
  2615. package/types/tasty/styles/justify.d.ts +0 -9
  2616. package/types/tasty/styles/list.d.ts +0 -12
  2617. package/types/tasty/styles/margin.d.ts +0 -16
  2618. package/types/tasty/styles/outline.d.ts +0 -23
  2619. package/types/tasty/styles/padding.d.ts +0 -16
  2620. package/types/tasty/styles/place.d.ts +0 -9
  2621. package/types/tasty/styles/predefined.d.ts +0 -109
  2622. package/types/tasty/styles/preset.d.ts +0 -33
  2623. package/types/tasty/styles/radius.d.ts +0 -8
  2624. package/types/tasty/styles/reset.d.ts +0 -6
  2625. package/types/tasty/styles/scrollbar.d.ts +0 -15
  2626. package/types/tasty/styles/shadow.d.ts +0 -8
  2627. package/types/tasty/styles/styledScrollbar.d.ts +0 -41
  2628. package/types/tasty/styles/transition.d.ts +0 -9
  2629. package/types/tasty/styles/types.d.ts +0 -462
  2630. package/types/tasty/styles/width.d.ts +0 -10
  2631. package/types/tasty/tasty.d.ts +0 -946
  2632. package/types/tasty/types.d.ts +0 -173
  2633. package/types/tasty/utils/cache-wrapper.d.ts +0 -4
  2634. package/types/tasty/utils/case-converter.d.ts +0 -1
  2635. package/types/tasty/utils/colors.d.ts +0 -1
  2636. package/types/tasty/utils/dotize.d.ts +0 -22
  2637. package/types/tasty/utils/filter-base-props.d.ts +0 -12
  2638. package/types/tasty/utils/get-display-name.d.ts +0 -2
  2639. package/types/tasty/utils/hsl-to-rgb.d.ts +0 -7
  2640. package/types/tasty/utils/is-dev-env.d.ts +0 -6
  2641. package/types/tasty/utils/merge-styles.d.ts +0 -2
  2642. package/types/tasty/utils/mod-attrs.d.ts +0 -7
  2643. package/types/tasty/utils/okhsl-to-rgb.d.ts +0 -5
  2644. package/types/tasty/utils/process-tokens.d.ts +0 -26
  2645. package/types/tasty/utils/resolve-recipes.d.ts +0 -23
  2646. package/types/tasty/utils/rgb-to-okhsl.d.ts +0 -38
  2647. package/types/tasty/utils/string.d.ts +0 -1
  2648. package/types/tasty/utils/styles.d.ts +0 -199
  2649. package/types/tasty/utils/typography.d.ts +0 -32
  2650. package/types/tasty/utils/warnings.d.ts +0 -7
  2651. package/types/tasty/zero/babel.d.ts +0 -123
  2652. package/types/tasty/zero/css-writer.d.ts +0 -41
  2653. package/types/tasty/zero/extractor.d.ts +0 -40
  2654. package/types/tasty/zero/index.d.ts +0 -18
  2655. package/types/tasty/zero/next.d.ts +0 -57
  2656. package/types/tokens/base.d.ts +0 -8
  2657. package/types/tokens/colors.d.ts +0 -22
  2658. package/types/tokens/index.d.ts +0 -41
  2659. package/types/tokens/layout.d.ts +0 -7
  2660. package/types/tokens/shadows.d.ts +0 -12
  2661. package/types/tokens/sizes.d.ts +0 -25
  2662. package/types/tokens/spacing.d.ts +0 -8
  2663. package/types/tokens/typography.d.ts +0 -30
  2664. package/types/utils/ResizeSensor.d.ts +0 -9
  2665. package/types/utils/index.d.ts +0 -9
  2666. package/types/utils/modules.d.ts +0 -1
  2667. package/types/utils/promise.d.ts +0 -1
  2668. package/types/utils/raf.d.ts +0 -17
  2669. package/types/utils/random.d.ts +0 -5
  2670. package/types/utils/range.d.ts +0 -1
  2671. package/types/utils/react/RenderCache.d.ts +0 -12
  2672. package/types/utils/react/Slots.d.ts +0 -3
  2673. package/types/utils/react/chain.d.ts +0 -4
  2674. package/types/utils/react/forwardRefWithGenerics.d.ts +0 -26
  2675. package/types/utils/react/index.d.ts +0 -21
  2676. package/types/utils/react/interactions.d.ts +0 -6
  2677. package/types/utils/react/isTextOnly.d.ts +0 -1
  2678. package/types/utils/react/mapProps.d.ts +0 -6
  2679. package/types/utils/react/mergeProps.d.ts +0 -11
  2680. package/types/utils/react/nullableValue.d.ts +0 -19
  2681. package/types/utils/react/resolveIcon.d.ts +0 -23
  2682. package/types/utils/react/sharedStore.d.ts +0 -11
  2683. package/types/utils/react/useCombinedRefs.d.ts +0 -3
  2684. package/types/utils/react/useControlledFocusVisible.d.ts +0 -10
  2685. package/types/utils/react/useEventBus.d.ts +0 -84
  2686. package/types/utils/react/useId.d.ts +0 -15
  2687. package/types/utils/react/useIsDarwin.d.ts +0 -12
  2688. package/types/utils/react/useKeySymbols.d.ts +0 -9
  2689. package/types/utils/react/useLayoutEffect.d.ts +0 -2
  2690. package/types/utils/react/useLocalStorage.d.ts +0 -33
  2691. package/types/utils/react/useMergeStyles.d.ts +0 -25
  2692. package/types/utils/react/useQaProps.d.ts +0 -19
  2693. package/types/utils/react/useViewportSize.d.ts +0 -9
  2694. package/types/utils/react/wrapNodeIfPlain.d.ts +0 -2
  2695. package/types/utils/tree.d.ts +0 -1
  2696. package/types/utils/warnings.d.ts +0 -8
  2697. package/types/version.d.ts +0 -8
  2698. /package/{tasty.config.ts → dist/tasty.config.ts} +0 -0
@@ -0,0 +1,936 @@
1
+
2
+ import { Globals, Property } from "../node_modules/.pnpm/csstype@3.1.2/node_modules/csstype/index.js";
3
+ import { StyleValue, StyleValueStateMap } from "./utils/styles.js";
4
+ import { Styles, StylesInterface } from "./styles/types.js";
5
+ import { KeyframesSteps, PropertyDefinition } from "./injector/types.js";
6
+ import { AllBaseProps, BaseProps, BaseStyleProps, Mods, Props, Tokens } from "./types.js";
7
+ import * as react from "react";
8
+ import { AllHTMLAttributes, ComponentType, ForwardRefExoticComponent, JSX, PropsWithoutRef, RefAttributes } from "react";
9
+
10
+ //#region src/tasty/tasty.d.ts
11
+ type StyleList = readonly (keyof { [key in keyof StylesInterface]: StylesInterface[key] })[];
12
+ type PropsWithStyles = {
13
+ styles?: Styles;
14
+ } & Omit<Props, 'styles'>;
15
+ type VariantMap = Record<string, Styles>;
16
+ type WithVariant<V extends VariantMap> = {
17
+ variant?: keyof V;
18
+ };
19
+ /**
20
+ * Definition for a sub-element. Can be either:
21
+ * - A tag name string (e.g., 'div', 'span')
22
+ * - An object with configuration options
23
+ */
24
+ type SubElementDefinition<Tag extends keyof JSX.IntrinsicElements = 'div'> = Tag | {
25
+ as?: Tag;
26
+ qa?: string;
27
+ qaVal?: string | number;
28
+ };
29
+ /**
30
+ * Map of sub-element definitions.
31
+ * Keys become the sub-component names (e.g., { Icon: 'span' } -> Component.Icon)
32
+ */
33
+ type ElementsDefinition = Record<string, SubElementDefinition<keyof JSX.IntrinsicElements>>;
34
+ /**
35
+ * Resolves the tag from a SubElementDefinition
36
+ */
37
+ type ResolveElementTag<T extends SubElementDefinition<any>> = T extends string ? T : T extends {
38
+ as?: infer Tag;
39
+ } ? Tag extends keyof JSX.IntrinsicElements ? Tag : 'div' : 'div';
40
+ /**
41
+ * Props for sub-element components.
42
+ * Combines HTML attributes with tasty-specific props (qa, qaVal, mods, tokens, isDisabled, etc.)
43
+ */
44
+ type SubElementProps<Tag extends keyof JSX.IntrinsicElements = 'div'> = Omit<JSX.IntrinsicElements[Tag], 'ref' | 'color' | 'content' | 'translate'> & {
45
+ qa?: string;
46
+ qaVal?: string | number;
47
+ mods?: Mods;
48
+ tokens?: Tokens;
49
+ isDisabled?: boolean;
50
+ isHidden?: boolean;
51
+ isChecked?: boolean;
52
+ };
53
+ /**
54
+ * Generates the sub-element component types from an ElementsDefinition
55
+ */
56
+ type SubElementComponents<E extends ElementsDefinition> = { [K in keyof E]: ForwardRefExoticComponent<PropsWithoutRef<SubElementProps<ResolveElementTag<E[K]>>> & RefAttributes<ResolveElementTag<E[K]> extends keyof HTMLElementTagNameMap ? HTMLElementTagNameMap[ResolveElementTag<E[K]>] : Element>> };
57
+ /**
58
+ * Base type containing common properties shared between TastyProps and TastyElementOptions.
59
+ * Separated to avoid code duplication while allowing different type constraints.
60
+ */
61
+ type TastyBaseProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = {}> = {
62
+ /** Default styles of the element. */styles?: Styles; /** The list of styles that can be provided by props */
63
+ styleProps?: K;
64
+ element?: BaseProps['element'];
65
+ variants?: V; /** Default tokens for inline CSS custom properties */
66
+ tokens?: Tokens; /** Sub-element definitions for compound components */
67
+ elements?: E;
68
+ } & Pick<BaseProps, 'qa' | 'qaVal'> & WithVariant<V>;
69
+ type TastyProps<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = {}, DefaultProps = Props> = TastyBaseProps<K, V, E> & {
70
+ /** The tag name of the element or a React component. */as?: string | ComponentType<any>;
71
+ } & Partial<Omit<DefaultProps, 'as' | 'styles' | 'styleProps' | 'tokens'>>;
72
+ /**
73
+ * TastyElementOptions is used for the element-creation overload of tasty().
74
+ * It includes a Tag generic that allows TypeScript to infer the correct
75
+ * HTML element type from the `as` prop.
76
+ *
77
+ * Note: Uses a separate index signature with `unknown` instead of inheriting
78
+ * from Props (which has `any`) to ensure strict type checking for styles.
79
+ */
80
+ type TastyElementOptions<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = {}, Tag extends keyof JSX.IntrinsicElements = 'div'> = TastyBaseProps<K, V, E> & {
81
+ /** The tag name of the element or a React component. */as?: Tag | ComponentType<any>;
82
+ } & {
83
+ /** Allow additional props without polluting style type checking */[key: string]: unknown;
84
+ };
85
+ type AllBasePropsWithMods<K extends StyleList> = AllBaseProps & { [key in K[number]]?: StyleValue<StylesInterface[key]> | StyleValueStateMap<StylesInterface[key]> } & BaseStyleProps;
86
+ /**
87
+ * Keys from BasePropsWithoutChildren that should be omitted from HTML attributes.
88
+ * This excludes event handlers so they can be properly typed from JSX.IntrinsicElements.
89
+ */
90
+ type TastySpecificKeys = 'as' | 'qa' | 'qaVal' | 'element' | 'styles' | 'breakpoints' | 'block' | 'inline' | 'mods' | 'isHidden' | 'isDisabled' | 'css' | 'style' | 'theme' | 'tokens' | 'ref' | 'color';
91
+ /**
92
+ * Props type for tasty elements that combines:
93
+ * - AllBasePropsWithMods for style props with strict tokens type
94
+ * - HTML attributes for flexibility (properly typed based on tag)
95
+ * - Variant support
96
+ *
97
+ * Uses AllHTMLAttributes as base for common attributes (like disabled),
98
+ * but overrides event handlers with tag-specific types from JSX.IntrinsicElements.
99
+ */
100
+ type TastyElementProps<K extends StyleList, V extends VariantMap, Tag extends keyof JSX.IntrinsicElements = 'div'> = AllBasePropsWithMods<K> & WithVariant<V> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof JSX.IntrinsicElements[Tag]> & JSX.IntrinsicElements[Tag], TastySpecificKeys | K[number]>;
101
+ type TastyComponentPropsWithDefaults<Props extends PropsWithStyles, DefaultProps extends Partial<Props>> = keyof DefaultProps extends never ? Props : { [key in Extract<keyof Props, keyof DefaultProps>]?: Props[key] } & { [key in keyof Omit<Props, keyof DefaultProps>]: Props[key] };
102
+ declare function tasty<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = {}, Tag extends keyof JSX.IntrinsicElements = 'div'>(options: TastyElementOptions<K, V, E, Tag>, secondArg?: never): ForwardRefExoticComponent<PropsWithoutRef<TastyElementProps<K, V, Tag>> & RefAttributes<unknown>> & SubElementComponents<E>;
103
+ declare function tasty<Props extends PropsWithStyles, DefaultProps extends Partial<Props> = Partial<Props>>(Component: ComponentType<Props>, options?: TastyProps<never, never, {}, Props>): ComponentType<TastyComponentPropsWithDefaults<Props, DefaultProps>>;
104
+ declare const Element: ForwardRefExoticComponent<AllBaseProps<keyof HTMLElementTagNameMap> & {
105
+ content?: StyleValue<Property.Content | undefined> | StyleValueStateMap<Property.Content | undefined>;
106
+ translate?: StyleValue<Property.Translate<string | number> | undefined> | StyleValueStateMap<Property.Translate<string | number> | undefined>;
107
+ background?: StyleValue<Property.Background<string | number> | undefined> | StyleValueStateMap<Property.Background<string | number> | undefined>;
108
+ align?: StyleValue<"start" | (string & {}) | "center" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "normal" | "baseline" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined> | StyleValueStateMap<"start" | (string & {}) | "center" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "normal" | "baseline" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | undefined>;
109
+ border?: StyleValue<boolean | Property.Border<string | number> | undefined> | StyleValueStateMap<boolean | Property.Border<string | number> | undefined>;
110
+ color?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
111
+ height?: StyleValue<boolean | Property.Height<string | number> | undefined> | StyleValueStateMap<boolean | Property.Height<string | number> | undefined>;
112
+ width?: StyleValue<boolean | Property.Width<string | number> | undefined> | StyleValueStateMap<boolean | Property.Width<string | number> | undefined>;
113
+ fill?: StyleValue<boolean | (string & {}) | `#${string}` | `#${string}.0` | `#${string}.3` | `#${string}.7` | `#${string}.4` | `#${string}.6` | `#${string}.1` | `#${string}.2` | `#${string}.5` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.03` | `#${string}.07` | `#${string}.04` | `#${string}.06` | `#${string}.01` | `#${string}.02` | `#${string}.05` | `#${string}.08` | `#${string}.09` | `#${string}.30` | `#${string}.33` | `#${string}.37` | `#${string}.34` | `#${string}.36` | `#${string}.31` | `#${string}.32` | `#${string}.35` | `#${string}.38` | `#${string}.39` | `#${string}.70` | `#${string}.73` | `#${string}.77` | `#${string}.74` | `#${string}.76` | `#${string}.71` | `#${string}.72` | `#${string}.75` | `#${string}.78` | `#${string}.79` | `#${string}.40` | `#${string}.43` | `#${string}.47` | `#${string}.44` | `#${string}.46` | `#${string}.41` | `#${string}.42` | `#${string}.45` | `#${string}.48` | `#${string}.49` | `#${string}.60` | `#${string}.63` | `#${string}.67` | `#${string}.64` | `#${string}.66` | `#${string}.61` | `#${string}.62` | `#${string}.65` | `#${string}.68` | `#${string}.69` | `#${string}.10` | `#${string}.13` | `#${string}.17` | `#${string}.14` | `#${string}.16` | `#${string}.11` | `#${string}.12` | `#${string}.15` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.23` | `#${string}.27` | `#${string}.24` | `#${string}.26` | `#${string}.21` | `#${string}.22` | `#${string}.25` | `#${string}.28` | `#${string}.29` | `#${string}.50` | `#${string}.53` | `#${string}.57` | `#${string}.54` | `#${string}.56` | `#${string}.51` | `#${string}.52` | `#${string}.55` | `#${string}.58` | `#${string}.59` | `#${string}.80` | `#${string}.83` | `#${string}.87` | `#${string}.84` | `#${string}.86` | `#${string}.81` | `#${string}.82` | `#${string}.85` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.93` | `#${string}.97` | `#${string}.94` | `#${string}.96` | `#${string}.91` | `#${string}.92` | `#${string}.95` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined> | StyleValueStateMap<boolean | (string & {}) | `#${string}` | `#${string}.0` | `#${string}.3` | `#${string}.7` | `#${string}.4` | `#${string}.6` | `#${string}.1` | `#${string}.2` | `#${string}.5` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.03` | `#${string}.07` | `#${string}.04` | `#${string}.06` | `#${string}.01` | `#${string}.02` | `#${string}.05` | `#${string}.08` | `#${string}.09` | `#${string}.30` | `#${string}.33` | `#${string}.37` | `#${string}.34` | `#${string}.36` | `#${string}.31` | `#${string}.32` | `#${string}.35` | `#${string}.38` | `#${string}.39` | `#${string}.70` | `#${string}.73` | `#${string}.77` | `#${string}.74` | `#${string}.76` | `#${string}.71` | `#${string}.72` | `#${string}.75` | `#${string}.78` | `#${string}.79` | `#${string}.40` | `#${string}.43` | `#${string}.47` | `#${string}.44` | `#${string}.46` | `#${string}.41` | `#${string}.42` | `#${string}.45` | `#${string}.48` | `#${string}.49` | `#${string}.60` | `#${string}.63` | `#${string}.67` | `#${string}.64` | `#${string}.66` | `#${string}.61` | `#${string}.62` | `#${string}.65` | `#${string}.68` | `#${string}.69` | `#${string}.10` | `#${string}.13` | `#${string}.17` | `#${string}.14` | `#${string}.16` | `#${string}.11` | `#${string}.12` | `#${string}.15` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.23` | `#${string}.27` | `#${string}.24` | `#${string}.26` | `#${string}.21` | `#${string}.22` | `#${string}.25` | `#${string}.28` | `#${string}.29` | `#${string}.50` | `#${string}.53` | `#${string}.57` | `#${string}.54` | `#${string}.56` | `#${string}.51` | `#${string}.52` | `#${string}.55` | `#${string}.58` | `#${string}.59` | `#${string}.80` | `#${string}.83` | `#${string}.87` | `#${string}.84` | `#${string}.86` | `#${string}.81` | `#${string}.82` | `#${string}.85` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.93` | `#${string}.97` | `#${string}.94` | `#${string}.96` | `#${string}.91` | `#${string}.92` | `#${string}.95` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined>;
114
+ font?: StyleValue<boolean | Property.FontFamily | undefined> | StyleValueStateMap<boolean | Property.FontFamily | undefined>;
115
+ outline?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
116
+ gap?: StyleValue<boolean | Property.Gap<string | number> | undefined> | StyleValueStateMap<boolean | Property.Gap<string | number> | undefined>;
117
+ padding?: StyleValue<boolean | Property.Padding<string | number> | undefined> | StyleValueStateMap<boolean | Property.Padding<string | number> | undefined>;
118
+ margin?: StyleValue<boolean | Property.Margin<string | number> | undefined> | StyleValueStateMap<boolean | Property.Margin<string | number> | undefined>;
119
+ transition?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
120
+ placeContent?: StyleValue<Property.PlaceContent | undefined> | StyleValueStateMap<Property.PlaceContent | undefined>;
121
+ placeItems?: StyleValue<Property.PlaceItems | undefined> | StyleValueStateMap<Property.PlaceItems | undefined>;
122
+ accentColor?: StyleValue<Property.AccentColor | undefined> | StyleValueStateMap<Property.AccentColor | undefined>;
123
+ alignContent?: StyleValue<Property.AlignContent | undefined> | StyleValueStateMap<Property.AlignContent | undefined>;
124
+ alignItems?: StyleValue<Property.AlignItems | undefined> | StyleValueStateMap<Property.AlignItems | undefined>;
125
+ alignSelf?: StyleValue<Property.AlignSelf | undefined> | StyleValueStateMap<Property.AlignSelf | undefined>;
126
+ alignTracks?: StyleValue<Property.AlignTracks | undefined> | StyleValueStateMap<Property.AlignTracks | undefined>;
127
+ animationComposition?: StyleValue<Property.AnimationComposition | undefined> | StyleValueStateMap<Property.AnimationComposition | undefined>;
128
+ animationDelay?: StyleValue<Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDelay<string & {}> | undefined>;
129
+ animationDirection?: StyleValue<Property.AnimationDirection | undefined> | StyleValueStateMap<Property.AnimationDirection | undefined>;
130
+ animationDuration?: StyleValue<Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDuration<string & {}> | undefined>;
131
+ animationFillMode?: StyleValue<Property.AnimationFillMode | undefined> | StyleValueStateMap<Property.AnimationFillMode | undefined>;
132
+ animationIterationCount?: StyleValue<Property.AnimationIterationCount | undefined> | StyleValueStateMap<Property.AnimationIterationCount | undefined>;
133
+ animationName?: StyleValue<Property.AnimationName | undefined> | StyleValueStateMap<Property.AnimationName | undefined>;
134
+ animationPlayState?: StyleValue<Property.AnimationPlayState | undefined> | StyleValueStateMap<Property.AnimationPlayState | undefined>;
135
+ animationTimeline?: StyleValue<Property.AnimationTimeline | undefined> | StyleValueStateMap<Property.AnimationTimeline | undefined>;
136
+ animationTimingFunction?: StyleValue<Property.AnimationTimingFunction | undefined> | StyleValueStateMap<Property.AnimationTimingFunction | undefined>;
137
+ appearance?: StyleValue<Property.Appearance | undefined> | StyleValueStateMap<Property.Appearance | undefined>;
138
+ aspectRatio?: StyleValue<Property.AspectRatio | undefined> | StyleValueStateMap<Property.AspectRatio | undefined>;
139
+ backdropFilter?: StyleValue<Property.BackdropFilter | undefined> | StyleValueStateMap<Property.BackdropFilter | undefined>;
140
+ backfaceVisibility?: StyleValue<Property.BackfaceVisibility | undefined> | StyleValueStateMap<Property.BackfaceVisibility | undefined>;
141
+ backgroundAttachment?: StyleValue<Property.BackgroundAttachment | undefined> | StyleValueStateMap<Property.BackgroundAttachment | undefined>;
142
+ backgroundBlendMode?: StyleValue<Property.BackgroundBlendMode | undefined> | StyleValueStateMap<Property.BackgroundBlendMode | undefined>;
143
+ backgroundClip?: StyleValue<Property.BackgroundClip | undefined> | StyleValueStateMap<Property.BackgroundClip | undefined>;
144
+ backgroundColor?: StyleValue<Property.BackgroundColor | undefined> | StyleValueStateMap<Property.BackgroundColor | undefined>;
145
+ backgroundImage?: StyleValue<Property.BackgroundImage | undefined> | StyleValueStateMap<Property.BackgroundImage | undefined>;
146
+ backgroundOrigin?: StyleValue<Property.BackgroundOrigin | undefined> | StyleValueStateMap<Property.BackgroundOrigin | undefined>;
147
+ backgroundPositionX?: StyleValue<Property.BackgroundPositionX<string | number> | undefined> | StyleValueStateMap<Property.BackgroundPositionX<string | number> | undefined>;
148
+ backgroundPositionY?: StyleValue<Property.BackgroundPositionY<string | number> | undefined> | StyleValueStateMap<Property.BackgroundPositionY<string | number> | undefined>;
149
+ backgroundRepeat?: StyleValue<Property.BackgroundRepeat | undefined> | StyleValueStateMap<Property.BackgroundRepeat | undefined>;
150
+ backgroundSize?: StyleValue<Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<Property.BackgroundSize<string | number> | undefined>;
151
+ blockOverflow?: StyleValue<Property.BlockOverflow | undefined> | StyleValueStateMap<Property.BlockOverflow | undefined>;
152
+ blockSize?: StyleValue<Property.BlockSize<string | number> | undefined> | StyleValueStateMap<Property.BlockSize<string | number> | undefined>;
153
+ borderBlockColor?: StyleValue<Property.BorderBlockColor | undefined> | StyleValueStateMap<Property.BorderBlockColor | undefined>;
154
+ borderBlockEndColor?: StyleValue<Property.BorderBlockEndColor | undefined> | StyleValueStateMap<Property.BorderBlockEndColor | undefined>;
155
+ borderBlockEndStyle?: StyleValue<Property.BorderBlockEndStyle | undefined> | StyleValueStateMap<Property.BorderBlockEndStyle | undefined>;
156
+ borderBlockEndWidth?: StyleValue<Property.BorderBlockEndWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderBlockEndWidth<string | number> | undefined>;
157
+ borderBlockStartColor?: StyleValue<Property.BorderBlockStartColor | undefined> | StyleValueStateMap<Property.BorderBlockStartColor | undefined>;
158
+ borderBlockStartStyle?: StyleValue<Property.BorderBlockStartStyle | undefined> | StyleValueStateMap<Property.BorderBlockStartStyle | undefined>;
159
+ borderBlockStartWidth?: StyleValue<Property.BorderBlockStartWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderBlockStartWidth<string | number> | undefined>;
160
+ borderBlockStyle?: StyleValue<Property.BorderBlockStyle | undefined> | StyleValueStateMap<Property.BorderBlockStyle | undefined>;
161
+ borderBlockWidth?: StyleValue<Property.BorderBlockWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderBlockWidth<string | number> | undefined>;
162
+ borderBottomColor?: StyleValue<Property.BorderBottomColor | undefined> | StyleValueStateMap<Property.BorderBottomColor | undefined>;
163
+ borderBottomLeftRadius?: StyleValue<Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomLeftRadius<string | number> | undefined>;
164
+ borderBottomRightRadius?: StyleValue<Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomRightRadius<string | number> | undefined>;
165
+ borderBottomStyle?: StyleValue<Property.BorderBottomStyle | undefined> | StyleValueStateMap<Property.BorderBottomStyle | undefined>;
166
+ borderBottomWidth?: StyleValue<Property.BorderBottomWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomWidth<string | number> | undefined>;
167
+ borderCollapse?: StyleValue<Property.BorderCollapse | undefined> | StyleValueStateMap<Property.BorderCollapse | undefined>;
168
+ borderEndEndRadius?: StyleValue<Property.BorderEndEndRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderEndEndRadius<string | number> | undefined>;
169
+ borderEndStartRadius?: StyleValue<Property.BorderEndStartRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderEndStartRadius<string | number> | undefined>;
170
+ borderImageOutset?: StyleValue<Property.BorderImageOutset<string | number> | undefined> | StyleValueStateMap<Property.BorderImageOutset<string | number> | undefined>;
171
+ borderImageRepeat?: StyleValue<Property.BorderImageRepeat | undefined> | StyleValueStateMap<Property.BorderImageRepeat | undefined>;
172
+ borderImageSlice?: StyleValue<Property.BorderImageSlice | undefined> | StyleValueStateMap<Property.BorderImageSlice | undefined>;
173
+ borderImageSource?: StyleValue<Property.BorderImageSource | undefined> | StyleValueStateMap<Property.BorderImageSource | undefined>;
174
+ borderImageWidth?: StyleValue<Property.BorderImageWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderImageWidth<string | number> | undefined>;
175
+ borderInlineColor?: StyleValue<Property.BorderInlineColor | undefined> | StyleValueStateMap<Property.BorderInlineColor | undefined>;
176
+ borderInlineEndColor?: StyleValue<Property.BorderInlineEndColor | undefined> | StyleValueStateMap<Property.BorderInlineEndColor | undefined>;
177
+ borderInlineEndStyle?: StyleValue<Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<Property.BorderInlineEndStyle | undefined>;
178
+ borderInlineEndWidth?: StyleValue<Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineEndWidth<string | number> | undefined>;
179
+ borderInlineStartColor?: StyleValue<Property.BorderInlineStartColor | undefined> | StyleValueStateMap<Property.BorderInlineStartColor | undefined>;
180
+ borderInlineStartStyle?: StyleValue<Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<Property.BorderInlineStartStyle | undefined>;
181
+ borderInlineStartWidth?: StyleValue<Property.BorderInlineStartWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineStartWidth<string | number> | undefined>;
182
+ borderInlineStyle?: StyleValue<Property.BorderInlineStyle | undefined> | StyleValueStateMap<Property.BorderInlineStyle | undefined>;
183
+ borderInlineWidth?: StyleValue<Property.BorderInlineWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineWidth<string | number> | undefined>;
184
+ borderLeftColor?: StyleValue<Property.BorderLeftColor | undefined> | StyleValueStateMap<Property.BorderLeftColor | undefined>;
185
+ borderLeftStyle?: StyleValue<Property.BorderLeftStyle | undefined> | StyleValueStateMap<Property.BorderLeftStyle | undefined>;
186
+ borderLeftWidth?: StyleValue<Property.BorderLeftWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderLeftWidth<string | number> | undefined>;
187
+ borderRightColor?: StyleValue<Property.BorderRightColor | undefined> | StyleValueStateMap<Property.BorderRightColor | undefined>;
188
+ borderRightStyle?: StyleValue<Property.BorderRightStyle | undefined> | StyleValueStateMap<Property.BorderRightStyle | undefined>;
189
+ borderRightWidth?: StyleValue<Property.BorderRightWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderRightWidth<string | number> | undefined>;
190
+ borderSpacing?: StyleValue<Property.BorderSpacing<string | number> | undefined> | StyleValueStateMap<Property.BorderSpacing<string | number> | undefined>;
191
+ borderStartEndRadius?: StyleValue<Property.BorderStartEndRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderStartEndRadius<string | number> | undefined>;
192
+ borderStartStartRadius?: StyleValue<Property.BorderStartStartRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderStartStartRadius<string | number> | undefined>;
193
+ borderTopColor?: StyleValue<Property.BorderTopColor | undefined> | StyleValueStateMap<Property.BorderTopColor | undefined>;
194
+ borderTopLeftRadius?: StyleValue<Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopLeftRadius<string | number> | undefined>;
195
+ borderTopRightRadius?: StyleValue<Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopRightRadius<string | number> | undefined>;
196
+ borderTopStyle?: StyleValue<Property.BorderTopStyle | undefined> | StyleValueStateMap<Property.BorderTopStyle | undefined>;
197
+ borderTopWidth?: StyleValue<Property.BorderTopWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderTopWidth<string | number> | undefined>;
198
+ bottom?: StyleValue<Property.Bottom<string | number> | undefined> | StyleValueStateMap<Property.Bottom<string | number> | undefined>;
199
+ boxDecorationBreak?: StyleValue<Property.BoxDecorationBreak | undefined> | StyleValueStateMap<Property.BoxDecorationBreak | undefined>;
200
+ boxShadow?: StyleValue<Property.BoxShadow | undefined> | StyleValueStateMap<Property.BoxShadow | undefined>;
201
+ boxSizing?: StyleValue<Property.BoxSizing | undefined> | StyleValueStateMap<Property.BoxSizing | undefined>;
202
+ breakAfter?: StyleValue<Property.BreakAfter | undefined> | StyleValueStateMap<Property.BreakAfter | undefined>;
203
+ breakBefore?: StyleValue<Property.BreakBefore | undefined> | StyleValueStateMap<Property.BreakBefore | undefined>;
204
+ breakInside?: StyleValue<Property.BreakInside | undefined> | StyleValueStateMap<Property.BreakInside | undefined>;
205
+ captionSide?: StyleValue<Property.CaptionSide | undefined> | StyleValueStateMap<Property.CaptionSide | undefined>;
206
+ caretColor?: StyleValue<Property.CaretColor | undefined> | StyleValueStateMap<Property.CaretColor | undefined>;
207
+ caretShape?: StyleValue<Property.CaretShape | undefined> | StyleValueStateMap<Property.CaretShape | undefined>;
208
+ clear?: StyleValue<Property.Clear | undefined> | StyleValueStateMap<Property.Clear | undefined>;
209
+ clipPath?: StyleValue<Property.ClipPath | undefined> | StyleValueStateMap<Property.ClipPath | undefined>;
210
+ colorAdjust?: StyleValue<Property.PrintColorAdjust | undefined> | StyleValueStateMap<Property.PrintColorAdjust | undefined>;
211
+ colorScheme?: StyleValue<Property.ColorScheme | undefined> | StyleValueStateMap<Property.ColorScheme | undefined>;
212
+ columnCount?: StyleValue<Property.ColumnCount | undefined> | StyleValueStateMap<Property.ColumnCount | undefined>;
213
+ columnFill?: StyleValue<Property.ColumnFill | undefined> | StyleValueStateMap<Property.ColumnFill | undefined>;
214
+ columnGap?: StyleValue<Property.ColumnGap<string | number> | undefined> | StyleValueStateMap<Property.ColumnGap<string | number> | undefined>;
215
+ columnRuleColor?: StyleValue<Property.ColumnRuleColor | undefined> | StyleValueStateMap<Property.ColumnRuleColor | undefined>;
216
+ columnRuleStyle?: StyleValue<Property.ColumnRuleStyle | undefined> | StyleValueStateMap<Property.ColumnRuleStyle | undefined>;
217
+ columnRuleWidth?: StyleValue<Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnRuleWidth<string | number> | undefined>;
218
+ columnSpan?: StyleValue<Property.ColumnSpan | undefined> | StyleValueStateMap<Property.ColumnSpan | undefined>;
219
+ columnWidth?: StyleValue<Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnWidth<string | number> | undefined>;
220
+ contain?: StyleValue<Property.Contain | undefined> | StyleValueStateMap<Property.Contain | undefined>;
221
+ containIntrinsicBlockSize?: StyleValue<Property.ContainIntrinsicBlockSize<string | number> | undefined> | StyleValueStateMap<Property.ContainIntrinsicBlockSize<string | number> | undefined>;
222
+ containIntrinsicHeight?: StyleValue<Property.ContainIntrinsicHeight<string | number> | undefined> | StyleValueStateMap<Property.ContainIntrinsicHeight<string | number> | undefined>;
223
+ containIntrinsicInlineSize?: StyleValue<Property.ContainIntrinsicInlineSize<string | number> | undefined> | StyleValueStateMap<Property.ContainIntrinsicInlineSize<string | number> | undefined>;
224
+ containIntrinsicWidth?: StyleValue<Property.ContainIntrinsicWidth<string | number> | undefined> | StyleValueStateMap<Property.ContainIntrinsicWidth<string | number> | undefined>;
225
+ containerName?: StyleValue<Property.ContainerName | undefined> | StyleValueStateMap<Property.ContainerName | undefined>;
226
+ containerType?: StyleValue<Property.ContainerType | undefined> | StyleValueStateMap<Property.ContainerType | undefined>;
227
+ contentVisibility?: StyleValue<Property.ContentVisibility | undefined> | StyleValueStateMap<Property.ContentVisibility | undefined>;
228
+ counterIncrement?: StyleValue<Property.CounterIncrement | undefined> | StyleValueStateMap<Property.CounterIncrement | undefined>;
229
+ counterReset?: StyleValue<Property.CounterReset | undefined> | StyleValueStateMap<Property.CounterReset | undefined>;
230
+ counterSet?: StyleValue<Property.CounterSet | undefined> | StyleValueStateMap<Property.CounterSet | undefined>;
231
+ cursor?: StyleValue<Property.Cursor | undefined> | StyleValueStateMap<Property.Cursor | undefined>;
232
+ direction?: StyleValue<Property.Direction | undefined> | StyleValueStateMap<Property.Direction | undefined>;
233
+ display?: StyleValue<Property.Display | undefined> | StyleValueStateMap<Property.Display | undefined>;
234
+ emptyCells?: StyleValue<Property.EmptyCells | undefined> | StyleValueStateMap<Property.EmptyCells | undefined>;
235
+ filter?: StyleValue<Property.Filter | undefined> | StyleValueStateMap<Property.Filter | undefined>;
236
+ flexBasis?: StyleValue<Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<Property.FlexBasis<string | number> | undefined>;
237
+ flexDirection?: StyleValue<Property.FlexDirection | undefined> | StyleValueStateMap<Property.FlexDirection | undefined>;
238
+ flexGrow?: StyleValue<Property.FlexGrow | undefined> | StyleValueStateMap<Property.FlexGrow | undefined>;
239
+ flexShrink?: StyleValue<Property.FlexShrink | undefined> | StyleValueStateMap<Property.FlexShrink | undefined>;
240
+ flexWrap?: StyleValue<Property.FlexWrap | undefined> | StyleValueStateMap<Property.FlexWrap | undefined>;
241
+ float?: StyleValue<Property.Float | undefined> | StyleValueStateMap<Property.Float | undefined>;
242
+ fontFamily?: StyleValue<Property.FontFamily | undefined> | StyleValueStateMap<Property.FontFamily | undefined>;
243
+ fontFeatureSettings?: StyleValue<Property.FontFeatureSettings | undefined> | StyleValueStateMap<Property.FontFeatureSettings | undefined>;
244
+ fontKerning?: StyleValue<Property.FontKerning | undefined> | StyleValueStateMap<Property.FontKerning | undefined>;
245
+ fontLanguageOverride?: StyleValue<Property.FontLanguageOverride | undefined> | StyleValueStateMap<Property.FontLanguageOverride | undefined>;
246
+ fontOpticalSizing?: StyleValue<Property.FontOpticalSizing | undefined> | StyleValueStateMap<Property.FontOpticalSizing | undefined>;
247
+ fontPalette?: StyleValue<Property.FontPalette | undefined> | StyleValueStateMap<Property.FontPalette | undefined>;
248
+ fontSize?: StyleValue<Property.FontSize<string | number> | undefined> | StyleValueStateMap<Property.FontSize<string | number> | undefined>;
249
+ fontSizeAdjust?: StyleValue<Property.FontSizeAdjust | undefined> | StyleValueStateMap<Property.FontSizeAdjust | undefined>;
250
+ fontSmooth?: StyleValue<Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<Property.FontSmooth<string | number> | undefined>;
251
+ fontStretch?: StyleValue<Property.FontStretch | undefined> | StyleValueStateMap<Property.FontStretch | undefined>;
252
+ fontStyle?: StyleValue<Property.FontStyle | undefined> | StyleValueStateMap<Property.FontStyle | undefined>;
253
+ fontSynthesis?: StyleValue<Property.FontSynthesis | undefined> | StyleValueStateMap<Property.FontSynthesis | undefined>;
254
+ fontVariant?: StyleValue<Property.FontVariant | undefined> | StyleValueStateMap<Property.FontVariant | undefined>;
255
+ fontVariantAlternates?: StyleValue<Property.FontVariantAlternates | undefined> | StyleValueStateMap<Property.FontVariantAlternates | undefined>;
256
+ fontVariantCaps?: StyleValue<Property.FontVariantCaps | undefined> | StyleValueStateMap<Property.FontVariantCaps | undefined>;
257
+ fontVariantEastAsian?: StyleValue<Property.FontVariantEastAsian | undefined> | StyleValueStateMap<Property.FontVariantEastAsian | undefined>;
258
+ fontVariantEmoji?: StyleValue<Property.FontVariantEmoji | undefined> | StyleValueStateMap<Property.FontVariantEmoji | undefined>;
259
+ fontVariantLigatures?: StyleValue<Property.FontVariantLigatures | undefined> | StyleValueStateMap<Property.FontVariantLigatures | undefined>;
260
+ fontVariantNumeric?: StyleValue<Property.FontVariantNumeric | undefined> | StyleValueStateMap<Property.FontVariantNumeric | undefined>;
261
+ fontVariantPosition?: StyleValue<Property.FontVariantPosition | undefined> | StyleValueStateMap<Property.FontVariantPosition | undefined>;
262
+ fontVariationSettings?: StyleValue<Property.FontVariationSettings | undefined> | StyleValueStateMap<Property.FontVariationSettings | undefined>;
263
+ fontWeight?: StyleValue<Property.FontWeight | undefined> | StyleValueStateMap<Property.FontWeight | undefined>;
264
+ forcedColorAdjust?: StyleValue<Property.ForcedColorAdjust | undefined> | StyleValueStateMap<Property.ForcedColorAdjust | undefined>;
265
+ gridAutoColumns?: StyleValue<Property.GridAutoColumns<string | number> | undefined> | StyleValueStateMap<Property.GridAutoColumns<string | number> | undefined>;
266
+ gridAutoFlow?: StyleValue<Property.GridAutoFlow | undefined> | StyleValueStateMap<Property.GridAutoFlow | undefined>;
267
+ gridAutoRows?: StyleValue<Property.GridAutoRows<string | number> | undefined> | StyleValueStateMap<Property.GridAutoRows<string | number> | undefined>;
268
+ gridColumnEnd?: StyleValue<Property.GridColumnEnd | undefined> | StyleValueStateMap<Property.GridColumnEnd | undefined>;
269
+ gridColumnStart?: StyleValue<Property.GridColumnStart | undefined> | StyleValueStateMap<Property.GridColumnStart | undefined>;
270
+ gridRowEnd?: StyleValue<Property.GridRowEnd | undefined> | StyleValueStateMap<Property.GridRowEnd | undefined>;
271
+ gridRowStart?: StyleValue<Property.GridRowStart | undefined> | StyleValueStateMap<Property.GridRowStart | undefined>;
272
+ gridTemplateAreas?: StyleValue<Property.GridTemplateAreas | undefined> | StyleValueStateMap<Property.GridTemplateAreas | undefined>;
273
+ gridTemplateColumns?: StyleValue<Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<Property.GridTemplateColumns<string | number> | undefined>;
274
+ gridTemplateRows?: StyleValue<Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<Property.GridTemplateRows<string | number> | undefined>;
275
+ hangingPunctuation?: StyleValue<Property.HangingPunctuation | undefined> | StyleValueStateMap<Property.HangingPunctuation | undefined>;
276
+ hyphenateCharacter?: StyleValue<Property.HyphenateCharacter | undefined> | StyleValueStateMap<Property.HyphenateCharacter | undefined>;
277
+ hyphenateLimitChars?: StyleValue<Property.HyphenateLimitChars | undefined> | StyleValueStateMap<Property.HyphenateLimitChars | undefined>;
278
+ hyphens?: StyleValue<Property.Hyphens | undefined> | StyleValueStateMap<Property.Hyphens | undefined>;
279
+ imageOrientation?: StyleValue<Property.ImageOrientation | undefined> | StyleValueStateMap<Property.ImageOrientation | undefined>;
280
+ imageRendering?: StyleValue<Property.ImageRendering | undefined> | StyleValueStateMap<Property.ImageRendering | undefined>;
281
+ imageResolution?: StyleValue<Property.ImageResolution | undefined> | StyleValueStateMap<Property.ImageResolution | undefined>;
282
+ initialLetter?: StyleValue<Property.InitialLetter | undefined> | StyleValueStateMap<Property.InitialLetter | undefined>;
283
+ inlineSize?: StyleValue<Property.InlineSize<string | number> | undefined> | StyleValueStateMap<Property.InlineSize<string | number> | undefined>;
284
+ inputSecurity?: StyleValue<Property.InputSecurity | undefined> | StyleValueStateMap<Property.InputSecurity | undefined>;
285
+ insetBlockEnd?: StyleValue<Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.InsetBlockEnd<string | number> | undefined>;
286
+ insetBlockStart?: StyleValue<Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<Property.InsetBlockStart<string | number> | undefined>;
287
+ insetInlineEnd?: StyleValue<Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.InsetInlineEnd<string | number> | undefined>;
288
+ insetInlineStart?: StyleValue<Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<Property.InsetInlineStart<string | number> | undefined>;
289
+ isolation?: StyleValue<Property.Isolation | undefined> | StyleValueStateMap<Property.Isolation | undefined>;
290
+ justifyContent?: StyleValue<Property.JustifyContent | undefined> | StyleValueStateMap<Property.JustifyContent | undefined>;
291
+ justifyItems?: StyleValue<Property.JustifyItems | undefined> | StyleValueStateMap<Property.JustifyItems | undefined>;
292
+ justifySelf?: StyleValue<Property.JustifySelf | undefined> | StyleValueStateMap<Property.JustifySelf | undefined>;
293
+ justifyTracks?: StyleValue<Property.JustifyTracks | undefined> | StyleValueStateMap<Property.JustifyTracks | undefined>;
294
+ left?: StyleValue<Property.Left<string | number> | undefined> | StyleValueStateMap<Property.Left<string | number> | undefined>;
295
+ letterSpacing?: StyleValue<Property.LetterSpacing<string | number> | undefined> | StyleValueStateMap<Property.LetterSpacing<string | number> | undefined>;
296
+ lineBreak?: StyleValue<Property.LineBreak | undefined> | StyleValueStateMap<Property.LineBreak | undefined>;
297
+ lineHeight?: StyleValue<Property.LineHeight<string | number> | undefined> | StyleValueStateMap<Property.LineHeight<string | number> | undefined>;
298
+ lineHeightStep?: StyleValue<Property.LineHeightStep<string | number> | undefined> | StyleValueStateMap<Property.LineHeightStep<string | number> | undefined>;
299
+ listStyleImage?: StyleValue<Property.ListStyleImage | undefined> | StyleValueStateMap<Property.ListStyleImage | undefined>;
300
+ listStylePosition?: StyleValue<Property.ListStylePosition | undefined> | StyleValueStateMap<Property.ListStylePosition | undefined>;
301
+ listStyleType?: StyleValue<Property.ListStyleType | undefined> | StyleValueStateMap<Property.ListStyleType | undefined>;
302
+ marginBlockEnd?: StyleValue<Property.MarginBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.MarginBlockEnd<string | number> | undefined>;
303
+ marginBlockStart?: StyleValue<Property.MarginBlockStart<string | number> | undefined> | StyleValueStateMap<Property.MarginBlockStart<string | number> | undefined>;
304
+ marginBottom?: StyleValue<Property.MarginBottom<string | number> | undefined> | StyleValueStateMap<Property.MarginBottom<string | number> | undefined>;
305
+ marginInlineEnd?: StyleValue<Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineEnd<string | number> | undefined>;
306
+ marginInlineStart?: StyleValue<Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineStart<string | number> | undefined>;
307
+ marginLeft?: StyleValue<Property.MarginLeft<string | number> | undefined> | StyleValueStateMap<Property.MarginLeft<string | number> | undefined>;
308
+ marginRight?: StyleValue<Property.MarginRight<string | number> | undefined> | StyleValueStateMap<Property.MarginRight<string | number> | undefined>;
309
+ marginTop?: StyleValue<Property.MarginTop<string | number> | undefined> | StyleValueStateMap<Property.MarginTop<string | number> | undefined>;
310
+ marginTrim?: StyleValue<Property.MarginTrim | undefined> | StyleValueStateMap<Property.MarginTrim | undefined>;
311
+ maskBorderMode?: StyleValue<Property.MaskBorderMode | undefined> | StyleValueStateMap<Property.MaskBorderMode | undefined>;
312
+ maskBorderOutset?: StyleValue<Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<Property.MaskBorderOutset<string | number> | undefined>;
313
+ maskBorderRepeat?: StyleValue<Property.MaskBorderRepeat | undefined> | StyleValueStateMap<Property.MaskBorderRepeat | undefined>;
314
+ maskBorderSlice?: StyleValue<Property.MaskBorderSlice | undefined> | StyleValueStateMap<Property.MaskBorderSlice | undefined>;
315
+ maskBorderSource?: StyleValue<Property.MaskBorderSource | undefined> | StyleValueStateMap<Property.MaskBorderSource | undefined>;
316
+ maskBorderWidth?: StyleValue<Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<Property.MaskBorderWidth<string | number> | undefined>;
317
+ maskClip?: StyleValue<Property.MaskClip | undefined> | StyleValueStateMap<Property.MaskClip | undefined>;
318
+ maskComposite?: StyleValue<Property.MaskComposite | undefined> | StyleValueStateMap<Property.MaskComposite | undefined>;
319
+ maskImage?: StyleValue<Property.MaskImage | undefined> | StyleValueStateMap<Property.MaskImage | undefined>;
320
+ maskMode?: StyleValue<Property.MaskMode | undefined> | StyleValueStateMap<Property.MaskMode | undefined>;
321
+ maskOrigin?: StyleValue<Property.MaskOrigin | undefined> | StyleValueStateMap<Property.MaskOrigin | undefined>;
322
+ maskPosition?: StyleValue<Property.MaskPosition<string | number> | undefined> | StyleValueStateMap<Property.MaskPosition<string | number> | undefined>;
323
+ maskRepeat?: StyleValue<Property.MaskRepeat | undefined> | StyleValueStateMap<Property.MaskRepeat | undefined>;
324
+ maskSize?: StyleValue<Property.MaskSize<string | number> | undefined> | StyleValueStateMap<Property.MaskSize<string | number> | undefined>;
325
+ maskType?: StyleValue<Property.MaskType | undefined> | StyleValueStateMap<Property.MaskType | undefined>;
326
+ mathDepth?: StyleValue<Property.MathDepth | undefined> | StyleValueStateMap<Property.MathDepth | undefined>;
327
+ mathShift?: StyleValue<Property.MathShift | undefined> | StyleValueStateMap<Property.MathShift | undefined>;
328
+ mathStyle?: StyleValue<Property.MathStyle | undefined> | StyleValueStateMap<Property.MathStyle | undefined>;
329
+ maxBlockSize?: StyleValue<Property.MaxBlockSize<string | number> | undefined> | StyleValueStateMap<Property.MaxBlockSize<string | number> | undefined>;
330
+ maxHeight?: StyleValue<Property.MaxHeight<string | number> | undefined> | StyleValueStateMap<Property.MaxHeight<string | number> | undefined>;
331
+ maxInlineSize?: StyleValue<Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<Property.MaxInlineSize<string | number> | undefined>;
332
+ maxLines?: StyleValue<Property.MaxLines | undefined> | StyleValueStateMap<Property.MaxLines | undefined>;
333
+ maxWidth?: StyleValue<Property.MaxWidth<string | number> | undefined> | StyleValueStateMap<Property.MaxWidth<string | number> | undefined>;
334
+ minBlockSize?: StyleValue<Property.MinBlockSize<string | number> | undefined> | StyleValueStateMap<Property.MinBlockSize<string | number> | undefined>;
335
+ minHeight?: StyleValue<Property.MinHeight<string | number> | undefined> | StyleValueStateMap<Property.MinHeight<string | number> | undefined>;
336
+ minInlineSize?: StyleValue<Property.MinInlineSize<string | number> | undefined> | StyleValueStateMap<Property.MinInlineSize<string | number> | undefined>;
337
+ minWidth?: StyleValue<Property.MinWidth<string | number> | undefined> | StyleValueStateMap<Property.MinWidth<string | number> | undefined>;
338
+ mixBlendMode?: StyleValue<Property.MixBlendMode | undefined> | StyleValueStateMap<Property.MixBlendMode | undefined>;
339
+ motionDistance?: StyleValue<Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<Property.OffsetDistance<string | number> | undefined>;
340
+ motionPath?: StyleValue<Property.OffsetPath | undefined> | StyleValueStateMap<Property.OffsetPath | undefined>;
341
+ motionRotation?: StyleValue<Property.OffsetRotate | undefined> | StyleValueStateMap<Property.OffsetRotate | undefined>;
342
+ objectFit?: StyleValue<Property.ObjectFit | undefined> | StyleValueStateMap<Property.ObjectFit | undefined>;
343
+ objectPosition?: StyleValue<Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<Property.ObjectPosition<string | number> | undefined>;
344
+ offsetAnchor?: StyleValue<Property.OffsetAnchor<string | number> | undefined> | StyleValueStateMap<Property.OffsetAnchor<string | number> | undefined>;
345
+ offsetDistance?: StyleValue<Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<Property.OffsetDistance<string | number> | undefined>;
346
+ offsetPath?: StyleValue<Property.OffsetPath | undefined> | StyleValueStateMap<Property.OffsetPath | undefined>;
347
+ offsetPosition?: StyleValue<Property.OffsetPosition<string | number> | undefined> | StyleValueStateMap<Property.OffsetPosition<string | number> | undefined>;
348
+ offsetRotate?: StyleValue<Property.OffsetRotate | undefined> | StyleValueStateMap<Property.OffsetRotate | undefined>;
349
+ offsetRotation?: StyleValue<Property.OffsetRotate | undefined> | StyleValueStateMap<Property.OffsetRotate | undefined>;
350
+ opacity?: StyleValue<Property.Opacity | undefined> | StyleValueStateMap<Property.Opacity | undefined>;
351
+ order?: StyleValue<Property.Order | undefined> | StyleValueStateMap<Property.Order | undefined>;
352
+ orphans?: StyleValue<Property.Orphans | undefined> | StyleValueStateMap<Property.Orphans | undefined>;
353
+ outlineColor?: StyleValue<Property.OutlineColor | undefined> | StyleValueStateMap<Property.OutlineColor | undefined>;
354
+ outlineOffset?: StyleValue<string | number | undefined> | StyleValueStateMap<string | number | undefined>;
355
+ outlineStyle?: StyleValue<Property.OutlineStyle | undefined> | StyleValueStateMap<Property.OutlineStyle | undefined>;
356
+ outlineWidth?: StyleValue<Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<Property.OutlineWidth<string | number> | undefined>;
357
+ overflowAnchor?: StyleValue<Property.OverflowAnchor | undefined> | StyleValueStateMap<Property.OverflowAnchor | undefined>;
358
+ overflowBlock?: StyleValue<Property.OverflowBlock | undefined> | StyleValueStateMap<Property.OverflowBlock | undefined>;
359
+ overflowClipBox?: StyleValue<Property.OverflowClipBox | undefined> | StyleValueStateMap<Property.OverflowClipBox | undefined>;
360
+ overflowClipMargin?: StyleValue<Property.OverflowClipMargin<string | number> | undefined> | StyleValueStateMap<Property.OverflowClipMargin<string | number> | undefined>;
361
+ overflowInline?: StyleValue<Property.OverflowInline | undefined> | StyleValueStateMap<Property.OverflowInline | undefined>;
362
+ overflowWrap?: StyleValue<Property.OverflowWrap | undefined> | StyleValueStateMap<Property.OverflowWrap | undefined>;
363
+ overflowX?: StyleValue<Property.OverflowX | undefined> | StyleValueStateMap<Property.OverflowX | undefined>;
364
+ overflowY?: StyleValue<Property.OverflowY | undefined> | StyleValueStateMap<Property.OverflowY | undefined>;
365
+ overscrollBehaviorBlock?: StyleValue<Property.OverscrollBehaviorBlock | undefined> | StyleValueStateMap<Property.OverscrollBehaviorBlock | undefined>;
366
+ overscrollBehaviorInline?: StyleValue<Property.OverscrollBehaviorInline | undefined> | StyleValueStateMap<Property.OverscrollBehaviorInline | undefined>;
367
+ overscrollBehaviorX?: StyleValue<Property.OverscrollBehaviorX | undefined> | StyleValueStateMap<Property.OverscrollBehaviorX | undefined>;
368
+ overscrollBehaviorY?: StyleValue<Property.OverscrollBehaviorY | undefined> | StyleValueStateMap<Property.OverscrollBehaviorY | undefined>;
369
+ paddingBlockEnd?: StyleValue<Property.PaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.PaddingBlockEnd<string | number> | undefined>;
370
+ paddingBlockStart?: StyleValue<Property.PaddingBlockStart<string | number> | undefined> | StyleValueStateMap<Property.PaddingBlockStart<string | number> | undefined>;
371
+ paddingBottom?: StyleValue<Property.PaddingBottom<string | number> | undefined> | StyleValueStateMap<Property.PaddingBottom<string | number> | undefined>;
372
+ paddingInlineEnd?: StyleValue<Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineEnd<string | number> | undefined>;
373
+ paddingInlineStart?: StyleValue<Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineStart<string | number> | undefined>;
374
+ paddingLeft?: StyleValue<Property.PaddingLeft<string | number> | undefined> | StyleValueStateMap<Property.PaddingLeft<string | number> | undefined>;
375
+ paddingRight?: StyleValue<Property.PaddingRight<string | number> | undefined> | StyleValueStateMap<Property.PaddingRight<string | number> | undefined>;
376
+ paddingTop?: StyleValue<Property.PaddingTop<string | number> | undefined> | StyleValueStateMap<Property.PaddingTop<string | number> | undefined>;
377
+ page?: StyleValue<Property.Page | undefined> | StyleValueStateMap<Property.Page | undefined>;
378
+ pageBreakAfter?: StyleValue<Property.PageBreakAfter | undefined> | StyleValueStateMap<Property.PageBreakAfter | undefined>;
379
+ pageBreakBefore?: StyleValue<Property.PageBreakBefore | undefined> | StyleValueStateMap<Property.PageBreakBefore | undefined>;
380
+ pageBreakInside?: StyleValue<Property.PageBreakInside | undefined> | StyleValueStateMap<Property.PageBreakInside | undefined>;
381
+ paintOrder?: StyleValue<Property.PaintOrder | undefined> | StyleValueStateMap<Property.PaintOrder | undefined>;
382
+ perspective?: StyleValue<Property.Perspective<string | number> | undefined> | StyleValueStateMap<Property.Perspective<string | number> | undefined>;
383
+ perspectiveOrigin?: StyleValue<Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<Property.PerspectiveOrigin<string | number> | undefined>;
384
+ pointerEvents?: StyleValue<Property.PointerEvents | undefined> | StyleValueStateMap<Property.PointerEvents | undefined>;
385
+ position?: StyleValue<Property.Position | undefined> | StyleValueStateMap<Property.Position | undefined>;
386
+ printColorAdjust?: StyleValue<Property.PrintColorAdjust | undefined> | StyleValueStateMap<Property.PrintColorAdjust | undefined>;
387
+ quotes?: StyleValue<Property.Quotes | undefined> | StyleValueStateMap<Property.Quotes | undefined>;
388
+ resize?: StyleValue<Property.Resize | undefined> | StyleValueStateMap<Property.Resize | undefined>;
389
+ right?: StyleValue<Property.Right<string | number> | undefined> | StyleValueStateMap<Property.Right<string | number> | undefined>;
390
+ rotate?: StyleValue<Property.Rotate | undefined> | StyleValueStateMap<Property.Rotate | undefined>;
391
+ rowGap?: StyleValue<Property.RowGap<string | number> | undefined> | StyleValueStateMap<Property.RowGap<string | number> | undefined>;
392
+ rubyAlign?: StyleValue<Property.RubyAlign | undefined> | StyleValueStateMap<Property.RubyAlign | undefined>;
393
+ rubyMerge?: StyleValue<Property.RubyMerge | undefined> | StyleValueStateMap<Property.RubyMerge | undefined>;
394
+ rubyPosition?: StyleValue<Property.RubyPosition | undefined> | StyleValueStateMap<Property.RubyPosition | undefined>;
395
+ scale?: StyleValue<Property.Scale | undefined> | StyleValueStateMap<Property.Scale | undefined>;
396
+ scrollBehavior?: StyleValue<Property.ScrollBehavior | undefined> | StyleValueStateMap<Property.ScrollBehavior | undefined>;
397
+ scrollMarginBlockEnd?: StyleValue<Property.ScrollMarginBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginBlockEnd<string | number> | undefined>;
398
+ scrollMarginBlockStart?: StyleValue<Property.ScrollMarginBlockStart<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginBlockStart<string | number> | undefined>;
399
+ scrollMarginBottom?: StyleValue<Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginBottom<string | number> | undefined>;
400
+ scrollMarginInlineEnd?: StyleValue<Property.ScrollMarginInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginInlineEnd<string | number> | undefined>;
401
+ scrollMarginInlineStart?: StyleValue<Property.ScrollMarginInlineStart<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginInlineStart<string | number> | undefined>;
402
+ scrollMarginLeft?: StyleValue<Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginLeft<string | number> | undefined>;
403
+ scrollMarginRight?: StyleValue<Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginRight<string | number> | undefined>;
404
+ scrollMarginTop?: StyleValue<Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginTop<string | number> | undefined>;
405
+ scrollPaddingBlockEnd?: StyleValue<Property.ScrollPaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingBlockEnd<string | number> | undefined>;
406
+ scrollPaddingBlockStart?: StyleValue<Property.ScrollPaddingBlockStart<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingBlockStart<string | number> | undefined>;
407
+ scrollPaddingBottom?: StyleValue<Property.ScrollPaddingBottom<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingBottom<string | number> | undefined>;
408
+ scrollPaddingInlineEnd?: StyleValue<Property.ScrollPaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingInlineEnd<string | number> | undefined>;
409
+ scrollPaddingInlineStart?: StyleValue<Property.ScrollPaddingInlineStart<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingInlineStart<string | number> | undefined>;
410
+ scrollPaddingLeft?: StyleValue<Property.ScrollPaddingLeft<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingLeft<string | number> | undefined>;
411
+ scrollPaddingRight?: StyleValue<Property.ScrollPaddingRight<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingRight<string | number> | undefined>;
412
+ scrollPaddingTop?: StyleValue<Property.ScrollPaddingTop<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingTop<string | number> | undefined>;
413
+ scrollSnapAlign?: StyleValue<Property.ScrollSnapAlign | undefined> | StyleValueStateMap<Property.ScrollSnapAlign | undefined>;
414
+ scrollSnapMarginBottom?: StyleValue<Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginBottom<string | number> | undefined>;
415
+ scrollSnapMarginLeft?: StyleValue<Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginLeft<string | number> | undefined>;
416
+ scrollSnapMarginRight?: StyleValue<Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginRight<string | number> | undefined>;
417
+ scrollSnapMarginTop?: StyleValue<Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginTop<string | number> | undefined>;
418
+ scrollSnapStop?: StyleValue<Property.ScrollSnapStop | undefined> | StyleValueStateMap<Property.ScrollSnapStop | undefined>;
419
+ scrollSnapType?: StyleValue<Property.ScrollSnapType | undefined> | StyleValueStateMap<Property.ScrollSnapType | undefined>;
420
+ scrollTimelineAxis?: StyleValue<Property.ScrollTimelineAxis | undefined> | StyleValueStateMap<Property.ScrollTimelineAxis | undefined>;
421
+ scrollTimelineName?: StyleValue<Property.ScrollTimelineName | undefined> | StyleValueStateMap<Property.ScrollTimelineName | undefined>;
422
+ scrollbarColor?: StyleValue<Property.ScrollbarColor | undefined> | StyleValueStateMap<Property.ScrollbarColor | undefined>;
423
+ scrollbarGutter?: StyleValue<Property.ScrollbarGutter | undefined> | StyleValueStateMap<Property.ScrollbarGutter | undefined>;
424
+ scrollbarWidth?: StyleValue<Property.ScrollbarWidth | undefined> | StyleValueStateMap<Property.ScrollbarWidth | undefined>;
425
+ shapeImageThreshold?: StyleValue<Property.ShapeImageThreshold | undefined> | StyleValueStateMap<Property.ShapeImageThreshold | undefined>;
426
+ shapeMargin?: StyleValue<Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<Property.ShapeMargin<string | number> | undefined>;
427
+ shapeOutside?: StyleValue<Property.ShapeOutside | undefined> | StyleValueStateMap<Property.ShapeOutside | undefined>;
428
+ tabSize?: StyleValue<Property.TabSize<string | number> | undefined> | StyleValueStateMap<Property.TabSize<string | number> | undefined>;
429
+ tableLayout?: StyleValue<Property.TableLayout | undefined> | StyleValueStateMap<Property.TableLayout | undefined>;
430
+ textAlign?: StyleValue<Property.TextAlign | undefined> | StyleValueStateMap<Property.TextAlign | undefined>;
431
+ textAlignLast?: StyleValue<Property.TextAlignLast | undefined> | StyleValueStateMap<Property.TextAlignLast | undefined>;
432
+ textCombineUpright?: StyleValue<Property.TextCombineUpright | undefined> | StyleValueStateMap<Property.TextCombineUpright | undefined>;
433
+ textDecorationColor?: StyleValue<Property.TextDecorationColor | undefined> | StyleValueStateMap<Property.TextDecorationColor | undefined>;
434
+ textDecorationLine?: StyleValue<Property.TextDecorationLine | undefined> | StyleValueStateMap<Property.TextDecorationLine | undefined>;
435
+ textDecorationSkip?: StyleValue<Property.TextDecorationSkip | undefined> | StyleValueStateMap<Property.TextDecorationSkip | undefined>;
436
+ textDecorationSkipInk?: StyleValue<Property.TextDecorationSkipInk | undefined> | StyleValueStateMap<Property.TextDecorationSkipInk | undefined>;
437
+ textDecorationStyle?: StyleValue<Property.TextDecorationStyle | undefined> | StyleValueStateMap<Property.TextDecorationStyle | undefined>;
438
+ textDecorationThickness?: StyleValue<Property.TextDecorationThickness<string | number> | undefined> | StyleValueStateMap<Property.TextDecorationThickness<string | number> | undefined>;
439
+ textEmphasisColor?: StyleValue<Property.TextEmphasisColor | undefined> | StyleValueStateMap<Property.TextEmphasisColor | undefined>;
440
+ textEmphasisPosition?: StyleValue<Property.TextEmphasisPosition | undefined> | StyleValueStateMap<Property.TextEmphasisPosition | undefined>;
441
+ textEmphasisStyle?: StyleValue<Property.TextEmphasisStyle | undefined> | StyleValueStateMap<Property.TextEmphasisStyle | undefined>;
442
+ textIndent?: StyleValue<Property.TextIndent<string | number> | undefined> | StyleValueStateMap<Property.TextIndent<string | number> | undefined>;
443
+ textJustify?: StyleValue<Property.TextJustify | undefined> | StyleValueStateMap<Property.TextJustify | undefined>;
444
+ textOrientation?: StyleValue<Property.TextOrientation | undefined> | StyleValueStateMap<Property.TextOrientation | undefined>;
445
+ textOverflow?: StyleValue<Property.TextOverflow | undefined> | StyleValueStateMap<Property.TextOverflow | undefined>;
446
+ textRendering?: StyleValue<Property.TextRendering | undefined> | StyleValueStateMap<Property.TextRendering | undefined>;
447
+ textShadow?: StyleValue<Property.TextShadow | undefined> | StyleValueStateMap<Property.TextShadow | undefined>;
448
+ textSizeAdjust?: StyleValue<Property.TextSizeAdjust | undefined> | StyleValueStateMap<Property.TextSizeAdjust | undefined>;
449
+ textTransform?: StyleValue<Property.TextTransform | undefined> | StyleValueStateMap<Property.TextTransform | undefined>;
450
+ textUnderlineOffset?: StyleValue<Property.TextUnderlineOffset<string | number> | undefined> | StyleValueStateMap<Property.TextUnderlineOffset<string | number> | undefined>;
451
+ textUnderlinePosition?: StyleValue<Property.TextUnderlinePosition | undefined> | StyleValueStateMap<Property.TextUnderlinePosition | undefined>;
452
+ top?: StyleValue<Property.Top<string | number> | undefined> | StyleValueStateMap<Property.Top<string | number> | undefined>;
453
+ touchAction?: StyleValue<Property.TouchAction | undefined> | StyleValueStateMap<Property.TouchAction | undefined>;
454
+ transform?: StyleValue<Property.Transform | undefined> | StyleValueStateMap<Property.Transform | undefined>;
455
+ transformBox?: StyleValue<Property.TransformBox | undefined> | StyleValueStateMap<Property.TransformBox | undefined>;
456
+ transformOrigin?: StyleValue<Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<Property.TransformOrigin<string | number> | undefined>;
457
+ transformStyle?: StyleValue<Property.TransformStyle | undefined> | StyleValueStateMap<Property.TransformStyle | undefined>;
458
+ transitionDelay?: StyleValue<Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDelay<string & {}> | undefined>;
459
+ transitionDuration?: StyleValue<Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDuration<string & {}> | undefined>;
460
+ transitionProperty?: StyleValue<Property.TransitionProperty | undefined> | StyleValueStateMap<Property.TransitionProperty | undefined>;
461
+ transitionTimingFunction?: StyleValue<Property.TransitionTimingFunction | undefined> | StyleValueStateMap<Property.TransitionTimingFunction | undefined>;
462
+ unicodeBidi?: StyleValue<Property.UnicodeBidi | undefined> | StyleValueStateMap<Property.UnicodeBidi | undefined>;
463
+ userSelect?: StyleValue<Property.UserSelect | undefined> | StyleValueStateMap<Property.UserSelect | undefined>;
464
+ verticalAlign?: StyleValue<Property.VerticalAlign<string | number> | undefined> | StyleValueStateMap<Property.VerticalAlign<string | number> | undefined>;
465
+ viewTransitionName?: StyleValue<Property.ViewTransitionName | undefined> | StyleValueStateMap<Property.ViewTransitionName | undefined>;
466
+ visibility?: StyleValue<Property.Visibility | undefined> | StyleValueStateMap<Property.Visibility | undefined>;
467
+ whiteSpace?: StyleValue<Property.WhiteSpace | undefined> | StyleValueStateMap<Property.WhiteSpace | undefined>;
468
+ widows?: StyleValue<Property.Widows | undefined> | StyleValueStateMap<Property.Widows | undefined>;
469
+ willChange?: StyleValue<Property.WillChange | undefined> | StyleValueStateMap<Property.WillChange | undefined>;
470
+ wordBreak?: StyleValue<Property.WordBreak | undefined> | StyleValueStateMap<Property.WordBreak | undefined>;
471
+ wordSpacing?: StyleValue<Property.WordSpacing<string | number> | undefined> | StyleValueStateMap<Property.WordSpacing<string | number> | undefined>;
472
+ wordWrap?: StyleValue<Property.WordWrap | undefined> | StyleValueStateMap<Property.WordWrap | undefined>;
473
+ writingMode?: StyleValue<Property.WritingMode | undefined> | StyleValueStateMap<Property.WritingMode | undefined>;
474
+ zIndex?: StyleValue<Property.ZIndex | undefined> | StyleValueStateMap<Property.ZIndex | undefined>;
475
+ zoom?: StyleValue<Property.Zoom | undefined> | StyleValueStateMap<Property.Zoom | undefined>;
476
+ all?: StyleValue<Globals | undefined> | StyleValueStateMap<Globals | undefined>;
477
+ animation?: StyleValue<Property.Animation<string & {}> | undefined> | StyleValueStateMap<Property.Animation<string & {}> | undefined>;
478
+ backgroundPosition?: StyleValue<Property.BackgroundPosition<string | number> | undefined> | StyleValueStateMap<Property.BackgroundPosition<string | number> | undefined>;
479
+ borderBlock?: StyleValue<Property.BorderBlock<string | number> | undefined> | StyleValueStateMap<Property.BorderBlock<string | number> | undefined>;
480
+ borderBlockEnd?: StyleValue<Property.BorderBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.BorderBlockEnd<string | number> | undefined>;
481
+ borderBlockStart?: StyleValue<Property.BorderBlockStart<string | number> | undefined> | StyleValueStateMap<Property.BorderBlockStart<string | number> | undefined>;
482
+ borderBottom?: StyleValue<Property.BorderBottom<string | number> | undefined> | StyleValueStateMap<Property.BorderBottom<string | number> | undefined>;
483
+ borderColor?: StyleValue<Property.BorderColor | undefined> | StyleValueStateMap<Property.BorderColor | undefined>;
484
+ borderImage?: StyleValue<Property.BorderImage | undefined> | StyleValueStateMap<Property.BorderImage | undefined>;
485
+ borderInline?: StyleValue<Property.BorderInline<string | number> | undefined> | StyleValueStateMap<Property.BorderInline<string | number> | undefined>;
486
+ borderInlineEnd?: StyleValue<Property.BorderInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineEnd<string | number> | undefined>;
487
+ borderInlineStart?: StyleValue<Property.BorderInlineStart<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineStart<string | number> | undefined>;
488
+ borderLeft?: StyleValue<Property.BorderLeft<string | number> | undefined> | StyleValueStateMap<Property.BorderLeft<string | number> | undefined>;
489
+ borderRadius?: StyleValue<Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderRadius<string | number> | undefined>;
490
+ borderRight?: StyleValue<Property.BorderRight<string | number> | undefined> | StyleValueStateMap<Property.BorderRight<string | number> | undefined>;
491
+ borderStyle?: StyleValue<Property.BorderStyle | undefined> | StyleValueStateMap<Property.BorderStyle | undefined>;
492
+ borderTop?: StyleValue<Property.BorderTop<string | number> | undefined> | StyleValueStateMap<Property.BorderTop<string | number> | undefined>;
493
+ borderWidth?: StyleValue<Property.BorderWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderWidth<string | number> | undefined>;
494
+ caret?: StyleValue<Property.Caret | undefined> | StyleValueStateMap<Property.Caret | undefined>;
495
+ columnRule?: StyleValue<Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<Property.ColumnRule<string | number> | undefined>;
496
+ columns?: StyleValue<Property.Columns<string | number> | undefined> | StyleValueStateMap<Property.Columns<string | number> | undefined>;
497
+ containIntrinsicSize?: StyleValue<Property.ContainIntrinsicSize<string | number> | undefined> | StyleValueStateMap<Property.ContainIntrinsicSize<string | number> | undefined>;
498
+ container?: StyleValue<Property.Container | undefined> | StyleValueStateMap<Property.Container | undefined>;
499
+ flex?: StyleValue<Property.Flex<string | number> | undefined> | StyleValueStateMap<Property.Flex<string | number> | undefined>;
500
+ flexFlow?: StyleValue<Property.FlexFlow | undefined> | StyleValueStateMap<Property.FlexFlow | undefined>;
501
+ grid?: StyleValue<Property.Grid | undefined> | StyleValueStateMap<Property.Grid | undefined>;
502
+ gridArea?: StyleValue<Property.GridArea | undefined> | StyleValueStateMap<Property.GridArea | undefined>;
503
+ gridColumn?: StyleValue<Property.GridColumn | undefined> | StyleValueStateMap<Property.GridColumn | undefined>;
504
+ gridRow?: StyleValue<Property.GridRow | undefined> | StyleValueStateMap<Property.GridRow | undefined>;
505
+ gridTemplate?: StyleValue<Property.GridTemplate | undefined> | StyleValueStateMap<Property.GridTemplate | undefined>;
506
+ inset?: StyleValue<Property.Inset<string | number> | undefined> | StyleValueStateMap<Property.Inset<string | number> | undefined>;
507
+ insetBlock?: StyleValue<Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<Property.InsetBlock<string | number> | undefined>;
508
+ insetInline?: StyleValue<Property.InsetInline<string | number> | undefined> | StyleValueStateMap<Property.InsetInline<string | number> | undefined>;
509
+ lineClamp?: StyleValue<Property.LineClamp | undefined> | StyleValueStateMap<Property.LineClamp | undefined>;
510
+ listStyle?: StyleValue<Property.ListStyle | undefined> | StyleValueStateMap<Property.ListStyle | undefined>;
511
+ marginBlock?: StyleValue<Property.MarginBlock<string | number> | undefined> | StyleValueStateMap<Property.MarginBlock<string | number> | undefined>;
512
+ marginInline?: StyleValue<Property.MarginInline<string | number> | undefined> | StyleValueStateMap<Property.MarginInline<string | number> | undefined>;
513
+ mask?: StyleValue<Property.Mask<string | number> | undefined> | StyleValueStateMap<Property.Mask<string | number> | undefined>;
514
+ maskBorder?: StyleValue<Property.MaskBorder | undefined> | StyleValueStateMap<Property.MaskBorder | undefined>;
515
+ motion?: StyleValue<Property.Offset<string | number> | undefined> | StyleValueStateMap<Property.Offset<string | number> | undefined>;
516
+ offset?: StyleValue<Property.Offset<string | number> | undefined> | StyleValueStateMap<Property.Offset<string | number> | undefined>;
517
+ overflow?: StyleValue<Property.Overflow | undefined> | StyleValueStateMap<Property.Overflow | undefined>;
518
+ overscrollBehavior?: StyleValue<Property.OverscrollBehavior | undefined> | StyleValueStateMap<Property.OverscrollBehavior | undefined>;
519
+ paddingBlock?: StyleValue<Property.PaddingBlock<string | number> | undefined> | StyleValueStateMap<Property.PaddingBlock<string | number> | undefined>;
520
+ paddingInline?: StyleValue<Property.PaddingInline<string | number> | undefined> | StyleValueStateMap<Property.PaddingInline<string | number> | undefined>;
521
+ placeSelf?: StyleValue<Property.PlaceSelf | undefined> | StyleValueStateMap<Property.PlaceSelf | undefined>;
522
+ scrollMargin?: StyleValue<Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<Property.ScrollMargin<string | number> | undefined>;
523
+ scrollMarginBlock?: StyleValue<Property.ScrollMarginBlock<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginBlock<string | number> | undefined>;
524
+ scrollMarginInline?: StyleValue<Property.ScrollMarginInline<string | number> | undefined> | StyleValueStateMap<Property.ScrollMarginInline<string | number> | undefined>;
525
+ scrollPadding?: StyleValue<Property.ScrollPadding<string | number> | undefined> | StyleValueStateMap<Property.ScrollPadding<string | number> | undefined>;
526
+ scrollPaddingBlock?: StyleValue<Property.ScrollPaddingBlock<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingBlock<string | number> | undefined>;
527
+ scrollPaddingInline?: StyleValue<Property.ScrollPaddingInline<string | number> | undefined> | StyleValueStateMap<Property.ScrollPaddingInline<string | number> | undefined>;
528
+ scrollSnapMargin?: StyleValue<Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<Property.ScrollMargin<string | number> | undefined>;
529
+ scrollTimeline?: StyleValue<Property.ScrollTimeline | undefined> | StyleValueStateMap<Property.ScrollTimeline | undefined>;
530
+ textDecoration?: StyleValue<Property.TextDecoration<string | number> | undefined> | StyleValueStateMap<Property.TextDecoration<string | number> | undefined>;
531
+ textEmphasis?: StyleValue<Property.TextEmphasis | undefined> | StyleValueStateMap<Property.TextEmphasis | undefined>;
532
+ MozAnimationDelay?: StyleValue<Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDelay<string & {}> | undefined>;
533
+ MozAnimationDirection?: StyleValue<Property.AnimationDirection | undefined> | StyleValueStateMap<Property.AnimationDirection | undefined>;
534
+ MozAnimationDuration?: StyleValue<Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDuration<string & {}> | undefined>;
535
+ MozAnimationFillMode?: StyleValue<Property.AnimationFillMode | undefined> | StyleValueStateMap<Property.AnimationFillMode | undefined>;
536
+ MozAnimationIterationCount?: StyleValue<Property.AnimationIterationCount | undefined> | StyleValueStateMap<Property.AnimationIterationCount | undefined>;
537
+ MozAnimationName?: StyleValue<Property.AnimationName | undefined> | StyleValueStateMap<Property.AnimationName | undefined>;
538
+ MozAnimationPlayState?: StyleValue<Property.AnimationPlayState | undefined> | StyleValueStateMap<Property.AnimationPlayState | undefined>;
539
+ MozAnimationTimingFunction?: StyleValue<Property.AnimationTimingFunction | undefined> | StyleValueStateMap<Property.AnimationTimingFunction | undefined>;
540
+ MozAppearance?: StyleValue<Property.MozAppearance | undefined> | StyleValueStateMap<Property.MozAppearance | undefined>;
541
+ MozBackfaceVisibility?: StyleValue<Property.BackfaceVisibility | undefined> | StyleValueStateMap<Property.BackfaceVisibility | undefined>;
542
+ MozBinding?: StyleValue<Property.MozBinding | undefined> | StyleValueStateMap<Property.MozBinding | undefined>;
543
+ MozBorderBottomColors?: StyleValue<Property.MozBorderBottomColors | undefined> | StyleValueStateMap<Property.MozBorderBottomColors | undefined>;
544
+ MozBorderEndColor?: StyleValue<Property.BorderInlineEndColor | undefined> | StyleValueStateMap<Property.BorderInlineEndColor | undefined>;
545
+ MozBorderEndStyle?: StyleValue<Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<Property.BorderInlineEndStyle | undefined>;
546
+ MozBorderEndWidth?: StyleValue<Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<Property.BorderInlineEndWidth<string | number> | undefined>;
547
+ MozBorderLeftColors?: StyleValue<Property.MozBorderLeftColors | undefined> | StyleValueStateMap<Property.MozBorderLeftColors | undefined>;
548
+ MozBorderRightColors?: StyleValue<Property.MozBorderRightColors | undefined> | StyleValueStateMap<Property.MozBorderRightColors | undefined>;
549
+ MozBorderStartColor?: StyleValue<Property.BorderInlineStartColor | undefined> | StyleValueStateMap<Property.BorderInlineStartColor | undefined>;
550
+ MozBorderStartStyle?: StyleValue<Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<Property.BorderInlineStartStyle | undefined>;
551
+ MozBorderTopColors?: StyleValue<Property.MozBorderTopColors | undefined> | StyleValueStateMap<Property.MozBorderTopColors | undefined>;
552
+ MozBoxSizing?: StyleValue<Property.BoxSizing | undefined> | StyleValueStateMap<Property.BoxSizing | undefined>;
553
+ MozColumnCount?: StyleValue<Property.ColumnCount | undefined> | StyleValueStateMap<Property.ColumnCount | undefined>;
554
+ MozColumnFill?: StyleValue<Property.ColumnFill | undefined> | StyleValueStateMap<Property.ColumnFill | undefined>;
555
+ MozColumnRuleColor?: StyleValue<Property.ColumnRuleColor | undefined> | StyleValueStateMap<Property.ColumnRuleColor | undefined>;
556
+ MozColumnRuleStyle?: StyleValue<Property.ColumnRuleStyle | undefined> | StyleValueStateMap<Property.ColumnRuleStyle | undefined>;
557
+ MozColumnRuleWidth?: StyleValue<Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnRuleWidth<string | number> | undefined>;
558
+ MozColumnWidth?: StyleValue<Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnWidth<string | number> | undefined>;
559
+ MozContextProperties?: StyleValue<Property.MozContextProperties | undefined> | StyleValueStateMap<Property.MozContextProperties | undefined>;
560
+ MozFontFeatureSettings?: StyleValue<Property.FontFeatureSettings | undefined> | StyleValueStateMap<Property.FontFeatureSettings | undefined>;
561
+ MozFontLanguageOverride?: StyleValue<Property.FontLanguageOverride | undefined> | StyleValueStateMap<Property.FontLanguageOverride | undefined>;
562
+ MozHyphens?: StyleValue<Property.Hyphens | undefined> | StyleValueStateMap<Property.Hyphens | undefined>;
563
+ MozImageRegion?: StyleValue<Property.MozImageRegion | undefined> | StyleValueStateMap<Property.MozImageRegion | undefined>;
564
+ MozMarginEnd?: StyleValue<Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineEnd<string | number> | undefined>;
565
+ MozMarginStart?: StyleValue<Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineStart<string | number> | undefined>;
566
+ MozOrient?: StyleValue<Property.MozOrient | undefined> | StyleValueStateMap<Property.MozOrient | undefined>;
567
+ MozOsxFontSmoothing?: StyleValue<Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<Property.FontSmooth<string | number> | undefined>;
568
+ MozPaddingEnd?: StyleValue<Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineEnd<string | number> | undefined>;
569
+ MozPaddingStart?: StyleValue<Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineStart<string | number> | undefined>;
570
+ MozPerspective?: StyleValue<Property.Perspective<string | number> | undefined> | StyleValueStateMap<Property.Perspective<string | number> | undefined>;
571
+ MozPerspectiveOrigin?: StyleValue<Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<Property.PerspectiveOrigin<string | number> | undefined>;
572
+ MozStackSizing?: StyleValue<Property.MozStackSizing | undefined> | StyleValueStateMap<Property.MozStackSizing | undefined>;
573
+ MozTabSize?: StyleValue<Property.TabSize<string | number> | undefined> | StyleValueStateMap<Property.TabSize<string | number> | undefined>;
574
+ MozTextBlink?: StyleValue<Property.MozTextBlink | undefined> | StyleValueStateMap<Property.MozTextBlink | undefined>;
575
+ MozTextSizeAdjust?: StyleValue<Property.TextSizeAdjust | undefined> | StyleValueStateMap<Property.TextSizeAdjust | undefined>;
576
+ MozTransformOrigin?: StyleValue<Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<Property.TransformOrigin<string | number> | undefined>;
577
+ MozTransformStyle?: StyleValue<Property.TransformStyle | undefined> | StyleValueStateMap<Property.TransformStyle | undefined>;
578
+ MozTransitionDelay?: StyleValue<Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDelay<string & {}> | undefined>;
579
+ MozTransitionDuration?: StyleValue<Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDuration<string & {}> | undefined>;
580
+ MozTransitionProperty?: StyleValue<Property.TransitionProperty | undefined> | StyleValueStateMap<Property.TransitionProperty | undefined>;
581
+ MozTransitionTimingFunction?: StyleValue<Property.TransitionTimingFunction | undefined> | StyleValueStateMap<Property.TransitionTimingFunction | undefined>;
582
+ MozUserFocus?: StyleValue<Property.MozUserFocus | undefined> | StyleValueStateMap<Property.MozUserFocus | undefined>;
583
+ MozUserModify?: StyleValue<Property.MozUserModify | undefined> | StyleValueStateMap<Property.MozUserModify | undefined>;
584
+ MozUserSelect?: StyleValue<Property.UserSelect | undefined> | StyleValueStateMap<Property.UserSelect | undefined>;
585
+ MozWindowDragging?: StyleValue<Property.MozWindowDragging | undefined> | StyleValueStateMap<Property.MozWindowDragging | undefined>;
586
+ MozWindowShadow?: StyleValue<Property.MozWindowShadow | undefined> | StyleValueStateMap<Property.MozWindowShadow | undefined>;
587
+ msAccelerator?: StyleValue<Property.MsAccelerator | undefined> | StyleValueStateMap<Property.MsAccelerator | undefined>;
588
+ msBlockProgression?: StyleValue<Property.MsBlockProgression | undefined> | StyleValueStateMap<Property.MsBlockProgression | undefined>;
589
+ msContentZoomChaining?: StyleValue<Property.MsContentZoomChaining | undefined> | StyleValueStateMap<Property.MsContentZoomChaining | undefined>;
590
+ msContentZoomLimitMax?: StyleValue<Property.MsContentZoomLimitMax | undefined> | StyleValueStateMap<Property.MsContentZoomLimitMax | undefined>;
591
+ msContentZoomLimitMin?: StyleValue<Property.MsContentZoomLimitMin | undefined> | StyleValueStateMap<Property.MsContentZoomLimitMin | undefined>;
592
+ msContentZoomSnapPoints?: StyleValue<Property.MsContentZoomSnapPoints | undefined> | StyleValueStateMap<Property.MsContentZoomSnapPoints | undefined>;
593
+ msContentZoomSnapType?: StyleValue<Property.MsContentZoomSnapType | undefined> | StyleValueStateMap<Property.MsContentZoomSnapType | undefined>;
594
+ msContentZooming?: StyleValue<Property.MsContentZooming | undefined> | StyleValueStateMap<Property.MsContentZooming | undefined>;
595
+ msFilter?: StyleValue<Property.MsFilter | undefined> | StyleValueStateMap<Property.MsFilter | undefined>;
596
+ msFlexDirection?: StyleValue<Property.FlexDirection | undefined> | StyleValueStateMap<Property.FlexDirection | undefined>;
597
+ msFlexPositive?: StyleValue<Property.FlexGrow | undefined> | StyleValueStateMap<Property.FlexGrow | undefined>;
598
+ msFlowFrom?: StyleValue<Property.MsFlowFrom | undefined> | StyleValueStateMap<Property.MsFlowFrom | undefined>;
599
+ msFlowInto?: StyleValue<Property.MsFlowInto | undefined> | StyleValueStateMap<Property.MsFlowInto | undefined>;
600
+ msGridColumns?: StyleValue<Property.MsGridColumns<string | number> | undefined> | StyleValueStateMap<Property.MsGridColumns<string | number> | undefined>;
601
+ msGridRows?: StyleValue<Property.MsGridRows<string | number> | undefined> | StyleValueStateMap<Property.MsGridRows<string | number> | undefined>;
602
+ msHighContrastAdjust?: StyleValue<Property.MsHighContrastAdjust | undefined> | StyleValueStateMap<Property.MsHighContrastAdjust | undefined>;
603
+ msHyphenateLimitChars?: StyleValue<Property.MsHyphenateLimitChars | undefined> | StyleValueStateMap<Property.MsHyphenateLimitChars | undefined>;
604
+ msHyphenateLimitLines?: StyleValue<Property.MsHyphenateLimitLines | undefined> | StyleValueStateMap<Property.MsHyphenateLimitLines | undefined>;
605
+ msHyphenateLimitZone?: StyleValue<Property.MsHyphenateLimitZone<string | number> | undefined> | StyleValueStateMap<Property.MsHyphenateLimitZone<string | number> | undefined>;
606
+ msHyphens?: StyleValue<Property.Hyphens | undefined> | StyleValueStateMap<Property.Hyphens | undefined>;
607
+ msImeAlign?: StyleValue<Property.MsImeAlign | undefined> | StyleValueStateMap<Property.MsImeAlign | undefined>;
608
+ msLineBreak?: StyleValue<Property.LineBreak | undefined> | StyleValueStateMap<Property.LineBreak | undefined>;
609
+ msOrder?: StyleValue<Property.Order | undefined> | StyleValueStateMap<Property.Order | undefined>;
610
+ msOverflowStyle?: StyleValue<Property.MsOverflowStyle | undefined> | StyleValueStateMap<Property.MsOverflowStyle | undefined>;
611
+ msOverflowX?: StyleValue<Property.OverflowX | undefined> | StyleValueStateMap<Property.OverflowX | undefined>;
612
+ msOverflowY?: StyleValue<Property.OverflowY | undefined> | StyleValueStateMap<Property.OverflowY | undefined>;
613
+ msScrollChaining?: StyleValue<Property.MsScrollChaining | undefined> | StyleValueStateMap<Property.MsScrollChaining | undefined>;
614
+ msScrollLimitXMax?: StyleValue<Property.MsScrollLimitXMax<string | number> | undefined> | StyleValueStateMap<Property.MsScrollLimitXMax<string | number> | undefined>;
615
+ msScrollLimitXMin?: StyleValue<Property.MsScrollLimitXMin<string | number> | undefined> | StyleValueStateMap<Property.MsScrollLimitXMin<string | number> | undefined>;
616
+ msScrollLimitYMax?: StyleValue<Property.MsScrollLimitYMax<string | number> | undefined> | StyleValueStateMap<Property.MsScrollLimitYMax<string | number> | undefined>;
617
+ msScrollLimitYMin?: StyleValue<Property.MsScrollLimitYMin<string | number> | undefined> | StyleValueStateMap<Property.MsScrollLimitYMin<string | number> | undefined>;
618
+ msScrollRails?: StyleValue<Property.MsScrollRails | undefined> | StyleValueStateMap<Property.MsScrollRails | undefined>;
619
+ msScrollSnapPointsX?: StyleValue<Property.MsScrollSnapPointsX | undefined> | StyleValueStateMap<Property.MsScrollSnapPointsX | undefined>;
620
+ msScrollSnapPointsY?: StyleValue<Property.MsScrollSnapPointsY | undefined> | StyleValueStateMap<Property.MsScrollSnapPointsY | undefined>;
621
+ msScrollSnapType?: StyleValue<Property.MsScrollSnapType | undefined> | StyleValueStateMap<Property.MsScrollSnapType | undefined>;
622
+ msScrollTranslation?: StyleValue<Property.MsScrollTranslation | undefined> | StyleValueStateMap<Property.MsScrollTranslation | undefined>;
623
+ msScrollbar3dlightColor?: StyleValue<Property.MsScrollbar3dlightColor | undefined> | StyleValueStateMap<Property.MsScrollbar3dlightColor | undefined>;
624
+ msScrollbarArrowColor?: StyleValue<Property.MsScrollbarArrowColor | undefined> | StyleValueStateMap<Property.MsScrollbarArrowColor | undefined>;
625
+ msScrollbarBaseColor?: StyleValue<Property.MsScrollbarBaseColor | undefined> | StyleValueStateMap<Property.MsScrollbarBaseColor | undefined>;
626
+ msScrollbarDarkshadowColor?: StyleValue<Property.MsScrollbarDarkshadowColor | undefined> | StyleValueStateMap<Property.MsScrollbarDarkshadowColor | undefined>;
627
+ msScrollbarFaceColor?: StyleValue<Property.MsScrollbarFaceColor | undefined> | StyleValueStateMap<Property.MsScrollbarFaceColor | undefined>;
628
+ msScrollbarHighlightColor?: StyleValue<Property.MsScrollbarHighlightColor | undefined> | StyleValueStateMap<Property.MsScrollbarHighlightColor | undefined>;
629
+ msScrollbarShadowColor?: StyleValue<Property.MsScrollbarShadowColor | undefined> | StyleValueStateMap<Property.MsScrollbarShadowColor | undefined>;
630
+ msScrollbarTrackColor?: StyleValue<Property.MsScrollbarTrackColor | undefined> | StyleValueStateMap<Property.MsScrollbarTrackColor | undefined>;
631
+ msTextAutospace?: StyleValue<Property.MsTextAutospace | undefined> | StyleValueStateMap<Property.MsTextAutospace | undefined>;
632
+ msTextCombineHorizontal?: StyleValue<Property.TextCombineUpright | undefined> | StyleValueStateMap<Property.TextCombineUpright | undefined>;
633
+ msTextOverflow?: StyleValue<Property.TextOverflow | undefined> | StyleValueStateMap<Property.TextOverflow | undefined>;
634
+ msTouchAction?: StyleValue<Property.TouchAction | undefined> | StyleValueStateMap<Property.TouchAction | undefined>;
635
+ msTouchSelect?: StyleValue<Property.MsTouchSelect | undefined> | StyleValueStateMap<Property.MsTouchSelect | undefined>;
636
+ msTransform?: StyleValue<Property.Transform | undefined> | StyleValueStateMap<Property.Transform | undefined>;
637
+ msTransformOrigin?: StyleValue<Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<Property.TransformOrigin<string | number> | undefined>;
638
+ msTransitionDelay?: StyleValue<Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDelay<string & {}> | undefined>;
639
+ msTransitionDuration?: StyleValue<Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDuration<string & {}> | undefined>;
640
+ msTransitionProperty?: StyleValue<Property.TransitionProperty | undefined> | StyleValueStateMap<Property.TransitionProperty | undefined>;
641
+ msTransitionTimingFunction?: StyleValue<Property.TransitionTimingFunction | undefined> | StyleValueStateMap<Property.TransitionTimingFunction | undefined>;
642
+ msUserSelect?: StyleValue<Property.MsUserSelect | undefined> | StyleValueStateMap<Property.MsUserSelect | undefined>;
643
+ msWordBreak?: StyleValue<Property.WordBreak | undefined> | StyleValueStateMap<Property.WordBreak | undefined>;
644
+ msWrapFlow?: StyleValue<Property.MsWrapFlow | undefined> | StyleValueStateMap<Property.MsWrapFlow | undefined>;
645
+ msWrapMargin?: StyleValue<Property.MsWrapMargin<string | number> | undefined> | StyleValueStateMap<Property.MsWrapMargin<string | number> | undefined>;
646
+ msWrapThrough?: StyleValue<Property.MsWrapThrough | undefined> | StyleValueStateMap<Property.MsWrapThrough | undefined>;
647
+ msWritingMode?: StyleValue<Property.WritingMode | undefined> | StyleValueStateMap<Property.WritingMode | undefined>;
648
+ WebkitAlignContent?: StyleValue<Property.AlignContent | undefined> | StyleValueStateMap<Property.AlignContent | undefined>;
649
+ WebkitAlignItems?: StyleValue<Property.AlignItems | undefined> | StyleValueStateMap<Property.AlignItems | undefined>;
650
+ WebkitAlignSelf?: StyleValue<Property.AlignSelf | undefined> | StyleValueStateMap<Property.AlignSelf | undefined>;
651
+ WebkitAnimationDelay?: StyleValue<Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDelay<string & {}> | undefined>;
652
+ WebkitAnimationDirection?: StyleValue<Property.AnimationDirection | undefined> | StyleValueStateMap<Property.AnimationDirection | undefined>;
653
+ WebkitAnimationDuration?: StyleValue<Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDuration<string & {}> | undefined>;
654
+ WebkitAnimationFillMode?: StyleValue<Property.AnimationFillMode | undefined> | StyleValueStateMap<Property.AnimationFillMode | undefined>;
655
+ WebkitAnimationIterationCount?: StyleValue<Property.AnimationIterationCount | undefined> | StyleValueStateMap<Property.AnimationIterationCount | undefined>;
656
+ WebkitAnimationName?: StyleValue<Property.AnimationName | undefined> | StyleValueStateMap<Property.AnimationName | undefined>;
657
+ WebkitAnimationPlayState?: StyleValue<Property.AnimationPlayState | undefined> | StyleValueStateMap<Property.AnimationPlayState | undefined>;
658
+ WebkitAnimationTimingFunction?: StyleValue<Property.AnimationTimingFunction | undefined> | StyleValueStateMap<Property.AnimationTimingFunction | undefined>;
659
+ WebkitAppearance?: StyleValue<Property.WebkitAppearance | undefined> | StyleValueStateMap<Property.WebkitAppearance | undefined>;
660
+ WebkitBackdropFilter?: StyleValue<Property.BackdropFilter | undefined> | StyleValueStateMap<Property.BackdropFilter | undefined>;
661
+ WebkitBackfaceVisibility?: StyleValue<Property.BackfaceVisibility | undefined> | StyleValueStateMap<Property.BackfaceVisibility | undefined>;
662
+ WebkitBackgroundClip?: StyleValue<Property.BackgroundClip | undefined> | StyleValueStateMap<Property.BackgroundClip | undefined>;
663
+ WebkitBackgroundOrigin?: StyleValue<Property.BackgroundOrigin | undefined> | StyleValueStateMap<Property.BackgroundOrigin | undefined>;
664
+ WebkitBackgroundSize?: StyleValue<Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<Property.BackgroundSize<string | number> | undefined>;
665
+ WebkitBorderBeforeColor?: StyleValue<Property.WebkitBorderBeforeColor | undefined> | StyleValueStateMap<Property.WebkitBorderBeforeColor | undefined>;
666
+ WebkitBorderBeforeStyle?: StyleValue<Property.WebkitBorderBeforeStyle | undefined> | StyleValueStateMap<Property.WebkitBorderBeforeStyle | undefined>;
667
+ WebkitBorderBeforeWidth?: StyleValue<Property.WebkitBorderBeforeWidth<string | number> | undefined> | StyleValueStateMap<Property.WebkitBorderBeforeWidth<string | number> | undefined>;
668
+ WebkitBorderBottomLeftRadius?: StyleValue<Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomLeftRadius<string | number> | undefined>;
669
+ WebkitBorderBottomRightRadius?: StyleValue<Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomRightRadius<string | number> | undefined>;
670
+ WebkitBorderImageSlice?: StyleValue<Property.BorderImageSlice | undefined> | StyleValueStateMap<Property.BorderImageSlice | undefined>;
671
+ WebkitBorderTopLeftRadius?: StyleValue<Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopLeftRadius<string | number> | undefined>;
672
+ WebkitBorderTopRightRadius?: StyleValue<Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopRightRadius<string | number> | undefined>;
673
+ WebkitBoxDecorationBreak?: StyleValue<Property.BoxDecorationBreak | undefined> | StyleValueStateMap<Property.BoxDecorationBreak | undefined>;
674
+ WebkitBoxReflect?: StyleValue<Property.WebkitBoxReflect<string | number> | undefined> | StyleValueStateMap<Property.WebkitBoxReflect<string | number> | undefined>;
675
+ WebkitBoxShadow?: StyleValue<Property.BoxShadow | undefined> | StyleValueStateMap<Property.BoxShadow | undefined>;
676
+ WebkitBoxSizing?: StyleValue<Property.BoxSizing | undefined> | StyleValueStateMap<Property.BoxSizing | undefined>;
677
+ WebkitClipPath?: StyleValue<Property.ClipPath | undefined> | StyleValueStateMap<Property.ClipPath | undefined>;
678
+ WebkitColumnCount?: StyleValue<Property.ColumnCount | undefined> | StyleValueStateMap<Property.ColumnCount | undefined>;
679
+ WebkitColumnFill?: StyleValue<Property.ColumnFill | undefined> | StyleValueStateMap<Property.ColumnFill | undefined>;
680
+ WebkitColumnRuleColor?: StyleValue<Property.ColumnRuleColor | undefined> | StyleValueStateMap<Property.ColumnRuleColor | undefined>;
681
+ WebkitColumnRuleStyle?: StyleValue<Property.ColumnRuleStyle | undefined> | StyleValueStateMap<Property.ColumnRuleStyle | undefined>;
682
+ WebkitColumnRuleWidth?: StyleValue<Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnRuleWidth<string | number> | undefined>;
683
+ WebkitColumnSpan?: StyleValue<Property.ColumnSpan | undefined> | StyleValueStateMap<Property.ColumnSpan | undefined>;
684
+ WebkitColumnWidth?: StyleValue<Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<Property.ColumnWidth<string | number> | undefined>;
685
+ WebkitFilter?: StyleValue<Property.Filter | undefined> | StyleValueStateMap<Property.Filter | undefined>;
686
+ WebkitFlexBasis?: StyleValue<Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<Property.FlexBasis<string | number> | undefined>;
687
+ WebkitFlexDirection?: StyleValue<Property.FlexDirection | undefined> | StyleValueStateMap<Property.FlexDirection | undefined>;
688
+ WebkitFlexGrow?: StyleValue<Property.FlexGrow | undefined> | StyleValueStateMap<Property.FlexGrow | undefined>;
689
+ WebkitFlexShrink?: StyleValue<Property.FlexShrink | undefined> | StyleValueStateMap<Property.FlexShrink | undefined>;
690
+ WebkitFlexWrap?: StyleValue<Property.FlexWrap | undefined> | StyleValueStateMap<Property.FlexWrap | undefined>;
691
+ WebkitFontFeatureSettings?: StyleValue<Property.FontFeatureSettings | undefined> | StyleValueStateMap<Property.FontFeatureSettings | undefined>;
692
+ WebkitFontKerning?: StyleValue<Property.FontKerning | undefined> | StyleValueStateMap<Property.FontKerning | undefined>;
693
+ WebkitFontSmoothing?: StyleValue<Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<Property.FontSmooth<string | number> | undefined>;
694
+ WebkitFontVariantLigatures?: StyleValue<Property.FontVariantLigatures | undefined> | StyleValueStateMap<Property.FontVariantLigatures | undefined>;
695
+ WebkitHyphenateCharacter?: StyleValue<Property.HyphenateCharacter | undefined> | StyleValueStateMap<Property.HyphenateCharacter | undefined>;
696
+ WebkitHyphens?: StyleValue<Property.Hyphens | undefined> | StyleValueStateMap<Property.Hyphens | undefined>;
697
+ WebkitInitialLetter?: StyleValue<Property.InitialLetter | undefined> | StyleValueStateMap<Property.InitialLetter | undefined>;
698
+ WebkitJustifyContent?: StyleValue<Property.JustifyContent | undefined> | StyleValueStateMap<Property.JustifyContent | undefined>;
699
+ WebkitLineBreak?: StyleValue<Property.LineBreak | undefined> | StyleValueStateMap<Property.LineBreak | undefined>;
700
+ WebkitLineClamp?: StyleValue<Property.WebkitLineClamp | undefined> | StyleValueStateMap<Property.WebkitLineClamp | undefined>;
701
+ WebkitMarginEnd?: StyleValue<Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineEnd<string | number> | undefined>;
702
+ WebkitMarginStart?: StyleValue<Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<Property.MarginInlineStart<string | number> | undefined>;
703
+ WebkitMaskAttachment?: StyleValue<Property.WebkitMaskAttachment | undefined> | StyleValueStateMap<Property.WebkitMaskAttachment | undefined>;
704
+ WebkitMaskBoxImageOutset?: StyleValue<Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<Property.MaskBorderOutset<string | number> | undefined>;
705
+ WebkitMaskBoxImageRepeat?: StyleValue<Property.MaskBorderRepeat | undefined> | StyleValueStateMap<Property.MaskBorderRepeat | undefined>;
706
+ WebkitMaskBoxImageSlice?: StyleValue<Property.MaskBorderSlice | undefined> | StyleValueStateMap<Property.MaskBorderSlice | undefined>;
707
+ WebkitMaskBoxImageSource?: StyleValue<Property.MaskBorderSource | undefined> | StyleValueStateMap<Property.MaskBorderSource | undefined>;
708
+ WebkitMaskBoxImageWidth?: StyleValue<Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<Property.MaskBorderWidth<string | number> | undefined>;
709
+ WebkitMaskClip?: StyleValue<Property.WebkitMaskClip | undefined> | StyleValueStateMap<Property.WebkitMaskClip | undefined>;
710
+ WebkitMaskComposite?: StyleValue<Property.WebkitMaskComposite | undefined> | StyleValueStateMap<Property.WebkitMaskComposite | undefined>;
711
+ WebkitMaskImage?: StyleValue<Property.WebkitMaskImage | undefined> | StyleValueStateMap<Property.WebkitMaskImage | undefined>;
712
+ WebkitMaskOrigin?: StyleValue<Property.WebkitMaskOrigin | undefined> | StyleValueStateMap<Property.WebkitMaskOrigin | undefined>;
713
+ WebkitMaskPosition?: StyleValue<Property.WebkitMaskPosition<string | number> | undefined> | StyleValueStateMap<Property.WebkitMaskPosition<string | number> | undefined>;
714
+ WebkitMaskPositionX?: StyleValue<Property.WebkitMaskPositionX<string | number> | undefined> | StyleValueStateMap<Property.WebkitMaskPositionX<string | number> | undefined>;
715
+ WebkitMaskPositionY?: StyleValue<Property.WebkitMaskPositionY<string | number> | undefined> | StyleValueStateMap<Property.WebkitMaskPositionY<string | number> | undefined>;
716
+ WebkitMaskRepeat?: StyleValue<Property.WebkitMaskRepeat | undefined> | StyleValueStateMap<Property.WebkitMaskRepeat | undefined>;
717
+ WebkitMaskRepeatX?: StyleValue<Property.WebkitMaskRepeatX | undefined> | StyleValueStateMap<Property.WebkitMaskRepeatX | undefined>;
718
+ WebkitMaskRepeatY?: StyleValue<Property.WebkitMaskRepeatY | undefined> | StyleValueStateMap<Property.WebkitMaskRepeatY | undefined>;
719
+ WebkitMaskSize?: StyleValue<Property.WebkitMaskSize<string | number> | undefined> | StyleValueStateMap<Property.WebkitMaskSize<string | number> | undefined>;
720
+ WebkitMaxInlineSize?: StyleValue<Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<Property.MaxInlineSize<string | number> | undefined>;
721
+ WebkitOrder?: StyleValue<Property.Order | undefined> | StyleValueStateMap<Property.Order | undefined>;
722
+ WebkitOverflowScrolling?: StyleValue<Property.WebkitOverflowScrolling | undefined> | StyleValueStateMap<Property.WebkitOverflowScrolling | undefined>;
723
+ WebkitPaddingEnd?: StyleValue<Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineEnd<string | number> | undefined>;
724
+ WebkitPaddingStart?: StyleValue<Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<Property.PaddingInlineStart<string | number> | undefined>;
725
+ WebkitPerspective?: StyleValue<Property.Perspective<string | number> | undefined> | StyleValueStateMap<Property.Perspective<string | number> | undefined>;
726
+ WebkitPerspectiveOrigin?: StyleValue<Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<Property.PerspectiveOrigin<string | number> | undefined>;
727
+ WebkitPrintColorAdjust?: StyleValue<Property.PrintColorAdjust | undefined> | StyleValueStateMap<Property.PrintColorAdjust | undefined>;
728
+ WebkitRubyPosition?: StyleValue<Property.RubyPosition | undefined> | StyleValueStateMap<Property.RubyPosition | undefined>;
729
+ WebkitScrollSnapType?: StyleValue<Property.ScrollSnapType | undefined> | StyleValueStateMap<Property.ScrollSnapType | undefined>;
730
+ WebkitShapeMargin?: StyleValue<Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<Property.ShapeMargin<string | number> | undefined>;
731
+ WebkitTapHighlightColor?: StyleValue<Property.WebkitTapHighlightColor | undefined> | StyleValueStateMap<Property.WebkitTapHighlightColor | undefined>;
732
+ WebkitTextCombine?: StyleValue<Property.TextCombineUpright | undefined> | StyleValueStateMap<Property.TextCombineUpright | undefined>;
733
+ WebkitTextDecorationColor?: StyleValue<Property.TextDecorationColor | undefined> | StyleValueStateMap<Property.TextDecorationColor | undefined>;
734
+ WebkitTextDecorationLine?: StyleValue<Property.TextDecorationLine | undefined> | StyleValueStateMap<Property.TextDecorationLine | undefined>;
735
+ WebkitTextDecorationSkip?: StyleValue<Property.TextDecorationSkip | undefined> | StyleValueStateMap<Property.TextDecorationSkip | undefined>;
736
+ WebkitTextDecorationStyle?: StyleValue<Property.TextDecorationStyle | undefined> | StyleValueStateMap<Property.TextDecorationStyle | undefined>;
737
+ WebkitTextEmphasisColor?: StyleValue<Property.TextEmphasisColor | undefined> | StyleValueStateMap<Property.TextEmphasisColor | undefined>;
738
+ WebkitTextEmphasisPosition?: StyleValue<Property.TextEmphasisPosition | undefined> | StyleValueStateMap<Property.TextEmphasisPosition | undefined>;
739
+ WebkitTextEmphasisStyle?: StyleValue<Property.TextEmphasisStyle | undefined> | StyleValueStateMap<Property.TextEmphasisStyle | undefined>;
740
+ WebkitTextFillColor?: StyleValue<Property.WebkitTextFillColor | undefined> | StyleValueStateMap<Property.WebkitTextFillColor | undefined>;
741
+ WebkitTextOrientation?: StyleValue<Property.TextOrientation | undefined> | StyleValueStateMap<Property.TextOrientation | undefined>;
742
+ WebkitTextSizeAdjust?: StyleValue<Property.TextSizeAdjust | undefined> | StyleValueStateMap<Property.TextSizeAdjust | undefined>;
743
+ WebkitTextStrokeColor?: StyleValue<Property.WebkitTextStrokeColor | undefined> | StyleValueStateMap<Property.WebkitTextStrokeColor | undefined>;
744
+ WebkitTextStrokeWidth?: StyleValue<Property.WebkitTextStrokeWidth<string | number> | undefined> | StyleValueStateMap<Property.WebkitTextStrokeWidth<string | number> | undefined>;
745
+ WebkitTextUnderlinePosition?: StyleValue<Property.TextUnderlinePosition | undefined> | StyleValueStateMap<Property.TextUnderlinePosition | undefined>;
746
+ WebkitTouchCallout?: StyleValue<Property.WebkitTouchCallout | undefined> | StyleValueStateMap<Property.WebkitTouchCallout | undefined>;
747
+ WebkitTransform?: StyleValue<Property.Transform | undefined> | StyleValueStateMap<Property.Transform | undefined>;
748
+ WebkitTransformOrigin?: StyleValue<Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<Property.TransformOrigin<string | number> | undefined>;
749
+ WebkitTransformStyle?: StyleValue<Property.TransformStyle | undefined> | StyleValueStateMap<Property.TransformStyle | undefined>;
750
+ WebkitTransitionDelay?: StyleValue<Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDelay<string & {}> | undefined>;
751
+ WebkitTransitionDuration?: StyleValue<Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDuration<string & {}> | undefined>;
752
+ WebkitTransitionProperty?: StyleValue<Property.TransitionProperty | undefined> | StyleValueStateMap<Property.TransitionProperty | undefined>;
753
+ WebkitTransitionTimingFunction?: StyleValue<Property.TransitionTimingFunction | undefined> | StyleValueStateMap<Property.TransitionTimingFunction | undefined>;
754
+ WebkitUserModify?: StyleValue<Property.WebkitUserModify | undefined> | StyleValueStateMap<Property.WebkitUserModify | undefined>;
755
+ WebkitUserSelect?: StyleValue<Property.UserSelect | undefined> | StyleValueStateMap<Property.UserSelect | undefined>;
756
+ WebkitWritingMode?: StyleValue<Property.WritingMode | undefined> | StyleValueStateMap<Property.WritingMode | undefined>;
757
+ MozAnimation?: StyleValue<Property.Animation<string & {}> | undefined> | StyleValueStateMap<Property.Animation<string & {}> | undefined>;
758
+ MozBorderImage?: StyleValue<Property.BorderImage | undefined> | StyleValueStateMap<Property.BorderImage | undefined>;
759
+ MozColumnRule?: StyleValue<Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<Property.ColumnRule<string | number> | undefined>;
760
+ MozColumns?: StyleValue<Property.Columns<string | number> | undefined> | StyleValueStateMap<Property.Columns<string | number> | undefined>;
761
+ MozTransition?: StyleValue<Property.Transition<string & {}> | undefined> | StyleValueStateMap<Property.Transition<string & {}> | undefined>;
762
+ msContentZoomLimit?: StyleValue<Property.MsContentZoomLimit | undefined> | StyleValueStateMap<Property.MsContentZoomLimit | undefined>;
763
+ msContentZoomSnap?: StyleValue<Property.MsContentZoomSnap | undefined> | StyleValueStateMap<Property.MsContentZoomSnap | undefined>;
764
+ msFlex?: StyleValue<Property.Flex<string | number> | undefined> | StyleValueStateMap<Property.Flex<string | number> | undefined>;
765
+ msScrollLimit?: StyleValue<Property.MsScrollLimit | undefined> | StyleValueStateMap<Property.MsScrollLimit | undefined>;
766
+ msScrollSnapX?: StyleValue<Property.MsScrollSnapX | undefined> | StyleValueStateMap<Property.MsScrollSnapX | undefined>;
767
+ msScrollSnapY?: StyleValue<Property.MsScrollSnapY | undefined> | StyleValueStateMap<Property.MsScrollSnapY | undefined>;
768
+ msTransition?: StyleValue<Property.Transition<string & {}> | undefined> | StyleValueStateMap<Property.Transition<string & {}> | undefined>;
769
+ WebkitAnimation?: StyleValue<Property.Animation<string & {}> | undefined> | StyleValueStateMap<Property.Animation<string & {}> | undefined>;
770
+ WebkitBorderBefore?: StyleValue<Property.WebkitBorderBefore<string | number> | undefined> | StyleValueStateMap<Property.WebkitBorderBefore<string | number> | undefined>;
771
+ WebkitBorderImage?: StyleValue<Property.BorderImage | undefined> | StyleValueStateMap<Property.BorderImage | undefined>;
772
+ WebkitBorderRadius?: StyleValue<Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderRadius<string | number> | undefined>;
773
+ WebkitColumnRule?: StyleValue<Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<Property.ColumnRule<string | number> | undefined>;
774
+ WebkitColumns?: StyleValue<Property.Columns<string | number> | undefined> | StyleValueStateMap<Property.Columns<string | number> | undefined>;
775
+ WebkitFlex?: StyleValue<Property.Flex<string | number> | undefined> | StyleValueStateMap<Property.Flex<string | number> | undefined>;
776
+ WebkitFlexFlow?: StyleValue<Property.FlexFlow | undefined> | StyleValueStateMap<Property.FlexFlow | undefined>;
777
+ WebkitMask?: StyleValue<Property.WebkitMask<string | number> | undefined> | StyleValueStateMap<Property.WebkitMask<string | number> | undefined>;
778
+ WebkitMaskBoxImage?: StyleValue<Property.MaskBorder | undefined> | StyleValueStateMap<Property.MaskBorder | undefined>;
779
+ WebkitTextEmphasis?: StyleValue<Property.TextEmphasis | undefined> | StyleValueStateMap<Property.TextEmphasis | undefined>;
780
+ WebkitTextStroke?: StyleValue<Property.WebkitTextStroke<string | number> | undefined> | StyleValueStateMap<Property.WebkitTextStroke<string | number> | undefined>;
781
+ WebkitTransition?: StyleValue<Property.Transition<string & {}> | undefined> | StyleValueStateMap<Property.Transition<string & {}> | undefined>;
782
+ azimuth?: StyleValue<Property.Azimuth | undefined> | StyleValueStateMap<Property.Azimuth | undefined>;
783
+ boxAlign?: StyleValue<Property.BoxAlign | undefined> | StyleValueStateMap<Property.BoxAlign | undefined>;
784
+ boxDirection?: StyleValue<Property.BoxDirection | undefined> | StyleValueStateMap<Property.BoxDirection | undefined>;
785
+ boxFlex?: StyleValue<Property.BoxFlex | undefined> | StyleValueStateMap<Property.BoxFlex | undefined>;
786
+ boxFlexGroup?: StyleValue<Property.BoxFlexGroup | undefined> | StyleValueStateMap<Property.BoxFlexGroup | undefined>;
787
+ boxLines?: StyleValue<Property.BoxLines | undefined> | StyleValueStateMap<Property.BoxLines | undefined>;
788
+ boxOrdinalGroup?: StyleValue<Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<Property.BoxOrdinalGroup | undefined>;
789
+ boxOrient?: StyleValue<Property.BoxOrient | undefined> | StyleValueStateMap<Property.BoxOrient | undefined>;
790
+ boxPack?: StyleValue<Property.BoxPack | undefined> | StyleValueStateMap<Property.BoxPack | undefined>;
791
+ clip?: StyleValue<Property.Clip | undefined> | StyleValueStateMap<Property.Clip | undefined>;
792
+ gridColumnGap?: StyleValue<Property.GridColumnGap<string | number> | undefined> | StyleValueStateMap<Property.GridColumnGap<string | number> | undefined>;
793
+ gridGap?: StyleValue<Property.GridGap<string | number> | undefined> | StyleValueStateMap<Property.GridGap<string | number> | undefined>;
794
+ gridRowGap?: StyleValue<Property.GridRowGap<string | number> | undefined> | StyleValueStateMap<Property.GridRowGap<string | number> | undefined>;
795
+ imeMode?: StyleValue<Property.ImeMode | undefined> | StyleValueStateMap<Property.ImeMode | undefined>;
796
+ offsetBlock?: StyleValue<Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<Property.InsetBlock<string | number> | undefined>;
797
+ offsetBlockEnd?: StyleValue<Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<Property.InsetBlockEnd<string | number> | undefined>;
798
+ offsetBlockStart?: StyleValue<Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<Property.InsetBlockStart<string | number> | undefined>;
799
+ offsetInline?: StyleValue<Property.InsetInline<string | number> | undefined> | StyleValueStateMap<Property.InsetInline<string | number> | undefined>;
800
+ offsetInlineEnd?: StyleValue<Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<Property.InsetInlineEnd<string | number> | undefined>;
801
+ offsetInlineStart?: StyleValue<Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<Property.InsetInlineStart<string | number> | undefined>;
802
+ scrollSnapCoordinate?: StyleValue<Property.ScrollSnapCoordinate<string | number> | undefined> | StyleValueStateMap<Property.ScrollSnapCoordinate<string | number> | undefined>;
803
+ scrollSnapDestination?: StyleValue<Property.ScrollSnapDestination<string | number> | undefined> | StyleValueStateMap<Property.ScrollSnapDestination<string | number> | undefined>;
804
+ scrollSnapPointsX?: StyleValue<Property.ScrollSnapPointsX | undefined> | StyleValueStateMap<Property.ScrollSnapPointsX | undefined>;
805
+ scrollSnapPointsY?: StyleValue<Property.ScrollSnapPointsY | undefined> | StyleValueStateMap<Property.ScrollSnapPointsY | undefined>;
806
+ scrollSnapTypeX?: StyleValue<Property.ScrollSnapTypeX | undefined> | StyleValueStateMap<Property.ScrollSnapTypeX | undefined>;
807
+ scrollSnapTypeY?: StyleValue<Property.ScrollSnapTypeY | undefined> | StyleValueStateMap<Property.ScrollSnapTypeY | undefined>;
808
+ KhtmlBoxAlign?: StyleValue<Property.BoxAlign | undefined> | StyleValueStateMap<Property.BoxAlign | undefined>;
809
+ KhtmlBoxDirection?: StyleValue<Property.BoxDirection | undefined> | StyleValueStateMap<Property.BoxDirection | undefined>;
810
+ KhtmlBoxFlex?: StyleValue<Property.BoxFlex | undefined> | StyleValueStateMap<Property.BoxFlex | undefined>;
811
+ KhtmlBoxFlexGroup?: StyleValue<Property.BoxFlexGroup | undefined> | StyleValueStateMap<Property.BoxFlexGroup | undefined>;
812
+ KhtmlBoxLines?: StyleValue<Property.BoxLines | undefined> | StyleValueStateMap<Property.BoxLines | undefined>;
813
+ KhtmlBoxOrdinalGroup?: StyleValue<Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<Property.BoxOrdinalGroup | undefined>;
814
+ KhtmlBoxOrient?: StyleValue<Property.BoxOrient | undefined> | StyleValueStateMap<Property.BoxOrient | undefined>;
815
+ KhtmlBoxPack?: StyleValue<Property.BoxPack | undefined> | StyleValueStateMap<Property.BoxPack | undefined>;
816
+ KhtmlLineBreak?: StyleValue<Property.LineBreak | undefined> | StyleValueStateMap<Property.LineBreak | undefined>;
817
+ KhtmlOpacity?: StyleValue<Property.Opacity | undefined> | StyleValueStateMap<Property.Opacity | undefined>;
818
+ KhtmlUserSelect?: StyleValue<Property.UserSelect | undefined> | StyleValueStateMap<Property.UserSelect | undefined>;
819
+ MozBackgroundClip?: StyleValue<Property.BackgroundClip | undefined> | StyleValueStateMap<Property.BackgroundClip | undefined>;
820
+ MozBackgroundInlinePolicy?: StyleValue<Property.BoxDecorationBreak | undefined> | StyleValueStateMap<Property.BoxDecorationBreak | undefined>;
821
+ MozBackgroundOrigin?: StyleValue<Property.BackgroundOrigin | undefined> | StyleValueStateMap<Property.BackgroundOrigin | undefined>;
822
+ MozBackgroundSize?: StyleValue<Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<Property.BackgroundSize<string | number> | undefined>;
823
+ MozBorderRadius?: StyleValue<Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderRadius<string | number> | undefined>;
824
+ MozBorderRadiusBottomleft?: StyleValue<Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomLeftRadius<string | number> | undefined>;
825
+ MozBorderRadiusBottomright?: StyleValue<Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderBottomRightRadius<string | number> | undefined>;
826
+ MozBorderRadiusTopleft?: StyleValue<Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopLeftRadius<string | number> | undefined>;
827
+ MozBorderRadiusTopright?: StyleValue<Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<Property.BorderTopRightRadius<string | number> | undefined>;
828
+ MozBoxAlign?: StyleValue<Property.BoxAlign | undefined> | StyleValueStateMap<Property.BoxAlign | undefined>;
829
+ MozBoxDirection?: StyleValue<Property.BoxDirection | undefined> | StyleValueStateMap<Property.BoxDirection | undefined>;
830
+ MozBoxFlex?: StyleValue<Property.BoxFlex | undefined> | StyleValueStateMap<Property.BoxFlex | undefined>;
831
+ MozBoxOrdinalGroup?: StyleValue<Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<Property.BoxOrdinalGroup | undefined>;
832
+ MozBoxOrient?: StyleValue<Property.BoxOrient | undefined> | StyleValueStateMap<Property.BoxOrient | undefined>;
833
+ MozBoxPack?: StyleValue<Property.BoxPack | undefined> | StyleValueStateMap<Property.BoxPack | undefined>;
834
+ MozBoxShadow?: StyleValue<Property.BoxShadow | undefined> | StyleValueStateMap<Property.BoxShadow | undefined>;
835
+ MozFloatEdge?: StyleValue<Property.MozFloatEdge | undefined> | StyleValueStateMap<Property.MozFloatEdge | undefined>;
836
+ MozForceBrokenImageIcon?: StyleValue<Property.MozForceBrokenImageIcon | undefined> | StyleValueStateMap<Property.MozForceBrokenImageIcon | undefined>;
837
+ MozOpacity?: StyleValue<Property.Opacity | undefined> | StyleValueStateMap<Property.Opacity | undefined>;
838
+ MozOutline?: StyleValue<Property.Outline<string | number> | undefined> | StyleValueStateMap<Property.Outline<string | number> | undefined>;
839
+ MozOutlineColor?: StyleValue<Property.OutlineColor | undefined> | StyleValueStateMap<Property.OutlineColor | undefined>;
840
+ MozOutlineRadius?: StyleValue<Property.MozOutlineRadius<string | number> | undefined> | StyleValueStateMap<Property.MozOutlineRadius<string | number> | undefined>;
841
+ MozOutlineRadiusBottomleft?: StyleValue<Property.MozOutlineRadiusBottomleft<string | number> | undefined> | StyleValueStateMap<Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
842
+ MozOutlineRadiusBottomright?: StyleValue<Property.MozOutlineRadiusBottomright<string | number> | undefined> | StyleValueStateMap<Property.MozOutlineRadiusBottomright<string | number> | undefined>;
843
+ MozOutlineRadiusTopleft?: StyleValue<Property.MozOutlineRadiusTopleft<string | number> | undefined> | StyleValueStateMap<Property.MozOutlineRadiusTopleft<string | number> | undefined>;
844
+ MozOutlineRadiusTopright?: StyleValue<Property.MozOutlineRadiusTopright<string | number> | undefined> | StyleValueStateMap<Property.MozOutlineRadiusTopright<string | number> | undefined>;
845
+ MozOutlineStyle?: StyleValue<Property.OutlineStyle | undefined> | StyleValueStateMap<Property.OutlineStyle | undefined>;
846
+ MozOutlineWidth?: StyleValue<Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<Property.OutlineWidth<string | number> | undefined>;
847
+ MozTextAlignLast?: StyleValue<Property.TextAlignLast | undefined> | StyleValueStateMap<Property.TextAlignLast | undefined>;
848
+ MozTextDecorationColor?: StyleValue<Property.TextDecorationColor | undefined> | StyleValueStateMap<Property.TextDecorationColor | undefined>;
849
+ MozTextDecorationLine?: StyleValue<Property.TextDecorationLine | undefined> | StyleValueStateMap<Property.TextDecorationLine | undefined>;
850
+ MozTextDecorationStyle?: StyleValue<Property.TextDecorationStyle | undefined> | StyleValueStateMap<Property.TextDecorationStyle | undefined>;
851
+ MozUserInput?: StyleValue<Property.MozUserInput | undefined> | StyleValueStateMap<Property.MozUserInput | undefined>;
852
+ msImeMode?: StyleValue<Property.ImeMode | undefined> | StyleValueStateMap<Property.ImeMode | undefined>;
853
+ OAnimation?: StyleValue<Property.Animation<string & {}> | undefined> | StyleValueStateMap<Property.Animation<string & {}> | undefined>;
854
+ OAnimationDelay?: StyleValue<Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDelay<string & {}> | undefined>;
855
+ OAnimationDirection?: StyleValue<Property.AnimationDirection | undefined> | StyleValueStateMap<Property.AnimationDirection | undefined>;
856
+ OAnimationDuration?: StyleValue<Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<Property.AnimationDuration<string & {}> | undefined>;
857
+ OAnimationFillMode?: StyleValue<Property.AnimationFillMode | undefined> | StyleValueStateMap<Property.AnimationFillMode | undefined>;
858
+ OAnimationIterationCount?: StyleValue<Property.AnimationIterationCount | undefined> | StyleValueStateMap<Property.AnimationIterationCount | undefined>;
859
+ OAnimationName?: StyleValue<Property.AnimationName | undefined> | StyleValueStateMap<Property.AnimationName | undefined>;
860
+ OAnimationPlayState?: StyleValue<Property.AnimationPlayState | undefined> | StyleValueStateMap<Property.AnimationPlayState | undefined>;
861
+ OAnimationTimingFunction?: StyleValue<Property.AnimationTimingFunction | undefined> | StyleValueStateMap<Property.AnimationTimingFunction | undefined>;
862
+ OBackgroundSize?: StyleValue<Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<Property.BackgroundSize<string | number> | undefined>;
863
+ OBorderImage?: StyleValue<Property.BorderImage | undefined> | StyleValueStateMap<Property.BorderImage | undefined>;
864
+ OObjectFit?: StyleValue<Property.ObjectFit | undefined> | StyleValueStateMap<Property.ObjectFit | undefined>;
865
+ OObjectPosition?: StyleValue<Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<Property.ObjectPosition<string | number> | undefined>;
866
+ OTabSize?: StyleValue<Property.TabSize<string | number> | undefined> | StyleValueStateMap<Property.TabSize<string | number> | undefined>;
867
+ OTextOverflow?: StyleValue<Property.TextOverflow | undefined> | StyleValueStateMap<Property.TextOverflow | undefined>;
868
+ OTransform?: StyleValue<Property.Transform | undefined> | StyleValueStateMap<Property.Transform | undefined>;
869
+ OTransformOrigin?: StyleValue<Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<Property.TransformOrigin<string | number> | undefined>;
870
+ OTransition?: StyleValue<Property.Transition<string & {}> | undefined> | StyleValueStateMap<Property.Transition<string & {}> | undefined>;
871
+ OTransitionDelay?: StyleValue<Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDelay<string & {}> | undefined>;
872
+ OTransitionDuration?: StyleValue<Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<Property.TransitionDuration<string & {}> | undefined>;
873
+ OTransitionProperty?: StyleValue<Property.TransitionProperty | undefined> | StyleValueStateMap<Property.TransitionProperty | undefined>;
874
+ OTransitionTimingFunction?: StyleValue<Property.TransitionTimingFunction | undefined> | StyleValueStateMap<Property.TransitionTimingFunction | undefined>;
875
+ WebkitBoxAlign?: StyleValue<Property.BoxAlign | undefined> | StyleValueStateMap<Property.BoxAlign | undefined>;
876
+ WebkitBoxDirection?: StyleValue<Property.BoxDirection | undefined> | StyleValueStateMap<Property.BoxDirection | undefined>;
877
+ WebkitBoxFlex?: StyleValue<Property.BoxFlex | undefined> | StyleValueStateMap<Property.BoxFlex | undefined>;
878
+ WebkitBoxFlexGroup?: StyleValue<Property.BoxFlexGroup | undefined> | StyleValueStateMap<Property.BoxFlexGroup | undefined>;
879
+ WebkitBoxLines?: StyleValue<Property.BoxLines | undefined> | StyleValueStateMap<Property.BoxLines | undefined>;
880
+ WebkitBoxOrdinalGroup?: StyleValue<Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<Property.BoxOrdinalGroup | undefined>;
881
+ WebkitBoxOrient?: StyleValue<Property.BoxOrient | undefined> | StyleValueStateMap<Property.BoxOrient | undefined>;
882
+ WebkitBoxPack?: StyleValue<Property.BoxPack | undefined> | StyleValueStateMap<Property.BoxPack | undefined>;
883
+ WebkitScrollSnapPointsX?: StyleValue<Property.ScrollSnapPointsX | undefined> | StyleValueStateMap<Property.ScrollSnapPointsX | undefined>;
884
+ WebkitScrollSnapPointsY?: StyleValue<Property.ScrollSnapPointsY | undefined> | StyleValueStateMap<Property.ScrollSnapPointsY | undefined>;
885
+ alignmentBaseline?: StyleValue<Property.AlignmentBaseline | undefined> | StyleValueStateMap<Property.AlignmentBaseline | undefined>;
886
+ baselineShift?: StyleValue<Property.BaselineShift<string | number> | undefined> | StyleValueStateMap<Property.BaselineShift<string | number> | undefined>;
887
+ clipRule?: StyleValue<Property.ClipRule | undefined> | StyleValueStateMap<Property.ClipRule | undefined>;
888
+ colorInterpolation?: StyleValue<Property.ColorInterpolation | undefined> | StyleValueStateMap<Property.ColorInterpolation | undefined>;
889
+ colorRendering?: StyleValue<Property.ColorRendering | undefined> | StyleValueStateMap<Property.ColorRendering | undefined>;
890
+ dominantBaseline?: StyleValue<Property.DominantBaseline | undefined> | StyleValueStateMap<Property.DominantBaseline | undefined>;
891
+ fillOpacity?: StyleValue<Property.FillOpacity | undefined> | StyleValueStateMap<Property.FillOpacity | undefined>;
892
+ fillRule?: StyleValue<Property.FillRule | undefined> | StyleValueStateMap<Property.FillRule | undefined>;
893
+ floodColor?: StyleValue<Property.FloodColor | undefined> | StyleValueStateMap<Property.FloodColor | undefined>;
894
+ floodOpacity?: StyleValue<Property.FloodOpacity | undefined> | StyleValueStateMap<Property.FloodOpacity | undefined>;
895
+ glyphOrientationVertical?: StyleValue<Property.GlyphOrientationVertical | undefined> | StyleValueStateMap<Property.GlyphOrientationVertical | undefined>;
896
+ lightingColor?: StyleValue<Property.LightingColor | undefined> | StyleValueStateMap<Property.LightingColor | undefined>;
897
+ marker?: StyleValue<Property.Marker | undefined> | StyleValueStateMap<Property.Marker | undefined>;
898
+ markerEnd?: StyleValue<Property.MarkerEnd | undefined> | StyleValueStateMap<Property.MarkerEnd | undefined>;
899
+ markerMid?: StyleValue<Property.MarkerMid | undefined> | StyleValueStateMap<Property.MarkerMid | undefined>;
900
+ markerStart?: StyleValue<Property.MarkerStart | undefined> | StyleValueStateMap<Property.MarkerStart | undefined>;
901
+ shapeRendering?: StyleValue<Property.ShapeRendering | undefined> | StyleValueStateMap<Property.ShapeRendering | undefined>;
902
+ stopColor?: StyleValue<Property.StopColor | undefined> | StyleValueStateMap<Property.StopColor | undefined>;
903
+ stopOpacity?: StyleValue<Property.StopOpacity | undefined> | StyleValueStateMap<Property.StopOpacity | undefined>;
904
+ stroke?: StyleValue<Property.Stroke | undefined> | StyleValueStateMap<Property.Stroke | undefined>;
905
+ strokeDasharray?: StyleValue<Property.StrokeDasharray<string | number> | undefined> | StyleValueStateMap<Property.StrokeDasharray<string | number> | undefined>;
906
+ strokeDashoffset?: StyleValue<Property.StrokeDashoffset<string | number> | undefined> | StyleValueStateMap<Property.StrokeDashoffset<string | number> | undefined>;
907
+ strokeLinecap?: StyleValue<Property.StrokeLinecap | undefined> | StyleValueStateMap<Property.StrokeLinecap | undefined>;
908
+ strokeLinejoin?: StyleValue<Property.StrokeLinejoin | undefined> | StyleValueStateMap<Property.StrokeLinejoin | undefined>;
909
+ strokeMiterlimit?: StyleValue<Property.StrokeMiterlimit | undefined> | StyleValueStateMap<Property.StrokeMiterlimit | undefined>;
910
+ strokeOpacity?: StyleValue<Property.StrokeOpacity | undefined> | StyleValueStateMap<Property.StrokeOpacity | undefined>;
911
+ strokeWidth?: StyleValue<Property.StrokeWidth<string | number> | undefined> | StyleValueStateMap<Property.StrokeWidth<string | number> | undefined>;
912
+ textAnchor?: StyleValue<Property.TextAnchor | undefined> | StyleValueStateMap<Property.TextAnchor | undefined>;
913
+ vectorEffect?: StyleValue<Property.VectorEffect | undefined> | StyleValueStateMap<Property.VectorEffect | undefined>;
914
+ image?: StyleValue<Property.BackgroundImage | undefined> | StyleValueStateMap<Property.BackgroundImage | undefined>;
915
+ svgFill?: StyleValue<(string & {}) | `#${string}` | `#${string}.0` | `#${string}.3` | `#${string}.7` | `#${string}.4` | `#${string}.6` | `#${string}.1` | `#${string}.2` | `#${string}.5` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.03` | `#${string}.07` | `#${string}.04` | `#${string}.06` | `#${string}.01` | `#${string}.02` | `#${string}.05` | `#${string}.08` | `#${string}.09` | `#${string}.30` | `#${string}.33` | `#${string}.37` | `#${string}.34` | `#${string}.36` | `#${string}.31` | `#${string}.32` | `#${string}.35` | `#${string}.38` | `#${string}.39` | `#${string}.70` | `#${string}.73` | `#${string}.77` | `#${string}.74` | `#${string}.76` | `#${string}.71` | `#${string}.72` | `#${string}.75` | `#${string}.78` | `#${string}.79` | `#${string}.40` | `#${string}.43` | `#${string}.47` | `#${string}.44` | `#${string}.46` | `#${string}.41` | `#${string}.42` | `#${string}.45` | `#${string}.48` | `#${string}.49` | `#${string}.60` | `#${string}.63` | `#${string}.67` | `#${string}.64` | `#${string}.66` | `#${string}.61` | `#${string}.62` | `#${string}.65` | `#${string}.68` | `#${string}.69` | `#${string}.10` | `#${string}.13` | `#${string}.17` | `#${string}.14` | `#${string}.16` | `#${string}.11` | `#${string}.12` | `#${string}.15` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.23` | `#${string}.27` | `#${string}.24` | `#${string}.26` | `#${string}.21` | `#${string}.22` | `#${string}.25` | `#${string}.28` | `#${string}.29` | `#${string}.50` | `#${string}.53` | `#${string}.57` | `#${string}.54` | `#${string}.56` | `#${string}.51` | `#${string}.52` | `#${string}.55` | `#${string}.58` | `#${string}.59` | `#${string}.80` | `#${string}.83` | `#${string}.87` | `#${string}.84` | `#${string}.86` | `#${string}.81` | `#${string}.82` | `#${string}.85` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.93` | `#${string}.97` | `#${string}.94` | `#${string}.96` | `#${string}.91` | `#${string}.92` | `#${string}.95` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined> | StyleValueStateMap<(string & {}) | `#${string}` | `#${string}.0` | `#${string}.3` | `#${string}.7` | `#${string}.4` | `#${string}.6` | `#${string}.1` | `#${string}.2` | `#${string}.5` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.03` | `#${string}.07` | `#${string}.04` | `#${string}.06` | `#${string}.01` | `#${string}.02` | `#${string}.05` | `#${string}.08` | `#${string}.09` | `#${string}.30` | `#${string}.33` | `#${string}.37` | `#${string}.34` | `#${string}.36` | `#${string}.31` | `#${string}.32` | `#${string}.35` | `#${string}.38` | `#${string}.39` | `#${string}.70` | `#${string}.73` | `#${string}.77` | `#${string}.74` | `#${string}.76` | `#${string}.71` | `#${string}.72` | `#${string}.75` | `#${string}.78` | `#${string}.79` | `#${string}.40` | `#${string}.43` | `#${string}.47` | `#${string}.44` | `#${string}.46` | `#${string}.41` | `#${string}.42` | `#${string}.45` | `#${string}.48` | `#${string}.49` | `#${string}.60` | `#${string}.63` | `#${string}.67` | `#${string}.64` | `#${string}.66` | `#${string}.61` | `#${string}.62` | `#${string}.65` | `#${string}.68` | `#${string}.69` | `#${string}.10` | `#${string}.13` | `#${string}.17` | `#${string}.14` | `#${string}.16` | `#${string}.11` | `#${string}.12` | `#${string}.15` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.23` | `#${string}.27` | `#${string}.24` | `#${string}.26` | `#${string}.21` | `#${string}.22` | `#${string}.25` | `#${string}.28` | `#${string}.29` | `#${string}.50` | `#${string}.53` | `#${string}.57` | `#${string}.54` | `#${string}.56` | `#${string}.51` | `#${string}.52` | `#${string}.55` | `#${string}.58` | `#${string}.59` | `#${string}.80` | `#${string}.83` | `#${string}.87` | `#${string}.84` | `#${string}.86` | `#${string}.81` | `#${string}.82` | `#${string}.85` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.93` | `#${string}.97` | `#${string}.94` | `#${string}.96` | `#${string}.91` | `#${string}.92` | `#${string}.95` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined>;
916
+ fade?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
917
+ styledScrollbar?: StyleValue<boolean | undefined> | StyleValueStateMap<boolean | undefined>;
918
+ scrollbar?: StyleValue<string | number | boolean | undefined> | StyleValueStateMap<string | number | boolean | undefined>;
919
+ boldFontWeight?: StyleValue<number | undefined> | StyleValueStateMap<number | undefined>;
920
+ hide?: StyleValue<boolean | undefined> | StyleValueStateMap<boolean | undefined>;
921
+ shadow?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
922
+ radius?: StyleValue<string | true | undefined> | StyleValueStateMap<string | true | undefined>;
923
+ flow?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
924
+ gridAreas?: StyleValue<Property.GridTemplateAreas | undefined> | StyleValueStateMap<Property.GridTemplateAreas | undefined>;
925
+ gridColumns?: StyleValue<Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<Property.GridTemplateColumns<string | number> | undefined>;
926
+ gridRows?: StyleValue<Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<Property.GridTemplateRows<string | number> | undefined>;
927
+ preset?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
928
+ justify?: StyleValue<"start" | (string & {}) | "left" | "right" | "center" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "normal" | "baseline" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | "legacy" | undefined> | StyleValueStateMap<"start" | (string & {}) | "left" | "right" | "center" | "inherit" | "-moz-initial" | "initial" | "revert" | "revert-layer" | "unset" | "normal" | "baseline" | "end" | "flex-end" | "flex-start" | "self-end" | "self-start" | "stretch" | "space-around" | "space-between" | "space-evenly" | "legacy" | undefined>;
929
+ place?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
930
+ "@keyframes"?: StyleValue<Record<string, KeyframesSteps> | undefined> | StyleValueStateMap<Record<string, KeyframesSteps> | undefined>;
931
+ "@properties"?: StyleValue<Record<string, PropertyDefinition> | undefined> | StyleValueStateMap<Record<string, PropertyDefinition> | undefined>;
932
+ recipe?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
933
+ } & BaseStyleProps & WithVariant<VariantMap> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof react.ClassAttributes<HTMLDivElement> | keyof react.HTMLAttributes<HTMLDivElement>> & react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement>, "ref" | "style" | "css" | "content" | "translate" | "as" | "background" | "align" | "border" | "color" | "height" | "width" | "fill" | "font" | "outline" | "gap" | "padding" | "margin" | "transition" | "placeContent" | "placeItems" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimeline" | "animationTimingFunction" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "blockOverflow" | "blockSize" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBlockStyle" | "borderBlockWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineColor" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "borderInlineStyle" | "borderInlineWidth" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStartEndRadius" | "borderStartStartRadius" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "bottom" | "boxDecorationBreak" | "boxShadow" | "boxSizing" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "caretColor" | "caretShape" | "clear" | "clipPath" | "colorAdjust" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "containerName" | "containerType" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "direction" | "display" | "emptyCells" | "filter" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontSmooth" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "inlineSize" | "inputSecurity" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lineBreak" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "motionDistance" | "motionPath" | "motionRotation" | "objectFit" | "objectPosition" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "offsetRotation" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflowAnchor" | "overflowBlock" | "overflowClipBox" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "printColorAdjust" | "quotes" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyPosition" | "scale" | "scrollBehavior" | "scrollMarginBlockEnd" | "scrollMarginBlockStart" | "scrollMarginBottom" | "scrollMarginInlineEnd" | "scrollMarginInlineStart" | "scrollMarginLeft" | "scrollMarginRight" | "scrollMarginTop" | "scrollPaddingBlockEnd" | "scrollPaddingBlockStart" | "scrollPaddingBottom" | "scrollPaddingInlineEnd" | "scrollPaddingInlineStart" | "scrollPaddingLeft" | "scrollPaddingRight" | "scrollPaddingTop" | "scrollSnapAlign" | "scrollSnapMarginBottom" | "scrollSnapMarginLeft" | "scrollSnapMarginRight" | "scrollSnapMarginTop" | "scrollSnapStop" | "scrollSnapType" | "scrollTimelineAxis" | "scrollTimelineName" | "scrollbarColor" | "scrollbarGutter" | "scrollbarWidth" | "shapeImageThreshold" | "shapeMargin" | "shapeOutside" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "top" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "unicodeBidi" | "userSelect" | "verticalAlign" | "viewTransitionName" | "visibility" | "whiteSpace" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "zIndex" | "zoom" | "all" | "animation" | "backgroundPosition" | "borderBlock" | "borderBlockEnd" | "borderBlockStart" | "borderBottom" | "borderColor" | "borderImage" | "borderInline" | "borderInlineEnd" | "borderInlineStart" | "borderLeft" | "borderRadius" | "borderRight" | "borderStyle" | "borderTop" | "borderWidth" | "caret" | "columnRule" | "columns" | "containIntrinsicSize" | "container" | "flex" | "flexFlow" | "grid" | "gridArea" | "gridColumn" | "gridRow" | "gridTemplate" | "inset" | "insetBlock" | "insetInline" | "lineClamp" | "listStyle" | "marginBlock" | "marginInline" | "mask" | "maskBorder" | "motion" | "offset" | "overflow" | "overscrollBehavior" | "paddingBlock" | "paddingInline" | "placeSelf" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginInline" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingInline" | "scrollSnapMargin" | "scrollTimeline" | "textDecoration" | "textEmphasis" | "MozAnimationDelay" | "MozAnimationDirection" | "MozAnimationDuration" | "MozAnimationFillMode" | "MozAnimationIterationCount" | "MozAnimationName" | "MozAnimationPlayState" | "MozAnimationTimingFunction" | "MozAppearance" | "MozBackfaceVisibility" | "MozBinding" | "MozBorderBottomColors" | "MozBorderEndColor" | "MozBorderEndStyle" | "MozBorderEndWidth" | "MozBorderLeftColors" | "MozBorderRightColors" | "MozBorderStartColor" | "MozBorderStartStyle" | "MozBorderTopColors" | "MozBoxSizing" | "MozColumnCount" | "MozColumnFill" | "MozColumnRuleColor" | "MozColumnRuleStyle" | "MozColumnRuleWidth" | "MozColumnWidth" | "MozContextProperties" | "MozFontFeatureSettings" | "MozFontLanguageOverride" | "MozHyphens" | "MozImageRegion" | "MozMarginEnd" | "MozMarginStart" | "MozOrient" | "MozOsxFontSmoothing" | "MozPaddingEnd" | "MozPaddingStart" | "MozPerspective" | "MozPerspectiveOrigin" | "MozStackSizing" | "MozTabSize" | "MozTextBlink" | "MozTextSizeAdjust" | "MozTransformOrigin" | "MozTransformStyle" | "MozTransitionDelay" | "MozTransitionDuration" | "MozTransitionProperty" | "MozTransitionTimingFunction" | "MozUserFocus" | "MozUserModify" | "MozUserSelect" | "MozWindowDragging" | "MozWindowShadow" | "msAccelerator" | "msBlockProgression" | "msContentZoomChaining" | "msContentZoomLimitMax" | "msContentZoomLimitMin" | "msContentZoomSnapPoints" | "msContentZoomSnapType" | "msContentZooming" | "msFilter" | "msFlexDirection" | "msFlexPositive" | "msFlowFrom" | "msFlowInto" | "msGridColumns" | "msGridRows" | "msHighContrastAdjust" | "msHyphenateLimitChars" | "msHyphenateLimitLines" | "msHyphenateLimitZone" | "msHyphens" | "msImeAlign" | "msLineBreak" | "msOrder" | "msOverflowStyle" | "msOverflowX" | "msOverflowY" | "msScrollChaining" | "msScrollLimitXMax" | "msScrollLimitXMin" | "msScrollLimitYMax" | "msScrollLimitYMin" | "msScrollRails" | "msScrollSnapPointsX" | "msScrollSnapPointsY" | "msScrollSnapType" | "msScrollTranslation" | "msScrollbar3dlightColor" | "msScrollbarArrowColor" | "msScrollbarBaseColor" | "msScrollbarDarkshadowColor" | "msScrollbarFaceColor" | "msScrollbarHighlightColor" | "msScrollbarShadowColor" | "msScrollbarTrackColor" | "msTextAutospace" | "msTextCombineHorizontal" | "msTextOverflow" | "msTouchAction" | "msTouchSelect" | "msTransform" | "msTransformOrigin" | "msTransitionDelay" | "msTransitionDuration" | "msTransitionProperty" | "msTransitionTimingFunction" | "msUserSelect" | "msWordBreak" | "msWrapFlow" | "msWrapMargin" | "msWrapThrough" | "msWritingMode" | "WebkitAlignContent" | "WebkitAlignItems" | "WebkitAlignSelf" | "WebkitAnimationDelay" | "WebkitAnimationDirection" | "WebkitAnimationDuration" | "WebkitAnimationFillMode" | "WebkitAnimationIterationCount" | "WebkitAnimationName" | "WebkitAnimationPlayState" | "WebkitAnimationTimingFunction" | "WebkitAppearance" | "WebkitBackdropFilter" | "WebkitBackfaceVisibility" | "WebkitBackgroundClip" | "WebkitBackgroundOrigin" | "WebkitBackgroundSize" | "WebkitBorderBeforeColor" | "WebkitBorderBeforeStyle" | "WebkitBorderBeforeWidth" | "WebkitBorderBottomLeftRadius" | "WebkitBorderBottomRightRadius" | "WebkitBorderImageSlice" | "WebkitBorderTopLeftRadius" | "WebkitBorderTopRightRadius" | "WebkitBoxDecorationBreak" | "WebkitBoxReflect" | "WebkitBoxShadow" | "WebkitBoxSizing" | "WebkitClipPath" | "WebkitColumnCount" | "WebkitColumnFill" | "WebkitColumnRuleColor" | "WebkitColumnRuleStyle" | "WebkitColumnRuleWidth" | "WebkitColumnSpan" | "WebkitColumnWidth" | "WebkitFilter" | "WebkitFlexBasis" | "WebkitFlexDirection" | "WebkitFlexGrow" | "WebkitFlexShrink" | "WebkitFlexWrap" | "WebkitFontFeatureSettings" | "WebkitFontKerning" | "WebkitFontSmoothing" | "WebkitFontVariantLigatures" | "WebkitHyphenateCharacter" | "WebkitHyphens" | "WebkitInitialLetter" | "WebkitJustifyContent" | "WebkitLineBreak" | "WebkitLineClamp" | "WebkitMarginEnd" | "WebkitMarginStart" | "WebkitMaskAttachment" | "WebkitMaskBoxImageOutset" | "WebkitMaskBoxImageRepeat" | "WebkitMaskBoxImageSlice" | "WebkitMaskBoxImageSource" | "WebkitMaskBoxImageWidth" | "WebkitMaskClip" | "WebkitMaskComposite" | "WebkitMaskImage" | "WebkitMaskOrigin" | "WebkitMaskPosition" | "WebkitMaskPositionX" | "WebkitMaskPositionY" | "WebkitMaskRepeat" | "WebkitMaskRepeatX" | "WebkitMaskRepeatY" | "WebkitMaskSize" | "WebkitMaxInlineSize" | "WebkitOrder" | "WebkitOverflowScrolling" | "WebkitPaddingEnd" | "WebkitPaddingStart" | "WebkitPerspective" | "WebkitPerspectiveOrigin" | "WebkitPrintColorAdjust" | "WebkitRubyPosition" | "WebkitScrollSnapType" | "WebkitShapeMargin" | "WebkitTapHighlightColor" | "WebkitTextCombine" | "WebkitTextDecorationColor" | "WebkitTextDecorationLine" | "WebkitTextDecorationSkip" | "WebkitTextDecorationStyle" | "WebkitTextEmphasisColor" | "WebkitTextEmphasisPosition" | "WebkitTextEmphasisStyle" | "WebkitTextFillColor" | "WebkitTextOrientation" | "WebkitTextSizeAdjust" | "WebkitTextStrokeColor" | "WebkitTextStrokeWidth" | "WebkitTextUnderlinePosition" | "WebkitTouchCallout" | "WebkitTransform" | "WebkitTransformOrigin" | "WebkitTransformStyle" | "WebkitTransitionDelay" | "WebkitTransitionDuration" | "WebkitTransitionProperty" | "WebkitTransitionTimingFunction" | "WebkitUserModify" | "WebkitUserSelect" | "WebkitWritingMode" | "MozAnimation" | "MozBorderImage" | "MozColumnRule" | "MozColumns" | "MozTransition" | "msContentZoomLimit" | "msContentZoomSnap" | "msFlex" | "msScrollLimit" | "msScrollSnapX" | "msScrollSnapY" | "msTransition" | "WebkitAnimation" | "WebkitBorderBefore" | "WebkitBorderImage" | "WebkitBorderRadius" | "WebkitColumnRule" | "WebkitColumns" | "WebkitFlex" | "WebkitFlexFlow" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitTextEmphasis" | "WebkitTextStroke" | "WebkitTransition" | "azimuth" | "boxAlign" | "boxDirection" | "boxFlex" | "boxFlexGroup" | "boxLines" | "boxOrdinalGroup" | "boxOrient" | "boxPack" | "clip" | "gridColumnGap" | "gridGap" | "gridRowGap" | "imeMode" | "offsetBlock" | "offsetBlockEnd" | "offsetBlockStart" | "offsetInline" | "offsetInlineEnd" | "offsetInlineStart" | "scrollSnapCoordinate" | "scrollSnapDestination" | "scrollSnapPointsX" | "scrollSnapPointsY" | "scrollSnapTypeX" | "scrollSnapTypeY" | "KhtmlBoxAlign" | "KhtmlBoxDirection" | "KhtmlBoxFlex" | "KhtmlBoxFlexGroup" | "KhtmlBoxLines" | "KhtmlBoxOrdinalGroup" | "KhtmlBoxOrient" | "KhtmlBoxPack" | "KhtmlLineBreak" | "KhtmlOpacity" | "KhtmlUserSelect" | "MozBackgroundClip" | "MozBackgroundInlinePolicy" | "MozBackgroundOrigin" | "MozBackgroundSize" | "MozBorderRadius" | "MozBorderRadiusBottomleft" | "MozBorderRadiusBottomright" | "MozBorderRadiusTopleft" | "MozBorderRadiusTopright" | "MozBoxAlign" | "MozBoxDirection" | "MozBoxFlex" | "MozBoxOrdinalGroup" | "MozBoxOrient" | "MozBoxPack" | "MozBoxShadow" | "MozFloatEdge" | "MozForceBrokenImageIcon" | "MozOpacity" | "MozOutline" | "MozOutlineColor" | "MozOutlineRadius" | "MozOutlineRadiusBottomleft" | "MozOutlineRadiusBottomright" | "MozOutlineRadiusTopleft" | "MozOutlineRadiusTopright" | "MozOutlineStyle" | "MozOutlineWidth" | "MozTextAlignLast" | "MozTextDecorationColor" | "MozTextDecorationLine" | "MozTextDecorationStyle" | "MozUserInput" | "msImeMode" | "OAnimation" | "OAnimationDelay" | "OAnimationDirection" | "OAnimationDuration" | "OAnimationFillMode" | "OAnimationIterationCount" | "OAnimationName" | "OAnimationPlayState" | "OAnimationTimingFunction" | "OBackgroundSize" | "OBorderImage" | "OObjectFit" | "OObjectPosition" | "OTabSize" | "OTextOverflow" | "OTransform" | "OTransformOrigin" | "OTransition" | "OTransitionDelay" | "OTransitionDuration" | "OTransitionProperty" | "OTransitionTimingFunction" | "WebkitBoxAlign" | "WebkitBoxDirection" | "WebkitBoxFlex" | "WebkitBoxFlexGroup" | "WebkitBoxLines" | "WebkitBoxOrdinalGroup" | "WebkitBoxOrient" | "WebkitBoxPack" | "WebkitScrollSnapPointsX" | "WebkitScrollSnapPointsY" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "marker" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "image" | "svgFill" | "fade" | "styledScrollbar" | "scrollbar" | "boldFontWeight" | "hide" | "shadow" | "radius" | "flow" | "gridAreas" | "gridColumns" | "gridRows" | "preset" | "justify" | "place" | "@keyframes" | "@properties" | "recipe" | "qa" | "inline" | "qaVal" | "element" | "styles" | "breakpoints" | "block" | "mods" | "isHidden" | "isDisabled" | "theme" | "tokens"> & RefAttributes<unknown>> & SubElementComponents<{}>;
934
+ //#endregion
935
+ export { AllBasePropsWithMods, Element, ElementsDefinition, SubElementDefinition, SubElementProps, TastyElementOptions, TastyElementProps, TastyProps, VariantMap, WithVariant, tasty };
936
+ //# sourceMappingURL=tasty.d.ts.map