@tenphi/tasty 0.1.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 (359) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +236 -0
  3. package/dist/_virtual/_rolldown/runtime.mjs +7 -0
  4. package/dist/chunks/cacheKey.d.ts +1 -0
  5. package/dist/chunks/cacheKey.js +70 -0
  6. package/dist/chunks/cacheKey.js.map +1 -0
  7. package/dist/chunks/cacheKey.mjs +70 -0
  8. package/dist/chunks/cacheKey.mjs.map +1 -0
  9. package/dist/chunks/definitions.d.ts +37 -0
  10. package/dist/chunks/definitions.js +260 -0
  11. package/dist/chunks/definitions.js.map +1 -0
  12. package/dist/chunks/definitions.mjs +260 -0
  13. package/dist/chunks/definitions.mjs.map +1 -0
  14. package/dist/chunks/index.d.ts +3 -0
  15. package/dist/chunks/renderChunk.d.ts +2 -0
  16. package/dist/chunks/renderChunk.js +61 -0
  17. package/dist/chunks/renderChunk.js.map +1 -0
  18. package/dist/chunks/renderChunk.mjs +61 -0
  19. package/dist/chunks/renderChunk.mjs.map +1 -0
  20. package/dist/config.d.ts +279 -0
  21. package/dist/config.js +400 -0
  22. package/dist/config.js.map +1 -0
  23. package/dist/config.mjs +231 -0
  24. package/dist/config.mjs.map +1 -0
  25. package/dist/css-writer.d.mts +45 -0
  26. package/dist/css-writer.mjs +74 -0
  27. package/dist/css-writer.mjs.map +1 -0
  28. package/dist/debug.d.ts +204 -0
  29. package/dist/debug.js +733 -0
  30. package/dist/debug.js.map +1 -0
  31. package/dist/extractor.d.mts +24 -0
  32. package/dist/extractor.mjs +150 -0
  33. package/dist/extractor.mjs.map +1 -0
  34. package/dist/hooks/index.d.ts +5 -0
  35. package/dist/hooks/useGlobalStyles.d.ts +27 -0
  36. package/dist/hooks/useGlobalStyles.js +56 -0
  37. package/dist/hooks/useGlobalStyles.js.map +1 -0
  38. package/dist/hooks/useKeyframes.d.ts +56 -0
  39. package/dist/hooks/useKeyframes.js +54 -0
  40. package/dist/hooks/useKeyframes.js.map +1 -0
  41. package/dist/hooks/useProperty.d.ts +79 -0
  42. package/dist/hooks/useProperty.js +91 -0
  43. package/dist/hooks/useProperty.js.map +1 -0
  44. package/dist/hooks/useRawCSS.d.ts +53 -0
  45. package/dist/hooks/useRawCSS.js +28 -0
  46. package/dist/hooks/useRawCSS.js.map +1 -0
  47. package/dist/hooks/useStyles.d.ts +40 -0
  48. package/dist/hooks/useStyles.js +169 -0
  49. package/dist/hooks/useStyles.js.map +1 -0
  50. package/dist/index.d.ts +38 -0
  51. package/dist/index.js +30 -0
  52. package/dist/injector/index.d.ts +157 -0
  53. package/dist/injector/index.js +154 -0
  54. package/dist/injector/index.js.map +1 -0
  55. package/dist/injector/injector.d.ts +139 -0
  56. package/dist/injector/injector.js +404 -0
  57. package/dist/injector/injector.js.map +1 -0
  58. package/dist/injector/injector.mjs +404 -0
  59. package/dist/injector/injector.mjs.map +1 -0
  60. package/dist/injector/sheet-manager.d.ts +127 -0
  61. package/dist/injector/sheet-manager.js +714 -0
  62. package/dist/injector/sheet-manager.js.map +1 -0
  63. package/dist/injector/sheet-manager.mjs +714 -0
  64. package/dist/injector/sheet-manager.mjs.map +1 -0
  65. package/dist/injector/types.d.mts +18 -0
  66. package/dist/injector/types.d.ts +135 -0
  67. package/dist/keyframes/index.js +206 -0
  68. package/dist/keyframes/index.js.map +1 -0
  69. package/dist/keyframes/index.mjs +156 -0
  70. package/dist/keyframes/index.mjs.map +1 -0
  71. package/dist/parser/classify.js +319 -0
  72. package/dist/parser/classify.js.map +1 -0
  73. package/dist/parser/classify.mjs +319 -0
  74. package/dist/parser/classify.mjs.map +1 -0
  75. package/dist/parser/const.js +33 -0
  76. package/dist/parser/const.js.map +1 -0
  77. package/dist/parser/const.mjs +33 -0
  78. package/dist/parser/const.mjs.map +1 -0
  79. package/dist/parser/lru.js +109 -0
  80. package/dist/parser/lru.js.map +1 -0
  81. package/dist/parser/lru.mjs +109 -0
  82. package/dist/parser/lru.mjs.map +1 -0
  83. package/dist/parser/parser.d.ts +25 -0
  84. package/dist/parser/parser.js +116 -0
  85. package/dist/parser/parser.js.map +1 -0
  86. package/dist/parser/parser.mjs +116 -0
  87. package/dist/parser/parser.mjs.map +1 -0
  88. package/dist/parser/tokenizer.js +69 -0
  89. package/dist/parser/tokenizer.js.map +1 -0
  90. package/dist/parser/tokenizer.mjs +69 -0
  91. package/dist/parser/tokenizer.mjs.map +1 -0
  92. package/dist/parser/types.d.mts +37 -0
  93. package/dist/parser/types.d.ts +46 -0
  94. package/dist/parser/types.js +46 -0
  95. package/dist/parser/types.js.map +1 -0
  96. package/dist/parser/types.mjs +46 -0
  97. package/dist/parser/types.mjs.map +1 -0
  98. package/dist/pipeline/conditions.js +377 -0
  99. package/dist/pipeline/conditions.js.map +1 -0
  100. package/dist/pipeline/conditions.mjs +377 -0
  101. package/dist/pipeline/conditions.mjs.map +1 -0
  102. package/dist/pipeline/exclusive.d.ts +1 -0
  103. package/dist/pipeline/exclusive.js +231 -0
  104. package/dist/pipeline/exclusive.js.map +1 -0
  105. package/dist/pipeline/exclusive.mjs +231 -0
  106. package/dist/pipeline/exclusive.mjs.map +1 -0
  107. package/dist/pipeline/index.d.ts +53 -0
  108. package/dist/pipeline/index.js +641 -0
  109. package/dist/pipeline/index.js.map +1 -0
  110. package/dist/pipeline/index.mjs +635 -0
  111. package/dist/pipeline/index.mjs.map +1 -0
  112. package/dist/pipeline/materialize.js +821 -0
  113. package/dist/pipeline/materialize.js.map +1 -0
  114. package/dist/pipeline/materialize.mjs +821 -0
  115. package/dist/pipeline/materialize.mjs.map +1 -0
  116. package/dist/pipeline/parseStateKey.d.ts +1 -0
  117. package/dist/pipeline/parseStateKey.js +418 -0
  118. package/dist/pipeline/parseStateKey.js.map +1 -0
  119. package/dist/pipeline/parseStateKey.mjs +418 -0
  120. package/dist/pipeline/parseStateKey.mjs.map +1 -0
  121. package/dist/pipeline/simplify.js +557 -0
  122. package/dist/pipeline/simplify.js.map +1 -0
  123. package/dist/pipeline/simplify.mjs +557 -0
  124. package/dist/pipeline/simplify.mjs.map +1 -0
  125. package/dist/plugins/index.d.ts +2 -0
  126. package/dist/plugins/okhsl-plugin.d.ts +35 -0
  127. package/dist/plugins/okhsl-plugin.js +371 -0
  128. package/dist/plugins/okhsl-plugin.js.map +1 -0
  129. package/dist/plugins/okhsl-plugin.mjs +345 -0
  130. package/dist/plugins/okhsl-plugin.mjs.map +1 -0
  131. package/dist/plugins/types.d.mts +49 -0
  132. package/dist/plugins/types.d.ts +69 -0
  133. package/dist/properties/index.js +158 -0
  134. package/dist/properties/index.js.map +1 -0
  135. package/dist/properties/index.mjs +141 -0
  136. package/dist/properties/index.mjs.map +1 -0
  137. package/dist/states/index.d.ts +45 -0
  138. package/dist/states/index.js +389 -0
  139. package/dist/states/index.js.map +1 -0
  140. package/dist/states/index.mjs +161 -0
  141. package/dist/states/index.mjs.map +1 -0
  142. package/dist/static/index.d.ts +5 -0
  143. package/dist/static/index.js +5 -0
  144. package/dist/static/tastyStatic.d.ts +46 -0
  145. package/dist/static/tastyStatic.js +31 -0
  146. package/dist/static/tastyStatic.js.map +1 -0
  147. package/dist/static/types.d.ts +49 -0
  148. package/dist/static/types.js +24 -0
  149. package/dist/static/types.js.map +1 -0
  150. package/dist/styles/align.d.ts +15 -0
  151. package/dist/styles/align.js +14 -0
  152. package/dist/styles/align.js.map +1 -0
  153. package/dist/styles/align.mjs +14 -0
  154. package/dist/styles/align.mjs.map +1 -0
  155. package/dist/styles/border.d.ts +25 -0
  156. package/dist/styles/border.js +114 -0
  157. package/dist/styles/border.js.map +1 -0
  158. package/dist/styles/border.mjs +114 -0
  159. package/dist/styles/border.mjs.map +1 -0
  160. package/dist/styles/color.d.ts +14 -0
  161. package/dist/styles/color.js +23 -0
  162. package/dist/styles/color.js.map +1 -0
  163. package/dist/styles/color.mjs +23 -0
  164. package/dist/styles/color.mjs.map +1 -0
  165. package/dist/styles/createStyle.js +77 -0
  166. package/dist/styles/createStyle.js.map +1 -0
  167. package/dist/styles/createStyle.mjs +77 -0
  168. package/dist/styles/createStyle.mjs.map +1 -0
  169. package/dist/styles/dimension.js +97 -0
  170. package/dist/styles/dimension.js.map +1 -0
  171. package/dist/styles/dimension.mjs +97 -0
  172. package/dist/styles/dimension.mjs.map +1 -0
  173. package/dist/styles/display.d.ts +37 -0
  174. package/dist/styles/display.js +67 -0
  175. package/dist/styles/display.js.map +1 -0
  176. package/dist/styles/display.mjs +67 -0
  177. package/dist/styles/display.mjs.map +1 -0
  178. package/dist/styles/fade.d.ts +15 -0
  179. package/dist/styles/fade.js +58 -0
  180. package/dist/styles/fade.js.map +1 -0
  181. package/dist/styles/fade.mjs +58 -0
  182. package/dist/styles/fade.mjs.map +1 -0
  183. package/dist/styles/fill.d.ts +44 -0
  184. package/dist/styles/fill.js +51 -0
  185. package/dist/styles/fill.js.map +1 -0
  186. package/dist/styles/fill.mjs +51 -0
  187. package/dist/styles/fill.mjs.map +1 -0
  188. package/dist/styles/flow.d.ts +16 -0
  189. package/dist/styles/flow.js +12 -0
  190. package/dist/styles/flow.js.map +1 -0
  191. package/dist/styles/flow.mjs +12 -0
  192. package/dist/styles/flow.mjs.map +1 -0
  193. package/dist/styles/gap.d.ts +31 -0
  194. package/dist/styles/gap.js +37 -0
  195. package/dist/styles/gap.js.map +1 -0
  196. package/dist/styles/gap.mjs +37 -0
  197. package/dist/styles/gap.mjs.map +1 -0
  198. package/dist/styles/height.d.ts +17 -0
  199. package/dist/styles/height.js +20 -0
  200. package/dist/styles/height.js.map +1 -0
  201. package/dist/styles/height.mjs +20 -0
  202. package/dist/styles/height.mjs.map +1 -0
  203. package/dist/styles/index.d.ts +2 -0
  204. package/dist/styles/index.js +9 -0
  205. package/dist/styles/index.js.map +1 -0
  206. package/dist/styles/index.mjs +9 -0
  207. package/dist/styles/index.mjs.map +1 -0
  208. package/dist/styles/inset.d.ts +50 -0
  209. package/dist/styles/inset.js +142 -0
  210. package/dist/styles/inset.js.map +1 -0
  211. package/dist/styles/inset.mjs +142 -0
  212. package/dist/styles/inset.mjs.map +1 -0
  213. package/dist/styles/justify.d.ts +15 -0
  214. package/dist/styles/justify.js +14 -0
  215. package/dist/styles/justify.js.map +1 -0
  216. package/dist/styles/justify.mjs +14 -0
  217. package/dist/styles/justify.mjs.map +1 -0
  218. package/dist/styles/list.d.ts +16 -0
  219. package/dist/styles/list.js +98 -0
  220. package/dist/styles/list.js.map +1 -0
  221. package/dist/styles/margin.d.ts +28 -0
  222. package/dist/styles/margin.js +96 -0
  223. package/dist/styles/margin.js.map +1 -0
  224. package/dist/styles/margin.mjs +96 -0
  225. package/dist/styles/margin.mjs.map +1 -0
  226. package/dist/styles/outline.d.ts +29 -0
  227. package/dist/styles/outline.js +65 -0
  228. package/dist/styles/outline.js.map +1 -0
  229. package/dist/styles/outline.mjs +65 -0
  230. package/dist/styles/outline.mjs.map +1 -0
  231. package/dist/styles/padding.d.ts +28 -0
  232. package/dist/styles/padding.js +96 -0
  233. package/dist/styles/padding.js.map +1 -0
  234. package/dist/styles/padding.mjs +96 -0
  235. package/dist/styles/padding.mjs.map +1 -0
  236. package/dist/styles/predefined.d.ts +74 -0
  237. package/dist/styles/predefined.js +241 -0
  238. package/dist/styles/predefined.js.map +1 -0
  239. package/dist/styles/predefined.mjs +232 -0
  240. package/dist/styles/predefined.mjs.map +1 -0
  241. package/dist/styles/preset.d.ts +47 -0
  242. package/dist/styles/preset.js +126 -0
  243. package/dist/styles/preset.js.map +1 -0
  244. package/dist/styles/preset.mjs +126 -0
  245. package/dist/styles/preset.mjs.map +1 -0
  246. package/dist/styles/radius.d.ts +14 -0
  247. package/dist/styles/radius.js +51 -0
  248. package/dist/styles/radius.js.map +1 -0
  249. package/dist/styles/radius.mjs +51 -0
  250. package/dist/styles/radius.mjs.map +1 -0
  251. package/dist/styles/scrollbar.d.ts +21 -0
  252. package/dist/styles/scrollbar.js +105 -0
  253. package/dist/styles/scrollbar.js.map +1 -0
  254. package/dist/styles/scrollbar.mjs +105 -0
  255. package/dist/styles/scrollbar.mjs.map +1 -0
  256. package/dist/styles/shadow.d.ts +14 -0
  257. package/dist/styles/shadow.js +24 -0
  258. package/dist/styles/shadow.js.map +1 -0
  259. package/dist/styles/shadow.mjs +24 -0
  260. package/dist/styles/shadow.mjs.map +1 -0
  261. package/dist/styles/styledScrollbar.d.ts +47 -0
  262. package/dist/styles/styledScrollbar.js +38 -0
  263. package/dist/styles/styledScrollbar.js.map +1 -0
  264. package/dist/styles/styledScrollbar.mjs +38 -0
  265. package/dist/styles/styledScrollbar.mjs.map +1 -0
  266. package/dist/styles/transition.d.ts +14 -0
  267. package/dist/styles/transition.js +138 -0
  268. package/dist/styles/transition.js.map +1 -0
  269. package/dist/styles/transition.mjs +138 -0
  270. package/dist/styles/transition.mjs.map +1 -0
  271. package/dist/styles/types.d.mts +492 -0
  272. package/dist/styles/types.d.ts +496 -0
  273. package/dist/styles/width.d.ts +17 -0
  274. package/dist/styles/width.js +20 -0
  275. package/dist/styles/width.js.map +1 -0
  276. package/dist/styles/width.mjs +20 -0
  277. package/dist/styles/width.mjs.map +1 -0
  278. package/dist/tasty.d.ts +983 -0
  279. package/dist/tasty.js +191 -0
  280. package/dist/tasty.js.map +1 -0
  281. package/dist/tokens/typography.d.ts +19 -0
  282. package/dist/tokens/typography.js +237 -0
  283. package/dist/tokens/typography.js.map +1 -0
  284. package/dist/types.d.ts +182 -0
  285. package/dist/utils/cache-wrapper.js +26 -0
  286. package/dist/utils/cache-wrapper.js.map +1 -0
  287. package/dist/utils/cache-wrapper.mjs +26 -0
  288. package/dist/utils/cache-wrapper.mjs.map +1 -0
  289. package/dist/utils/case-converter.js +8 -0
  290. package/dist/utils/case-converter.js.map +1 -0
  291. package/dist/utils/case-converter.mjs +8 -0
  292. package/dist/utils/case-converter.mjs.map +1 -0
  293. package/dist/utils/colors.d.ts +5 -0
  294. package/dist/utils/colors.js +9 -0
  295. package/dist/utils/colors.js.map +1 -0
  296. package/dist/utils/dotize.d.ts +26 -0
  297. package/dist/utils/dotize.js +122 -0
  298. package/dist/utils/dotize.js.map +1 -0
  299. package/dist/utils/filter-base-props.d.ts +15 -0
  300. package/dist/utils/filter-base-props.js +45 -0
  301. package/dist/utils/filter-base-props.js.map +1 -0
  302. package/dist/utils/get-display-name.d.ts +7 -0
  303. package/dist/utils/get-display-name.js +10 -0
  304. package/dist/utils/get-display-name.js.map +1 -0
  305. package/dist/utils/hsl-to-rgb.js +38 -0
  306. package/dist/utils/hsl-to-rgb.js.map +1 -0
  307. package/dist/utils/hsl-to-rgb.mjs +38 -0
  308. package/dist/utils/hsl-to-rgb.mjs.map +1 -0
  309. package/dist/utils/is-dev-env.js +19 -0
  310. package/dist/utils/is-dev-env.js.map +1 -0
  311. package/dist/utils/is-dev-env.mjs +19 -0
  312. package/dist/utils/is-dev-env.mjs.map +1 -0
  313. package/dist/utils/merge-styles.d.ts +7 -0
  314. package/dist/utils/merge-styles.js +146 -0
  315. package/dist/utils/merge-styles.js.map +1 -0
  316. package/dist/utils/merge-styles.mjs +146 -0
  317. package/dist/utils/merge-styles.mjs.map +1 -0
  318. package/dist/utils/mod-attrs.d.ts +8 -0
  319. package/dist/utils/mod-attrs.js +21 -0
  320. package/dist/utils/mod-attrs.js.map +1 -0
  321. package/dist/utils/okhsl-to-rgb.js +296 -0
  322. package/dist/utils/okhsl-to-rgb.js.map +1 -0
  323. package/dist/utils/okhsl-to-rgb.mjs +296 -0
  324. package/dist/utils/okhsl-to-rgb.mjs.map +1 -0
  325. package/dist/utils/process-tokens.d.ts +31 -0
  326. package/dist/utils/process-tokens.js +171 -0
  327. package/dist/utils/process-tokens.js.map +1 -0
  328. package/dist/utils/process-tokens.mjs +28 -0
  329. package/dist/utils/process-tokens.mjs.map +1 -0
  330. package/dist/utils/resolve-recipes.d.ts +17 -0
  331. package/dist/utils/resolve-recipes.js +143 -0
  332. package/dist/utils/resolve-recipes.js.map +1 -0
  333. package/dist/utils/resolve-recipes.mjs +143 -0
  334. package/dist/utils/resolve-recipes.mjs.map +1 -0
  335. package/dist/utils/string.js +8 -0
  336. package/dist/utils/string.js.map +1 -0
  337. package/dist/utils/string.mjs +8 -0
  338. package/dist/utils/string.mjs.map +1 -0
  339. package/dist/utils/styles.d.mts +18 -0
  340. package/dist/utils/styles.d.ts +183 -0
  341. package/dist/utils/styles.js +585 -0
  342. package/dist/utils/styles.js.map +1 -0
  343. package/dist/utils/styles.mjs +346 -0
  344. package/dist/utils/styles.mjs.map +1 -0
  345. package/dist/utils/typography.d.ts +36 -0
  346. package/dist/utils/typography.js +53 -0
  347. package/dist/utils/typography.js.map +1 -0
  348. package/dist/utils/warnings.d.ts +16 -0
  349. package/dist/utils/warnings.js +16 -0
  350. package/dist/utils/warnings.js.map +1 -0
  351. package/dist/zero/babel.d.mts +108 -0
  352. package/dist/zero/babel.mjs +282 -0
  353. package/dist/zero/babel.mjs.map +1 -0
  354. package/dist/zero/index.d.mts +3 -0
  355. package/dist/zero/index.mjs +4 -0
  356. package/dist/zero/next.d.mts +60 -0
  357. package/dist/zero/next.mjs +78 -0
  358. package/dist/zero/next.mjs.map +1 -0
  359. package/package.json +127 -0
