@pandacss/studio 0.0.0-dev-20230613163214

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 (250) hide show
  1. package/LICENSE.md +21 -0
  2. package/astro.config.ts +14 -0
  3. package/dist/studio.d.ts +13 -0
  4. package/dist/studio.js +2089 -0
  5. package/dist/studio.mjs +2087 -0
  6. package/index.ts +1 -0
  7. package/package.json +59 -0
  8. package/panda.config.ts +110 -0
  9. package/public/favicon.svg +13 -0
  10. package/src/components/analyzer/category-utilities.tsx +146 -0
  11. package/src/components/analyzer/data-combobox.tsx +125 -0
  12. package/src/components/analyzer/data-table.tsx +43 -0
  13. package/src/components/analyzer/external-icon.tsx +8 -0
  14. package/src/components/analyzer/file-details.tsx +101 -0
  15. package/src/components/analyzer/get-report-infos-from.ts +80 -0
  16. package/src/components/analyzer/quick-tooltip.tsx +15 -0
  17. package/src/components/analyzer/report-item-columns.tsx +52 -0
  18. package/src/components/analyzer/report-item-link.tsx +98 -0
  19. package/src/components/analyzer/section.tsx +24 -0
  20. package/src/components/analyzer/sort-icon.tsx +7 -0
  21. package/src/components/analyzer/text-with-count.tsx +28 -0
  22. package/src/components/analyzer/token-search-combobox.tsx +39 -0
  23. package/src/components/analyzer/truncated-text.tsx +26 -0
  24. package/src/components/analyzer/utility-details.tsx +312 -0
  25. package/src/components/color-constrast.tsx +131 -0
  26. package/src/components/color-item.tsx +37 -0
  27. package/src/components/color-wrapper.tsx +25 -0
  28. package/src/components/colors.tsx +96 -0
  29. package/src/components/empty-state.tsx +19 -0
  30. package/src/components/font-family.tsx +55 -0
  31. package/src/components/font-tokens.tsx +69 -0
  32. package/src/components/head.astro +35 -0
  33. package/src/components/icons.tsx +207 -0
  34. package/src/components/input.tsx +27 -0
  35. package/src/components/layer-styles.tsx +38 -0
  36. package/src/components/logo.tsx +34 -0
  37. package/src/components/nav-item.tsx +39 -0
  38. package/src/components/overview.tsx +65 -0
  39. package/src/components/radii.tsx +34 -0
  40. package/src/components/semantic-color.tsx +27 -0
  41. package/src/components/side-nav-item.astro +25 -0
  42. package/src/components/side-nav.astro +30 -0
  43. package/src/components/sizes.tsx +53 -0
  44. package/src/components/text-styles.tsx +33 -0
  45. package/src/components/theme-toggle.astro +56 -0
  46. package/src/components/token-analyzer.tsx +390 -0
  47. package/src/components/token-content.tsx +5 -0
  48. package/src/components/token-group.tsx +6 -0
  49. package/src/components/typography-playground.tsx +83 -0
  50. package/src/env.d.ts +1 -0
  51. package/src/icons/moon.tsx +15 -0
  52. package/src/icons/sun.tsx +19 -0
  53. package/src/layouts/Layout.astro +19 -0
  54. package/src/layouts/Sidebar.astro +35 -0
  55. package/src/lib/analysis-data.ts +17 -0
  56. package/src/lib/color-contrast-checker.ts +218 -0
  57. package/src/lib/color.ts +40 -0
  58. package/src/lib/constants.ts +140 -0
  59. package/src/lib/create-context.ts +27 -0
  60. package/src/lib/get-report-item.tsx +41 -0
  61. package/src/lib/group-in.ts +35 -0
  62. package/src/lib/panda.context.ts +23 -0
  63. package/src/lib/pick.ts +24 -0
  64. package/src/lib/sizes-sort.ts +10 -0
  65. package/src/lib/truncate.tsx +7 -0
  66. package/src/lib/use-color-docs.ts +101 -0
  67. package/src/pages/colors.astro +11 -0
  68. package/src/pages/font-sizes.astro +15 -0
  69. package/src/pages/font-weights.astro +15 -0
  70. package/src/pages/fonts.astro +11 -0
  71. package/src/pages/index.astro +8 -0
  72. package/src/pages/layer-styles.astro +11 -0
  73. package/src/pages/letter-spacings.astro +20 -0
  74. package/src/pages/line-heights.astro +21 -0
  75. package/src/pages/playground/contrast-checker.astro +11 -0
  76. package/src/pages/playground/typography.astro +11 -0
  77. package/src/pages/radii.astro +11 -0
  78. package/src/pages/sizes.astro +14 -0
  79. package/src/pages/spacing.astro +14 -0
  80. package/src/pages/text-styles.astro +11 -0
  81. package/src/pages/token-analyzer/file.astro +11 -0
  82. package/src/pages/token-analyzer/index.astro +11 -0
  83. package/src/pages/token-analyzer/utility.astro +11 -0
  84. package/styled-system/chunks/..__core____tests____composition.test.css +2 -0
  85. package/styled-system/chunks/src__components__analyzer__category-utilities.css +97 -0
  86. package/styled-system/chunks/src__components__analyzer__data-combobox.css +77 -0
  87. package/styled-system/chunks/src__components__analyzer__data-table.css +37 -0
  88. package/styled-system/chunks/src__components__analyzer__file-details.css +103 -0
  89. package/styled-system/chunks/src__components__analyzer__quick-tooltip.css +2 -0
  90. package/styled-system/chunks/src__components__analyzer__report-item-columns.css +29 -0
  91. package/styled-system/chunks/src__components__analyzer__report-item-link.css +109 -0
  92. package/styled-system/chunks/src__components__analyzer__section.css +29 -0
  93. package/styled-system/chunks/src__components__analyzer__text-with-count.css +33 -0
  94. package/styled-system/chunks/src__components__analyzer__truncated-text.css +13 -0
  95. package/styled-system/chunks/src__components__analyzer__utility-details.css +125 -0
  96. package/styled-system/chunks/src__components__color-constrast.css +114 -0
  97. package/styled-system/chunks/src__components__color-item.css +21 -0
  98. package/styled-system/chunks/src__components__color-wrapper.css +73 -0
  99. package/styled-system/chunks/src__components__colors.css +97 -0
  100. package/styled-system/chunks/src__components__empty-state.css +45 -0
  101. package/styled-system/chunks/src__components__font-family.css +85 -0
  102. package/styled-system/chunks/src__components__font-tokens.css +61 -0
  103. package/styled-system/chunks/src__components__input.css +68 -0
  104. package/styled-system/chunks/src__components__layer-styles.css +66 -0
  105. package/styled-system/chunks/src__components__nav-item.css +73 -0
  106. package/styled-system/chunks/src__components__overview.css +125 -0
  107. package/styled-system/chunks/src__components__radii.css +49 -0
  108. package/styled-system/chunks/src__components__semantic-color.css +45 -0
  109. package/styled-system/chunks/src__components__side-nav-item.css +33 -0
  110. package/styled-system/chunks/src__components__side-nav.css +49 -0
  111. package/styled-system/chunks/src__components__sizes.css +41 -0
  112. package/styled-system/chunks/src__components__text-styles.css +31 -0
  113. package/styled-system/chunks/src__components__theme-toggle.css +63 -0
  114. package/styled-system/chunks/src__components__token-analyzer.css +227 -0
  115. package/styled-system/chunks/src__components__token-content.css +13 -0
  116. package/styled-system/chunks/src__components__token-group.css +21 -0
  117. package/styled-system/chunks/src__components__token-search-combobox.css +2 -0
  118. package/styled-system/chunks/src__components__typography-playground.css +61 -0
  119. package/styled-system/chunks/src__layouts__Layout.css +2 -0
  120. package/styled-system/chunks/src__layouts__Sidebar.css +113 -0
  121. package/styled-system/chunks/src__pages__colors.css +2 -0
  122. package/styled-system/chunks/src__pages__font-sizes.css +2 -0
  123. package/styled-system/chunks/src__pages__font-weights.css +2 -0
  124. package/styled-system/chunks/src__pages__fonts.css +2 -0
  125. package/styled-system/chunks/src__pages__index.css +2 -0
  126. package/styled-system/chunks/src__pages__layer-styles.css +2 -0
  127. package/styled-system/chunks/src__pages__letter-spacings.css +2 -0
  128. package/styled-system/chunks/src__pages__line-heights.css +2 -0
  129. package/styled-system/chunks/src__pages__playground__contrast-checker.css +2 -0
  130. package/styled-system/chunks/src__pages__playground__typography.css +2 -0
  131. package/styled-system/chunks/src__pages__radii.css +2 -0
  132. package/styled-system/chunks/src__pages__sizes.css +2 -0
  133. package/styled-system/chunks/src__pages__spacing.css +2 -0
  134. package/styled-system/chunks/src__pages__text-styles.css +2 -0
  135. package/styled-system/chunks/src__pages__token-analyzer__file.css +2 -0
  136. package/styled-system/chunks/src__pages__token-analyzer__index.css +2 -0
  137. package/styled-system/chunks/src__pages__token-analyzer__utility.css +2 -0
  138. package/styled-system/css/conditions.mjs +147 -0
  139. package/styled-system/css/css.d.ts +2 -0
  140. package/styled-system/css/css.mjs +391 -0
  141. package/styled-system/css/cva.d.ts +5 -0
  142. package/styled-system/css/cva.mjs +63 -0
  143. package/styled-system/css/cx.d.ts +4 -0
  144. package/styled-system/css/cx.mjs +15 -0
  145. package/styled-system/css/index.d.ts +3 -0
  146. package/styled-system/css/index.mjs +3 -0
  147. package/styled-system/global.css +61 -0
  148. package/styled-system/helpers.mjs +251 -0
  149. package/styled-system/jsx/absolute-center.d.ts +8 -0
  150. package/styled-system/jsx/absolute-center.mjs +9 -0
  151. package/styled-system/jsx/aspect-ratio.d.ts +8 -0
  152. package/styled-system/jsx/aspect-ratio.mjs +9 -0
  153. package/styled-system/jsx/box.d.ts +8 -0
  154. package/styled-system/jsx/box.mjs +8 -0
  155. package/styled-system/jsx/center.d.ts +8 -0
  156. package/styled-system/jsx/center.mjs +9 -0
  157. package/styled-system/jsx/circle.d.ts +8 -0
  158. package/styled-system/jsx/circle.mjs +9 -0
  159. package/styled-system/jsx/container.d.ts +8 -0
  160. package/styled-system/jsx/container.mjs +8 -0
  161. package/styled-system/jsx/divider.d.ts +8 -0
  162. package/styled-system/jsx/divider.mjs +9 -0
  163. package/styled-system/jsx/factory.d.ts +2 -0
  164. package/styled-system/jsx/factory.mjs +59 -0
  165. package/styled-system/jsx/flex.d.ts +8 -0
  166. package/styled-system/jsx/flex.mjs +9 -0
  167. package/styled-system/jsx/float.d.ts +8 -0
  168. package/styled-system/jsx/float.mjs +9 -0
  169. package/styled-system/jsx/grid-item.d.ts +8 -0
  170. package/styled-system/jsx/grid-item.mjs +9 -0
  171. package/styled-system/jsx/grid.d.ts +8 -0
  172. package/styled-system/jsx/grid.mjs +9 -0
  173. package/styled-system/jsx/hstack.d.ts +8 -0
  174. package/styled-system/jsx/hstack.mjs +9 -0
  175. package/styled-system/jsx/index.d.ts +20 -0
  176. package/styled-system/jsx/index.mjs +19 -0
  177. package/styled-system/jsx/is-valid-prop.mjs +1010 -0
  178. package/styled-system/jsx/spacer.d.ts +8 -0
  179. package/styled-system/jsx/spacer.mjs +9 -0
  180. package/styled-system/jsx/square.d.ts +8 -0
  181. package/styled-system/jsx/square.mjs +9 -0
  182. package/styled-system/jsx/stack.d.ts +8 -0
  183. package/styled-system/jsx/stack.mjs +9 -0
  184. package/styled-system/jsx/styled-link.d.ts +8 -0
  185. package/styled-system/jsx/styled-link.mjs +8 -0
  186. package/styled-system/jsx/vstack.d.ts +8 -0
  187. package/styled-system/jsx/vstack.mjs +9 -0
  188. package/styled-system/jsx/wrap.d.ts +8 -0
  189. package/styled-system/jsx/wrap.mjs +9 -0
  190. package/styled-system/patterns/absolute-center.d.ts +14 -0
  191. package/styled-system/patterns/absolute-center.mjs +23 -0
  192. package/styled-system/patterns/aspect-ratio.d.ts +14 -0
  193. package/styled-system/patterns/aspect-ratio.mjs +25 -0
  194. package/styled-system/patterns/box.d.ts +14 -0
  195. package/styled-system/patterns/box.mjs +12 -0
  196. package/styled-system/patterns/center.d.ts +14 -0
  197. package/styled-system/patterns/center.mjs +18 -0
  198. package/styled-system/patterns/circle.d.ts +14 -0
  199. package/styled-system/patterns/circle.mjs +22 -0
  200. package/styled-system/patterns/container.d.ts +14 -0
  201. package/styled-system/patterns/container.mjs +18 -0
  202. package/styled-system/patterns/divider.d.ts +16 -0
  203. package/styled-system/patterns/divider.mjs +21 -0
  204. package/styled-system/patterns/flex.d.ts +20 -0
  205. package/styled-system/patterns/flex.mjs +23 -0
  206. package/styled-system/patterns/float.d.ts +17 -0
  207. package/styled-system/patterns/float.mjs +45 -0
  208. package/styled-system/patterns/grid-item.d.ts +19 -0
  209. package/styled-system/patterns/grid-item.mjs +20 -0
  210. package/styled-system/patterns/grid.d.ts +18 -0
  211. package/styled-system/patterns/grid.mjs +25 -0
  212. package/styled-system/patterns/hstack.d.ts +15 -0
  213. package/styled-system/patterns/hstack.mjs +20 -0
  214. package/styled-system/patterns/index.d.ts +18 -0
  215. package/styled-system/patterns/index.mjs +18 -0
  216. package/styled-system/patterns/spacer.d.ts +14 -0
  217. package/styled-system/patterns/spacer.mjs +18 -0
  218. package/styled-system/patterns/square.d.ts +14 -0
  219. package/styled-system/patterns/square.mjs +21 -0
  220. package/styled-system/patterns/stack.d.ts +17 -0
  221. package/styled-system/patterns/stack.mjs +20 -0
  222. package/styled-system/patterns/styled-link.d.ts +14 -0
  223. package/styled-system/patterns/styled-link.mjs +18 -0
  224. package/styled-system/patterns/vstack.d.ts +15 -0
  225. package/styled-system/patterns/vstack.mjs +20 -0
  226. package/styled-system/patterns/wrap.d.ts +18 -0
  227. package/styled-system/patterns/wrap.mjs +22 -0
  228. package/styled-system/reset.css +190 -0
  229. package/styled-system/static.css +5 -0
  230. package/styled-system/styles.css +938 -0
  231. package/styled-system/tokens/index.css +374 -0
  232. package/styled-system/tokens/index.d.ts +8 -0
  233. package/styled-system/tokens/index.mjs +1590 -0
  234. package/styled-system/tokens/keyframes.css +30 -0
  235. package/styled-system/tokens/tokens.d.ts +56 -0
  236. package/styled-system/types/composition.d.ts +110 -0
  237. package/styled-system/types/conditions.d.ts +135 -0
  238. package/styled-system/types/csstype.d.ts +20748 -0
  239. package/styled-system/types/global.d.ts +15 -0
  240. package/styled-system/types/helpers.d.ts +1 -0
  241. package/styled-system/types/index.d.ts +3 -0
  242. package/styled-system/types/jsx.d.ts +27 -0
  243. package/styled-system/types/parts.d.ts +5 -0
  244. package/styled-system/types/pattern.d.ts +52 -0
  245. package/styled-system/types/prop-type.d.ts +300 -0
  246. package/styled-system/types/recipe.d.ts +79 -0
  247. package/styled-system/types/selectors.d.ts +56 -0
  248. package/styled-system/types/style-props.d.ts +688 -0
  249. package/styled-system/types/system-types.d.ts +76 -0
  250. package/virtual-panda.ts +72 -0
@@ -0,0 +1,688 @@
1
+ import { ConditionalValue } from './conditions'
2
+ import { PropertyValue } from './prop-type'
3
+ import { Token } from '../tokens'
4
+
5
+ export type CssVarProperties = {
6
+ [key in `--${string}`]?: ConditionalValue<Token | (string & {}) | (number & {})>
7
+ }
8
+
9
+ export type SystemProperties = {
10
+ MsAccelerator?: PropertyValue<'MsAccelerator'>
11
+ MsBlockProgression?: PropertyValue<'MsBlockProgression'>
12
+ MsContentZoomChaining?: PropertyValue<'MsContentZoomChaining'>
13
+ MsContentZooming?: PropertyValue<'MsContentZooming'>
14
+ MsContentZoomLimit?: PropertyValue<'MsContentZoomLimit'>
15
+ MsContentZoomLimitMax?: PropertyValue<'MsContentZoomLimitMax'>
16
+ MsContentZoomLimitMin?: PropertyValue<'MsContentZoomLimitMin'>
17
+ MsContentZoomSnap?: PropertyValue<'MsContentZoomSnap'>
18
+ MsContentZoomSnapPoints?: PropertyValue<'MsContentZoomSnapPoints'>
19
+ MsContentZoomSnapType?: PropertyValue<'MsContentZoomSnapType'>
20
+ MsFilter?: PropertyValue<'MsFilter'>
21
+ MsFlowFrom?: PropertyValue<'MsFlowFrom'>
22
+ MsFlowInto?: PropertyValue<'MsFlowInto'>
23
+ MsGridColumns?: PropertyValue<'MsGridColumns'>
24
+ MsGridRows?: PropertyValue<'MsGridRows'>
25
+ MsHighContrastAdjust?: PropertyValue<'MsHighContrastAdjust'>
26
+ MsHyphenateLimitChars?: PropertyValue<'MsHyphenateLimitChars'>
27
+ MsHyphenateLimitLines?: PropertyValue<'MsHyphenateLimitLines'>
28
+ MsHyphenateLimitZone?: PropertyValue<'MsHyphenateLimitZone'>
29
+ MsImeAlign?: PropertyValue<'MsImeAlign'>
30
+ MsOverflowStyle?: PropertyValue<'MsOverflowStyle'>
31
+ MsScrollbar3dlightColor?: PropertyValue<'MsScrollbar3dlightColor'>
32
+ MsScrollbarArrowColor?: PropertyValue<'MsScrollbarArrowColor'>
33
+ MsScrollbarBaseColor?: PropertyValue<'MsScrollbarBaseColor'>
34
+ MsScrollbarDarkshadowColor?: PropertyValue<'MsScrollbarDarkshadowColor'>
35
+ MsScrollbarFaceColor?: PropertyValue<'MsScrollbarFaceColor'>
36
+ MsScrollbarHighlightColor?: PropertyValue<'MsScrollbarHighlightColor'>
37
+ MsScrollbarShadowColor?: PropertyValue<'MsScrollbarShadowColor'>
38
+ MsScrollbarTrackColor?: PropertyValue<'MsScrollbarTrackColor'>
39
+ MsScrollChaining?: PropertyValue<'MsScrollChaining'>
40
+ MsScrollLimit?: PropertyValue<'MsScrollLimit'>
41
+ MsScrollLimitXMax?: PropertyValue<'MsScrollLimitXMax'>
42
+ MsScrollLimitXMin?: PropertyValue<'MsScrollLimitXMin'>
43
+ MsScrollLimitYMax?: PropertyValue<'MsScrollLimitYMax'>
44
+ MsScrollLimitYMin?: PropertyValue<'MsScrollLimitYMin'>
45
+ MsScrollRails?: PropertyValue<'MsScrollRails'>
46
+ MsScrollSnapPointsX?: PropertyValue<'MsScrollSnapPointsX'>
47
+ MsScrollSnapPointsY?: PropertyValue<'MsScrollSnapPointsY'>
48
+ MsScrollSnapType?: PropertyValue<'MsScrollSnapType'>
49
+ MsScrollSnapX?: PropertyValue<'MsScrollSnapX'>
50
+ MsScrollSnapY?: PropertyValue<'MsScrollSnapY'>
51
+ MsScrollTranslation?: PropertyValue<'MsScrollTranslation'>
52
+ MsTextAutospace?: PropertyValue<'MsTextAutospace'>
53
+ MsTouchSelect?: PropertyValue<'MsTouchSelect'>
54
+ MsUserSelect?: PropertyValue<'MsUserSelect'>
55
+ MsWrapFlow?: PropertyValue<'MsWrapFlow'>
56
+ MsWrapMargin?: PropertyValue<'MsWrapMargin'>
57
+ MsWrapThrough?: PropertyValue<'MsWrapThrough'>
58
+ MozAppearance?: PropertyValue<'MozAppearance'>
59
+ MozBinding?: PropertyValue<'MozBinding'>
60
+ MozBorderBottomColors?: PropertyValue<'MozBorderBottomColors'>
61
+ MozBorderLeftColors?: PropertyValue<'MozBorderLeftColors'>
62
+ MozBorderRightColors?: PropertyValue<'MozBorderRightColors'>
63
+ MozBorderTopColors?: PropertyValue<'MozBorderTopColors'>
64
+ MozContextProperties?: PropertyValue<'MozContextProperties'>
65
+ MozFloatEdge?: PropertyValue<'MozFloatEdge'>
66
+ MozForceBrokenImageIcon?: PropertyValue<'MozForceBrokenImageIcon'>
67
+ MozImageRegion?: PropertyValue<'MozImageRegion'>
68
+ MozOrient?: PropertyValue<'MozOrient'>
69
+ MozOutlineRadius?: PropertyValue<'MozOutlineRadius'>
70
+ MozOutlineRadiusBottomleft?: PropertyValue<'MozOutlineRadiusBottomleft'>
71
+ MozOutlineRadiusBottomright?: PropertyValue<'MozOutlineRadiusBottomright'>
72
+ MozOutlineRadiusTopleft?: PropertyValue<'MozOutlineRadiusTopleft'>
73
+ MozOutlineRadiusTopright?: PropertyValue<'MozOutlineRadiusTopright'>
74
+ MozStackSizing?: PropertyValue<'MozStackSizing'>
75
+ MozTextBlink?: PropertyValue<'MozTextBlink'>
76
+ MozUserFocus?: PropertyValue<'MozUserFocus'>
77
+ MozUserInput?: PropertyValue<'MozUserInput'>
78
+ MozUserModify?: PropertyValue<'MozUserModify'>
79
+ MozWindowDragging?: PropertyValue<'MozWindowDragging'>
80
+ MozWindowShadow?: PropertyValue<'MozWindowShadow'>
81
+ WebkitAppearance?: PropertyValue<'WebkitAppearance'>
82
+ WebkitBorderBefore?: PropertyValue<'WebkitBorderBefore'>
83
+ WebkitBorderBeforeColor?: PropertyValue<'WebkitBorderBeforeColor'>
84
+ WebkitBorderBeforeStyle?: PropertyValue<'WebkitBorderBeforeStyle'>
85
+ WebkitBorderBeforeWidth?: PropertyValue<'WebkitBorderBeforeWidth'>
86
+ WebkitBoxReflect?: PropertyValue<'WebkitBoxReflect'>
87
+ WebkitLineClamp?: PropertyValue<'WebkitLineClamp'>
88
+ WebkitMask?: PropertyValue<'WebkitMask'>
89
+ WebkitMaskAttachment?: PropertyValue<'WebkitMaskAttachment'>
90
+ WebkitMaskClip?: PropertyValue<'WebkitMaskClip'>
91
+ WebkitMaskComposite?: PropertyValue<'WebkitMaskComposite'>
92
+ WebkitMaskImage?: PropertyValue<'WebkitMaskImage'>
93
+ WebkitMaskOrigin?: PropertyValue<'WebkitMaskOrigin'>
94
+ WebkitMaskPosition?: PropertyValue<'WebkitMaskPosition'>
95
+ WebkitMaskPositionX?: PropertyValue<'WebkitMaskPositionX'>
96
+ WebkitMaskPositionY?: PropertyValue<'WebkitMaskPositionY'>
97
+ WebkitMaskRepeat?: PropertyValue<'WebkitMaskRepeat'>
98
+ WebkitMaskRepeatX?: PropertyValue<'WebkitMaskRepeatX'>
99
+ WebkitMaskRepeatY?: PropertyValue<'WebkitMaskRepeatY'>
100
+ WebkitMaskSize?: PropertyValue<'WebkitMaskSize'>
101
+ WebkitOverflowScrolling?: PropertyValue<'WebkitOverflowScrolling'>
102
+ WebkitTapHighlightColor?: PropertyValue<'WebkitTapHighlightColor'>
103
+ WebkitTextFillColor?: PropertyValue<'WebkitTextFillColor'>
104
+ WebkitTextStroke?: PropertyValue<'WebkitTextStroke'>
105
+ WebkitTextStrokeColor?: PropertyValue<'WebkitTextStrokeColor'>
106
+ WebkitTextStrokeWidth?: PropertyValue<'WebkitTextStrokeWidth'>
107
+ WebkitTouchCallout?: PropertyValue<'WebkitTouchCallout'>
108
+ WebkitUserModify?: PropertyValue<'WebkitUserModify'>
109
+ accentColor?: PropertyValue<'accentColor'>
110
+ alignContent?: PropertyValue<'alignContent'>
111
+ alignItems?: PropertyValue<'alignItems'>
112
+ alignSelf?: PropertyValue<'alignSelf'>
113
+ alignTracks?: PropertyValue<'alignTracks'>
114
+ all?: PropertyValue<'all'>
115
+ animation?: PropertyValue<'animation'>
116
+ animationComposition?: PropertyValue<'animationComposition'>
117
+ animationDelay?: PropertyValue<'animationDelay'>
118
+ animationDirection?: PropertyValue<'animationDirection'>
119
+ animationDuration?: PropertyValue<'animationDuration'>
120
+ animationFillMode?: PropertyValue<'animationFillMode'>
121
+ animationIterationCount?: PropertyValue<'animationIterationCount'>
122
+ animationName?: PropertyValue<'animationName'>
123
+ animationPlayState?: PropertyValue<'animationPlayState'>
124
+ animationTimingFunction?: PropertyValue<'animationTimingFunction'>
125
+ animationTimeline?: PropertyValue<'animationTimeline'>
126
+ appearance?: PropertyValue<'appearance'>
127
+ aspectRatio?: PropertyValue<'aspectRatio'>
128
+ azimuth?: PropertyValue<'azimuth'>
129
+ backdropFilter?: PropertyValue<'backdropFilter'>
130
+ backfaceVisibility?: PropertyValue<'backfaceVisibility'>
131
+ background?: PropertyValue<'background'>
132
+ backgroundAttachment?: PropertyValue<'backgroundAttachment'>
133
+ backgroundBlendMode?: PropertyValue<'backgroundBlendMode'>
134
+ backgroundClip?: PropertyValue<'backgroundClip'>
135
+ backgroundColor?: PropertyValue<'backgroundColor'>
136
+ backgroundImage?: PropertyValue<'backgroundImage'>
137
+ backgroundOrigin?: PropertyValue<'backgroundOrigin'>
138
+ backgroundPosition?: PropertyValue<'backgroundPosition'>
139
+ backgroundPositionX?: PropertyValue<'backgroundPositionX'>
140
+ backgroundPositionY?: PropertyValue<'backgroundPositionY'>
141
+ backgroundRepeat?: PropertyValue<'backgroundRepeat'>
142
+ backgroundSize?: PropertyValue<'backgroundSize'>
143
+ blockOverflow?: PropertyValue<'blockOverflow'>
144
+ blockSize?: PropertyValue<'blockSize'>
145
+ border?: PropertyValue<'border'>
146
+ borderBlock?: PropertyValue<'borderBlock'>
147
+ borderBlockColor?: PropertyValue<'borderBlockColor'>
148
+ borderBlockStyle?: PropertyValue<'borderBlockStyle'>
149
+ borderBlockWidth?: PropertyValue<'borderBlockWidth'>
150
+ borderBlockEnd?: PropertyValue<'borderBlockEnd'>
151
+ borderBlockEndColor?: PropertyValue<'borderBlockEndColor'>
152
+ borderBlockEndStyle?: PropertyValue<'borderBlockEndStyle'>
153
+ borderBlockEndWidth?: PropertyValue<'borderBlockEndWidth'>
154
+ borderBlockStart?: PropertyValue<'borderBlockStart'>
155
+ borderBlockStartColor?: PropertyValue<'borderBlockStartColor'>
156
+ borderBlockStartStyle?: PropertyValue<'borderBlockStartStyle'>
157
+ borderBlockStartWidth?: PropertyValue<'borderBlockStartWidth'>
158
+ borderBottom?: PropertyValue<'borderBottom'>
159
+ borderBottomColor?: PropertyValue<'borderBottomColor'>
160
+ borderBottomLeftRadius?: PropertyValue<'borderBottomLeftRadius'>
161
+ borderBottomRightRadius?: PropertyValue<'borderBottomRightRadius'>
162
+ borderBottomStyle?: PropertyValue<'borderBottomStyle'>
163
+ borderBottomWidth?: PropertyValue<'borderBottomWidth'>
164
+ borderCollapse?: PropertyValue<'borderCollapse'>
165
+ borderColor?: PropertyValue<'borderColor'>
166
+ borderEndEndRadius?: PropertyValue<'borderEndEndRadius'>
167
+ borderEndStartRadius?: PropertyValue<'borderEndStartRadius'>
168
+ borderImage?: PropertyValue<'borderImage'>
169
+ borderImageOutset?: PropertyValue<'borderImageOutset'>
170
+ borderImageRepeat?: PropertyValue<'borderImageRepeat'>
171
+ borderImageSlice?: PropertyValue<'borderImageSlice'>
172
+ borderImageSource?: PropertyValue<'borderImageSource'>
173
+ borderImageWidth?: PropertyValue<'borderImageWidth'>
174
+ borderInline?: PropertyValue<'borderInline'>
175
+ borderInlineEnd?: PropertyValue<'borderInlineEnd'>
176
+ borderInlineColor?: PropertyValue<'borderInlineColor'>
177
+ borderInlineStyle?: PropertyValue<'borderInlineStyle'>
178
+ borderInlineWidth?: PropertyValue<'borderInlineWidth'>
179
+ borderInlineEndColor?: PropertyValue<'borderInlineEndColor'>
180
+ borderInlineEndStyle?: PropertyValue<'borderInlineEndStyle'>
181
+ borderInlineEndWidth?: PropertyValue<'borderInlineEndWidth'>
182
+ borderInlineStart?: PropertyValue<'borderInlineStart'>
183
+ borderInlineStartColor?: PropertyValue<'borderInlineStartColor'>
184
+ borderInlineStartStyle?: PropertyValue<'borderInlineStartStyle'>
185
+ borderInlineStartWidth?: PropertyValue<'borderInlineStartWidth'>
186
+ borderLeft?: PropertyValue<'borderLeft'>
187
+ borderLeftColor?: PropertyValue<'borderLeftColor'>
188
+ borderLeftStyle?: PropertyValue<'borderLeftStyle'>
189
+ borderLeftWidth?: PropertyValue<'borderLeftWidth'>
190
+ borderRadius?: PropertyValue<'borderRadius'>
191
+ borderRight?: PropertyValue<'borderRight'>
192
+ borderRightColor?: PropertyValue<'borderRightColor'>
193
+ borderRightStyle?: PropertyValue<'borderRightStyle'>
194
+ borderRightWidth?: PropertyValue<'borderRightWidth'>
195
+ borderSpacing?: PropertyValue<'borderSpacing'>
196
+ borderStartEndRadius?: PropertyValue<'borderStartEndRadius'>
197
+ borderStartStartRadius?: PropertyValue<'borderStartStartRadius'>
198
+ borderStyle?: PropertyValue<'borderStyle'>
199
+ borderTop?: PropertyValue<'borderTop'>
200
+ borderTopColor?: PropertyValue<'borderTopColor'>
201
+ borderTopLeftRadius?: PropertyValue<'borderTopLeftRadius'>
202
+ borderTopRightRadius?: PropertyValue<'borderTopRightRadius'>
203
+ borderTopStyle?: PropertyValue<'borderTopStyle'>
204
+ borderTopWidth?: PropertyValue<'borderTopWidth'>
205
+ borderWidth?: PropertyValue<'borderWidth'>
206
+ bottom?: PropertyValue<'bottom'>
207
+ boxAlign?: PropertyValue<'boxAlign'>
208
+ boxDecorationBreak?: PropertyValue<'boxDecorationBreak'>
209
+ boxDirection?: PropertyValue<'boxDirection'>
210
+ boxFlex?: PropertyValue<'boxFlex'>
211
+ boxFlexGroup?: PropertyValue<'boxFlexGroup'>
212
+ boxLines?: PropertyValue<'boxLines'>
213
+ boxOrdinalGroup?: PropertyValue<'boxOrdinalGroup'>
214
+ boxOrient?: PropertyValue<'boxOrient'>
215
+ boxPack?: PropertyValue<'boxPack'>
216
+ boxShadow?: PropertyValue<'boxShadow'>
217
+ boxSizing?: PropertyValue<'boxSizing'>
218
+ breakAfter?: PropertyValue<'breakAfter'>
219
+ breakBefore?: PropertyValue<'breakBefore'>
220
+ breakInside?: PropertyValue<'breakInside'>
221
+ captionSide?: PropertyValue<'captionSide'>
222
+ caret?: PropertyValue<'caret'>
223
+ caretColor?: PropertyValue<'caretColor'>
224
+ caretShape?: PropertyValue<'caretShape'>
225
+ clear?: PropertyValue<'clear'>
226
+ clip?: PropertyValue<'clip'>
227
+ clipPath?: PropertyValue<'clipPath'>
228
+ color?: PropertyValue<'color'>
229
+ printColorAdjust?: PropertyValue<'printColorAdjust'>
230
+ colorScheme?: PropertyValue<'colorScheme'>
231
+ columnCount?: PropertyValue<'columnCount'>
232
+ columnFill?: PropertyValue<'columnFill'>
233
+ columnGap?: PropertyValue<'columnGap'>
234
+ columnRule?: PropertyValue<'columnRule'>
235
+ columnRuleColor?: PropertyValue<'columnRuleColor'>
236
+ columnRuleStyle?: PropertyValue<'columnRuleStyle'>
237
+ columnRuleWidth?: PropertyValue<'columnRuleWidth'>
238
+ columnSpan?: PropertyValue<'columnSpan'>
239
+ columnWidth?: PropertyValue<'columnWidth'>
240
+ columns?: PropertyValue<'columns'>
241
+ contain?: PropertyValue<'contain'>
242
+ containIntrinsicSize?: PropertyValue<'containIntrinsicSize'>
243
+ containIntrinsicBlockSize?: PropertyValue<'containIntrinsicBlockSize'>
244
+ containIntrinsicHeight?: PropertyValue<'containIntrinsicHeight'>
245
+ containIntrinsicInlineSize?: PropertyValue<'containIntrinsicInlineSize'>
246
+ containIntrinsicWidth?: PropertyValue<'containIntrinsicWidth'>
247
+ content?: PropertyValue<'content'>
248
+ contentVisibility?: PropertyValue<'contentVisibility'>
249
+ counterIncrement?: PropertyValue<'counterIncrement'>
250
+ counterReset?: PropertyValue<'counterReset'>
251
+ counterSet?: PropertyValue<'counterSet'>
252
+ cursor?: PropertyValue<'cursor'>
253
+ direction?: PropertyValue<'direction'>
254
+ display?: PropertyValue<'display'>
255
+ emptyCells?: PropertyValue<'emptyCells'>
256
+ filter?: PropertyValue<'filter'>
257
+ flex?: PropertyValue<'flex'>
258
+ flexBasis?: PropertyValue<'flexBasis'>
259
+ flexDirection?: PropertyValue<'flexDirection'>
260
+ flexFlow?: PropertyValue<'flexFlow'>
261
+ flexGrow?: PropertyValue<'flexGrow'>
262
+ flexShrink?: PropertyValue<'flexShrink'>
263
+ flexWrap?: PropertyValue<'flexWrap'>
264
+ float?: PropertyValue<'float'>
265
+ font?: PropertyValue<'font'>
266
+ fontFamily?: PropertyValue<'fontFamily'>
267
+ fontFeatureSettings?: PropertyValue<'fontFeatureSettings'>
268
+ fontKerning?: PropertyValue<'fontKerning'>
269
+ fontLanguageOverride?: PropertyValue<'fontLanguageOverride'>
270
+ fontOpticalSizing?: PropertyValue<'fontOpticalSizing'>
271
+ fontVariationSettings?: PropertyValue<'fontVariationSettings'>
272
+ fontSize?: PropertyValue<'fontSize'>
273
+ fontSizeAdjust?: PropertyValue<'fontSizeAdjust'>
274
+ fontSmooth?: PropertyValue<'fontSmooth'>
275
+ fontStretch?: PropertyValue<'fontStretch'>
276
+ fontStyle?: PropertyValue<'fontStyle'>
277
+ fontSynthesis?: PropertyValue<'fontSynthesis'>
278
+ fontVariant?: PropertyValue<'fontVariant'>
279
+ fontVariantAlternates?: PropertyValue<'fontVariantAlternates'>
280
+ fontVariantCaps?: PropertyValue<'fontVariantCaps'>
281
+ fontVariantEastAsian?: PropertyValue<'fontVariantEastAsian'>
282
+ fontVariantLigatures?: PropertyValue<'fontVariantLigatures'>
283
+ fontVariantNumeric?: PropertyValue<'fontVariantNumeric'>
284
+ fontVariantPosition?: PropertyValue<'fontVariantPosition'>
285
+ fontWeight?: PropertyValue<'fontWeight'>
286
+ forcedColorAdjust?: PropertyValue<'forcedColorAdjust'>
287
+ gap?: PropertyValue<'gap'>
288
+ grid?: PropertyValue<'grid'>
289
+ gridArea?: PropertyValue<'gridArea'>
290
+ gridAutoColumns?: PropertyValue<'gridAutoColumns'>
291
+ gridAutoFlow?: PropertyValue<'gridAutoFlow'>
292
+ gridAutoRows?: PropertyValue<'gridAutoRows'>
293
+ gridColumn?: PropertyValue<'gridColumn'>
294
+ gridColumnEnd?: PropertyValue<'gridColumnEnd'>
295
+ gridColumnGap?: PropertyValue<'gridColumnGap'>
296
+ gridColumnStart?: PropertyValue<'gridColumnStart'>
297
+ gridGap?: PropertyValue<'gridGap'>
298
+ gridRow?: PropertyValue<'gridRow'>
299
+ gridRowEnd?: PropertyValue<'gridRowEnd'>
300
+ gridRowGap?: PropertyValue<'gridRowGap'>
301
+ gridRowStart?: PropertyValue<'gridRowStart'>
302
+ gridTemplate?: PropertyValue<'gridTemplate'>
303
+ gridTemplateAreas?: PropertyValue<'gridTemplateAreas'>
304
+ gridTemplateColumns?: PropertyValue<'gridTemplateColumns'>
305
+ gridTemplateRows?: PropertyValue<'gridTemplateRows'>
306
+ hangingPunctuation?: PropertyValue<'hangingPunctuation'>
307
+ height?: PropertyValue<'height'>
308
+ hyphenateCharacter?: PropertyValue<'hyphenateCharacter'>
309
+ hyphenateLimitChars?: PropertyValue<'hyphenateLimitChars'>
310
+ hyphens?: PropertyValue<'hyphens'>
311
+ imageOrientation?: PropertyValue<'imageOrientation'>
312
+ imageRendering?: PropertyValue<'imageRendering'>
313
+ imageResolution?: PropertyValue<'imageResolution'>
314
+ imeMode?: PropertyValue<'imeMode'>
315
+ initialLetter?: PropertyValue<'initialLetter'>
316
+ initialLetterAlign?: PropertyValue<'initialLetterAlign'>
317
+ inlineSize?: PropertyValue<'inlineSize'>
318
+ inputSecurity?: PropertyValue<'inputSecurity'>
319
+ inset?: PropertyValue<'inset'>
320
+ insetBlock?: PropertyValue<'insetBlock'>
321
+ insetBlockEnd?: PropertyValue<'insetBlockEnd'>
322
+ insetBlockStart?: PropertyValue<'insetBlockStart'>
323
+ insetInline?: PropertyValue<'insetInline'>
324
+ insetInlineEnd?: PropertyValue<'insetInlineEnd'>
325
+ insetInlineStart?: PropertyValue<'insetInlineStart'>
326
+ isolation?: PropertyValue<'isolation'>
327
+ justifyContent?: PropertyValue<'justifyContent'>
328
+ justifyItems?: PropertyValue<'justifyItems'>
329
+ justifySelf?: PropertyValue<'justifySelf'>
330
+ justifyTracks?: PropertyValue<'justifyTracks'>
331
+ left?: PropertyValue<'left'>
332
+ letterSpacing?: PropertyValue<'letterSpacing'>
333
+ lineBreak?: PropertyValue<'lineBreak'>
334
+ lineClamp?: PropertyValue<'lineClamp'>
335
+ lineHeight?: PropertyValue<'lineHeight'>
336
+ lineHeightStep?: PropertyValue<'lineHeightStep'>
337
+ listStyle?: PropertyValue<'listStyle'>
338
+ listStyleImage?: PropertyValue<'listStyleImage'>
339
+ listStylePosition?: PropertyValue<'listStylePosition'>
340
+ listStyleType?: PropertyValue<'listStyleType'>
341
+ margin?: PropertyValue<'margin'>
342
+ marginBlock?: PropertyValue<'marginBlock'>
343
+ marginBlockEnd?: PropertyValue<'marginBlockEnd'>
344
+ marginBlockStart?: PropertyValue<'marginBlockStart'>
345
+ marginBottom?: PropertyValue<'marginBottom'>
346
+ marginInline?: PropertyValue<'marginInline'>
347
+ marginInlineEnd?: PropertyValue<'marginInlineEnd'>
348
+ marginInlineStart?: PropertyValue<'marginInlineStart'>
349
+ marginLeft?: PropertyValue<'marginLeft'>
350
+ marginRight?: PropertyValue<'marginRight'>
351
+ marginTop?: PropertyValue<'marginTop'>
352
+ marginTrim?: PropertyValue<'marginTrim'>
353
+ mask?: PropertyValue<'mask'>
354
+ maskBorder?: PropertyValue<'maskBorder'>
355
+ maskBorderMode?: PropertyValue<'maskBorderMode'>
356
+ maskBorderOutset?: PropertyValue<'maskBorderOutset'>
357
+ maskBorderRepeat?: PropertyValue<'maskBorderRepeat'>
358
+ maskBorderSlice?: PropertyValue<'maskBorderSlice'>
359
+ maskBorderSource?: PropertyValue<'maskBorderSource'>
360
+ maskBorderWidth?: PropertyValue<'maskBorderWidth'>
361
+ maskClip?: PropertyValue<'maskClip'>
362
+ maskComposite?: PropertyValue<'maskComposite'>
363
+ maskImage?: PropertyValue<'maskImage'>
364
+ maskMode?: PropertyValue<'maskMode'>
365
+ maskOrigin?: PropertyValue<'maskOrigin'>
366
+ maskPosition?: PropertyValue<'maskPosition'>
367
+ maskRepeat?: PropertyValue<'maskRepeat'>
368
+ maskSize?: PropertyValue<'maskSize'>
369
+ maskType?: PropertyValue<'maskType'>
370
+ masonryAutoFlow?: PropertyValue<'masonryAutoFlow'>
371
+ mathDepth?: PropertyValue<'mathDepth'>
372
+ mathShift?: PropertyValue<'mathShift'>
373
+ mathStyle?: PropertyValue<'mathStyle'>
374
+ maxBlockSize?: PropertyValue<'maxBlockSize'>
375
+ maxHeight?: PropertyValue<'maxHeight'>
376
+ maxInlineSize?: PropertyValue<'maxInlineSize'>
377
+ maxLines?: PropertyValue<'maxLines'>
378
+ maxWidth?: PropertyValue<'maxWidth'>
379
+ minBlockSize?: PropertyValue<'minBlockSize'>
380
+ minHeight?: PropertyValue<'minHeight'>
381
+ minInlineSize?: PropertyValue<'minInlineSize'>
382
+ minWidth?: PropertyValue<'minWidth'>
383
+ mixBlendMode?: PropertyValue<'mixBlendMode'>
384
+ objectFit?: PropertyValue<'objectFit'>
385
+ objectPosition?: PropertyValue<'objectPosition'>
386
+ offset?: PropertyValue<'offset'>
387
+ offsetAnchor?: PropertyValue<'offsetAnchor'>
388
+ offsetDistance?: PropertyValue<'offsetDistance'>
389
+ offsetPath?: PropertyValue<'offsetPath'>
390
+ offsetPosition?: PropertyValue<'offsetPosition'>
391
+ offsetRotate?: PropertyValue<'offsetRotate'>
392
+ opacity?: PropertyValue<'opacity'>
393
+ order?: PropertyValue<'order'>
394
+ orphans?: PropertyValue<'orphans'>
395
+ outline?: PropertyValue<'outline'>
396
+ outlineColor?: PropertyValue<'outlineColor'>
397
+ outlineOffset?: PropertyValue<'outlineOffset'>
398
+ outlineStyle?: PropertyValue<'outlineStyle'>
399
+ outlineWidth?: PropertyValue<'outlineWidth'>
400
+ overflow?: PropertyValue<'overflow'>
401
+ overflowAnchor?: PropertyValue<'overflowAnchor'>
402
+ overflowBlock?: PropertyValue<'overflowBlock'>
403
+ overflowClipBox?: PropertyValue<'overflowClipBox'>
404
+ overflowClipMargin?: PropertyValue<'overflowClipMargin'>
405
+ overflowInline?: PropertyValue<'overflowInline'>
406
+ overflowWrap?: PropertyValue<'overflowWrap'>
407
+ overflowX?: PropertyValue<'overflowX'>
408
+ overflowY?: PropertyValue<'overflowY'>
409
+ overscrollBehavior?: PropertyValue<'overscrollBehavior'>
410
+ overscrollBehaviorBlock?: PropertyValue<'overscrollBehaviorBlock'>
411
+ overscrollBehaviorInline?: PropertyValue<'overscrollBehaviorInline'>
412
+ overscrollBehaviorX?: PropertyValue<'overscrollBehaviorX'>
413
+ overscrollBehaviorY?: PropertyValue<'overscrollBehaviorY'>
414
+ padding?: PropertyValue<'padding'>
415
+ paddingBlock?: PropertyValue<'paddingBlock'>
416
+ paddingBlockEnd?: PropertyValue<'paddingBlockEnd'>
417
+ paddingBlockStart?: PropertyValue<'paddingBlockStart'>
418
+ paddingBottom?: PropertyValue<'paddingBottom'>
419
+ paddingInline?: PropertyValue<'paddingInline'>
420
+ paddingInlineEnd?: PropertyValue<'paddingInlineEnd'>
421
+ paddingInlineStart?: PropertyValue<'paddingInlineStart'>
422
+ paddingLeft?: PropertyValue<'paddingLeft'>
423
+ paddingRight?: PropertyValue<'paddingRight'>
424
+ paddingTop?: PropertyValue<'paddingTop'>
425
+ pageBreakAfter?: PropertyValue<'pageBreakAfter'>
426
+ pageBreakBefore?: PropertyValue<'pageBreakBefore'>
427
+ pageBreakInside?: PropertyValue<'pageBreakInside'>
428
+ paintOrder?: PropertyValue<'paintOrder'>
429
+ perspective?: PropertyValue<'perspective'>
430
+ perspectiveOrigin?: PropertyValue<'perspectiveOrigin'>
431
+ placeContent?: PropertyValue<'placeContent'>
432
+ placeItems?: PropertyValue<'placeItems'>
433
+ placeSelf?: PropertyValue<'placeSelf'>
434
+ pointerEvents?: PropertyValue<'pointerEvents'>
435
+ position?: PropertyValue<'position'>
436
+ quotes?: PropertyValue<'quotes'>
437
+ resize?: PropertyValue<'resize'>
438
+ right?: PropertyValue<'right'>
439
+ rotate?: PropertyValue<'rotate'>
440
+ rowGap?: PropertyValue<'rowGap'>
441
+ rubyAlign?: PropertyValue<'rubyAlign'>
442
+ rubyMerge?: PropertyValue<'rubyMerge'>
443
+ rubyPosition?: PropertyValue<'rubyPosition'>
444
+ scale?: PropertyValue<'scale'>
445
+ scrollbarColor?: PropertyValue<'scrollbarColor'>
446
+ scrollbarGutter?: PropertyValue<'scrollbarGutter'>
447
+ scrollbarWidth?: PropertyValue<'scrollbarWidth'>
448
+ scrollBehavior?: PropertyValue<'scrollBehavior'>
449
+ scrollMargin?: PropertyValue<'scrollMargin'>
450
+ scrollMarginBlock?: PropertyValue<'scrollMarginBlock'>
451
+ scrollMarginBlockStart?: PropertyValue<'scrollMarginBlockStart'>
452
+ scrollMarginBlockEnd?: PropertyValue<'scrollMarginBlockEnd'>
453
+ scrollMarginBottom?: PropertyValue<'scrollMarginBottom'>
454
+ scrollMarginInline?: PropertyValue<'scrollMarginInline'>
455
+ scrollMarginInlineStart?: PropertyValue<'scrollMarginInlineStart'>
456
+ scrollMarginInlineEnd?: PropertyValue<'scrollMarginInlineEnd'>
457
+ scrollMarginLeft?: PropertyValue<'scrollMarginLeft'>
458
+ scrollMarginRight?: PropertyValue<'scrollMarginRight'>
459
+ scrollMarginTop?: PropertyValue<'scrollMarginTop'>
460
+ scrollPadding?: PropertyValue<'scrollPadding'>
461
+ scrollPaddingBlock?: PropertyValue<'scrollPaddingBlock'>
462
+ scrollPaddingBlockStart?: PropertyValue<'scrollPaddingBlockStart'>
463
+ scrollPaddingBlockEnd?: PropertyValue<'scrollPaddingBlockEnd'>
464
+ scrollPaddingBottom?: PropertyValue<'scrollPaddingBottom'>
465
+ scrollPaddingInline?: PropertyValue<'scrollPaddingInline'>
466
+ scrollPaddingInlineStart?: PropertyValue<'scrollPaddingInlineStart'>
467
+ scrollPaddingInlineEnd?: PropertyValue<'scrollPaddingInlineEnd'>
468
+ scrollPaddingLeft?: PropertyValue<'scrollPaddingLeft'>
469
+ scrollPaddingRight?: PropertyValue<'scrollPaddingRight'>
470
+ scrollPaddingTop?: PropertyValue<'scrollPaddingTop'>
471
+ scrollSnapAlign?: PropertyValue<'scrollSnapAlign'>
472
+ scrollSnapCoordinate?: PropertyValue<'scrollSnapCoordinate'>
473
+ scrollSnapDestination?: PropertyValue<'scrollSnapDestination'>
474
+ scrollSnapPointsX?: PropertyValue<'scrollSnapPointsX'>
475
+ scrollSnapPointsY?: PropertyValue<'scrollSnapPointsY'>
476
+ scrollSnapStop?: PropertyValue<'scrollSnapStop'>
477
+ scrollSnapType?: PropertyValue<'scrollSnapType'>
478
+ scrollSnapTypeX?: PropertyValue<'scrollSnapTypeX'>
479
+ scrollSnapTypeY?: PropertyValue<'scrollSnapTypeY'>
480
+ scrollTimeline?: PropertyValue<'scrollTimeline'>
481
+ scrollTimelineAxis?: PropertyValue<'scrollTimelineAxis'>
482
+ scrollTimelineName?: PropertyValue<'scrollTimelineName'>
483
+ shapeImageThreshold?: PropertyValue<'shapeImageThreshold'>
484
+ shapeMargin?: PropertyValue<'shapeMargin'>
485
+ shapeOutside?: PropertyValue<'shapeOutside'>
486
+ tabSize?: PropertyValue<'tabSize'>
487
+ tableLayout?: PropertyValue<'tableLayout'>
488
+ textAlign?: PropertyValue<'textAlign'>
489
+ textAlignLast?: PropertyValue<'textAlignLast'>
490
+ textCombineUpright?: PropertyValue<'textCombineUpright'>
491
+ textDecoration?: PropertyValue<'textDecoration'>
492
+ textDecorationColor?: PropertyValue<'textDecorationColor'>
493
+ textDecorationLine?: PropertyValue<'textDecorationLine'>
494
+ textDecorationSkip?: PropertyValue<'textDecorationSkip'>
495
+ textDecorationSkipInk?: PropertyValue<'textDecorationSkipInk'>
496
+ textDecorationStyle?: PropertyValue<'textDecorationStyle'>
497
+ textDecorationThickness?: PropertyValue<'textDecorationThickness'>
498
+ textEmphasis?: PropertyValue<'textEmphasis'>
499
+ textEmphasisColor?: PropertyValue<'textEmphasisColor'>
500
+ textEmphasisPosition?: PropertyValue<'textEmphasisPosition'>
501
+ textEmphasisStyle?: PropertyValue<'textEmphasisStyle'>
502
+ textIndent?: PropertyValue<'textIndent'>
503
+ textJustify?: PropertyValue<'textJustify'>
504
+ textOrientation?: PropertyValue<'textOrientation'>
505
+ textOverflow?: PropertyValue<'textOverflow'>
506
+ textRendering?: PropertyValue<'textRendering'>
507
+ textShadow?: PropertyValue<'textShadow'>
508
+ textSizeAdjust?: PropertyValue<'textSizeAdjust'>
509
+ textTransform?: PropertyValue<'textTransform'>
510
+ textUnderlineOffset?: PropertyValue<'textUnderlineOffset'>
511
+ textUnderlinePosition?: PropertyValue<'textUnderlinePosition'>
512
+ top?: PropertyValue<'top'>
513
+ touchAction?: PropertyValue<'touchAction'>
514
+ transform?: PropertyValue<'transform'>
515
+ transformBox?: PropertyValue<'transformBox'>
516
+ transformOrigin?: PropertyValue<'transformOrigin'>
517
+ transformStyle?: PropertyValue<'transformStyle'>
518
+ transition?: PropertyValue<'transition'>
519
+ transitionDelay?: PropertyValue<'transitionDelay'>
520
+ transitionDuration?: PropertyValue<'transitionDuration'>
521
+ transitionProperty?: PropertyValue<'transitionProperty'>
522
+ transitionTimingFunction?: PropertyValue<'transitionTimingFunction'>
523
+ translate?: PropertyValue<'translate'>
524
+ unicodeBidi?: PropertyValue<'unicodeBidi'>
525
+ userSelect?: PropertyValue<'userSelect'>
526
+ verticalAlign?: PropertyValue<'verticalAlign'>
527
+ visibility?: PropertyValue<'visibility'>
528
+ whiteSpace?: PropertyValue<'whiteSpace'>
529
+ widows?: PropertyValue<'widows'>
530
+ width?: PropertyValue<'width'>
531
+ willChange?: PropertyValue<'willChange'>
532
+ wordBreak?: PropertyValue<'wordBreak'>
533
+ wordSpacing?: PropertyValue<'wordSpacing'>
534
+ wordWrap?: PropertyValue<'wordWrap'>
535
+ writingMode?: PropertyValue<'writingMode'>
536
+ zIndex?: PropertyValue<'zIndex'>
537
+ zoom?: PropertyValue<'zoom'>
538
+ pos?: PropertyValue<'pos'>
539
+ insetEnd?: PropertyValue<'insetEnd'>
540
+ end?: PropertyValue<'end'>
541
+ insetStart?: PropertyValue<'insetStart'>
542
+ start?: PropertyValue<'start'>
543
+ flexDir?: PropertyValue<'flexDir'>
544
+ p?: PropertyValue<'p'>
545
+ pl?: PropertyValue<'pl'>
546
+ pr?: PropertyValue<'pr'>
547
+ pt?: PropertyValue<'pt'>
548
+ pb?: PropertyValue<'pb'>
549
+ py?: PropertyValue<'py'>
550
+ paddingY?: PropertyValue<'paddingY'>
551
+ paddingX?: PropertyValue<'paddingX'>
552
+ px?: PropertyValue<'px'>
553
+ pe?: PropertyValue<'pe'>
554
+ paddingEnd?: PropertyValue<'paddingEnd'>
555
+ ps?: PropertyValue<'ps'>
556
+ paddingStart?: PropertyValue<'paddingStart'>
557
+ ml?: PropertyValue<'ml'>
558
+ mr?: PropertyValue<'mr'>
559
+ mt?: PropertyValue<'mt'>
560
+ mb?: PropertyValue<'mb'>
561
+ m?: PropertyValue<'m'>
562
+ my?: PropertyValue<'my'>
563
+ marginY?: PropertyValue<'marginY'>
564
+ mx?: PropertyValue<'mx'>
565
+ marginX?: PropertyValue<'marginX'>
566
+ me?: PropertyValue<'me'>
567
+ marginEnd?: PropertyValue<'marginEnd'>
568
+ ms?: PropertyValue<'ms'>
569
+ marginStart?: PropertyValue<'marginStart'>
570
+ ringWidth?: PropertyValue<'ringWidth'>
571
+ ringColor?: PropertyValue<'ringColor'>
572
+ ring?: PropertyValue<'ring'>
573
+ ringOffset?: PropertyValue<'ringOffset'>
574
+ w?: PropertyValue<'w'>
575
+ minW?: PropertyValue<'minW'>
576
+ maxW?: PropertyValue<'maxW'>
577
+ h?: PropertyValue<'h'>
578
+ minH?: PropertyValue<'minH'>
579
+ maxH?: PropertyValue<'maxH'>
580
+ bgPosition?: PropertyValue<'bgPosition'>
581
+ bgPositionX?: PropertyValue<'bgPositionX'>
582
+ bgPositionY?: PropertyValue<'bgPositionY'>
583
+ bgAttachment?: PropertyValue<'bgAttachment'>
584
+ bgClip?: PropertyValue<'bgClip'>
585
+ bg?: PropertyValue<'bg'>
586
+ bgColor?: PropertyValue<'bgColor'>
587
+ bgOrigin?: PropertyValue<'bgOrigin'>
588
+ bgImage?: PropertyValue<'bgImage'>
589
+ bgRepeat?: PropertyValue<'bgRepeat'>
590
+ bgBlendMode?: PropertyValue<'bgBlendMode'>
591
+ bgSize?: PropertyValue<'bgSize'>
592
+ bgGradient?: PropertyValue<'bgGradient'>
593
+ rounded?: PropertyValue<'rounded'>
594
+ roundedTopLeft?: PropertyValue<'roundedTopLeft'>
595
+ roundedTopRight?: PropertyValue<'roundedTopRight'>
596
+ roundedBottomRight?: PropertyValue<'roundedBottomRight'>
597
+ roundedBottomLeft?: PropertyValue<'roundedBottomLeft'>
598
+ roundedTop?: PropertyValue<'roundedTop'>
599
+ roundedRight?: PropertyValue<'roundedRight'>
600
+ roundedBottom?: PropertyValue<'roundedBottom'>
601
+ roundedLeft?: PropertyValue<'roundedLeft'>
602
+ roundedStartStart?: PropertyValue<'roundedStartStart'>
603
+ roundedStartEnd?: PropertyValue<'roundedStartEnd'>
604
+ roundedStart?: PropertyValue<'roundedStart'>
605
+ roundedEndStart?: PropertyValue<'roundedEndStart'>
606
+ roundedEndEnd?: PropertyValue<'roundedEndEnd'>
607
+ roundedEnd?: PropertyValue<'roundedEnd'>
608
+ borderX?: PropertyValue<'borderX'>
609
+ borderXWidth?: PropertyValue<'borderXWidth'>
610
+ borderXColor?: PropertyValue<'borderXColor'>
611
+ borderY?: PropertyValue<'borderY'>
612
+ borderYWidth?: PropertyValue<'borderYWidth'>
613
+ borderYColor?: PropertyValue<'borderYColor'>
614
+ borderStart?: PropertyValue<'borderStart'>
615
+ borderStartColor?: PropertyValue<'borderStartColor'>
616
+ borderEnd?: PropertyValue<'borderEnd'>
617
+ borderEndColor?: PropertyValue<'borderEndColor'>
618
+ shadow?: PropertyValue<'shadow'>
619
+ shadowColor?: PropertyValue<'shadowColor'>
620
+ x?: PropertyValue<'x'>
621
+ y?: PropertyValue<'y'>
622
+ insetX?: PropertyValue<'insetX'>
623
+ insetY?: PropertyValue<'insetY'>
624
+ hideFrom?: PropertyValue<'hideFrom'>
625
+ hideBelow?: PropertyValue<'hideBelow'>
626
+ divideX?: PropertyValue<'divideX'>
627
+ divideY?: PropertyValue<'divideY'>
628
+ divideColor?: PropertyValue<'divideColor'>
629
+ divideStyle?: PropertyValue<'divideStyle'>
630
+ fontSmoothing?: PropertyValue<'fontSmoothing'>
631
+ textWrap?: PropertyValue<'textWrap'>
632
+ truncate?: PropertyValue<'truncate'>
633
+ backgroundGradient?: PropertyValue<'backgroundGradient'>
634
+ textGradient?: PropertyValue<'textGradient'>
635
+ gradientFrom?: PropertyValue<'gradientFrom'>
636
+ gradientTo?: PropertyValue<'gradientTo'>
637
+ gradientVia?: PropertyValue<'gradientVia'>
638
+ borderTopRadius?: PropertyValue<'borderTopRadius'>
639
+ borderRightRadius?: PropertyValue<'borderRightRadius'>
640
+ borderBottomRadius?: PropertyValue<'borderBottomRadius'>
641
+ borderLeftRadius?: PropertyValue<'borderLeftRadius'>
642
+ borderStartRadius?: PropertyValue<'borderStartRadius'>
643
+ borderEndRadius?: PropertyValue<'borderEndRadius'>
644
+ boxShadowColor?: PropertyValue<'boxShadowColor'>
645
+ brightness?: PropertyValue<'brightness'>
646
+ contrast?: PropertyValue<'contrast'>
647
+ grayscale?: PropertyValue<'grayscale'>
648
+ hueRotate?: PropertyValue<'hueRotate'>
649
+ invert?: PropertyValue<'invert'>
650
+ saturate?: PropertyValue<'saturate'>
651
+ sepia?: PropertyValue<'sepia'>
652
+ dropShadow?: PropertyValue<'dropShadow'>
653
+ blur?: PropertyValue<'blur'>
654
+ backdropBlur?: PropertyValue<'backdropBlur'>
655
+ backdropBrightness?: PropertyValue<'backdropBrightness'>
656
+ backdropContrast?: PropertyValue<'backdropContrast'>
657
+ backdropGrayscale?: PropertyValue<'backdropGrayscale'>
658
+ backdropHueRotate?: PropertyValue<'backdropHueRotate'>
659
+ backdropInvert?: PropertyValue<'backdropInvert'>
660
+ backdropOpacity?: PropertyValue<'backdropOpacity'>
661
+ backdropSaturate?: PropertyValue<'backdropSaturate'>
662
+ backdropSepia?: PropertyValue<'backdropSepia'>
663
+ borderSpacingX?: PropertyValue<'borderSpacingX'>
664
+ borderSpacingY?: PropertyValue<'borderSpacingY'>
665
+ scaleX?: PropertyValue<'scaleX'>
666
+ scaleY?: PropertyValue<'scaleY'>
667
+ translateX?: PropertyValue<'translateX'>
668
+ translateY?: PropertyValue<'translateY'>
669
+ skewX?: PropertyValue<'skewX'>
670
+ skewY?: PropertyValue<'skewY'>
671
+ scrollbar?: PropertyValue<'scrollbar'>
672
+ scrollMarginX?: PropertyValue<'scrollMarginX'>
673
+ scrollMarginY?: PropertyValue<'scrollMarginY'>
674
+ scrollPaddingX?: PropertyValue<'scrollPaddingX'>
675
+ scrollPaddingY?: PropertyValue<'scrollPaddingY'>
676
+ scrollSnapStrictness?: PropertyValue<'scrollSnapStrictness'>
677
+ scrollSnapMargin?: PropertyValue<'scrollSnapMargin'>
678
+ scrollSnapMarginTop?: PropertyValue<'scrollSnapMarginTop'>
679
+ scrollSnapMarginBottom?: PropertyValue<'scrollSnapMarginBottom'>
680
+ scrollSnapMarginLeft?: PropertyValue<'scrollSnapMarginLeft'>
681
+ scrollSnapMarginRight?: PropertyValue<'scrollSnapMarginRight'>
682
+ fill?: PropertyValue<'fill'>
683
+ stroke?: PropertyValue<'stroke'>
684
+ srOnly?: PropertyValue<'srOnly'>
685
+ debug?: PropertyValue<'debug'>
686
+ colorPalette?: PropertyValue<'colorPalette'>
687
+ textStyle?: PropertyValue<'textStyle'>
688
+ }