@@ -0,0 +1,983 @@
1
+ import { KeyframesSteps, PropertyDefinition } from "./injector/types.js";
2
+ import { StyleValue, StyleValueStateMap } from "./utils/styles.js";
3
+ import { Styles, StylesInterface } from "./styles/types.js";
4
+ import "./injector/index.js";
5
+ import { AllBaseProps, BaseProps, BaseStyleProps, Mods, Props, Tokens } from "./types.js";
6
+ import * as react from "react";
7
+ import { AllHTMLAttributes, ComponentType, ForwardRefExoticComponent, JSX, PropsWithoutRef, RefAttributes } from "react";
8
+ import * as csstype from "csstype";
9
+
10
+ //#region src/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
+ interface 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 = Record<string, never>> = {
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 = Record<string, never>, 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 = Record<string, never>, 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
+ } & Record<string, unknown>;
83
+ type AllBasePropsWithMods<K extends StyleList> = AllBaseProps & { [key in K[number]]?: StyleValue<StylesInterface[key]> | StyleValueStateMap<StylesInterface[key]> } & BaseStyleProps;
84
+ /**
85
+ * Keys from BasePropsWithoutChildren that should be omitted from HTML attributes.
86
+ * This excludes event handlers so they can be properly typed from JSX.IntrinsicElements.
87
+ */
88
+ type TastySpecificKeys = 'as' | 'qa' | 'qaVal' | 'element' | 'styles' | 'breakpoints' | 'block' | 'inline' | 'mods' | 'isHidden' | 'isDisabled' | 'css' | 'style' | 'theme' | 'tokens' | 'ref' | 'color';
89
+ /**
90
+ * Props type for tasty elements that combines:
91
+ * - AllBasePropsWithMods for style props with strict tokens type
92
+ * - HTML attributes for flexibility (properly typed based on tag)
93
+ * - Variant support
94
+ *
95
+ * Uses AllHTMLAttributes as base for common attributes (like disabled),
96
+ * but overrides event handlers with tag-specific types from JSX.IntrinsicElements.
97
+ */
98
+ 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]>;
99
+ 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] };
100
+ declare function tasty<K extends StyleList, V extends VariantMap, E extends ElementsDefinition = Record<string, never>, Tag extends keyof JSX.IntrinsicElements = 'div'>(options: TastyElementOptions<K, V, E, Tag>, secondArg?: never): ForwardRefExoticComponent<PropsWithoutRef<TastyElementProps<K, V, Tag>> & RefAttributes<unknown>> & SubElementComponents<E>;
101
+ declare function tasty<Props extends PropsWithStyles, DefaultProps extends Partial<Props> = Partial<Props>>(Component: ComponentType<Props>, options?: TastyProps<never, never, Record<string, never>, Props>): ComponentType<TastyComponentPropsWithDefaults<Props, DefaultProps>>;
102
+ declare const Element: ForwardRefExoticComponent<AllBaseProps<keyof HTMLElementTagNameMap> & {
103
+ color?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
104
+ fill?: StyleValue<boolean | (string & {}) | `#${string}` | `#${string}.0` | `#${string}.7` | `#${string}.1` | `#${string}.2` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.07` | `#${string}.01` | `#${string}.02` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.70` | `#${string}.77` | `#${string}.71` | `#${string}.72` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.10` | `#${string}.17` | `#${string}.11` | `#${string}.12` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.27` | `#${string}.21` | `#${string}.22` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.30` | `#${string}.37` | `#${string}.31` | `#${string}.32` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.47` | `#${string}.41` | `#${string}.42` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.57` | `#${string}.51` | `#${string}.52` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.67` | `#${string}.61` | `#${string}.62` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.87` | `#${string}.81` | `#${string}.82` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.97` | `#${string}.91` | `#${string}.92` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined> | StyleValueStateMap<boolean | (string & {}) | `#${string}` | `#${string}.0` | `#${string}.7` | `#${string}.1` | `#${string}.2` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.07` | `#${string}.01` | `#${string}.02` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.70` | `#${string}.77` | `#${string}.71` | `#${string}.72` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.10` | `#${string}.17` | `#${string}.11` | `#${string}.12` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.27` | `#${string}.21` | `#${string}.22` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.30` | `#${string}.37` | `#${string}.31` | `#${string}.32` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.47` | `#${string}.41` | `#${string}.42` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.57` | `#${string}.51` | `#${string}.52` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.67` | `#${string}.61` | `#${string}.62` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.87` | `#${string}.81` | `#${string}.82` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.97` | `#${string}.91` | `#${string}.92` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined>;
105
+ font?: StyleValue<boolean | csstype.Property.FontFamily | undefined> | StyleValueStateMap<boolean | csstype.Property.FontFamily | undefined>;
106
+ outline?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
107
+ gap?: StyleValue<boolean | csstype.Property.Gap<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Gap<string | number> | undefined>;
108
+ padding?: StyleValue<boolean | csstype.Property.Padding<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Padding<string | number> | undefined>;
109
+ margin?: StyleValue<boolean | csstype.Property.Margin<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Margin<string | number> | undefined>;
110
+ width?: StyleValue<boolean | csstype.Property.Width<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Width<string | number> | undefined>;
111
+ height?: StyleValue<boolean | csstype.Property.Height<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Height<string | number> | undefined>;
112
+ border?: StyleValue<boolean | csstype.Property.Border<string | number> | undefined> | StyleValueStateMap<boolean | csstype.Property.Border<string | number> | undefined>;
113
+ transition?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
114
+ placeContent?: StyleValue<csstype.Property.PlaceContent | undefined> | StyleValueStateMap<csstype.Property.PlaceContent | undefined>;
115
+ placeItems?: StyleValue<csstype.Property.PlaceItems | undefined> | StyleValueStateMap<csstype.Property.PlaceItems | undefined>;
116
+ accentColor?: StyleValue<csstype.Property.AccentColor | undefined> | StyleValueStateMap<csstype.Property.AccentColor | undefined>;
117
+ alignContent?: StyleValue<csstype.Property.AlignContent | undefined> | StyleValueStateMap<csstype.Property.AlignContent | undefined>;
118
+ alignItems?: StyleValue<csstype.Property.AlignItems | undefined> | StyleValueStateMap<csstype.Property.AlignItems | undefined>;
119
+ alignSelf?: StyleValue<csstype.Property.AlignSelf | undefined> | StyleValueStateMap<csstype.Property.AlignSelf | undefined>;
120
+ alignTracks?: StyleValue<csstype.Property.AlignTracks | undefined> | StyleValueStateMap<csstype.Property.AlignTracks | undefined>;
121
+ alignmentBaseline?: StyleValue<csstype.Property.AlignmentBaseline | undefined> | StyleValueStateMap<csstype.Property.AlignmentBaseline | undefined>;
122
+ anchorName?: StyleValue<csstype.Property.AnchorName | undefined> | StyleValueStateMap<csstype.Property.AnchorName | undefined>;
123
+ anchorScope?: StyleValue<csstype.Property.AnchorScope | undefined> | StyleValueStateMap<csstype.Property.AnchorScope | undefined>;
124
+ animationComposition?: StyleValue<csstype.Property.AnimationComposition | undefined> | StyleValueStateMap<csstype.Property.AnimationComposition | undefined>;
125
+ animationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
126
+ animationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
127
+ animationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
128
+ animationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
129
+ animationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
130
+ animationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
131
+ animationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
132
+ animationRangeEnd?: StyleValue<csstype.Property.AnimationRangeEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRangeEnd<string | number> | undefined>;
133
+ animationRangeStart?: StyleValue<csstype.Property.AnimationRangeStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRangeStart<string | number> | undefined>;
134
+ animationTimeline?: StyleValue<csstype.Property.AnimationTimeline | undefined> | StyleValueStateMap<csstype.Property.AnimationTimeline | undefined>;
135
+ animationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
136
+ appearance?: StyleValue<csstype.Property.Appearance | undefined> | StyleValueStateMap<csstype.Property.Appearance | undefined>;
137
+ aspectRatio?: StyleValue<csstype.Property.AspectRatio | undefined> | StyleValueStateMap<csstype.Property.AspectRatio | undefined>;
138
+ backdropFilter?: StyleValue<csstype.Property.BackdropFilter | undefined> | StyleValueStateMap<csstype.Property.BackdropFilter | undefined>;
139
+ backfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
140
+ backgroundAttachment?: StyleValue<csstype.Property.BackgroundAttachment | undefined> | StyleValueStateMap<csstype.Property.BackgroundAttachment | undefined>;
141
+ backgroundBlendMode?: StyleValue<csstype.Property.BackgroundBlendMode | undefined> | StyleValueStateMap<csstype.Property.BackgroundBlendMode | undefined>;
142
+ backgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
143
+ backgroundColor?: StyleValue<csstype.Property.BackgroundColor | undefined> | StyleValueStateMap<csstype.Property.BackgroundColor | undefined>;
144
+ backgroundImage?: StyleValue<csstype.Property.BackgroundImage | undefined> | StyleValueStateMap<csstype.Property.BackgroundImage | undefined>;
145
+ backgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
146
+ backgroundPositionX?: StyleValue<csstype.Property.BackgroundPositionX<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPositionX<string | number> | undefined>;
147
+ backgroundPositionY?: StyleValue<csstype.Property.BackgroundPositionY<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPositionY<string | number> | undefined>;
148
+ backgroundRepeat?: StyleValue<csstype.Property.BackgroundRepeat | undefined> | StyleValueStateMap<csstype.Property.BackgroundRepeat | undefined>;
149
+ backgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
150
+ baselineShift?: StyleValue<csstype.Property.BaselineShift<string | number> | undefined> | StyleValueStateMap<csstype.Property.BaselineShift<string | number> | undefined>;
151
+ blockSize?: StyleValue<csstype.Property.BlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BlockSize<string | number> | undefined>;
152
+ borderBlockEndColor?: StyleValue<csstype.Property.BorderBlockEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndColor | undefined>;
153
+ borderBlockEndStyle?: StyleValue<csstype.Property.BorderBlockEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndStyle | undefined>;
154
+ borderBlockEndWidth?: StyleValue<csstype.Property.BorderBlockEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEndWidth<string | number> | undefined>;
155
+ borderBlockStartColor?: StyleValue<csstype.Property.BorderBlockStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartColor | undefined>;
156
+ borderBlockStartStyle?: StyleValue<csstype.Property.BorderBlockStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartStyle | undefined>;
157
+ borderBlockStartWidth?: StyleValue<csstype.Property.BorderBlockStartWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStartWidth<string | number> | undefined>;
158
+ borderBottomColor?: StyleValue<csstype.Property.BorderBottomColor | undefined> | StyleValueStateMap<csstype.Property.BorderBottomColor | undefined>;
159
+ borderBottomLeftRadius?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
160
+ borderBottomRightRadius?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
161
+ borderBottomStyle?: StyleValue<csstype.Property.BorderBottomStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBottomStyle | undefined>;
162
+ borderBottomWidth?: StyleValue<csstype.Property.BorderBottomWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomWidth<string | number> | undefined>;
163
+ borderCollapse?: StyleValue<csstype.Property.BorderCollapse | undefined> | StyleValueStateMap<csstype.Property.BorderCollapse | undefined>;
164
+ borderEndEndRadius?: StyleValue<csstype.Property.BorderEndEndRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderEndEndRadius<string | number> | undefined>;
165
+ borderEndStartRadius?: StyleValue<csstype.Property.BorderEndStartRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderEndStartRadius<string | number> | undefined>;
166
+ borderImageOutset?: StyleValue<csstype.Property.BorderImageOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderImageOutset<string | number> | undefined>;
167
+ borderImageRepeat?: StyleValue<csstype.Property.BorderImageRepeat | undefined> | StyleValueStateMap<csstype.Property.BorderImageRepeat | undefined>;
168
+ borderImageSlice?: StyleValue<csstype.Property.BorderImageSlice | undefined> | StyleValueStateMap<csstype.Property.BorderImageSlice | undefined>;
169
+ borderImageSource?: StyleValue<csstype.Property.BorderImageSource | undefined> | StyleValueStateMap<csstype.Property.BorderImageSource | undefined>;
170
+ borderImageWidth?: StyleValue<csstype.Property.BorderImageWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderImageWidth<string | number> | undefined>;
171
+ borderInlineEndColor?: StyleValue<csstype.Property.BorderInlineEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndColor | undefined>;
172
+ borderInlineEndStyle?: StyleValue<csstype.Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndStyle | undefined>;
173
+ borderInlineEndWidth?: StyleValue<csstype.Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndWidth<string | number> | undefined>;
174
+ borderInlineStartColor?: StyleValue<csstype.Property.BorderInlineStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartColor | undefined>;
175
+ borderInlineStartStyle?: StyleValue<csstype.Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartStyle | undefined>;
176
+ borderInlineStartWidth?: StyleValue<csstype.Property.BorderInlineStartWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartWidth<string | number> | undefined>;
177
+ borderLeftColor?: StyleValue<csstype.Property.BorderLeftColor | undefined> | StyleValueStateMap<csstype.Property.BorderLeftColor | undefined>;
178
+ borderLeftStyle?: StyleValue<csstype.Property.BorderLeftStyle | undefined> | StyleValueStateMap<csstype.Property.BorderLeftStyle | undefined>;
179
+ borderLeftWidth?: StyleValue<csstype.Property.BorderLeftWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderLeftWidth<string | number> | undefined>;
180
+ borderRightColor?: StyleValue<csstype.Property.BorderRightColor | undefined> | StyleValueStateMap<csstype.Property.BorderRightColor | undefined>;
181
+ borderRightStyle?: StyleValue<csstype.Property.BorderRightStyle | undefined> | StyleValueStateMap<csstype.Property.BorderRightStyle | undefined>;
182
+ borderRightWidth?: StyleValue<csstype.Property.BorderRightWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRightWidth<string | number> | undefined>;
183
+ borderSpacing?: StyleValue<csstype.Property.BorderSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderSpacing<string | number> | undefined>;
184
+ borderStartEndRadius?: StyleValue<csstype.Property.BorderStartEndRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderStartEndRadius<string | number> | undefined>;
185
+ borderStartStartRadius?: StyleValue<csstype.Property.BorderStartStartRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderStartStartRadius<string | number> | undefined>;
186
+ borderTopColor?: StyleValue<csstype.Property.BorderTopColor | undefined> | StyleValueStateMap<csstype.Property.BorderTopColor | undefined>;
187
+ borderTopLeftRadius?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
188
+ borderTopRightRadius?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
189
+ borderTopStyle?: StyleValue<csstype.Property.BorderTopStyle | undefined> | StyleValueStateMap<csstype.Property.BorderTopStyle | undefined>;
190
+ borderTopWidth?: StyleValue<csstype.Property.BorderTopWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopWidth<string | number> | undefined>;
191
+ bottom?: StyleValue<csstype.Property.Bottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.Bottom<string | number> | undefined>;
192
+ boxDecorationBreak?: StyleValue<csstype.Property.BoxDecorationBreak | undefined> | StyleValueStateMap<csstype.Property.BoxDecorationBreak | undefined>;
193
+ boxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
194
+ boxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
195
+ breakAfter?: StyleValue<csstype.Property.BreakAfter | undefined> | StyleValueStateMap<csstype.Property.BreakAfter | undefined>;
196
+ breakBefore?: StyleValue<csstype.Property.BreakBefore | undefined> | StyleValueStateMap<csstype.Property.BreakBefore | undefined>;
197
+ breakInside?: StyleValue<csstype.Property.BreakInside | undefined> | StyleValueStateMap<csstype.Property.BreakInside | undefined>;
198
+ captionSide?: StyleValue<csstype.Property.CaptionSide | undefined> | StyleValueStateMap<csstype.Property.CaptionSide | undefined>;
199
+ caretColor?: StyleValue<csstype.Property.CaretColor | undefined> | StyleValueStateMap<csstype.Property.CaretColor | undefined>;
200
+ caretShape?: StyleValue<csstype.Property.CaretShape | undefined> | StyleValueStateMap<csstype.Property.CaretShape | undefined>;
201
+ clear?: StyleValue<csstype.Property.Clear | undefined> | StyleValueStateMap<csstype.Property.Clear | undefined>;
202
+ clipPath?: StyleValue<csstype.Property.ClipPath | undefined> | StyleValueStateMap<csstype.Property.ClipPath | undefined>;
203
+ clipRule?: StyleValue<csstype.Property.ClipRule | undefined> | StyleValueStateMap<csstype.Property.ClipRule | undefined>;
204
+ colorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
205
+ colorInterpolationFilters?: StyleValue<csstype.Property.ColorInterpolationFilters | undefined> | StyleValueStateMap<csstype.Property.ColorInterpolationFilters | undefined>;
206
+ colorScheme?: StyleValue<csstype.Property.ColorScheme | undefined> | StyleValueStateMap<csstype.Property.ColorScheme | undefined>;
207
+ columnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
208
+ columnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
209
+ columnGap?: StyleValue<csstype.Property.ColumnGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnGap<string | number> | undefined>;
210
+ columnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
211
+ columnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
212
+ columnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
213
+ columnSpan?: StyleValue<csstype.Property.ColumnSpan | undefined> | StyleValueStateMap<csstype.Property.ColumnSpan | undefined>;
214
+ columnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
215
+ contain?: StyleValue<csstype.Property.Contain | undefined> | StyleValueStateMap<csstype.Property.Contain | undefined>;
216
+ containIntrinsicBlockSize?: StyleValue<csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined>;
217
+ containIntrinsicHeight?: StyleValue<csstype.Property.ContainIntrinsicHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicHeight<string | number> | undefined>;
218
+ containIntrinsicInlineSize?: StyleValue<csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined>;
219
+ containIntrinsicWidth?: StyleValue<csstype.Property.ContainIntrinsicWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicWidth<string | number> | undefined>;
220
+ containerName?: StyleValue<csstype.Property.ContainerName | undefined> | StyleValueStateMap<csstype.Property.ContainerName | undefined>;
221
+ containerType?: StyleValue<csstype.Property.ContainerType | undefined> | StyleValueStateMap<csstype.Property.ContainerType | undefined>;
222
+ content?: StyleValue<csstype.Property.Content | undefined> | StyleValueStateMap<csstype.Property.Content | undefined>;
223
+ contentVisibility?: StyleValue<csstype.Property.ContentVisibility | undefined> | StyleValueStateMap<csstype.Property.ContentVisibility | undefined>;
224
+ counterIncrement?: StyleValue<csstype.Property.CounterIncrement | undefined> | StyleValueStateMap<csstype.Property.CounterIncrement | undefined>;
225
+ counterReset?: StyleValue<csstype.Property.CounterReset | undefined> | StyleValueStateMap<csstype.Property.CounterReset | undefined>;
226
+ counterSet?: StyleValue<csstype.Property.CounterSet | undefined> | StyleValueStateMap<csstype.Property.CounterSet | undefined>;
227
+ cursor?: StyleValue<csstype.Property.Cursor | undefined> | StyleValueStateMap<csstype.Property.Cursor | undefined>;
228
+ cx?: StyleValue<csstype.Property.Cx<string | number> | undefined> | StyleValueStateMap<csstype.Property.Cx<string | number> | undefined>;
229
+ cy?: StyleValue<csstype.Property.Cy<string | number> | undefined> | StyleValueStateMap<csstype.Property.Cy<string | number> | undefined>;
230
+ d?: StyleValue<csstype.Property.D | undefined> | StyleValueStateMap<csstype.Property.D | undefined>;
231
+ direction?: StyleValue<csstype.Property.Direction | undefined> | StyleValueStateMap<csstype.Property.Direction | undefined>;
232
+ display?: StyleValue<csstype.Property.Display | undefined> | StyleValueStateMap<csstype.Property.Display | undefined>;
233
+ dominantBaseline?: StyleValue<csstype.Property.DominantBaseline | undefined> | StyleValueStateMap<csstype.Property.DominantBaseline | undefined>;
234
+ emptyCells?: StyleValue<csstype.Property.EmptyCells | undefined> | StyleValueStateMap<csstype.Property.EmptyCells | undefined>;
235
+ fieldSizing?: StyleValue<csstype.Property.FieldSizing | undefined> | StyleValueStateMap<csstype.Property.FieldSizing | undefined>;
236
+ fillOpacity?: StyleValue<csstype.Property.FillOpacity | undefined> | StyleValueStateMap<csstype.Property.FillOpacity | undefined>;
237
+ fillRule?: StyleValue<csstype.Property.FillRule | undefined> | StyleValueStateMap<csstype.Property.FillRule | undefined>;
238
+ filter?: StyleValue<csstype.Property.Filter | undefined> | StyleValueStateMap<csstype.Property.Filter | undefined>;
239
+ flexBasis?: StyleValue<csstype.Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<csstype.Property.FlexBasis<string | number> | undefined>;
240
+ flexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
241
+ flexGrow?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
242
+ flexShrink?: StyleValue<csstype.Property.FlexShrink | undefined> | StyleValueStateMap<csstype.Property.FlexShrink | undefined>;
243
+ flexWrap?: StyleValue<csstype.Property.FlexWrap | undefined> | StyleValueStateMap<csstype.Property.FlexWrap | undefined>;
244
+ float?: StyleValue<csstype.Property.Float | undefined> | StyleValueStateMap<csstype.Property.Float | undefined>;
245
+ floodColor?: StyleValue<csstype.Property.FloodColor | undefined> | StyleValueStateMap<csstype.Property.FloodColor | undefined>;
246
+ floodOpacity?: StyleValue<csstype.Property.FloodOpacity | undefined> | StyleValueStateMap<csstype.Property.FloodOpacity | undefined>;
247
+ fontFamily?: StyleValue<csstype.Property.FontFamily | undefined> | StyleValueStateMap<csstype.Property.FontFamily | undefined>;
248
+ fontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
249
+ fontKerning?: StyleValue<csstype.Property.FontKerning | undefined> | StyleValueStateMap<csstype.Property.FontKerning | undefined>;
250
+ fontLanguageOverride?: StyleValue<csstype.Property.FontLanguageOverride | undefined> | StyleValueStateMap<csstype.Property.FontLanguageOverride | undefined>;
251
+ fontOpticalSizing?: StyleValue<csstype.Property.FontOpticalSizing | undefined> | StyleValueStateMap<csstype.Property.FontOpticalSizing | undefined>;
252
+ fontPalette?: StyleValue<csstype.Property.FontPalette | undefined> | StyleValueStateMap<csstype.Property.FontPalette | undefined>;
253
+ fontSize?: StyleValue<csstype.Property.FontSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSize<string | number> | undefined>;
254
+ fontSizeAdjust?: StyleValue<csstype.Property.FontSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.FontSizeAdjust | undefined>;
255
+ fontSmooth?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
256
+ fontStyle?: StyleValue<csstype.Property.FontStyle | undefined> | StyleValueStateMap<csstype.Property.FontStyle | undefined>;
257
+ fontSynthesis?: StyleValue<csstype.Property.FontSynthesis | undefined> | StyleValueStateMap<csstype.Property.FontSynthesis | undefined>;
258
+ fontSynthesisPosition?: StyleValue<csstype.Property.FontSynthesisPosition | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisPosition | undefined>;
259
+ fontSynthesisSmallCaps?: StyleValue<csstype.Property.FontSynthesisSmallCaps | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisSmallCaps | undefined>;
260
+ fontSynthesisStyle?: StyleValue<csstype.Property.FontSynthesisStyle | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisStyle | undefined>;
261
+ fontSynthesisWeight?: StyleValue<csstype.Property.FontSynthesisWeight | undefined> | StyleValueStateMap<csstype.Property.FontSynthesisWeight | undefined>;
262
+ fontVariant?: StyleValue<csstype.Property.FontVariant | undefined> | StyleValueStateMap<csstype.Property.FontVariant | undefined>;
263
+ fontVariantAlternates?: StyleValue<csstype.Property.FontVariantAlternates | undefined> | StyleValueStateMap<csstype.Property.FontVariantAlternates | undefined>;
264
+ fontVariantCaps?: StyleValue<csstype.Property.FontVariantCaps | undefined> | StyleValueStateMap<csstype.Property.FontVariantCaps | undefined>;
265
+ fontVariantEastAsian?: StyleValue<csstype.Property.FontVariantEastAsian | undefined> | StyleValueStateMap<csstype.Property.FontVariantEastAsian | undefined>;
266
+ fontVariantEmoji?: StyleValue<csstype.Property.FontVariantEmoji | undefined> | StyleValueStateMap<csstype.Property.FontVariantEmoji | undefined>;
267
+ fontVariantLigatures?: StyleValue<csstype.Property.FontVariantLigatures | undefined> | StyleValueStateMap<csstype.Property.FontVariantLigatures | undefined>;
268
+ fontVariantNumeric?: StyleValue<csstype.Property.FontVariantNumeric | undefined> | StyleValueStateMap<csstype.Property.FontVariantNumeric | undefined>;
269
+ fontVariantPosition?: StyleValue<csstype.Property.FontVariantPosition | undefined> | StyleValueStateMap<csstype.Property.FontVariantPosition | undefined>;
270
+ fontVariationSettings?: StyleValue<csstype.Property.FontVariationSettings | undefined> | StyleValueStateMap<csstype.Property.FontVariationSettings | undefined>;
271
+ fontWeight?: StyleValue<csstype.Property.FontWeight | undefined> | StyleValueStateMap<csstype.Property.FontWeight | undefined>;
272
+ fontWidth?: StyleValue<csstype.Property.FontWidth | undefined> | StyleValueStateMap<csstype.Property.FontWidth | undefined>;
273
+ forcedColorAdjust?: StyleValue<csstype.Property.ForcedColorAdjust | undefined> | StyleValueStateMap<csstype.Property.ForcedColorAdjust | undefined>;
274
+ gridAutoColumns?: StyleValue<csstype.Property.GridAutoColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridAutoColumns<string | number> | undefined>;
275
+ gridAutoFlow?: StyleValue<csstype.Property.GridAutoFlow | undefined> | StyleValueStateMap<csstype.Property.GridAutoFlow | undefined>;
276
+ gridAutoRows?: StyleValue<csstype.Property.GridAutoRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridAutoRows<string | number> | undefined>;
277
+ gridColumnEnd?: StyleValue<csstype.Property.GridColumnEnd | undefined> | StyleValueStateMap<csstype.Property.GridColumnEnd | undefined>;
278
+ gridColumnStart?: StyleValue<csstype.Property.GridColumnStart | undefined> | StyleValueStateMap<csstype.Property.GridColumnStart | undefined>;
279
+ gridRowEnd?: StyleValue<csstype.Property.GridRowEnd | undefined> | StyleValueStateMap<csstype.Property.GridRowEnd | undefined>;
280
+ gridRowStart?: StyleValue<csstype.Property.GridRowStart | undefined> | StyleValueStateMap<csstype.Property.GridRowStart | undefined>;
281
+ gridTemplateAreas?: StyleValue<csstype.Property.GridTemplateAreas | undefined> | StyleValueStateMap<csstype.Property.GridTemplateAreas | undefined>;
282
+ gridTemplateColumns?: StyleValue<csstype.Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateColumns<string | number> | undefined>;
283
+ gridTemplateRows?: StyleValue<csstype.Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateRows<string | number> | undefined>;
284
+ hangingPunctuation?: StyleValue<csstype.Property.HangingPunctuation | undefined> | StyleValueStateMap<csstype.Property.HangingPunctuation | undefined>;
285
+ hyphenateCharacter?: StyleValue<csstype.Property.HyphenateCharacter | undefined> | StyleValueStateMap<csstype.Property.HyphenateCharacter | undefined>;
286
+ hyphenateLimitChars?: StyleValue<csstype.Property.HyphenateLimitChars | undefined> | StyleValueStateMap<csstype.Property.HyphenateLimitChars | undefined>;
287
+ hyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
288
+ imageOrientation?: StyleValue<csstype.Property.ImageOrientation | undefined> | StyleValueStateMap<csstype.Property.ImageOrientation | undefined>;
289
+ imageRendering?: StyleValue<csstype.Property.ImageRendering | undefined> | StyleValueStateMap<csstype.Property.ImageRendering | undefined>;
290
+ imageResolution?: StyleValue<csstype.Property.ImageResolution | undefined> | StyleValueStateMap<csstype.Property.ImageResolution | undefined>;
291
+ initialLetter?: StyleValue<csstype.Property.InitialLetter | undefined> | StyleValueStateMap<csstype.Property.InitialLetter | undefined>;
292
+ initialLetterAlign?: StyleValue<csstype.Property.InitialLetterAlign | undefined> | StyleValueStateMap<csstype.Property.InitialLetterAlign | undefined>;
293
+ inlineSize?: StyleValue<csstype.Property.InlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.InlineSize<string | number> | undefined>;
294
+ insetBlockEnd?: StyleValue<csstype.Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockEnd<string | number> | undefined>;
295
+ insetBlockStart?: StyleValue<csstype.Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockStart<string | number> | undefined>;
296
+ insetInlineEnd?: StyleValue<csstype.Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineEnd<string | number> | undefined>;
297
+ insetInlineStart?: StyleValue<csstype.Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineStart<string | number> | undefined>;
298
+ interpolateSize?: StyleValue<csstype.Property.InterpolateSize | undefined> | StyleValueStateMap<csstype.Property.InterpolateSize | undefined>;
299
+ isolation?: StyleValue<csstype.Property.Isolation | undefined> | StyleValueStateMap<csstype.Property.Isolation | undefined>;
300
+ justifyContent?: StyleValue<csstype.Property.JustifyContent | undefined> | StyleValueStateMap<csstype.Property.JustifyContent | undefined>;
301
+ justifyItems?: StyleValue<csstype.Property.JustifyItems | undefined> | StyleValueStateMap<csstype.Property.JustifyItems | undefined>;
302
+ justifySelf?: StyleValue<csstype.Property.JustifySelf | undefined> | StyleValueStateMap<csstype.Property.JustifySelf | undefined>;
303
+ justifyTracks?: StyleValue<csstype.Property.JustifyTracks | undefined> | StyleValueStateMap<csstype.Property.JustifyTracks | undefined>;
304
+ left?: StyleValue<csstype.Property.Left<string | number> | undefined> | StyleValueStateMap<csstype.Property.Left<string | number> | undefined>;
305
+ letterSpacing?: StyleValue<csstype.Property.LetterSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.LetterSpacing<string | number> | undefined>;
306
+ lightingColor?: StyleValue<csstype.Property.LightingColor | undefined> | StyleValueStateMap<csstype.Property.LightingColor | undefined>;
307
+ lineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
308
+ lineHeight?: StyleValue<csstype.Property.LineHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.LineHeight<string | number> | undefined>;
309
+ lineHeightStep?: StyleValue<csstype.Property.LineHeightStep<string | number> | undefined> | StyleValueStateMap<csstype.Property.LineHeightStep<string | number> | undefined>;
310
+ listStyleImage?: StyleValue<csstype.Property.ListStyleImage | undefined> | StyleValueStateMap<csstype.Property.ListStyleImage | undefined>;
311
+ listStylePosition?: StyleValue<csstype.Property.ListStylePosition | undefined> | StyleValueStateMap<csstype.Property.ListStylePosition | undefined>;
312
+ listStyleType?: StyleValue<csstype.Property.ListStyleType | undefined> | StyleValueStateMap<csstype.Property.ListStyleType | undefined>;
313
+ marginBlockEnd?: StyleValue<csstype.Property.MarginBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlockEnd<string | number> | undefined>;
314
+ marginBlockStart?: StyleValue<csstype.Property.MarginBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlockStart<string | number> | undefined>;
315
+ marginBottom?: StyleValue<csstype.Property.MarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBottom<string | number> | undefined>;
316
+ marginInlineEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
317
+ marginInlineStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
318
+ marginLeft?: StyleValue<csstype.Property.MarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginLeft<string | number> | undefined>;
319
+ marginRight?: StyleValue<csstype.Property.MarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginRight<string | number> | undefined>;
320
+ marginTop?: StyleValue<csstype.Property.MarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginTop<string | number> | undefined>;
321
+ marginTrim?: StyleValue<csstype.Property.MarginTrim | undefined> | StyleValueStateMap<csstype.Property.MarginTrim | undefined>;
322
+ marker?: StyleValue<csstype.Property.Marker | undefined> | StyleValueStateMap<csstype.Property.Marker | undefined>;
323
+ markerEnd?: StyleValue<csstype.Property.MarkerEnd | undefined> | StyleValueStateMap<csstype.Property.MarkerEnd | undefined>;
324
+ markerMid?: StyleValue<csstype.Property.MarkerMid | undefined> | StyleValueStateMap<csstype.Property.MarkerMid | undefined>;
325
+ markerStart?: StyleValue<csstype.Property.MarkerStart | undefined> | StyleValueStateMap<csstype.Property.MarkerStart | undefined>;
326
+ maskBorderMode?: StyleValue<csstype.Property.MaskBorderMode | undefined> | StyleValueStateMap<csstype.Property.MaskBorderMode | undefined>;
327
+ maskBorderOutset?: StyleValue<csstype.Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderOutset<string | number> | undefined>;
328
+ maskBorderRepeat?: StyleValue<csstype.Property.MaskBorderRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskBorderRepeat | undefined>;
329
+ maskBorderSlice?: StyleValue<csstype.Property.MaskBorderSlice | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSlice | undefined>;
330
+ maskBorderSource?: StyleValue<csstype.Property.MaskBorderSource | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSource | undefined>;
331
+ maskBorderWidth?: StyleValue<csstype.Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderWidth<string | number> | undefined>;
332
+ maskClip?: StyleValue<csstype.Property.MaskClip | undefined> | StyleValueStateMap<csstype.Property.MaskClip | undefined>;
333
+ maskComposite?: StyleValue<csstype.Property.MaskComposite | undefined> | StyleValueStateMap<csstype.Property.MaskComposite | undefined>;
334
+ maskImage?: StyleValue<csstype.Property.MaskImage | undefined> | StyleValueStateMap<csstype.Property.MaskImage | undefined>;
335
+ maskMode?: StyleValue<csstype.Property.MaskMode | undefined> | StyleValueStateMap<csstype.Property.MaskMode | undefined>;
336
+ maskOrigin?: StyleValue<csstype.Property.MaskOrigin | undefined> | StyleValueStateMap<csstype.Property.MaskOrigin | undefined>;
337
+ maskPosition?: StyleValue<csstype.Property.MaskPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskPosition<string | number> | undefined>;
338
+ maskRepeat?: StyleValue<csstype.Property.MaskRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskRepeat | undefined>;
339
+ maskSize?: StyleValue<csstype.Property.MaskSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskSize<string | number> | undefined>;
340
+ maskType?: StyleValue<csstype.Property.MaskType | undefined> | StyleValueStateMap<csstype.Property.MaskType | undefined>;
341
+ masonryAutoFlow?: StyleValue<csstype.Property.MasonryAutoFlow | undefined> | StyleValueStateMap<csstype.Property.MasonryAutoFlow | undefined>;
342
+ mathDepth?: StyleValue<csstype.Property.MathDepth | undefined> | StyleValueStateMap<csstype.Property.MathDepth | undefined>;
343
+ mathShift?: StyleValue<csstype.Property.MathShift | undefined> | StyleValueStateMap<csstype.Property.MathShift | undefined>;
344
+ mathStyle?: StyleValue<csstype.Property.MathStyle | undefined> | StyleValueStateMap<csstype.Property.MathStyle | undefined>;
345
+ maxBlockSize?: StyleValue<csstype.Property.MaxBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxBlockSize<string | number> | undefined>;
346
+ maxHeight?: StyleValue<csstype.Property.MaxHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxHeight<string | number> | undefined>;
347
+ maxInlineSize?: StyleValue<csstype.Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxInlineSize<string | number> | undefined>;
348
+ maxLines?: StyleValue<csstype.Property.MaxLines | undefined> | StyleValueStateMap<csstype.Property.MaxLines | undefined>;
349
+ maxWidth?: StyleValue<csstype.Property.MaxWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxWidth<string | number> | undefined>;
350
+ minBlockSize?: StyleValue<csstype.Property.MinBlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinBlockSize<string | number> | undefined>;
351
+ minHeight?: StyleValue<csstype.Property.MinHeight<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinHeight<string | number> | undefined>;
352
+ minInlineSize?: StyleValue<csstype.Property.MinInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinInlineSize<string | number> | undefined>;
353
+ minWidth?: StyleValue<csstype.Property.MinWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MinWidth<string | number> | undefined>;
354
+ mixBlendMode?: StyleValue<csstype.Property.MixBlendMode | undefined> | StyleValueStateMap<csstype.Property.MixBlendMode | undefined>;
355
+ motionDistance?: StyleValue<csstype.Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetDistance<string | number> | undefined>;
356
+ motionPath?: StyleValue<csstype.Property.OffsetPath | undefined> | StyleValueStateMap<csstype.Property.OffsetPath | undefined>;
357
+ motionRotation?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
358
+ objectFit?: StyleValue<csstype.Property.ObjectFit | undefined> | StyleValueStateMap<csstype.Property.ObjectFit | undefined>;
359
+ objectPosition?: StyleValue<csstype.Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.ObjectPosition<string | number> | undefined>;
360
+ objectViewBox?: StyleValue<csstype.Property.ObjectViewBox | undefined> | StyleValueStateMap<csstype.Property.ObjectViewBox | undefined>;
361
+ offsetAnchor?: StyleValue<csstype.Property.OffsetAnchor<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetAnchor<string | number> | undefined>;
362
+ offsetDistance?: StyleValue<csstype.Property.OffsetDistance<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetDistance<string | number> | undefined>;
363
+ offsetPath?: StyleValue<csstype.Property.OffsetPath | undefined> | StyleValueStateMap<csstype.Property.OffsetPath | undefined>;
364
+ offsetPosition?: StyleValue<csstype.Property.OffsetPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.OffsetPosition<string | number> | undefined>;
365
+ offsetRotate?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
366
+ offsetRotation?: StyleValue<csstype.Property.OffsetRotate | undefined> | StyleValueStateMap<csstype.Property.OffsetRotate | undefined>;
367
+ opacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
368
+ order?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
369
+ orphans?: StyleValue<csstype.Property.Orphans | undefined> | StyleValueStateMap<csstype.Property.Orphans | undefined>;
370
+ outlineColor?: StyleValue<csstype.Property.OutlineColor | undefined> | StyleValueStateMap<csstype.Property.OutlineColor | undefined>;
371
+ outlineOffset?: StyleValue<string | number | undefined> | StyleValueStateMap<string | number | undefined>;
372
+ outlineStyle?: StyleValue<csstype.Property.OutlineStyle | undefined> | StyleValueStateMap<csstype.Property.OutlineStyle | undefined>;
373
+ outlineWidth?: StyleValue<csstype.Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.OutlineWidth<string | number> | undefined>;
374
+ overflowAnchor?: StyleValue<csstype.Property.OverflowAnchor | undefined> | StyleValueStateMap<csstype.Property.OverflowAnchor | undefined>;
375
+ overflowBlock?: StyleValue<csstype.Property.OverflowBlock | undefined> | StyleValueStateMap<csstype.Property.OverflowBlock | undefined>;
376
+ overflowClipBox?: StyleValue<csstype.Property.OverflowClipBox | undefined> | StyleValueStateMap<csstype.Property.OverflowClipBox | undefined>;
377
+ overflowClipMargin?: StyleValue<csstype.Property.OverflowClipMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.OverflowClipMargin<string | number> | undefined>;
378
+ overflowInline?: StyleValue<csstype.Property.OverflowInline | undefined> | StyleValueStateMap<csstype.Property.OverflowInline | undefined>;
379
+ overflowWrap?: StyleValue<csstype.Property.OverflowWrap | undefined> | StyleValueStateMap<csstype.Property.OverflowWrap | undefined>;
380
+ overflowX?: StyleValue<csstype.Property.OverflowX | undefined> | StyleValueStateMap<csstype.Property.OverflowX | undefined>;
381
+ overflowY?: StyleValue<csstype.Property.OverflowY | undefined> | StyleValueStateMap<csstype.Property.OverflowY | undefined>;
382
+ overlay?: StyleValue<csstype.Property.Overlay | undefined> | StyleValueStateMap<csstype.Property.Overlay | undefined>;
383
+ overscrollBehaviorBlock?: StyleValue<csstype.Property.OverscrollBehaviorBlock | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorBlock | undefined>;
384
+ overscrollBehaviorInline?: StyleValue<csstype.Property.OverscrollBehaviorInline | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorInline | undefined>;
385
+ overscrollBehaviorX?: StyleValue<csstype.Property.OverscrollBehaviorX | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorX | undefined>;
386
+ overscrollBehaviorY?: StyleValue<csstype.Property.OverscrollBehaviorY | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehaviorY | undefined>;
387
+ paddingBlockEnd?: StyleValue<csstype.Property.PaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlockEnd<string | number> | undefined>;
388
+ paddingBlockStart?: StyleValue<csstype.Property.PaddingBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlockStart<string | number> | undefined>;
389
+ paddingBottom?: StyleValue<csstype.Property.PaddingBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBottom<string | number> | undefined>;
390
+ paddingInlineEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
391
+ paddingInlineStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
392
+ paddingLeft?: StyleValue<csstype.Property.PaddingLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingLeft<string | number> | undefined>;
393
+ paddingRight?: StyleValue<csstype.Property.PaddingRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingRight<string | number> | undefined>;
394
+ paddingTop?: StyleValue<csstype.Property.PaddingTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingTop<string | number> | undefined>;
395
+ page?: StyleValue<csstype.Property.Page | undefined> | StyleValueStateMap<csstype.Property.Page | undefined>;
396
+ paintOrder?: StyleValue<csstype.Property.PaintOrder | undefined> | StyleValueStateMap<csstype.Property.PaintOrder | undefined>;
397
+ perspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
398
+ perspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
399
+ pointerEvents?: StyleValue<csstype.Property.PointerEvents | undefined> | StyleValueStateMap<csstype.Property.PointerEvents | undefined>;
400
+ position?: StyleValue<csstype.Property.Position | undefined> | StyleValueStateMap<csstype.Property.Position | undefined>;
401
+ positionAnchor?: StyleValue<csstype.Property.PositionAnchor | undefined> | StyleValueStateMap<csstype.Property.PositionAnchor | undefined>;
402
+ positionArea?: StyleValue<csstype.Property.PositionArea | undefined> | StyleValueStateMap<csstype.Property.PositionArea | undefined>;
403
+ positionTryFallbacks?: StyleValue<csstype.Property.PositionTryFallbacks | undefined> | StyleValueStateMap<csstype.Property.PositionTryFallbacks | undefined>;
404
+ positionTryOrder?: StyleValue<csstype.Property.PositionTryOrder | undefined> | StyleValueStateMap<csstype.Property.PositionTryOrder | undefined>;
405
+ positionVisibility?: StyleValue<csstype.Property.PositionVisibility | undefined> | StyleValueStateMap<csstype.Property.PositionVisibility | undefined>;
406
+ printColorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
407
+ quotes?: StyleValue<csstype.Property.Quotes | undefined> | StyleValueStateMap<csstype.Property.Quotes | undefined>;
408
+ r?: StyleValue<csstype.Property.R<string | number> | undefined> | StyleValueStateMap<csstype.Property.R<string | number> | undefined>;
409
+ resize?: StyleValue<csstype.Property.Resize | undefined> | StyleValueStateMap<csstype.Property.Resize | undefined>;
410
+ right?: StyleValue<csstype.Property.Right<string | number> | undefined> | StyleValueStateMap<csstype.Property.Right<string | number> | undefined>;
411
+ rotate?: StyleValue<csstype.Property.Rotate | undefined> | StyleValueStateMap<csstype.Property.Rotate | undefined>;
412
+ rowGap?: StyleValue<csstype.Property.RowGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.RowGap<string | number> | undefined>;
413
+ rubyAlign?: StyleValue<csstype.Property.RubyAlign | undefined> | StyleValueStateMap<csstype.Property.RubyAlign | undefined>;
414
+ rubyMerge?: StyleValue<csstype.Property.RubyMerge | undefined> | StyleValueStateMap<csstype.Property.RubyMerge | undefined>;
415
+ rubyOverhang?: StyleValue<csstype.Property.RubyOverhang | undefined> | StyleValueStateMap<csstype.Property.RubyOverhang | undefined>;
416
+ rubyPosition?: StyleValue<csstype.Property.RubyPosition | undefined> | StyleValueStateMap<csstype.Property.RubyPosition | undefined>;
417
+ rx?: StyleValue<csstype.Property.Rx<string | number> | undefined> | StyleValueStateMap<csstype.Property.Rx<string | number> | undefined>;
418
+ ry?: StyleValue<csstype.Property.Ry<string | number> | undefined> | StyleValueStateMap<csstype.Property.Ry<string | number> | undefined>;
419
+ scale?: StyleValue<csstype.Property.Scale | undefined> | StyleValueStateMap<csstype.Property.Scale | undefined>;
420
+ scrollBehavior?: StyleValue<csstype.Property.ScrollBehavior | undefined> | StyleValueStateMap<csstype.Property.ScrollBehavior | undefined>;
421
+ scrollInitialTarget?: StyleValue<csstype.Property.ScrollInitialTarget | undefined> | StyleValueStateMap<csstype.Property.ScrollInitialTarget | undefined>;
422
+ scrollMarginBlockEnd?: StyleValue<csstype.Property.ScrollMarginBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlockEnd<string | number> | undefined>;
423
+ scrollMarginBlockStart?: StyleValue<csstype.Property.ScrollMarginBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlockStart<string | number> | undefined>;
424
+ scrollMarginBottom?: StyleValue<csstype.Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBottom<string | number> | undefined>;
425
+ scrollMarginInlineEnd?: StyleValue<csstype.Property.ScrollMarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInlineEnd<string | number> | undefined>;
426
+ scrollMarginInlineStart?: StyleValue<csstype.Property.ScrollMarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInlineStart<string | number> | undefined>;
427
+ scrollMarginLeft?: StyleValue<csstype.Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginLeft<string | number> | undefined>;
428
+ scrollMarginRight?: StyleValue<csstype.Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginRight<string | number> | undefined>;
429
+ scrollMarginTop?: StyleValue<csstype.Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginTop<string | number> | undefined>;
430
+ scrollPaddingBlockEnd?: StyleValue<csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined>;
431
+ scrollPaddingBlockStart?: StyleValue<csstype.Property.ScrollPaddingBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlockStart<string | number> | undefined>;
432
+ scrollPaddingBottom?: StyleValue<csstype.Property.ScrollPaddingBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBottom<string | number> | undefined>;
433
+ scrollPaddingInlineEnd?: StyleValue<csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined>;
434
+ scrollPaddingInlineStart?: StyleValue<csstype.Property.ScrollPaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInlineStart<string | number> | undefined>;
435
+ scrollPaddingLeft?: StyleValue<csstype.Property.ScrollPaddingLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingLeft<string | number> | undefined>;
436
+ scrollPaddingRight?: StyleValue<csstype.Property.ScrollPaddingRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingRight<string | number> | undefined>;
437
+ scrollPaddingTop?: StyleValue<csstype.Property.ScrollPaddingTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingTop<string | number> | undefined>;
438
+ scrollSnapAlign?: StyleValue<csstype.Property.ScrollSnapAlign | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapAlign | undefined>;
439
+ scrollSnapMarginBottom?: StyleValue<csstype.Property.ScrollMarginBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBottom<string | number> | undefined>;
440
+ scrollSnapMarginLeft?: StyleValue<csstype.Property.ScrollMarginLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginLeft<string | number> | undefined>;
441
+ scrollSnapMarginRight?: StyleValue<csstype.Property.ScrollMarginRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginRight<string | number> | undefined>;
442
+ scrollSnapMarginTop?: StyleValue<csstype.Property.ScrollMarginTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginTop<string | number> | undefined>;
443
+ scrollSnapStop?: StyleValue<csstype.Property.ScrollSnapStop | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapStop | undefined>;
444
+ scrollSnapType?: StyleValue<csstype.Property.ScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapType | undefined>;
445
+ scrollTimelineAxis?: StyleValue<csstype.Property.ScrollTimelineAxis | undefined> | StyleValueStateMap<csstype.Property.ScrollTimelineAxis | undefined>;
446
+ scrollTimelineName?: StyleValue<csstype.Property.ScrollTimelineName | undefined> | StyleValueStateMap<csstype.Property.ScrollTimelineName | undefined>;
447
+ scrollbarColor?: StyleValue<csstype.Property.ScrollbarColor | undefined> | StyleValueStateMap<csstype.Property.ScrollbarColor | undefined>;
448
+ scrollbarGutter?: StyleValue<csstype.Property.ScrollbarGutter | undefined> | StyleValueStateMap<csstype.Property.ScrollbarGutter | undefined>;
449
+ scrollbarWidth?: StyleValue<csstype.Property.ScrollbarWidth | undefined> | StyleValueStateMap<csstype.Property.ScrollbarWidth | undefined>;
450
+ shapeImageThreshold?: StyleValue<csstype.Property.ShapeImageThreshold | undefined> | StyleValueStateMap<csstype.Property.ShapeImageThreshold | undefined>;
451
+ shapeMargin?: StyleValue<csstype.Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ShapeMargin<string | number> | undefined>;
452
+ shapeOutside?: StyleValue<csstype.Property.ShapeOutside | undefined> | StyleValueStateMap<csstype.Property.ShapeOutside | undefined>;
453
+ shapeRendering?: StyleValue<csstype.Property.ShapeRendering | undefined> | StyleValueStateMap<csstype.Property.ShapeRendering | undefined>;
454
+ speakAs?: StyleValue<csstype.Property.SpeakAs | undefined> | StyleValueStateMap<csstype.Property.SpeakAs | undefined>;
455
+ stopColor?: StyleValue<csstype.Property.StopColor | undefined> | StyleValueStateMap<csstype.Property.StopColor | undefined>;
456
+ stopOpacity?: StyleValue<csstype.Property.StopOpacity | undefined> | StyleValueStateMap<csstype.Property.StopOpacity | undefined>;
457
+ stroke?: StyleValue<csstype.Property.Stroke | undefined> | StyleValueStateMap<csstype.Property.Stroke | undefined>;
458
+ strokeColor?: StyleValue<csstype.Property.StrokeColor | undefined> | StyleValueStateMap<csstype.Property.StrokeColor | undefined>;
459
+ strokeDasharray?: StyleValue<csstype.Property.StrokeDasharray<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeDasharray<string | number> | undefined>;
460
+ strokeDashoffset?: StyleValue<csstype.Property.StrokeDashoffset<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeDashoffset<string | number> | undefined>;
461
+ strokeLinecap?: StyleValue<csstype.Property.StrokeLinecap | undefined> | StyleValueStateMap<csstype.Property.StrokeLinecap | undefined>;
462
+ strokeLinejoin?: StyleValue<csstype.Property.StrokeLinejoin | undefined> | StyleValueStateMap<csstype.Property.StrokeLinejoin | undefined>;
463
+ strokeMiterlimit?: StyleValue<csstype.Property.StrokeMiterlimit | undefined> | StyleValueStateMap<csstype.Property.StrokeMiterlimit | undefined>;
464
+ strokeOpacity?: StyleValue<csstype.Property.StrokeOpacity | undefined> | StyleValueStateMap<csstype.Property.StrokeOpacity | undefined>;
465
+ strokeWidth?: StyleValue<csstype.Property.StrokeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.StrokeWidth<string | number> | undefined>;
466
+ tabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
467
+ tableLayout?: StyleValue<csstype.Property.TableLayout | undefined> | StyleValueStateMap<csstype.Property.TableLayout | undefined>;
468
+ textAlign?: StyleValue<csstype.Property.TextAlign | undefined> | StyleValueStateMap<csstype.Property.TextAlign | undefined>;
469
+ textAlignLast?: StyleValue<csstype.Property.TextAlignLast | undefined> | StyleValueStateMap<csstype.Property.TextAlignLast | undefined>;
470
+ textAnchor?: StyleValue<csstype.Property.TextAnchor | undefined> | StyleValueStateMap<csstype.Property.TextAnchor | undefined>;
471
+ textAutospace?: StyleValue<csstype.Property.TextAutospace | undefined> | StyleValueStateMap<csstype.Property.TextAutospace | undefined>;
472
+ textBox?: StyleValue<csstype.Property.TextBox | undefined> | StyleValueStateMap<csstype.Property.TextBox | undefined>;
473
+ textBoxEdge?: StyleValue<csstype.Property.TextBoxEdge | undefined> | StyleValueStateMap<csstype.Property.TextBoxEdge | undefined>;
474
+ textBoxTrim?: StyleValue<csstype.Property.TextBoxTrim | undefined> | StyleValueStateMap<csstype.Property.TextBoxTrim | undefined>;
475
+ textCombineUpright?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
476
+ textDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
477
+ textDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
478
+ textDecorationSkip?: StyleValue<csstype.Property.TextDecorationSkip | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkip | undefined>;
479
+ textDecorationSkipInk?: StyleValue<csstype.Property.TextDecorationSkipInk | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkipInk | undefined>;
480
+ textDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
481
+ textDecorationThickness?: StyleValue<csstype.Property.TextDecorationThickness<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextDecorationThickness<string | number> | undefined>;
482
+ textEmphasisColor?: StyleValue<csstype.Property.TextEmphasisColor | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisColor | undefined>;
483
+ textEmphasisPosition?: StyleValue<csstype.Property.TextEmphasisPosition | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisPosition | undefined>;
484
+ textEmphasisStyle?: StyleValue<csstype.Property.TextEmphasisStyle | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisStyle | undefined>;
485
+ textIndent?: StyleValue<csstype.Property.TextIndent<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextIndent<string | number> | undefined>;
486
+ textJustify?: StyleValue<csstype.Property.TextJustify | undefined> | StyleValueStateMap<csstype.Property.TextJustify | undefined>;
487
+ textOrientation?: StyleValue<csstype.Property.TextOrientation | undefined> | StyleValueStateMap<csstype.Property.TextOrientation | undefined>;
488
+ textOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
489
+ textRendering?: StyleValue<csstype.Property.TextRendering | undefined> | StyleValueStateMap<csstype.Property.TextRendering | undefined>;
490
+ textShadow?: StyleValue<csstype.Property.TextShadow | undefined> | StyleValueStateMap<csstype.Property.TextShadow | undefined>;
491
+ textSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
492
+ textSpacingTrim?: StyleValue<csstype.Property.TextSpacingTrim | undefined> | StyleValueStateMap<csstype.Property.TextSpacingTrim | undefined>;
493
+ textTransform?: StyleValue<csstype.Property.TextTransform | undefined> | StyleValueStateMap<csstype.Property.TextTransform | undefined>;
494
+ textUnderlineOffset?: StyleValue<csstype.Property.TextUnderlineOffset<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextUnderlineOffset<string | number> | undefined>;
495
+ textUnderlinePosition?: StyleValue<csstype.Property.TextUnderlinePosition | undefined> | StyleValueStateMap<csstype.Property.TextUnderlinePosition | undefined>;
496
+ textWrapMode?: StyleValue<csstype.Property.TextWrapMode | undefined> | StyleValueStateMap<csstype.Property.TextWrapMode | undefined>;
497
+ textWrapStyle?: StyleValue<csstype.Property.TextWrapStyle | undefined> | StyleValueStateMap<csstype.Property.TextWrapStyle | undefined>;
498
+ timelineScope?: StyleValue<csstype.Property.TimelineScope | undefined> | StyleValueStateMap<csstype.Property.TimelineScope | undefined>;
499
+ top?: StyleValue<csstype.Property.Top<string | number> | undefined> | StyleValueStateMap<csstype.Property.Top<string | number> | undefined>;
500
+ touchAction?: StyleValue<csstype.Property.TouchAction | undefined> | StyleValueStateMap<csstype.Property.TouchAction | undefined>;
501
+ transform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
502
+ transformBox?: StyleValue<csstype.Property.TransformBox | undefined> | StyleValueStateMap<csstype.Property.TransformBox | undefined>;
503
+ transformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
504
+ transformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
505
+ transitionBehavior?: StyleValue<csstype.Property.TransitionBehavior | undefined> | StyleValueStateMap<csstype.Property.TransitionBehavior | undefined>;
506
+ transitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
507
+ transitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
508
+ transitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
509
+ transitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
510
+ translate?: StyleValue<csstype.Property.Translate<string | number> | undefined> | StyleValueStateMap<csstype.Property.Translate<string | number> | undefined>;
511
+ unicodeBidi?: StyleValue<csstype.Property.UnicodeBidi | undefined> | StyleValueStateMap<csstype.Property.UnicodeBidi | undefined>;
512
+ userSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
513
+ vectorEffect?: StyleValue<csstype.Property.VectorEffect | undefined> | StyleValueStateMap<csstype.Property.VectorEffect | undefined>;
514
+ verticalAlign?: StyleValue<csstype.Property.VerticalAlign<string | number> | undefined> | StyleValueStateMap<csstype.Property.VerticalAlign<string | number> | undefined>;
515
+ viewTimelineAxis?: StyleValue<csstype.Property.ViewTimelineAxis | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineAxis | undefined>;
516
+ viewTimelineInset?: StyleValue<csstype.Property.ViewTimelineInset<string | number> | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineInset<string | number> | undefined>;
517
+ viewTimelineName?: StyleValue<csstype.Property.ViewTimelineName | undefined> | StyleValueStateMap<csstype.Property.ViewTimelineName | undefined>;
518
+ viewTransitionClass?: StyleValue<csstype.Property.ViewTransitionClass | undefined> | StyleValueStateMap<csstype.Property.ViewTransitionClass | undefined>;
519
+ viewTransitionName?: StyleValue<csstype.Property.ViewTransitionName | undefined> | StyleValueStateMap<csstype.Property.ViewTransitionName | undefined>;
520
+ visibility?: StyleValue<csstype.Property.Visibility | undefined> | StyleValueStateMap<csstype.Property.Visibility | undefined>;
521
+ whiteSpace?: StyleValue<csstype.Property.WhiteSpace | undefined> | StyleValueStateMap<csstype.Property.WhiteSpace | undefined>;
522
+ whiteSpaceCollapse?: StyleValue<csstype.Property.WhiteSpaceCollapse | undefined> | StyleValueStateMap<csstype.Property.WhiteSpaceCollapse | undefined>;
523
+ widows?: StyleValue<csstype.Property.Widows | undefined> | StyleValueStateMap<csstype.Property.Widows | undefined>;
524
+ willChange?: StyleValue<csstype.Property.WillChange | undefined> | StyleValueStateMap<csstype.Property.WillChange | undefined>;
525
+ wordBreak?: StyleValue<csstype.Property.WordBreak | undefined> | StyleValueStateMap<csstype.Property.WordBreak | undefined>;
526
+ wordSpacing?: StyleValue<csstype.Property.WordSpacing<string | number> | undefined> | StyleValueStateMap<csstype.Property.WordSpacing<string | number> | undefined>;
527
+ wordWrap?: StyleValue<csstype.Property.WordWrap | undefined> | StyleValueStateMap<csstype.Property.WordWrap | undefined>;
528
+ writingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
529
+ x?: StyleValue<csstype.Property.X<string | number> | undefined> | StyleValueStateMap<csstype.Property.X<string | number> | undefined>;
530
+ y?: StyleValue<csstype.Property.Y<string | number> | undefined> | StyleValueStateMap<csstype.Property.Y<string | number> | undefined>;
531
+ zIndex?: StyleValue<csstype.Property.ZIndex | undefined> | StyleValueStateMap<csstype.Property.ZIndex | undefined>;
532
+ zoom?: StyleValue<csstype.Property.Zoom | undefined> | StyleValueStateMap<csstype.Property.Zoom | undefined>;
533
+ all?: StyleValue<csstype.Globals | undefined> | StyleValueStateMap<csstype.Globals | undefined>;
534
+ animation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
535
+ animationRange?: StyleValue<csstype.Property.AnimationRange<string | number> | undefined> | StyleValueStateMap<csstype.Property.AnimationRange<string | number> | undefined>;
536
+ background?: StyleValue<csstype.Property.Background<string | number> | undefined> | StyleValueStateMap<csstype.Property.Background<string | number> | undefined>;
537
+ backgroundPosition?: StyleValue<csstype.Property.BackgroundPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundPosition<string | number> | undefined>;
538
+ borderBlock?: StyleValue<csstype.Property.BorderBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlock<string | number> | undefined>;
539
+ borderBlockColor?: StyleValue<csstype.Property.BorderBlockColor | undefined> | StyleValueStateMap<csstype.Property.BorderBlockColor | undefined>;
540
+ borderBlockEnd?: StyleValue<csstype.Property.BorderBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockEnd<string | number> | undefined>;
541
+ borderBlockStart?: StyleValue<csstype.Property.BorderBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStart<string | number> | undefined>;
542
+ borderBlockStyle?: StyleValue<csstype.Property.BorderBlockStyle | undefined> | StyleValueStateMap<csstype.Property.BorderBlockStyle | undefined>;
543
+ borderBlockWidth?: StyleValue<csstype.Property.BorderBlockWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBlockWidth<string | number> | undefined>;
544
+ borderBottom?: StyleValue<csstype.Property.BorderBottom<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottom<string | number> | undefined>;
545
+ borderColor?: StyleValue<csstype.Property.BorderColor | undefined> | StyleValueStateMap<csstype.Property.BorderColor | undefined>;
546
+ borderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
547
+ borderInline?: StyleValue<csstype.Property.BorderInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInline<string | number> | undefined>;
548
+ borderInlineColor?: StyleValue<csstype.Property.BorderInlineColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineColor | undefined>;
549
+ borderInlineEnd?: StyleValue<csstype.Property.BorderInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEnd<string | number> | undefined>;
550
+ borderInlineStart?: StyleValue<csstype.Property.BorderInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStart<string | number> | undefined>;
551
+ borderInlineStyle?: StyleValue<csstype.Property.BorderInlineStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStyle | undefined>;
552
+ borderInlineWidth?: StyleValue<csstype.Property.BorderInlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineWidth<string | number> | undefined>;
553
+ borderLeft?: StyleValue<csstype.Property.BorderLeft<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderLeft<string | number> | undefined>;
554
+ borderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
555
+ borderRight?: StyleValue<csstype.Property.BorderRight<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRight<string | number> | undefined>;
556
+ borderStyle?: StyleValue<csstype.Property.BorderStyle | undefined> | StyleValueStateMap<csstype.Property.BorderStyle | undefined>;
557
+ borderTop?: StyleValue<csstype.Property.BorderTop<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTop<string | number> | undefined>;
558
+ borderWidth?: StyleValue<csstype.Property.BorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderWidth<string | number> | undefined>;
559
+ caret?: StyleValue<csstype.Property.Caret | undefined> | StyleValueStateMap<csstype.Property.Caret | undefined>;
560
+ columnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
561
+ columns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
562
+ containIntrinsicSize?: StyleValue<csstype.Property.ContainIntrinsicSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.ContainIntrinsicSize<string | number> | undefined>;
563
+ container?: StyleValue<csstype.Property.Container | undefined> | StyleValueStateMap<csstype.Property.Container | undefined>;
564
+ flex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
565
+ flexFlow?: StyleValue<csstype.Property.FlexFlow | undefined> | StyleValueStateMap<csstype.Property.FlexFlow | undefined>;
566
+ grid?: StyleValue<csstype.Property.Grid | undefined> | StyleValueStateMap<csstype.Property.Grid | undefined>;
567
+ gridArea?: StyleValue<csstype.Property.GridArea | undefined> | StyleValueStateMap<csstype.Property.GridArea | undefined>;
568
+ gridColumn?: StyleValue<csstype.Property.GridColumn | undefined> | StyleValueStateMap<csstype.Property.GridColumn | undefined>;
569
+ gridRow?: StyleValue<csstype.Property.GridRow | undefined> | StyleValueStateMap<csstype.Property.GridRow | undefined>;
570
+ gridTemplate?: StyleValue<csstype.Property.GridTemplate | undefined> | StyleValueStateMap<csstype.Property.GridTemplate | undefined>;
571
+ inset?: StyleValue<csstype.Property.Inset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Inset<string | number> | undefined>;
572
+ insetBlock?: StyleValue<csstype.Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlock<string | number> | undefined>;
573
+ insetInline?: StyleValue<csstype.Property.InsetInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInline<string | number> | undefined>;
574
+ lineClamp?: StyleValue<csstype.Property.LineClamp | undefined> | StyleValueStateMap<csstype.Property.LineClamp | undefined>;
575
+ listStyle?: StyleValue<csstype.Property.ListStyle | undefined> | StyleValueStateMap<csstype.Property.ListStyle | undefined>;
576
+ marginBlock?: StyleValue<csstype.Property.MarginBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginBlock<string | number> | undefined>;
577
+ marginInline?: StyleValue<csstype.Property.MarginInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInline<string | number> | undefined>;
578
+ mask?: StyleValue<csstype.Property.Mask<string | number> | undefined> | StyleValueStateMap<csstype.Property.Mask<string | number> | undefined>;
579
+ maskBorder?: StyleValue<csstype.Property.MaskBorder | undefined> | StyleValueStateMap<csstype.Property.MaskBorder | undefined>;
580
+ motion?: StyleValue<csstype.Property.Offset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Offset<string | number> | undefined>;
581
+ offset?: StyleValue<csstype.Property.Offset<string | number> | undefined> | StyleValueStateMap<csstype.Property.Offset<string | number> | undefined>;
582
+ overflow?: StyleValue<csstype.Property.Overflow | undefined> | StyleValueStateMap<csstype.Property.Overflow | undefined>;
583
+ overscrollBehavior?: StyleValue<csstype.Property.OverscrollBehavior | undefined> | StyleValueStateMap<csstype.Property.OverscrollBehavior | undefined>;
584
+ paddingBlock?: StyleValue<csstype.Property.PaddingBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingBlock<string | number> | undefined>;
585
+ paddingInline?: StyleValue<csstype.Property.PaddingInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInline<string | number> | undefined>;
586
+ placeSelf?: StyleValue<csstype.Property.PlaceSelf | undefined> | StyleValueStateMap<csstype.Property.PlaceSelf | undefined>;
587
+ positionTry?: StyleValue<csstype.Property.PositionTry | undefined> | StyleValueStateMap<csstype.Property.PositionTry | undefined>;
588
+ scrollMargin?: StyleValue<csstype.Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMargin<string | number> | undefined>;
589
+ scrollMarginBlock?: StyleValue<csstype.Property.ScrollMarginBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginBlock<string | number> | undefined>;
590
+ scrollMarginInline?: StyleValue<csstype.Property.ScrollMarginInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMarginInline<string | number> | undefined>;
591
+ scrollPadding?: StyleValue<csstype.Property.ScrollPadding<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPadding<string | number> | undefined>;
592
+ scrollPaddingBlock?: StyleValue<csstype.Property.ScrollPaddingBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingBlock<string | number> | undefined>;
593
+ scrollPaddingInline?: StyleValue<csstype.Property.ScrollPaddingInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollPaddingInline<string | number> | undefined>;
594
+ scrollSnapMargin?: StyleValue<csstype.Property.ScrollMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollMargin<string | number> | undefined>;
595
+ scrollTimeline?: StyleValue<csstype.Property.ScrollTimeline | undefined> | StyleValueStateMap<csstype.Property.ScrollTimeline | undefined>;
596
+ textDecoration?: StyleValue<csstype.Property.TextDecoration<string | number> | undefined> | StyleValueStateMap<csstype.Property.TextDecoration<string | number> | undefined>;
597
+ textEmphasis?: StyleValue<csstype.Property.TextEmphasis | undefined> | StyleValueStateMap<csstype.Property.TextEmphasis | undefined>;
598
+ textWrap?: StyleValue<csstype.Property.TextWrap | undefined> | StyleValueStateMap<csstype.Property.TextWrap | undefined>;
599
+ viewTimeline?: StyleValue<csstype.Property.ViewTimeline | undefined> | StyleValueStateMap<csstype.Property.ViewTimeline | undefined>;
600
+ MozAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
601
+ MozAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
602
+ MozAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
603
+ MozAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
604
+ MozAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
605
+ MozAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
606
+ MozAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
607
+ MozAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
608
+ MozAppearance?: StyleValue<csstype.Property.MozAppearance | undefined> | StyleValueStateMap<csstype.Property.MozAppearance | undefined>;
609
+ MozBackfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
610
+ MozBinding?: StyleValue<csstype.Property.MozBinding | undefined> | StyleValueStateMap<csstype.Property.MozBinding | undefined>;
611
+ MozBorderBottomColors?: StyleValue<csstype.Property.MozBorderBottomColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderBottomColors | undefined>;
612
+ MozBorderEndColor?: StyleValue<csstype.Property.BorderInlineEndColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndColor | undefined>;
613
+ MozBorderEndStyle?: StyleValue<csstype.Property.BorderInlineEndStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndStyle | undefined>;
614
+ MozBorderEndWidth?: StyleValue<csstype.Property.BorderInlineEndWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderInlineEndWidth<string | number> | undefined>;
615
+ MozBorderLeftColors?: StyleValue<csstype.Property.MozBorderLeftColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderLeftColors | undefined>;
616
+ MozBorderRightColors?: StyleValue<csstype.Property.MozBorderRightColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderRightColors | undefined>;
617
+ MozBorderStartColor?: StyleValue<csstype.Property.BorderInlineStartColor | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartColor | undefined>;
618
+ MozBorderStartStyle?: StyleValue<csstype.Property.BorderInlineStartStyle | undefined> | StyleValueStateMap<csstype.Property.BorderInlineStartStyle | undefined>;
619
+ MozBorderTopColors?: StyleValue<csstype.Property.MozBorderTopColors | undefined> | StyleValueStateMap<csstype.Property.MozBorderTopColors | undefined>;
620
+ MozBoxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
621
+ MozColumnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
622
+ MozColumnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
623
+ MozColumnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
624
+ MozColumnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
625
+ MozContextProperties?: StyleValue<csstype.Property.MozContextProperties | undefined> | StyleValueStateMap<csstype.Property.MozContextProperties | undefined>;
626
+ MozFontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
627
+ MozFontLanguageOverride?: StyleValue<csstype.Property.FontLanguageOverride | undefined> | StyleValueStateMap<csstype.Property.FontLanguageOverride | undefined>;
628
+ MozHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
629
+ MozMarginEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
630
+ MozMarginStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
631
+ MozOrient?: StyleValue<csstype.Property.MozOrient | undefined> | StyleValueStateMap<csstype.Property.MozOrient | undefined>;
632
+ MozOsxFontSmoothing?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
633
+ MozOutlineRadiusBottomleft?: StyleValue<csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined>;
634
+ MozOutlineRadiusBottomright?: StyleValue<csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined>;
635
+ MozOutlineRadiusTopleft?: StyleValue<csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined>;
636
+ MozOutlineRadiusTopright?: StyleValue<csstype.Property.MozOutlineRadiusTopright<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadiusTopright<string | number> | undefined>;
637
+ MozPaddingEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
638
+ MozPaddingStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
639
+ MozPerspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
640
+ MozPerspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
641
+ MozStackSizing?: StyleValue<csstype.Property.MozStackSizing | undefined> | StyleValueStateMap<csstype.Property.MozStackSizing | undefined>;
642
+ MozTabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
643
+ MozTextBlink?: StyleValue<csstype.Property.MozTextBlink | undefined> | StyleValueStateMap<csstype.Property.MozTextBlink | undefined>;
644
+ MozTextSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
645
+ MozTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
646
+ MozTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
647
+ MozTransformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
648
+ MozUserModify?: StyleValue<csstype.Property.MozUserModify | undefined> | StyleValueStateMap<csstype.Property.MozUserModify | undefined>;
649
+ MozUserSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
650
+ MozWindowDragging?: StyleValue<csstype.Property.MozWindowDragging | undefined> | StyleValueStateMap<csstype.Property.MozWindowDragging | undefined>;
651
+ MozWindowShadow?: StyleValue<csstype.Property.MozWindowShadow | undefined> | StyleValueStateMap<csstype.Property.MozWindowShadow | undefined>;
652
+ msAccelerator?: StyleValue<csstype.Property.MsAccelerator | undefined> | StyleValueStateMap<csstype.Property.MsAccelerator | undefined>;
653
+ msBlockProgression?: StyleValue<csstype.Property.MsBlockProgression | undefined> | StyleValueStateMap<csstype.Property.MsBlockProgression | undefined>;
654
+ msContentZoomChaining?: StyleValue<csstype.Property.MsContentZoomChaining | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomChaining | undefined>;
655
+ msContentZoomLimitMax?: StyleValue<csstype.Property.MsContentZoomLimitMax | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimitMax | undefined>;
656
+ msContentZoomLimitMin?: StyleValue<csstype.Property.MsContentZoomLimitMin | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimitMin | undefined>;
657
+ msContentZoomSnapPoints?: StyleValue<csstype.Property.MsContentZoomSnapPoints | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnapPoints | undefined>;
658
+ msContentZoomSnapType?: StyleValue<csstype.Property.MsContentZoomSnapType | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnapType | undefined>;
659
+ msContentZooming?: StyleValue<csstype.Property.MsContentZooming | undefined> | StyleValueStateMap<csstype.Property.MsContentZooming | undefined>;
660
+ msFilter?: StyleValue<csstype.Property.MsFilter | undefined> | StyleValueStateMap<csstype.Property.MsFilter | undefined>;
661
+ msFlexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
662
+ msFlexPositive?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
663
+ msFlowFrom?: StyleValue<csstype.Property.MsFlowFrom | undefined> | StyleValueStateMap<csstype.Property.MsFlowFrom | undefined>;
664
+ msFlowInto?: StyleValue<csstype.Property.MsFlowInto | undefined> | StyleValueStateMap<csstype.Property.MsFlowInto | undefined>;
665
+ msGridColumns?: StyleValue<csstype.Property.MsGridColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsGridColumns<string | number> | undefined>;
666
+ msGridRows?: StyleValue<csstype.Property.MsGridRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsGridRows<string | number> | undefined>;
667
+ msHighContrastAdjust?: StyleValue<csstype.Property.MsHighContrastAdjust | undefined> | StyleValueStateMap<csstype.Property.MsHighContrastAdjust | undefined>;
668
+ msHyphenateLimitChars?: StyleValue<csstype.Property.MsHyphenateLimitChars | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitChars | undefined>;
669
+ msHyphenateLimitLines?: StyleValue<csstype.Property.MsHyphenateLimitLines | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitLines | undefined>;
670
+ msHyphenateLimitZone?: StyleValue<csstype.Property.MsHyphenateLimitZone<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsHyphenateLimitZone<string | number> | undefined>;
671
+ msHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
672
+ msImeAlign?: StyleValue<csstype.Property.MsImeAlign | undefined> | StyleValueStateMap<csstype.Property.MsImeAlign | undefined>;
673
+ msLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
674
+ msOrder?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
675
+ msOverflowStyle?: StyleValue<csstype.Property.MsOverflowStyle | undefined> | StyleValueStateMap<csstype.Property.MsOverflowStyle | undefined>;
676
+ msOverflowX?: StyleValue<csstype.Property.OverflowX | undefined> | StyleValueStateMap<csstype.Property.OverflowX | undefined>;
677
+ msOverflowY?: StyleValue<csstype.Property.OverflowY | undefined> | StyleValueStateMap<csstype.Property.OverflowY | undefined>;
678
+ msScrollChaining?: StyleValue<csstype.Property.MsScrollChaining | undefined> | StyleValueStateMap<csstype.Property.MsScrollChaining | undefined>;
679
+ msScrollLimitXMax?: StyleValue<csstype.Property.MsScrollLimitXMax<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitXMax<string | number> | undefined>;
680
+ msScrollLimitXMin?: StyleValue<csstype.Property.MsScrollLimitXMin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitXMin<string | number> | undefined>;
681
+ msScrollLimitYMax?: StyleValue<csstype.Property.MsScrollLimitYMax<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitYMax<string | number> | undefined>;
682
+ msScrollLimitYMin?: StyleValue<csstype.Property.MsScrollLimitYMin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimitYMin<string | number> | undefined>;
683
+ msScrollRails?: StyleValue<csstype.Property.MsScrollRails | undefined> | StyleValueStateMap<csstype.Property.MsScrollRails | undefined>;
684
+ msScrollSnapPointsX?: StyleValue<csstype.Property.MsScrollSnapPointsX | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapPointsX | undefined>;
685
+ msScrollSnapPointsY?: StyleValue<csstype.Property.MsScrollSnapPointsY | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapPointsY | undefined>;
686
+ msScrollSnapType?: StyleValue<csstype.Property.MsScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapType | undefined>;
687
+ msScrollTranslation?: StyleValue<csstype.Property.MsScrollTranslation | undefined> | StyleValueStateMap<csstype.Property.MsScrollTranslation | undefined>;
688
+ msScrollbar3dlightColor?: StyleValue<csstype.Property.MsScrollbar3dlightColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbar3dlightColor | undefined>;
689
+ msScrollbarArrowColor?: StyleValue<csstype.Property.MsScrollbarArrowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarArrowColor | undefined>;
690
+ msScrollbarBaseColor?: StyleValue<csstype.Property.MsScrollbarBaseColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarBaseColor | undefined>;
691
+ msScrollbarDarkshadowColor?: StyleValue<csstype.Property.MsScrollbarDarkshadowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarDarkshadowColor | undefined>;
692
+ msScrollbarFaceColor?: StyleValue<csstype.Property.MsScrollbarFaceColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarFaceColor | undefined>;
693
+ msScrollbarHighlightColor?: StyleValue<csstype.Property.MsScrollbarHighlightColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarHighlightColor | undefined>;
694
+ msScrollbarShadowColor?: StyleValue<csstype.Property.MsScrollbarShadowColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarShadowColor | undefined>;
695
+ msScrollbarTrackColor?: StyleValue<csstype.Property.MsScrollbarTrackColor | undefined> | StyleValueStateMap<csstype.Property.MsScrollbarTrackColor | undefined>;
696
+ msTextAutospace?: StyleValue<csstype.Property.MsTextAutospace | undefined> | StyleValueStateMap<csstype.Property.MsTextAutospace | undefined>;
697
+ msTextCombineHorizontal?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
698
+ msTextOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
699
+ msTouchAction?: StyleValue<csstype.Property.TouchAction | undefined> | StyleValueStateMap<csstype.Property.TouchAction | undefined>;
700
+ msTouchSelect?: StyleValue<csstype.Property.MsTouchSelect | undefined> | StyleValueStateMap<csstype.Property.MsTouchSelect | undefined>;
701
+ msTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
702
+ msTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
703
+ msTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
704
+ msTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
705
+ msTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
706
+ msTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
707
+ msUserSelect?: StyleValue<csstype.Property.MsUserSelect | undefined> | StyleValueStateMap<csstype.Property.MsUserSelect | undefined>;
708
+ msWordBreak?: StyleValue<csstype.Property.WordBreak | undefined> | StyleValueStateMap<csstype.Property.WordBreak | undefined>;
709
+ msWrapFlow?: StyleValue<csstype.Property.MsWrapFlow | undefined> | StyleValueStateMap<csstype.Property.MsWrapFlow | undefined>;
710
+ msWrapMargin?: StyleValue<csstype.Property.MsWrapMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.MsWrapMargin<string | number> | undefined>;
711
+ msWrapThrough?: StyleValue<csstype.Property.MsWrapThrough | undefined> | StyleValueStateMap<csstype.Property.MsWrapThrough | undefined>;
712
+ msWritingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
713
+ WebkitAlignContent?: StyleValue<csstype.Property.AlignContent | undefined> | StyleValueStateMap<csstype.Property.AlignContent | undefined>;
714
+ WebkitAlignItems?: StyleValue<csstype.Property.AlignItems | undefined> | StyleValueStateMap<csstype.Property.AlignItems | undefined>;
715
+ WebkitAlignSelf?: StyleValue<csstype.Property.AlignSelf | undefined> | StyleValueStateMap<csstype.Property.AlignSelf | undefined>;
716
+ WebkitAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
717
+ WebkitAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
718
+ WebkitAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
719
+ WebkitAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
720
+ WebkitAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
721
+ WebkitAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
722
+ WebkitAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
723
+ WebkitAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
724
+ WebkitAppearance?: StyleValue<csstype.Property.WebkitAppearance | undefined> | StyleValueStateMap<csstype.Property.WebkitAppearance | undefined>;
725
+ WebkitBackdropFilter?: StyleValue<csstype.Property.BackdropFilter | undefined> | StyleValueStateMap<csstype.Property.BackdropFilter | undefined>;
726
+ WebkitBackfaceVisibility?: StyleValue<csstype.Property.BackfaceVisibility | undefined> | StyleValueStateMap<csstype.Property.BackfaceVisibility | undefined>;
727
+ WebkitBackgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
728
+ WebkitBackgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
729
+ WebkitBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
730
+ WebkitBorderBeforeColor?: StyleValue<csstype.Property.WebkitBorderBeforeColor | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeColor | undefined>;
731
+ WebkitBorderBeforeStyle?: StyleValue<csstype.Property.WebkitBorderBeforeStyle | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeStyle | undefined>;
732
+ WebkitBorderBeforeWidth?: StyleValue<csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined>;
733
+ WebkitBorderBottomLeftRadius?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
734
+ WebkitBorderBottomRightRadius?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
735
+ WebkitBorderImageSlice?: StyleValue<csstype.Property.BorderImageSlice | undefined> | StyleValueStateMap<csstype.Property.BorderImageSlice | undefined>;
736
+ WebkitBorderTopLeftRadius?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
737
+ WebkitBorderTopRightRadius?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
738
+ WebkitBoxDecorationBreak?: StyleValue<csstype.Property.BoxDecorationBreak | undefined> | StyleValueStateMap<csstype.Property.BoxDecorationBreak | undefined>;
739
+ WebkitBoxReflect?: StyleValue<csstype.Property.WebkitBoxReflect<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBoxReflect<string | number> | undefined>;
740
+ WebkitBoxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
741
+ WebkitBoxSizing?: StyleValue<csstype.Property.BoxSizing | undefined> | StyleValueStateMap<csstype.Property.BoxSizing | undefined>;
742
+ WebkitClipPath?: StyleValue<csstype.Property.ClipPath | undefined> | StyleValueStateMap<csstype.Property.ClipPath | undefined>;
743
+ WebkitColumnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
744
+ WebkitColumnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
745
+ WebkitColumnRuleColor?: StyleValue<csstype.Property.ColumnRuleColor | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleColor | undefined>;
746
+ WebkitColumnRuleStyle?: StyleValue<csstype.Property.ColumnRuleStyle | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleStyle | undefined>;
747
+ WebkitColumnRuleWidth?: StyleValue<csstype.Property.ColumnRuleWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRuleWidth<string | number> | undefined>;
748
+ WebkitColumnSpan?: StyleValue<csstype.Property.ColumnSpan | undefined> | StyleValueStateMap<csstype.Property.ColumnSpan | undefined>;
749
+ WebkitColumnWidth?: StyleValue<csstype.Property.ColumnWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnWidth<string | number> | undefined>;
750
+ WebkitFilter?: StyleValue<csstype.Property.Filter | undefined> | StyleValueStateMap<csstype.Property.Filter | undefined>;
751
+ WebkitFlexBasis?: StyleValue<csstype.Property.FlexBasis<string | number> | undefined> | StyleValueStateMap<csstype.Property.FlexBasis<string | number> | undefined>;
752
+ WebkitFlexDirection?: StyleValue<csstype.Property.FlexDirection | undefined> | StyleValueStateMap<csstype.Property.FlexDirection | undefined>;
753
+ WebkitFlexGrow?: StyleValue<csstype.Property.FlexGrow | undefined> | StyleValueStateMap<csstype.Property.FlexGrow | undefined>;
754
+ WebkitFlexShrink?: StyleValue<csstype.Property.FlexShrink | undefined> | StyleValueStateMap<csstype.Property.FlexShrink | undefined>;
755
+ WebkitFlexWrap?: StyleValue<csstype.Property.FlexWrap | undefined> | StyleValueStateMap<csstype.Property.FlexWrap | undefined>;
756
+ WebkitFontFeatureSettings?: StyleValue<csstype.Property.FontFeatureSettings | undefined> | StyleValueStateMap<csstype.Property.FontFeatureSettings | undefined>;
757
+ WebkitFontKerning?: StyleValue<csstype.Property.FontKerning | undefined> | StyleValueStateMap<csstype.Property.FontKerning | undefined>;
758
+ WebkitFontSmoothing?: StyleValue<csstype.Property.FontSmooth<string | number> | undefined> | StyleValueStateMap<csstype.Property.FontSmooth<string | number> | undefined>;
759
+ WebkitFontVariantLigatures?: StyleValue<csstype.Property.FontVariantLigatures | undefined> | StyleValueStateMap<csstype.Property.FontVariantLigatures | undefined>;
760
+ WebkitHyphenateCharacter?: StyleValue<csstype.Property.HyphenateCharacter | undefined> | StyleValueStateMap<csstype.Property.HyphenateCharacter | undefined>;
761
+ WebkitHyphens?: StyleValue<csstype.Property.Hyphens | undefined> | StyleValueStateMap<csstype.Property.Hyphens | undefined>;
762
+ WebkitInitialLetter?: StyleValue<csstype.Property.InitialLetter | undefined> | StyleValueStateMap<csstype.Property.InitialLetter | undefined>;
763
+ WebkitJustifyContent?: StyleValue<csstype.Property.JustifyContent | undefined> | StyleValueStateMap<csstype.Property.JustifyContent | undefined>;
764
+ WebkitLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
765
+ WebkitLineClamp?: StyleValue<csstype.Property.WebkitLineClamp | undefined> | StyleValueStateMap<csstype.Property.WebkitLineClamp | undefined>;
766
+ WebkitLogicalHeight?: StyleValue<csstype.Property.BlockSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BlockSize<string | number> | undefined>;
767
+ WebkitLogicalWidth?: StyleValue<csstype.Property.InlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.InlineSize<string | number> | undefined>;
768
+ WebkitMarginEnd?: StyleValue<csstype.Property.MarginInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineEnd<string | number> | undefined>;
769
+ WebkitMarginStart?: StyleValue<csstype.Property.MarginInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.MarginInlineStart<string | number> | undefined>;
770
+ WebkitMaskAttachment?: StyleValue<csstype.Property.WebkitMaskAttachment | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskAttachment | undefined>;
771
+ WebkitMaskBoxImageOutset?: StyleValue<csstype.Property.MaskBorderOutset<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderOutset<string | number> | undefined>;
772
+ WebkitMaskBoxImageRepeat?: StyleValue<csstype.Property.MaskBorderRepeat | undefined> | StyleValueStateMap<csstype.Property.MaskBorderRepeat | undefined>;
773
+ WebkitMaskBoxImageSlice?: StyleValue<csstype.Property.MaskBorderSlice | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSlice | undefined>;
774
+ WebkitMaskBoxImageSource?: StyleValue<csstype.Property.MaskBorderSource | undefined> | StyleValueStateMap<csstype.Property.MaskBorderSource | undefined>;
775
+ WebkitMaskBoxImageWidth?: StyleValue<csstype.Property.MaskBorderWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaskBorderWidth<string | number> | undefined>;
776
+ WebkitMaskClip?: StyleValue<csstype.Property.WebkitMaskClip | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskClip | undefined>;
777
+ WebkitMaskComposite?: StyleValue<csstype.Property.WebkitMaskComposite | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskComposite | undefined>;
778
+ WebkitMaskImage?: StyleValue<csstype.Property.WebkitMaskImage | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskImage | undefined>;
779
+ WebkitMaskOrigin?: StyleValue<csstype.Property.WebkitMaskOrigin | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskOrigin | undefined>;
780
+ WebkitMaskPosition?: StyleValue<csstype.Property.WebkitMaskPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPosition<string | number> | undefined>;
781
+ WebkitMaskPositionX?: StyleValue<csstype.Property.WebkitMaskPositionX<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPositionX<string | number> | undefined>;
782
+ WebkitMaskPositionY?: StyleValue<csstype.Property.WebkitMaskPositionY<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskPositionY<string | number> | undefined>;
783
+ WebkitMaskRepeat?: StyleValue<csstype.Property.WebkitMaskRepeat | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeat | undefined>;
784
+ WebkitMaskRepeatX?: StyleValue<csstype.Property.WebkitMaskRepeatX | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeatX | undefined>;
785
+ WebkitMaskRepeatY?: StyleValue<csstype.Property.WebkitMaskRepeatY | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskRepeatY | undefined>;
786
+ WebkitMaskSize?: StyleValue<csstype.Property.WebkitMaskSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMaskSize<string | number> | undefined>;
787
+ WebkitMaxInlineSize?: StyleValue<csstype.Property.MaxInlineSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.MaxInlineSize<string | number> | undefined>;
788
+ WebkitOrder?: StyleValue<csstype.Property.Order | undefined> | StyleValueStateMap<csstype.Property.Order | undefined>;
789
+ WebkitOverflowScrolling?: StyleValue<csstype.Property.WebkitOverflowScrolling | undefined> | StyleValueStateMap<csstype.Property.WebkitOverflowScrolling | undefined>;
790
+ WebkitPaddingEnd?: StyleValue<csstype.Property.PaddingInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineEnd<string | number> | undefined>;
791
+ WebkitPaddingStart?: StyleValue<csstype.Property.PaddingInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.PaddingInlineStart<string | number> | undefined>;
792
+ WebkitPerspective?: StyleValue<csstype.Property.Perspective<string | number> | undefined> | StyleValueStateMap<csstype.Property.Perspective<string | number> | undefined>;
793
+ WebkitPerspectiveOrigin?: StyleValue<csstype.Property.PerspectiveOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.PerspectiveOrigin<string | number> | undefined>;
794
+ WebkitPrintColorAdjust?: StyleValue<csstype.Property.PrintColorAdjust | undefined> | StyleValueStateMap<csstype.Property.PrintColorAdjust | undefined>;
795
+ WebkitRubyPosition?: StyleValue<csstype.Property.RubyPosition | undefined> | StyleValueStateMap<csstype.Property.RubyPosition | undefined>;
796
+ WebkitScrollSnapType?: StyleValue<csstype.Property.ScrollSnapType | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapType | undefined>;
797
+ WebkitShapeMargin?: StyleValue<csstype.Property.ShapeMargin<string | number> | undefined> | StyleValueStateMap<csstype.Property.ShapeMargin<string | number> | undefined>;
798
+ WebkitTapHighlightColor?: StyleValue<csstype.Property.WebkitTapHighlightColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTapHighlightColor | undefined>;
799
+ WebkitTextCombine?: StyleValue<csstype.Property.TextCombineUpright | undefined> | StyleValueStateMap<csstype.Property.TextCombineUpright | undefined>;
800
+ WebkitTextDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
801
+ WebkitTextDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
802
+ WebkitTextDecorationSkip?: StyleValue<csstype.Property.TextDecorationSkip | undefined> | StyleValueStateMap<csstype.Property.TextDecorationSkip | undefined>;
803
+ WebkitTextDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
804
+ WebkitTextEmphasisColor?: StyleValue<csstype.Property.TextEmphasisColor | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisColor | undefined>;
805
+ WebkitTextEmphasisPosition?: StyleValue<csstype.Property.TextEmphasisPosition | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisPosition | undefined>;
806
+ WebkitTextEmphasisStyle?: StyleValue<csstype.Property.TextEmphasisStyle | undefined> | StyleValueStateMap<csstype.Property.TextEmphasisStyle | undefined>;
807
+ WebkitTextFillColor?: StyleValue<csstype.Property.WebkitTextFillColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTextFillColor | undefined>;
808
+ WebkitTextOrientation?: StyleValue<csstype.Property.TextOrientation | undefined> | StyleValueStateMap<csstype.Property.TextOrientation | undefined>;
809
+ WebkitTextSizeAdjust?: StyleValue<csstype.Property.TextSizeAdjust | undefined> | StyleValueStateMap<csstype.Property.TextSizeAdjust | undefined>;
810
+ WebkitTextStrokeColor?: StyleValue<csstype.Property.WebkitTextStrokeColor | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStrokeColor | undefined>;
811
+ WebkitTextStrokeWidth?: StyleValue<csstype.Property.WebkitTextStrokeWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStrokeWidth<string | number> | undefined>;
812
+ WebkitTextUnderlinePosition?: StyleValue<csstype.Property.TextUnderlinePosition | undefined> | StyleValueStateMap<csstype.Property.TextUnderlinePosition | undefined>;
813
+ WebkitTouchCallout?: StyleValue<csstype.Property.WebkitTouchCallout | undefined> | StyleValueStateMap<csstype.Property.WebkitTouchCallout | undefined>;
814
+ WebkitTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
815
+ WebkitTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
816
+ WebkitTransformStyle?: StyleValue<csstype.Property.TransformStyle | undefined> | StyleValueStateMap<csstype.Property.TransformStyle | undefined>;
817
+ WebkitTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
818
+ WebkitTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
819
+ WebkitTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
820
+ WebkitTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
821
+ WebkitUserModify?: StyleValue<csstype.Property.WebkitUserModify | undefined> | StyleValueStateMap<csstype.Property.WebkitUserModify | undefined>;
822
+ WebkitUserSelect?: StyleValue<csstype.Property.WebkitUserSelect | undefined> | StyleValueStateMap<csstype.Property.WebkitUserSelect | undefined>;
823
+ WebkitWritingMode?: StyleValue<csstype.Property.WritingMode | undefined> | StyleValueStateMap<csstype.Property.WritingMode | undefined>;
824
+ MozAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
825
+ MozBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
826
+ MozColumnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
827
+ MozColumns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
828
+ MozOutlineRadius?: StyleValue<csstype.Property.MozOutlineRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.MozOutlineRadius<string | number> | undefined>;
829
+ MozTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
830
+ msContentZoomLimit?: StyleValue<csstype.Property.MsContentZoomLimit | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomLimit | undefined>;
831
+ msContentZoomSnap?: StyleValue<csstype.Property.MsContentZoomSnap | undefined> | StyleValueStateMap<csstype.Property.MsContentZoomSnap | undefined>;
832
+ msFlex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
833
+ msScrollLimit?: StyleValue<csstype.Property.MsScrollLimit | undefined> | StyleValueStateMap<csstype.Property.MsScrollLimit | undefined>;
834
+ msScrollSnapX?: StyleValue<csstype.Property.MsScrollSnapX | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapX | undefined>;
835
+ msScrollSnapY?: StyleValue<csstype.Property.MsScrollSnapY | undefined> | StyleValueStateMap<csstype.Property.MsScrollSnapY | undefined>;
836
+ msTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
837
+ WebkitAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
838
+ WebkitBorderBefore?: StyleValue<csstype.Property.WebkitBorderBefore<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitBorderBefore<string | number> | undefined>;
839
+ WebkitBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
840
+ WebkitBorderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
841
+ WebkitColumnRule?: StyleValue<csstype.Property.ColumnRule<string | number> | undefined> | StyleValueStateMap<csstype.Property.ColumnRule<string | number> | undefined>;
842
+ WebkitColumns?: StyleValue<csstype.Property.Columns<string | number> | undefined> | StyleValueStateMap<csstype.Property.Columns<string | number> | undefined>;
843
+ WebkitFlex?: StyleValue<csstype.Property.Flex<string | number> | undefined> | StyleValueStateMap<csstype.Property.Flex<string | number> | undefined>;
844
+ WebkitFlexFlow?: StyleValue<csstype.Property.FlexFlow | undefined> | StyleValueStateMap<csstype.Property.FlexFlow | undefined>;
845
+ WebkitMask?: StyleValue<csstype.Property.WebkitMask<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitMask<string | number> | undefined>;
846
+ WebkitMaskBoxImage?: StyleValue<csstype.Property.MaskBorder | undefined> | StyleValueStateMap<csstype.Property.MaskBorder | undefined>;
847
+ WebkitTextEmphasis?: StyleValue<csstype.Property.TextEmphasis | undefined> | StyleValueStateMap<csstype.Property.TextEmphasis | undefined>;
848
+ WebkitTextStroke?: StyleValue<csstype.Property.WebkitTextStroke<string | number> | undefined> | StyleValueStateMap<csstype.Property.WebkitTextStroke<string | number> | undefined>;
849
+ WebkitTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
850
+ boxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
851
+ boxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
852
+ boxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
853
+ boxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
854
+ boxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
855
+ boxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
856
+ boxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
857
+ boxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
858
+ clip?: StyleValue<csstype.Property.Clip | undefined> | StyleValueStateMap<csstype.Property.Clip | undefined>;
859
+ fontStretch?: StyleValue<csstype.Property.FontStretch | undefined> | StyleValueStateMap<csstype.Property.FontStretch | undefined>;
860
+ gridColumnGap?: StyleValue<csstype.Property.GridColumnGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridColumnGap<string | number> | undefined>;
861
+ gridGap?: StyleValue<csstype.Property.GridGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridGap<string | number> | undefined>;
862
+ gridRowGap?: StyleValue<csstype.Property.GridRowGap<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridRowGap<string | number> | undefined>;
863
+ imeMode?: StyleValue<csstype.Property.ImeMode | undefined> | StyleValueStateMap<csstype.Property.ImeMode | undefined>;
864
+ insetArea?: StyleValue<csstype.Property.PositionArea | undefined> | StyleValueStateMap<csstype.Property.PositionArea | undefined>;
865
+ offsetBlock?: StyleValue<csstype.Property.InsetBlock<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlock<string | number> | undefined>;
866
+ offsetBlockEnd?: StyleValue<csstype.Property.InsetBlockEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockEnd<string | number> | undefined>;
867
+ offsetBlockStart?: StyleValue<csstype.Property.InsetBlockStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetBlockStart<string | number> | undefined>;
868
+ offsetInline?: StyleValue<csstype.Property.InsetInline<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInline<string | number> | undefined>;
869
+ offsetInlineEnd?: StyleValue<csstype.Property.InsetInlineEnd<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineEnd<string | number> | undefined>;
870
+ offsetInlineStart?: StyleValue<csstype.Property.InsetInlineStart<string | number> | undefined> | StyleValueStateMap<csstype.Property.InsetInlineStart<string | number> | undefined>;
871
+ pageBreakAfter?: StyleValue<csstype.Property.PageBreakAfter | undefined> | StyleValueStateMap<csstype.Property.PageBreakAfter | undefined>;
872
+ pageBreakBefore?: StyleValue<csstype.Property.PageBreakBefore | undefined> | StyleValueStateMap<csstype.Property.PageBreakBefore | undefined>;
873
+ pageBreakInside?: StyleValue<csstype.Property.PageBreakInside | undefined> | StyleValueStateMap<csstype.Property.PageBreakInside | undefined>;
874
+ positionTryOptions?: StyleValue<csstype.Property.PositionTryFallbacks | undefined> | StyleValueStateMap<csstype.Property.PositionTryFallbacks | undefined>;
875
+ scrollSnapCoordinate?: StyleValue<csstype.Property.ScrollSnapCoordinate<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapCoordinate<string | number> | undefined>;
876
+ scrollSnapDestination?: StyleValue<csstype.Property.ScrollSnapDestination<string | number> | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapDestination<string | number> | undefined>;
877
+ scrollSnapPointsX?: StyleValue<csstype.Property.ScrollSnapPointsX | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapPointsX | undefined>;
878
+ scrollSnapPointsY?: StyleValue<csstype.Property.ScrollSnapPointsY | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapPointsY | undefined>;
879
+ scrollSnapTypeX?: StyleValue<csstype.Property.ScrollSnapTypeX | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapTypeX | undefined>;
880
+ scrollSnapTypeY?: StyleValue<csstype.Property.ScrollSnapTypeY | undefined> | StyleValueStateMap<csstype.Property.ScrollSnapTypeY | undefined>;
881
+ KhtmlBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
882
+ KhtmlBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
883
+ KhtmlBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
884
+ KhtmlBoxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
885
+ KhtmlBoxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
886
+ KhtmlBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
887
+ KhtmlBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
888
+ KhtmlBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
889
+ KhtmlLineBreak?: StyleValue<csstype.Property.LineBreak | undefined> | StyleValueStateMap<csstype.Property.LineBreak | undefined>;
890
+ KhtmlOpacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
891
+ KhtmlUserSelect?: StyleValue<csstype.Property.UserSelect | undefined> | StyleValueStateMap<csstype.Property.UserSelect | undefined>;
892
+ MozBackgroundClip?: StyleValue<csstype.Property.BackgroundClip | undefined> | StyleValueStateMap<csstype.Property.BackgroundClip | undefined>;
893
+ MozBackgroundOrigin?: StyleValue<csstype.Property.BackgroundOrigin | undefined> | StyleValueStateMap<csstype.Property.BackgroundOrigin | undefined>;
894
+ MozBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
895
+ MozBorderRadius?: StyleValue<csstype.Property.BorderRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderRadius<string | number> | undefined>;
896
+ MozBorderRadiusBottomleft?: StyleValue<csstype.Property.BorderBottomLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomLeftRadius<string | number> | undefined>;
897
+ MozBorderRadiusBottomright?: StyleValue<csstype.Property.BorderBottomRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderBottomRightRadius<string | number> | undefined>;
898
+ MozBorderRadiusTopleft?: StyleValue<csstype.Property.BorderTopLeftRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopLeftRadius<string | number> | undefined>;
899
+ MozBorderRadiusTopright?: StyleValue<csstype.Property.BorderTopRightRadius<string | number> | undefined> | StyleValueStateMap<csstype.Property.BorderTopRightRadius<string | number> | undefined>;
900
+ MozBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
901
+ MozBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
902
+ MozBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
903
+ MozBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
904
+ MozBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
905
+ MozBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
906
+ MozBoxShadow?: StyleValue<csstype.Property.BoxShadow | undefined> | StyleValueStateMap<csstype.Property.BoxShadow | undefined>;
907
+ MozColumnCount?: StyleValue<csstype.Property.ColumnCount | undefined> | StyleValueStateMap<csstype.Property.ColumnCount | undefined>;
908
+ MozColumnFill?: StyleValue<csstype.Property.ColumnFill | undefined> | StyleValueStateMap<csstype.Property.ColumnFill | undefined>;
909
+ MozFloatEdge?: StyleValue<csstype.Property.MozFloatEdge | undefined> | StyleValueStateMap<csstype.Property.MozFloatEdge | undefined>;
910
+ MozForceBrokenImageIcon?: StyleValue<csstype.Property.MozForceBrokenImageIcon | undefined> | StyleValueStateMap<csstype.Property.MozForceBrokenImageIcon | undefined>;
911
+ MozOpacity?: StyleValue<csstype.Property.Opacity | undefined> | StyleValueStateMap<csstype.Property.Opacity | undefined>;
912
+ MozOutline?: StyleValue<csstype.Property.Outline<string | number> | undefined> | StyleValueStateMap<csstype.Property.Outline<string | number> | undefined>;
913
+ MozOutlineColor?: StyleValue<csstype.Property.OutlineColor | undefined> | StyleValueStateMap<csstype.Property.OutlineColor | undefined>;
914
+ MozOutlineStyle?: StyleValue<csstype.Property.OutlineStyle | undefined> | StyleValueStateMap<csstype.Property.OutlineStyle | undefined>;
915
+ MozOutlineWidth?: StyleValue<csstype.Property.OutlineWidth<string | number> | undefined> | StyleValueStateMap<csstype.Property.OutlineWidth<string | number> | undefined>;
916
+ MozTextAlignLast?: StyleValue<csstype.Property.TextAlignLast | undefined> | StyleValueStateMap<csstype.Property.TextAlignLast | undefined>;
917
+ MozTextDecorationColor?: StyleValue<csstype.Property.TextDecorationColor | undefined> | StyleValueStateMap<csstype.Property.TextDecorationColor | undefined>;
918
+ MozTextDecorationLine?: StyleValue<csstype.Property.TextDecorationLine | undefined> | StyleValueStateMap<csstype.Property.TextDecorationLine | undefined>;
919
+ MozTextDecorationStyle?: StyleValue<csstype.Property.TextDecorationStyle | undefined> | StyleValueStateMap<csstype.Property.TextDecorationStyle | undefined>;
920
+ MozTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
921
+ MozTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
922
+ MozTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
923
+ MozTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
924
+ MozUserFocus?: StyleValue<csstype.Property.MozUserFocus | undefined> | StyleValueStateMap<csstype.Property.MozUserFocus | undefined>;
925
+ MozUserInput?: StyleValue<csstype.Property.MozUserInput | undefined> | StyleValueStateMap<csstype.Property.MozUserInput | undefined>;
926
+ msImeMode?: StyleValue<csstype.Property.ImeMode | undefined> | StyleValueStateMap<csstype.Property.ImeMode | undefined>;
927
+ OAnimation?: StyleValue<csstype.Property.Animation<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Animation<string & {}> | undefined>;
928
+ OAnimationDelay?: StyleValue<csstype.Property.AnimationDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDelay<string & {}> | undefined>;
929
+ OAnimationDirection?: StyleValue<csstype.Property.AnimationDirection | undefined> | StyleValueStateMap<csstype.Property.AnimationDirection | undefined>;
930
+ OAnimationDuration?: StyleValue<csstype.Property.AnimationDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.AnimationDuration<string & {}> | undefined>;
931
+ OAnimationFillMode?: StyleValue<csstype.Property.AnimationFillMode | undefined> | StyleValueStateMap<csstype.Property.AnimationFillMode | undefined>;
932
+ OAnimationIterationCount?: StyleValue<csstype.Property.AnimationIterationCount | undefined> | StyleValueStateMap<csstype.Property.AnimationIterationCount | undefined>;
933
+ OAnimationName?: StyleValue<csstype.Property.AnimationName | undefined> | StyleValueStateMap<csstype.Property.AnimationName | undefined>;
934
+ OAnimationPlayState?: StyleValue<csstype.Property.AnimationPlayState | undefined> | StyleValueStateMap<csstype.Property.AnimationPlayState | undefined>;
935
+ OAnimationTimingFunction?: StyleValue<csstype.Property.AnimationTimingFunction | undefined> | StyleValueStateMap<csstype.Property.AnimationTimingFunction | undefined>;
936
+ OBackgroundSize?: StyleValue<csstype.Property.BackgroundSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.BackgroundSize<string | number> | undefined>;
937
+ OBorderImage?: StyleValue<csstype.Property.BorderImage | undefined> | StyleValueStateMap<csstype.Property.BorderImage | undefined>;
938
+ OObjectFit?: StyleValue<csstype.Property.ObjectFit | undefined> | StyleValueStateMap<csstype.Property.ObjectFit | undefined>;
939
+ OObjectPosition?: StyleValue<csstype.Property.ObjectPosition<string | number> | undefined> | StyleValueStateMap<csstype.Property.ObjectPosition<string | number> | undefined>;
940
+ OTabSize?: StyleValue<csstype.Property.TabSize<string | number> | undefined> | StyleValueStateMap<csstype.Property.TabSize<string | number> | undefined>;
941
+ OTextOverflow?: StyleValue<csstype.Property.TextOverflow | undefined> | StyleValueStateMap<csstype.Property.TextOverflow | undefined>;
942
+ OTransform?: StyleValue<csstype.Property.Transform | undefined> | StyleValueStateMap<csstype.Property.Transform | undefined>;
943
+ OTransformOrigin?: StyleValue<csstype.Property.TransformOrigin<string | number> | undefined> | StyleValueStateMap<csstype.Property.TransformOrigin<string | number> | undefined>;
944
+ OTransition?: StyleValue<csstype.Property.Transition<string & {}> | undefined> | StyleValueStateMap<csstype.Property.Transition<string & {}> | undefined>;
945
+ OTransitionDelay?: StyleValue<csstype.Property.TransitionDelay<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDelay<string & {}> | undefined>;
946
+ OTransitionDuration?: StyleValue<csstype.Property.TransitionDuration<string & {}> | undefined> | StyleValueStateMap<csstype.Property.TransitionDuration<string & {}> | undefined>;
947
+ OTransitionProperty?: StyleValue<csstype.Property.TransitionProperty | undefined> | StyleValueStateMap<csstype.Property.TransitionProperty | undefined>;
948
+ OTransitionTimingFunction?: StyleValue<csstype.Property.TransitionTimingFunction | undefined> | StyleValueStateMap<csstype.Property.TransitionTimingFunction | undefined>;
949
+ WebkitBoxAlign?: StyleValue<csstype.Property.BoxAlign | undefined> | StyleValueStateMap<csstype.Property.BoxAlign | undefined>;
950
+ WebkitBoxDirection?: StyleValue<csstype.Property.BoxDirection | undefined> | StyleValueStateMap<csstype.Property.BoxDirection | undefined>;
951
+ WebkitBoxFlex?: StyleValue<csstype.Property.BoxFlex | undefined> | StyleValueStateMap<csstype.Property.BoxFlex | undefined>;
952
+ WebkitBoxFlexGroup?: StyleValue<csstype.Property.BoxFlexGroup | undefined> | StyleValueStateMap<csstype.Property.BoxFlexGroup | undefined>;
953
+ WebkitBoxLines?: StyleValue<csstype.Property.BoxLines | undefined> | StyleValueStateMap<csstype.Property.BoxLines | undefined>;
954
+ WebkitBoxOrdinalGroup?: StyleValue<csstype.Property.BoxOrdinalGroup | undefined> | StyleValueStateMap<csstype.Property.BoxOrdinalGroup | undefined>;
955
+ WebkitBoxOrient?: StyleValue<csstype.Property.BoxOrient | undefined> | StyleValueStateMap<csstype.Property.BoxOrient | undefined>;
956
+ WebkitBoxPack?: StyleValue<csstype.Property.BoxPack | undefined> | StyleValueStateMap<csstype.Property.BoxPack | undefined>;
957
+ colorInterpolation?: StyleValue<csstype.Property.ColorInterpolation | undefined> | StyleValueStateMap<csstype.Property.ColorInterpolation | undefined>;
958
+ colorRendering?: StyleValue<csstype.Property.ColorRendering | undefined> | StyleValueStateMap<csstype.Property.ColorRendering | undefined>;
959
+ glyphOrientationVertical?: StyleValue<csstype.Property.GlyphOrientationVertical | undefined> | StyleValueStateMap<csstype.Property.GlyphOrientationVertical | undefined>;
960
+ image?: StyleValue<csstype.Property.BackgroundImage | undefined> | StyleValueStateMap<csstype.Property.BackgroundImage | undefined>;
961
+ svgFill?: StyleValue<(string & {}) | `#${string}` | `#${string}.0` | `#${string}.7` | `#${string}.1` | `#${string}.2` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.07` | `#${string}.01` | `#${string}.02` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.70` | `#${string}.77` | `#${string}.71` | `#${string}.72` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.10` | `#${string}.17` | `#${string}.11` | `#${string}.12` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.27` | `#${string}.21` | `#${string}.22` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.30` | `#${string}.37` | `#${string}.31` | `#${string}.32` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.47` | `#${string}.41` | `#${string}.42` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.57` | `#${string}.51` | `#${string}.52` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.67` | `#${string}.61` | `#${string}.62` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.87` | `#${string}.81` | `#${string}.82` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.97` | `#${string}.91` | `#${string}.92` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined> | StyleValueStateMap<(string & {}) | `#${string}` | `#${string}.0` | `#${string}.7` | `#${string}.1` | `#${string}.2` | `#${string}.3` | `#${string}.4` | `#${string}.5` | `#${string}.6` | `#${string}.8` | `#${string}.9` | `#${string}.00` | `#${string}.07` | `#${string}.01` | `#${string}.02` | `#${string}.03` | `#${string}.04` | `#${string}.05` | `#${string}.06` | `#${string}.08` | `#${string}.09` | `#${string}.70` | `#${string}.77` | `#${string}.71` | `#${string}.72` | `#${string}.73` | `#${string}.74` | `#${string}.75` | `#${string}.76` | `#${string}.78` | `#${string}.79` | `#${string}.10` | `#${string}.17` | `#${string}.11` | `#${string}.12` | `#${string}.13` | `#${string}.14` | `#${string}.15` | `#${string}.16` | `#${string}.18` | `#${string}.19` | `#${string}.20` | `#${string}.27` | `#${string}.21` | `#${string}.22` | `#${string}.23` | `#${string}.24` | `#${string}.25` | `#${string}.26` | `#${string}.28` | `#${string}.29` | `#${string}.30` | `#${string}.37` | `#${string}.31` | `#${string}.32` | `#${string}.33` | `#${string}.34` | `#${string}.35` | `#${string}.36` | `#${string}.38` | `#${string}.39` | `#${string}.40` | `#${string}.47` | `#${string}.41` | `#${string}.42` | `#${string}.43` | `#${string}.44` | `#${string}.45` | `#${string}.46` | `#${string}.48` | `#${string}.49` | `#${string}.50` | `#${string}.57` | `#${string}.51` | `#${string}.52` | `#${string}.53` | `#${string}.54` | `#${string}.55` | `#${string}.56` | `#${string}.58` | `#${string}.59` | `#${string}.60` | `#${string}.67` | `#${string}.61` | `#${string}.62` | `#${string}.63` | `#${string}.64` | `#${string}.65` | `#${string}.66` | `#${string}.68` | `#${string}.69` | `#${string}.80` | `#${string}.87` | `#${string}.81` | `#${string}.82` | `#${string}.83` | `#${string}.84` | `#${string}.85` | `#${string}.86` | `#${string}.88` | `#${string}.89` | `#${string}.90` | `#${string}.97` | `#${string}.91` | `#${string}.92` | `#${string}.93` | `#${string}.94` | `#${string}.95` | `#${string}.96` | `#${string}.98` | `#${string}.99` | `#${string}.100` | `rgb(${string})` | `rgba(${string})` | undefined>;
962
+ fade?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
963
+ styledScrollbar?: StyleValue<boolean | undefined> | StyleValueStateMap<boolean | undefined>;
964
+ scrollbar?: StyleValue<string | number | boolean | undefined> | StyleValueStateMap<string | number | boolean | undefined>;
965
+ boldFontWeight?: StyleValue<number | undefined> | StyleValueStateMap<number | undefined>;
966
+ hide?: StyleValue<boolean | undefined> | StyleValueStateMap<boolean | undefined>;
967
+ shadow?: StyleValue<string | boolean | undefined> | StyleValueStateMap<string | boolean | undefined>;
968
+ radius?: StyleValue<string | true | undefined> | StyleValueStateMap<string | true | undefined>;
969
+ flow?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
970
+ gridAreas?: StyleValue<csstype.Property.GridTemplateAreas | undefined> | StyleValueStateMap<csstype.Property.GridTemplateAreas | undefined>;
971
+ gridColumns?: StyleValue<csstype.Property.GridTemplateColumns<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateColumns<string | number> | undefined>;
972
+ gridRows?: StyleValue<csstype.Property.GridTemplateRows<string | number> | undefined> | StyleValueStateMap<csstype.Property.GridTemplateRows<string | number> | undefined>;
973
+ preset?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
974
+ align?: StyleValue<(string & {}) | "center" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | undefined> | StyleValueStateMap<(string & {}) | "center" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | undefined>;
975
+ justify?: StyleValue<(string & {}) | "left" | "right" | "center" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "legacy" | undefined> | StyleValueStateMap<(string & {}) | "left" | "right" | "center" | "start" | "baseline" | "inherit" | "initial" | "end" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "normal" | "space-around" | "space-between" | "space-evenly" | "stretch" | "flex-end" | "flex-start" | "self-end" | "self-start" | "anchor-center" | "legacy" | undefined>;
976
+ place?: StyleValue<string | (string & {}) | undefined> | StyleValueStateMap<string | (string & {}) | undefined>;
977
+ "@keyframes"?: StyleValue<Record<string, KeyframesSteps> | undefined> | StyleValueStateMap<Record<string, KeyframesSteps> | undefined>;
978
+ "@properties"?: StyleValue<Record<string, PropertyDefinition> | undefined> | StyleValueStateMap<Record<string, PropertyDefinition> | undefined>;
979
+ recipe?: StyleValue<string | undefined> | StyleValueStateMap<string | undefined>;
980
+ } & BaseStyleProps & WithVariant<VariantMap> & Omit<Omit<AllHTMLAttributes<HTMLElement>, keyof react.ClassAttributes<HTMLDivElement> | keyof react.HTMLAttributes<HTMLDivElement>> & react.ClassAttributes<HTMLDivElement> & react.HTMLAttributes<HTMLDivElement>, "qa" | "qaVal" | "color" | "fill" | "font" | "outline" | "gap" | "padding" | "margin" | "width" | "height" | "border" | "transition" | "placeContent" | "placeItems" | "accentColor" | "alignContent" | "alignItems" | "alignSelf" | "alignTracks" | "alignmentBaseline" | "anchorName" | "anchorScope" | "animationComposition" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationRangeEnd" | "animationRangeStart" | "animationTimeline" | "animationTimingFunction" | "appearance" | "aspectRatio" | "backdropFilter" | "backfaceVisibility" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundImage" | "backgroundOrigin" | "backgroundPositionX" | "backgroundPositionY" | "backgroundRepeat" | "backgroundSize" | "baselineShift" | "blockSize" | "borderBlockEndColor" | "borderBlockEndStyle" | "borderBlockEndWidth" | "borderBlockStartColor" | "borderBlockStartStyle" | "borderBlockStartWidth" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderEndEndRadius" | "borderEndStartRadius" | "borderImageOutset" | "borderImageRepeat" | "borderImageSlice" | "borderImageSource" | "borderImageWidth" | "borderInlineEndColor" | "borderInlineEndStyle" | "borderInlineEndWidth" | "borderInlineStartColor" | "borderInlineStartStyle" | "borderInlineStartWidth" | "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" | "clipRule" | "colorAdjust" | "colorInterpolationFilters" | "colorScheme" | "columnCount" | "columnFill" | "columnGap" | "columnRuleColor" | "columnRuleStyle" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "contain" | "containIntrinsicBlockSize" | "containIntrinsicHeight" | "containIntrinsicInlineSize" | "containIntrinsicWidth" | "containerName" | "containerType" | "content" | "contentVisibility" | "counterIncrement" | "counterReset" | "counterSet" | "cursor" | "cx" | "cy" | "d" | "direction" | "display" | "dominantBaseline" | "emptyCells" | "fieldSizing" | "fillOpacity" | "fillRule" | "filter" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "float" | "floodColor" | "floodOpacity" | "fontFamily" | "fontFeatureSettings" | "fontKerning" | "fontLanguageOverride" | "fontOpticalSizing" | "fontPalette" | "fontSize" | "fontSizeAdjust" | "fontSmooth" | "fontStyle" | "fontSynthesis" | "fontSynthesisPosition" | "fontSynthesisSmallCaps" | "fontSynthesisStyle" | "fontSynthesisWeight" | "fontVariant" | "fontVariantAlternates" | "fontVariantCaps" | "fontVariantEastAsian" | "fontVariantEmoji" | "fontVariantLigatures" | "fontVariantNumeric" | "fontVariantPosition" | "fontVariationSettings" | "fontWeight" | "fontWidth" | "forcedColorAdjust" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumnEnd" | "gridColumnStart" | "gridRowEnd" | "gridRowStart" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "hangingPunctuation" | "hyphenateCharacter" | "hyphenateLimitChars" | "hyphens" | "imageOrientation" | "imageRendering" | "imageResolution" | "initialLetter" | "initialLetterAlign" | "inlineSize" | "insetBlockEnd" | "insetBlockStart" | "insetInlineEnd" | "insetInlineStart" | "interpolateSize" | "isolation" | "justifyContent" | "justifyItems" | "justifySelf" | "justifyTracks" | "left" | "letterSpacing" | "lightingColor" | "lineBreak" | "lineHeight" | "lineHeightStep" | "listStyleImage" | "listStylePosition" | "listStyleType" | "marginBlockEnd" | "marginBlockStart" | "marginBottom" | "marginInlineEnd" | "marginInlineStart" | "marginLeft" | "marginRight" | "marginTop" | "marginTrim" | "marker" | "markerEnd" | "markerMid" | "markerStart" | "maskBorderMode" | "maskBorderOutset" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskComposite" | "maskImage" | "maskMode" | "maskOrigin" | "maskPosition" | "maskRepeat" | "maskSize" | "maskType" | "masonryAutoFlow" | "mathDepth" | "mathShift" | "mathStyle" | "maxBlockSize" | "maxHeight" | "maxInlineSize" | "maxLines" | "maxWidth" | "minBlockSize" | "minHeight" | "minInlineSize" | "minWidth" | "mixBlendMode" | "motionDistance" | "motionPath" | "motionRotation" | "objectFit" | "objectPosition" | "objectViewBox" | "offsetAnchor" | "offsetDistance" | "offsetPath" | "offsetPosition" | "offsetRotate" | "offsetRotation" | "opacity" | "order" | "orphans" | "outlineColor" | "outlineOffset" | "outlineStyle" | "outlineWidth" | "overflowAnchor" | "overflowBlock" | "overflowClipBox" | "overflowClipMargin" | "overflowInline" | "overflowWrap" | "overflowX" | "overflowY" | "overlay" | "overscrollBehaviorBlock" | "overscrollBehaviorInline" | "overscrollBehaviorX" | "overscrollBehaviorY" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingLeft" | "paddingRight" | "paddingTop" | "page" | "paintOrder" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "positionAnchor" | "positionArea" | "positionTryFallbacks" | "positionTryOrder" | "positionVisibility" | "printColorAdjust" | "quotes" | "r" | "resize" | "right" | "rotate" | "rowGap" | "rubyAlign" | "rubyMerge" | "rubyOverhang" | "rubyPosition" | "rx" | "ry" | "scale" | "scrollBehavior" | "scrollInitialTarget" | "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" | "shapeRendering" | "speakAs" | "stopColor" | "stopOpacity" | "stroke" | "strokeColor" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "tabSize" | "tableLayout" | "textAlign" | "textAlignLast" | "textAnchor" | "textAutospace" | "textBox" | "textBoxEdge" | "textBoxTrim" | "textCombineUpright" | "textDecorationColor" | "textDecorationLine" | "textDecorationSkip" | "textDecorationSkipInk" | "textDecorationStyle" | "textDecorationThickness" | "textEmphasisColor" | "textEmphasisPosition" | "textEmphasisStyle" | "textIndent" | "textJustify" | "textOrientation" | "textOverflow" | "textRendering" | "textShadow" | "textSizeAdjust" | "textSpacingTrim" | "textTransform" | "textUnderlineOffset" | "textUnderlinePosition" | "textWrapMode" | "textWrapStyle" | "timelineScope" | "top" | "touchAction" | "transform" | "transformBox" | "transformOrigin" | "transformStyle" | "transitionBehavior" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "translate" | "unicodeBidi" | "userSelect" | "vectorEffect" | "verticalAlign" | "viewTimelineAxis" | "viewTimelineInset" | "viewTimelineName" | "viewTransitionClass" | "viewTransitionName" | "visibility" | "whiteSpace" | "whiteSpaceCollapse" | "widows" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "writingMode" | "x" | "y" | "zIndex" | "zoom" | "all" | "animation" | "animationRange" | "background" | "backgroundPosition" | "borderBlock" | "borderBlockColor" | "borderBlockEnd" | "borderBlockStart" | "borderBlockStyle" | "borderBlockWidth" | "borderBottom" | "borderColor" | "borderImage" | "borderInline" | "borderInlineColor" | "borderInlineEnd" | "borderInlineStart" | "borderInlineStyle" | "borderInlineWidth" | "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" | "positionTry" | "scrollMargin" | "scrollMarginBlock" | "scrollMarginInline" | "scrollPadding" | "scrollPaddingBlock" | "scrollPaddingInline" | "scrollSnapMargin" | "scrollTimeline" | "textDecoration" | "textEmphasis" | "textWrap" | "viewTimeline" | "MozAnimationDelay" | "MozAnimationDirection" | "MozAnimationDuration" | "MozAnimationFillMode" | "MozAnimationIterationCount" | "MozAnimationName" | "MozAnimationPlayState" | "MozAnimationTimingFunction" | "MozAppearance" | "MozBackfaceVisibility" | "MozBinding" | "MozBorderBottomColors" | "MozBorderEndColor" | "MozBorderEndStyle" | "MozBorderEndWidth" | "MozBorderLeftColors" | "MozBorderRightColors" | "MozBorderStartColor" | "MozBorderStartStyle" | "MozBorderTopColors" | "MozBoxSizing" | "MozColumnRuleColor" | "MozColumnRuleStyle" | "MozColumnRuleWidth" | "MozColumnWidth" | "MozContextProperties" | "MozFontFeatureSettings" | "MozFontLanguageOverride" | "MozHyphens" | "MozMarginEnd" | "MozMarginStart" | "MozOrient" | "MozOsxFontSmoothing" | "MozOutlineRadiusBottomleft" | "MozOutlineRadiusBottomright" | "MozOutlineRadiusTopleft" | "MozOutlineRadiusTopright" | "MozPaddingEnd" | "MozPaddingStart" | "MozPerspective" | "MozPerspectiveOrigin" | "MozStackSizing" | "MozTabSize" | "MozTextBlink" | "MozTextSizeAdjust" | "MozTransform" | "MozTransformOrigin" | "MozTransformStyle" | "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" | "WebkitLogicalHeight" | "WebkitLogicalWidth" | "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" | "MozOutlineRadius" | "MozTransition" | "msContentZoomLimit" | "msContentZoomSnap" | "msFlex" | "msScrollLimit" | "msScrollSnapX" | "msScrollSnapY" | "msTransition" | "WebkitAnimation" | "WebkitBorderBefore" | "WebkitBorderImage" | "WebkitBorderRadius" | "WebkitColumnRule" | "WebkitColumns" | "WebkitFlex" | "WebkitFlexFlow" | "WebkitMask" | "WebkitMaskBoxImage" | "WebkitTextEmphasis" | "WebkitTextStroke" | "WebkitTransition" | "boxAlign" | "boxDirection" | "boxFlex" | "boxFlexGroup" | "boxLines" | "boxOrdinalGroup" | "boxOrient" | "boxPack" | "clip" | "fontStretch" | "gridColumnGap" | "gridGap" | "gridRowGap" | "imeMode" | "insetArea" | "offsetBlock" | "offsetBlockEnd" | "offsetBlockStart" | "offsetInline" | "offsetInlineEnd" | "offsetInlineStart" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "positionTryOptions" | "scrollSnapCoordinate" | "scrollSnapDestination" | "scrollSnapPointsX" | "scrollSnapPointsY" | "scrollSnapTypeX" | "scrollSnapTypeY" | "KhtmlBoxAlign" | "KhtmlBoxDirection" | "KhtmlBoxFlex" | "KhtmlBoxFlexGroup" | "KhtmlBoxLines" | "KhtmlBoxOrdinalGroup" | "KhtmlBoxOrient" | "KhtmlBoxPack" | "KhtmlLineBreak" | "KhtmlOpacity" | "KhtmlUserSelect" | "MozBackgroundClip" | "MozBackgroundOrigin" | "MozBackgroundSize" | "MozBorderRadius" | "MozBorderRadiusBottomleft" | "MozBorderRadiusBottomright" | "MozBorderRadiusTopleft" | "MozBorderRadiusTopright" | "MozBoxAlign" | "MozBoxDirection" | "MozBoxFlex" | "MozBoxOrdinalGroup" | "MozBoxOrient" | "MozBoxPack" | "MozBoxShadow" | "MozColumnCount" | "MozColumnFill" | "MozFloatEdge" | "MozForceBrokenImageIcon" | "MozOpacity" | "MozOutline" | "MozOutlineColor" | "MozOutlineStyle" | "MozOutlineWidth" | "MozTextAlignLast" | "MozTextDecorationColor" | "MozTextDecorationLine" | "MozTextDecorationStyle" | "MozTransitionDelay" | "MozTransitionDuration" | "MozTransitionProperty" | "MozTransitionTimingFunction" | "MozUserFocus" | "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" | "colorInterpolation" | "colorRendering" | "glyphOrientationVertical" | "image" | "svgFill" | "fade" | "styledScrollbar" | "scrollbar" | "boldFontWeight" | "hide" | "shadow" | "radius" | "flow" | "gridAreas" | "gridColumns" | "gridRows" | "preset" | "align" | "justify" | "place" | "@keyframes" | "@properties" | "recipe" | "style" | "as" | "element" | "styles" | "breakpoints" | "block" | "inline" | "mods" | "isHidden" | "isDisabled" | "css" | "theme" | "tokens" | "ref"> & RefAttributes<unknown>> & SubElementComponents<Record<string, never>>;
981
+ //#endregion
982
+ export { AllBasePropsWithMods, Element, ElementsDefinition, SubElementDefinition, SubElementProps, TastyElementOptions, TastyElementProps, TastyProps, tasty };
983
+ //# sourceMappingURL=tasty.d.ts.map