@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,1010 @@
1
+ // src/index.ts
2
+ var userGenerated = [
3
+ 'css',
4
+ 'pos',
5
+ 'insetEnd',
6
+ 'end',
7
+ 'insetStart',
8
+ 'start',
9
+ 'flexDir',
10
+ 'p',
11
+ 'pl',
12
+ 'pr',
13
+ 'pt',
14
+ 'pb',
15
+ 'py',
16
+ 'paddingY',
17
+ 'paddingX',
18
+ 'px',
19
+ 'pe',
20
+ 'paddingEnd',
21
+ 'ps',
22
+ 'paddingStart',
23
+ 'ml',
24
+ 'mr',
25
+ 'mt',
26
+ 'mb',
27
+ 'm',
28
+ 'my',
29
+ 'marginY',
30
+ 'mx',
31
+ 'marginX',
32
+ 'me',
33
+ 'marginEnd',
34
+ 'ms',
35
+ 'marginStart',
36
+ 'ringWidth',
37
+ 'ringColor',
38
+ 'ring',
39
+ 'ringOffset',
40
+ 'w',
41
+ 'minW',
42
+ 'maxW',
43
+ 'h',
44
+ 'minH',
45
+ 'maxH',
46
+ 'bgPosition',
47
+ 'bgPositionX',
48
+ 'bgPositionY',
49
+ 'bgAttachment',
50
+ 'bgClip',
51
+ 'bg',
52
+ 'bgColor',
53
+ 'bgOrigin',
54
+ 'bgImage',
55
+ 'bgRepeat',
56
+ 'bgBlendMode',
57
+ 'bgSize',
58
+ 'bgGradient',
59
+ 'rounded',
60
+ 'roundedTopLeft',
61
+ 'roundedTopRight',
62
+ 'roundedBottomRight',
63
+ 'roundedBottomLeft',
64
+ 'roundedTop',
65
+ 'roundedRight',
66
+ 'roundedBottom',
67
+ 'roundedLeft',
68
+ 'roundedStartStart',
69
+ 'roundedStartEnd',
70
+ 'roundedStart',
71
+ 'roundedEndStart',
72
+ 'roundedEndEnd',
73
+ 'roundedEnd',
74
+ 'borderX',
75
+ 'borderXWidth',
76
+ 'borderXColor',
77
+ 'borderY',
78
+ 'borderYWidth',
79
+ 'borderYColor',
80
+ 'borderStart',
81
+ 'borderStartColor',
82
+ 'borderEnd',
83
+ 'borderEndColor',
84
+ 'shadow',
85
+ 'shadowColor',
86
+ 'x',
87
+ 'y',
88
+ 'aspectRatio',
89
+ 'boxDecorationBreak',
90
+ 'zIndex',
91
+ 'boxSizing',
92
+ 'objectPosition',
93
+ 'objectFit',
94
+ 'overscrollBehavior',
95
+ 'overscrollBehaviorX',
96
+ 'overscrollBehaviorY',
97
+ 'position',
98
+ 'top',
99
+ 'left',
100
+ 'insetInline',
101
+ 'insetBlock',
102
+ 'inset',
103
+ 'insetBlockEnd',
104
+ 'insetBlockStart',
105
+ 'insetInlineEnd',
106
+ 'insetInlineStart',
107
+ 'right',
108
+ 'bottom',
109
+ 'insetX',
110
+ 'insetY',
111
+ 'float',
112
+ 'visibility',
113
+ 'display',
114
+ 'hideFrom',
115
+ 'hideBelow',
116
+ 'flexBasis',
117
+ 'flex',
118
+ 'flexDirection',
119
+ 'flexGrow',
120
+ 'flexShrink',
121
+ 'gridTemplateColumns',
122
+ 'gridTemplateRows',
123
+ 'gridColumn',
124
+ 'gridRow',
125
+ 'gridColumnStart',
126
+ 'gridColumnEnd',
127
+ 'gridAutoFlow',
128
+ 'gridAutoColumns',
129
+ 'gridAutoRows',
130
+ 'gap',
131
+ 'gridGap',
132
+ 'gridRowGap',
133
+ 'gridColumnGap',
134
+ 'rowGap',
135
+ 'columnGap',
136
+ 'justifyContent',
137
+ 'alignContent',
138
+ 'alignItems',
139
+ 'alignSelf',
140
+ 'padding',
141
+ 'paddingLeft',
142
+ 'paddingRight',
143
+ 'paddingTop',
144
+ 'paddingBottom',
145
+ 'paddingBlock',
146
+ 'paddingBlockEnd',
147
+ 'paddingBlockStart',
148
+ 'paddingInline',
149
+ 'paddingInlineEnd',
150
+ 'paddingInlineStart',
151
+ 'marginLeft',
152
+ 'marginRight',
153
+ 'marginTop',
154
+ 'marginBottom',
155
+ 'margin',
156
+ 'marginBlock',
157
+ 'marginBlockEnd',
158
+ 'marginBlockStart',
159
+ 'marginInline',
160
+ 'marginInlineEnd',
161
+ 'marginInlineStart',
162
+ 'outlineWidth',
163
+ 'outlineColor',
164
+ 'outline',
165
+ 'outlineOffset',
166
+ 'divideX',
167
+ 'divideY',
168
+ 'divideColor',
169
+ 'divideStyle',
170
+ 'width',
171
+ 'inlineSize',
172
+ 'minWidth',
173
+ 'minInlineSize',
174
+ 'maxWidth',
175
+ 'maxInlineSize',
176
+ 'height',
177
+ 'blockSize',
178
+ 'minHeight',
179
+ 'minBlockSize',
180
+ 'maxHeight',
181
+ 'maxBlockSize',
182
+ 'color',
183
+ 'fontFamily',
184
+ 'fontSize',
185
+ 'fontWeight',
186
+ 'fontSmoothing',
187
+ 'fontVariantNumeric',
188
+ 'letterSpacing',
189
+ 'lineHeight',
190
+ 'textAlign',
191
+ 'textDecoration',
192
+ 'textDecorationColor',
193
+ 'textEmphasisColor',
194
+ 'textDecorationStyle',
195
+ 'textDecorationThickness',
196
+ 'textUnderlineOffset',
197
+ 'textTransform',
198
+ 'textIndent',
199
+ 'textShadow',
200
+ 'textOverflow',
201
+ 'verticalAlign',
202
+ 'wordBreak',
203
+ 'textWrap',
204
+ 'truncate',
205
+ 'lineClamp',
206
+ 'listStyleType',
207
+ 'listStylePosition',
208
+ 'listStyleImage',
209
+ 'backgroundPosition',
210
+ 'backgroundPositionX',
211
+ 'backgroundPositionY',
212
+ 'backgroundAttachment',
213
+ 'backgroundClip',
214
+ 'background',
215
+ 'backgroundColor',
216
+ 'backgroundOrigin',
217
+ 'backgroundImage',
218
+ 'backgroundRepeat',
219
+ 'backgroundBlendMode',
220
+ 'backgroundSize',
221
+ 'backgroundGradient',
222
+ 'textGradient',
223
+ 'gradientFrom',
224
+ 'gradientTo',
225
+ 'gradientVia',
226
+ 'borderRadius',
227
+ 'borderTopLeftRadius',
228
+ 'borderTopRightRadius',
229
+ 'borderBottomRightRadius',
230
+ 'borderBottomLeftRadius',
231
+ 'borderTopRadius',
232
+ 'borderRightRadius',
233
+ 'borderBottomRadius',
234
+ 'borderLeftRadius',
235
+ 'borderStartStartRadius',
236
+ 'borderStartEndRadius',
237
+ 'borderStartRadius',
238
+ 'borderEndStartRadius',
239
+ 'borderEndEndRadius',
240
+ 'borderEndRadius',
241
+ 'border',
242
+ 'borderColor',
243
+ 'borderInline',
244
+ 'borderInlineWidth',
245
+ 'borderInlineColor',
246
+ 'borderBlock',
247
+ 'borderBlockWidth',
248
+ 'borderBlockColor',
249
+ 'borderLeft',
250
+ 'borderLeftColor',
251
+ 'borderInlineStart',
252
+ 'borderInlineStartColor',
253
+ 'borderRight',
254
+ 'borderRightColor',
255
+ 'borderInlineEnd',
256
+ 'borderInlineEndColor',
257
+ 'borderTop',
258
+ 'borderTopColor',
259
+ 'borderBottom',
260
+ 'borderBottomColor',
261
+ 'borderBlockEnd',
262
+ 'borderBlockEndColor',
263
+ 'borderBlockStart',
264
+ 'borderBlockStartColor',
265
+ 'boxShadow',
266
+ 'boxShadowColor',
267
+ 'mixBlendMode',
268
+ 'filter',
269
+ 'brightness',
270
+ 'contrast',
271
+ 'grayscale',
272
+ 'hueRotate',
273
+ 'invert',
274
+ 'saturate',
275
+ 'sepia',
276
+ 'dropShadow',
277
+ 'blur',
278
+ 'backdropFilter',
279
+ 'backdropBlur',
280
+ 'backdropBrightness',
281
+ 'backdropContrast',
282
+ 'backdropGrayscale',
283
+ 'backdropHueRotate',
284
+ 'backdropInvert',
285
+ 'backdropOpacity',
286
+ 'backdropSaturate',
287
+ 'backdropSepia',
288
+ 'borderCollapse',
289
+ 'borderSpacing',
290
+ 'borderSpacingX',
291
+ 'borderSpacingY',
292
+ 'tableLayout',
293
+ 'transitionTimingFunction',
294
+ 'transitionDelay',
295
+ 'transitionDuration',
296
+ 'transitionProperty',
297
+ 'animation',
298
+ 'animationDelay',
299
+ 'transform',
300
+ 'transformOrigin',
301
+ 'scale',
302
+ 'scaleX',
303
+ 'scaleY',
304
+ 'rotate',
305
+ 'translateX',
306
+ 'translateY',
307
+ 'skewX',
308
+ 'skewY',
309
+ 'accentColor',
310
+ 'caretColor',
311
+ 'scrollBehavior',
312
+ 'scrollbar',
313
+ 'scrollMargin',
314
+ 'scrollMarginX',
315
+ 'scrollMarginY',
316
+ 'scrollMarginLeft',
317
+ 'scrollMarginRight',
318
+ 'scrollMarginTop',
319
+ 'scrollMarginBottom',
320
+ 'scrollMarginBlock',
321
+ 'scrollMarginBlockEnd',
322
+ 'scrollMarginBlockStart',
323
+ 'scrollMarginInline',
324
+ 'scrollMarginInlineEnd',
325
+ 'scrollMarginInlineStart',
326
+ 'scrollPadding',
327
+ 'scrollPaddingBlock',
328
+ 'scrollPaddingBlockStart',
329
+ 'scrollPaddingBlockEnd',
330
+ 'scrollPaddingInline',
331
+ 'scrollPaddingInlineEnd',
332
+ 'scrollPaddingInlineStart',
333
+ 'scrollPaddingX',
334
+ 'scrollPaddingY',
335
+ 'scrollPaddingLeft',
336
+ 'scrollPaddingRight',
337
+ 'scrollPaddingTop',
338
+ 'scrollPaddingBottom',
339
+ 'scrollSnapAlign',
340
+ 'scrollSnapStop',
341
+ 'scrollSnapType',
342
+ 'scrollSnapStrictness',
343
+ 'scrollSnapMargin',
344
+ 'scrollSnapMarginTop',
345
+ 'scrollSnapMarginBottom',
346
+ 'scrollSnapMarginLeft',
347
+ 'scrollSnapMarginRight',
348
+ 'touchAction',
349
+ 'userSelect',
350
+ 'fill',
351
+ 'stroke',
352
+ 'srOnly',
353
+ 'debug',
354
+ 'colorPalette',
355
+ 'textStyle',
356
+ '_hover',
357
+ '_focus',
358
+ '_focusWithin',
359
+ '_focusVisible',
360
+ '_disabled',
361
+ '_active',
362
+ '_visited',
363
+ '_target',
364
+ '_readOnly',
365
+ '_readWrite',
366
+ '_empty',
367
+ '_checked',
368
+ '_enabled',
369
+ '_expanded',
370
+ '_highlighted',
371
+ '_before',
372
+ '_after',
373
+ '_firstLetter',
374
+ '_firstLine',
375
+ '_marker',
376
+ '_selection',
377
+ '_file',
378
+ '_backdrop',
379
+ '_first',
380
+ '_last',
381
+ '_only',
382
+ '_even',
383
+ '_odd',
384
+ '_firstOfType',
385
+ '_lastOfType',
386
+ '_onlyOfType',
387
+ '_peerFocus',
388
+ '_peerHover',
389
+ '_peerActive',
390
+ '_peerFocusWithin',
391
+ '_peerFocusVisible',
392
+ '_peerDisabled',
393
+ '_peerChecked',
394
+ '_peerInvalid',
395
+ '_peerExpanded',
396
+ '_peerPlaceholderShown',
397
+ '_groupFocus',
398
+ '_groupHover',
399
+ '_groupActive',
400
+ '_groupFocusWithin',
401
+ '_groupFocusVisible',
402
+ '_groupDisabled',
403
+ '_groupChecked',
404
+ '_groupExpanded',
405
+ '_groupInvalid',
406
+ '_indeterminate',
407
+ '_required',
408
+ '_valid',
409
+ '_invalid',
410
+ '_autofill',
411
+ '_inRange',
412
+ '_outOfRange',
413
+ '_placeholder',
414
+ '_placeholderShown',
415
+ '_pressed',
416
+ '_selected',
417
+ '_default',
418
+ '_optional',
419
+ '_open',
420
+ '_fullscreen',
421
+ '_loading',
422
+ '_currentPage',
423
+ '_currentStep',
424
+ '_motionReduce',
425
+ '_motionSafe',
426
+ '_print',
427
+ '_landscape',
428
+ '_portrait',
429
+ '_dark',
430
+ '_light',
431
+ '_osDark',
432
+ '_osLight',
433
+ '_highConstrast',
434
+ '_lessContrast',
435
+ '_moreContrast',
436
+ '_ltr',
437
+ '_rtl',
438
+ '_scrollbar',
439
+ '_scrollbarThumb',
440
+ '_scrollbarTrack',
441
+ '_horizontal',
442
+ '_vertical',
443
+ 'sm',
444
+ 'smOnly',
445
+ 'smDown',
446
+ 'md',
447
+ 'mdOnly',
448
+ 'mdDown',
449
+ 'lg',
450
+ 'lgOnly',
451
+ 'lgDown',
452
+ 'xl',
453
+ 'xlOnly',
454
+ 'xlDown',
455
+ '2xl',
456
+ '2xlOnly',
457
+ 'smToMd',
458
+ 'smToLg',
459
+ 'smToXl',
460
+ 'smTo2xl',
461
+ 'mdToLg',
462
+ 'mdToXl',
463
+ 'mdTo2xl',
464
+ 'lgToXl',
465
+ 'lgTo2xl',
466
+ 'xlTo2xl',
467
+ ]
468
+ var allCssProperties = [
469
+ 'MsAccelerator',
470
+ 'MsBlockProgression',
471
+ 'MsContentZoomChaining',
472
+ 'MsContentZooming',
473
+ 'MsContentZoomLimit',
474
+ 'MsContentZoomLimitMax',
475
+ 'MsContentZoomLimitMin',
476
+ 'MsContentZoomSnap',
477
+ 'MsContentZoomSnapPoints',
478
+ 'MsContentZoomSnapType',
479
+ 'MsFilter',
480
+ 'MsFlowFrom',
481
+ 'MsFlowInto',
482
+ 'MsGridColumns',
483
+ 'MsGridRows',
484
+ 'MsHighContrastAdjust',
485
+ 'MsHyphenateLimitChars',
486
+ 'MsHyphenateLimitLines',
487
+ 'MsHyphenateLimitZone',
488
+ 'MsImeAlign',
489
+ 'MsOverflowStyle',
490
+ 'MsScrollbar3dlightColor',
491
+ 'MsScrollbarArrowColor',
492
+ 'MsScrollbarBaseColor',
493
+ 'MsScrollbarDarkshadowColor',
494
+ 'MsScrollbarFaceColor',
495
+ 'MsScrollbarHighlightColor',
496
+ 'MsScrollbarShadowColor',
497
+ 'MsScrollbarTrackColor',
498
+ 'MsScrollChaining',
499
+ 'MsScrollLimit',
500
+ 'MsScrollLimitXMax',
501
+ 'MsScrollLimitXMin',
502
+ 'MsScrollLimitYMax',
503
+ 'MsScrollLimitYMin',
504
+ 'MsScrollRails',
505
+ 'MsScrollSnapPointsX',
506
+ 'MsScrollSnapPointsY',
507
+ 'MsScrollSnapType',
508
+ 'MsScrollSnapX',
509
+ 'MsScrollSnapY',
510
+ 'MsScrollTranslation',
511
+ 'MsTextAutospace',
512
+ 'MsTouchSelect',
513
+ 'MsUserSelect',
514
+ 'MsWrapFlow',
515
+ 'MsWrapMargin',
516
+ 'MsWrapThrough',
517
+ 'MozAppearance',
518
+ 'MozBinding',
519
+ 'MozBorderBottomColors',
520
+ 'MozBorderLeftColors',
521
+ 'MozBorderRightColors',
522
+ 'MozBorderTopColors',
523
+ 'MozContextProperties',
524
+ 'MozFloatEdge',
525
+ 'MozForceBrokenImageIcon',
526
+ 'MozImageRegion',
527
+ 'MozOrient',
528
+ 'MozOutlineRadius',
529
+ 'MozOutlineRadiusBottomleft',
530
+ 'MozOutlineRadiusBottomright',
531
+ 'MozOutlineRadiusTopleft',
532
+ 'MozOutlineRadiusTopright',
533
+ 'MozStackSizing',
534
+ 'MozTextBlink',
535
+ 'MozUserFocus',
536
+ 'MozUserInput',
537
+ 'MozUserModify',
538
+ 'MozWindowDragging',
539
+ 'MozWindowShadow',
540
+ 'WebkitAppearance',
541
+ 'WebkitBorderBefore',
542
+ 'WebkitBorderBeforeColor',
543
+ 'WebkitBorderBeforeStyle',
544
+ 'WebkitBorderBeforeWidth',
545
+ 'WebkitBoxReflect',
546
+ 'WebkitLineClamp',
547
+ 'WebkitMask',
548
+ 'WebkitMaskAttachment',
549
+ 'WebkitMaskClip',
550
+ 'WebkitMaskComposite',
551
+ 'WebkitMaskImage',
552
+ 'WebkitMaskOrigin',
553
+ 'WebkitMaskPosition',
554
+ 'WebkitMaskPositionX',
555
+ 'WebkitMaskPositionY',
556
+ 'WebkitMaskRepeat',
557
+ 'WebkitMaskRepeatX',
558
+ 'WebkitMaskRepeatY',
559
+ 'WebkitMaskSize',
560
+ 'WebkitOverflowScrolling',
561
+ 'WebkitTapHighlightColor',
562
+ 'WebkitTextFillColor',
563
+ 'WebkitTextStroke',
564
+ 'WebkitTextStrokeColor',
565
+ 'WebkitTextStrokeWidth',
566
+ 'WebkitTouchCallout',
567
+ 'WebkitUserModify',
568
+ 'accentColor',
569
+ 'alignContent',
570
+ 'alignItems',
571
+ 'alignSelf',
572
+ 'alignTracks',
573
+ 'all',
574
+ 'animation',
575
+ 'animationComposition',
576
+ 'animationDelay',
577
+ 'animationDirection',
578
+ 'animationDuration',
579
+ 'animationFillMode',
580
+ 'animationIterationCount',
581
+ 'animationName',
582
+ 'animationPlayState',
583
+ 'animationTimingFunction',
584
+ 'animationTimeline',
585
+ 'appearance',
586
+ 'aspectRatio',
587
+ 'azimuth',
588
+ 'backdropFilter',
589
+ 'backfaceVisibility',
590
+ 'background',
591
+ 'backgroundAttachment',
592
+ 'backgroundBlendMode',
593
+ 'backgroundClip',
594
+ 'backgroundColor',
595
+ 'backgroundImage',
596
+ 'backgroundOrigin',
597
+ 'backgroundPosition',
598
+ 'backgroundPositionX',
599
+ 'backgroundPositionY',
600
+ 'backgroundRepeat',
601
+ 'backgroundSize',
602
+ 'blockOverflow',
603
+ 'blockSize',
604
+ 'border',
605
+ 'borderBlock',
606
+ 'borderBlockColor',
607
+ 'borderBlockStyle',
608
+ 'borderBlockWidth',
609
+ 'borderBlockEnd',
610
+ 'borderBlockEndColor',
611
+ 'borderBlockEndStyle',
612
+ 'borderBlockEndWidth',
613
+ 'borderBlockStart',
614
+ 'borderBlockStartColor',
615
+ 'borderBlockStartStyle',
616
+ 'borderBlockStartWidth',
617
+ 'borderBottom',
618
+ 'borderBottomColor',
619
+ 'borderBottomLeftRadius',
620
+ 'borderBottomRightRadius',
621
+ 'borderBottomStyle',
622
+ 'borderBottomWidth',
623
+ 'borderCollapse',
624
+ 'borderColor',
625
+ 'borderEndEndRadius',
626
+ 'borderEndStartRadius',
627
+ 'borderImage',
628
+ 'borderImageOutset',
629
+ 'borderImageRepeat',
630
+ 'borderImageSlice',
631
+ 'borderImageSource',
632
+ 'borderImageWidth',
633
+ 'borderInline',
634
+ 'borderInlineEnd',
635
+ 'borderInlineColor',
636
+ 'borderInlineStyle',
637
+ 'borderInlineWidth',
638
+ 'borderInlineEndColor',
639
+ 'borderInlineEndStyle',
640
+ 'borderInlineEndWidth',
641
+ 'borderInlineStart',
642
+ 'borderInlineStartColor',
643
+ 'borderInlineStartStyle',
644
+ 'borderInlineStartWidth',
645
+ 'borderLeft',
646
+ 'borderLeftColor',
647
+ 'borderLeftStyle',
648
+ 'borderLeftWidth',
649
+ 'borderRadius',
650
+ 'borderRight',
651
+ 'borderRightColor',
652
+ 'borderRightStyle',
653
+ 'borderRightWidth',
654
+ 'borderSpacing',
655
+ 'borderStartEndRadius',
656
+ 'borderStartStartRadius',
657
+ 'borderStyle',
658
+ 'borderTop',
659
+ 'borderTopColor',
660
+ 'borderTopLeftRadius',
661
+ 'borderTopRightRadius',
662
+ 'borderTopStyle',
663
+ 'borderTopWidth',
664
+ 'borderWidth',
665
+ 'bottom',
666
+ 'boxAlign',
667
+ 'boxDecorationBreak',
668
+ 'boxDirection',
669
+ 'boxFlex',
670
+ 'boxFlexGroup',
671
+ 'boxLines',
672
+ 'boxOrdinalGroup',
673
+ 'boxOrient',
674
+ 'boxPack',
675
+ 'boxShadow',
676
+ 'boxSizing',
677
+ 'breakAfter',
678
+ 'breakBefore',
679
+ 'breakInside',
680
+ 'captionSide',
681
+ 'caret',
682
+ 'caretColor',
683
+ 'caretShape',
684
+ 'clear',
685
+ 'clip',
686
+ 'clipPath',
687
+ 'color',
688
+ 'printColorAdjust',
689
+ 'colorScheme',
690
+ 'columnCount',
691
+ 'columnFill',
692
+ 'columnGap',
693
+ 'columnRule',
694
+ 'columnRuleColor',
695
+ 'columnRuleStyle',
696
+ 'columnRuleWidth',
697
+ 'columnSpan',
698
+ 'columnWidth',
699
+ 'columns',
700
+ 'contain',
701
+ 'containIntrinsicSize',
702
+ 'containIntrinsicBlockSize',
703
+ 'containIntrinsicHeight',
704
+ 'containIntrinsicInlineSize',
705
+ 'containIntrinsicWidth',
706
+ 'content',
707
+ 'contentVisibility',
708
+ 'counterIncrement',
709
+ 'counterReset',
710
+ 'counterSet',
711
+ 'cursor',
712
+ 'direction',
713
+ 'display',
714
+ 'emptyCells',
715
+ 'filter',
716
+ 'flex',
717
+ 'flexBasis',
718
+ 'flexDirection',
719
+ 'flexFlow',
720
+ 'flexGrow',
721
+ 'flexShrink',
722
+ 'flexWrap',
723
+ 'float',
724
+ 'font',
725
+ 'fontFamily',
726
+ 'fontFeatureSettings',
727
+ 'fontKerning',
728
+ 'fontLanguageOverride',
729
+ 'fontOpticalSizing',
730
+ 'fontVariationSettings',
731
+ 'fontSize',
732
+ 'fontSizeAdjust',
733
+ 'fontSmooth',
734
+ 'fontStretch',
735
+ 'fontStyle',
736
+ 'fontSynthesis',
737
+ 'fontVariant',
738
+ 'fontVariantAlternates',
739
+ 'fontVariantCaps',
740
+ 'fontVariantEastAsian',
741
+ 'fontVariantLigatures',
742
+ 'fontVariantNumeric',
743
+ 'fontVariantPosition',
744
+ 'fontWeight',
745
+ 'forcedColorAdjust',
746
+ 'gap',
747
+ 'grid',
748
+ 'gridArea',
749
+ 'gridAutoColumns',
750
+ 'gridAutoFlow',
751
+ 'gridAutoRows',
752
+ 'gridColumn',
753
+ 'gridColumnEnd',
754
+ 'gridColumnGap',
755
+ 'gridColumnStart',
756
+ 'gridGap',
757
+ 'gridRow',
758
+ 'gridRowEnd',
759
+ 'gridRowGap',
760
+ 'gridRowStart',
761
+ 'gridTemplate',
762
+ 'gridTemplateAreas',
763
+ 'gridTemplateColumns',
764
+ 'gridTemplateRows',
765
+ 'hangingPunctuation',
766
+ 'height',
767
+ 'hyphenateCharacter',
768
+ 'hyphenateLimitChars',
769
+ 'hyphens',
770
+ 'imageOrientation',
771
+ 'imageRendering',
772
+ 'imageResolution',
773
+ 'imeMode',
774
+ 'initialLetter',
775
+ 'initialLetterAlign',
776
+ 'inlineSize',
777
+ 'inputSecurity',
778
+ 'inset',
779
+ 'insetBlock',
780
+ 'insetBlockEnd',
781
+ 'insetBlockStart',
782
+ 'insetInline',
783
+ 'insetInlineEnd',
784
+ 'insetInlineStart',
785
+ 'isolation',
786
+ 'justifyContent',
787
+ 'justifyItems',
788
+ 'justifySelf',
789
+ 'justifyTracks',
790
+ 'left',
791
+ 'letterSpacing',
792
+ 'lineBreak',
793
+ 'lineClamp',
794
+ 'lineHeight',
795
+ 'lineHeightStep',
796
+ 'listStyle',
797
+ 'listStyleImage',
798
+ 'listStylePosition',
799
+ 'listStyleType',
800
+ 'margin',
801
+ 'marginBlock',
802
+ 'marginBlockEnd',
803
+ 'marginBlockStart',
804
+ 'marginBottom',
805
+ 'marginInline',
806
+ 'marginInlineEnd',
807
+ 'marginInlineStart',
808
+ 'marginLeft',
809
+ 'marginRight',
810
+ 'marginTop',
811
+ 'marginTrim',
812
+ 'mask',
813
+ 'maskBorder',
814
+ 'maskBorderMode',
815
+ 'maskBorderOutset',
816
+ 'maskBorderRepeat',
817
+ 'maskBorderSlice',
818
+ 'maskBorderSource',
819
+ 'maskBorderWidth',
820
+ 'maskClip',
821
+ 'maskComposite',
822
+ 'maskImage',
823
+ 'maskMode',
824
+ 'maskOrigin',
825
+ 'maskPosition',
826
+ 'maskRepeat',
827
+ 'maskSize',
828
+ 'maskType',
829
+ 'masonryAutoFlow',
830
+ 'mathDepth',
831
+ 'mathShift',
832
+ 'mathStyle',
833
+ 'maxBlockSize',
834
+ 'maxHeight',
835
+ 'maxInlineSize',
836
+ 'maxLines',
837
+ 'maxWidth',
838
+ 'minBlockSize',
839
+ 'minHeight',
840
+ 'minInlineSize',
841
+ 'minWidth',
842
+ 'mixBlendMode',
843
+ 'objectFit',
844
+ 'objectPosition',
845
+ 'offset',
846
+ 'offsetAnchor',
847
+ 'offsetDistance',
848
+ 'offsetPath',
849
+ 'offsetPosition',
850
+ 'offsetRotate',
851
+ 'opacity',
852
+ 'order',
853
+ 'orphans',
854
+ 'outline',
855
+ 'outlineColor',
856
+ 'outlineOffset',
857
+ 'outlineStyle',
858
+ 'outlineWidth',
859
+ 'overflow',
860
+ 'overflowAnchor',
861
+ 'overflowBlock',
862
+ 'overflowClipBox',
863
+ 'overflowClipMargin',
864
+ 'overflowInline',
865
+ 'overflowWrap',
866
+ 'overflowX',
867
+ 'overflowY',
868
+ 'overscrollBehavior',
869
+ 'overscrollBehaviorBlock',
870
+ 'overscrollBehaviorInline',
871
+ 'overscrollBehaviorX',
872
+ 'overscrollBehaviorY',
873
+ 'padding',
874
+ 'paddingBlock',
875
+ 'paddingBlockEnd',
876
+ 'paddingBlockStart',
877
+ 'paddingBottom',
878
+ 'paddingInline',
879
+ 'paddingInlineEnd',
880
+ 'paddingInlineStart',
881
+ 'paddingLeft',
882
+ 'paddingRight',
883
+ 'paddingTop',
884
+ 'pageBreakAfter',
885
+ 'pageBreakBefore',
886
+ 'pageBreakInside',
887
+ 'paintOrder',
888
+ 'perspective',
889
+ 'perspectiveOrigin',
890
+ 'placeContent',
891
+ 'placeItems',
892
+ 'placeSelf',
893
+ 'pointerEvents',
894
+ 'position',
895
+ 'quotes',
896
+ 'resize',
897
+ 'right',
898
+ 'rotate',
899
+ 'rowGap',
900
+ 'rubyAlign',
901
+ 'rubyMerge',
902
+ 'rubyPosition',
903
+ 'scale',
904
+ 'scrollbarColor',
905
+ 'scrollbarGutter',
906
+ 'scrollbarWidth',
907
+ 'scrollBehavior',
908
+ 'scrollMargin',
909
+ 'scrollMarginBlock',
910
+ 'scrollMarginBlockStart',
911
+ 'scrollMarginBlockEnd',
912
+ 'scrollMarginBottom',
913
+ 'scrollMarginInline',
914
+ 'scrollMarginInlineStart',
915
+ 'scrollMarginInlineEnd',
916
+ 'scrollMarginLeft',
917
+ 'scrollMarginRight',
918
+ 'scrollMarginTop',
919
+ 'scrollPadding',
920
+ 'scrollPaddingBlock',
921
+ 'scrollPaddingBlockStart',
922
+ 'scrollPaddingBlockEnd',
923
+ 'scrollPaddingBottom',
924
+ 'scrollPaddingInline',
925
+ 'scrollPaddingInlineStart',
926
+ 'scrollPaddingInlineEnd',
927
+ 'scrollPaddingLeft',
928
+ 'scrollPaddingRight',
929
+ 'scrollPaddingTop',
930
+ 'scrollSnapAlign',
931
+ 'scrollSnapCoordinate',
932
+ 'scrollSnapDestination',
933
+ 'scrollSnapPointsX',
934
+ 'scrollSnapPointsY',
935
+ 'scrollSnapStop',
936
+ 'scrollSnapType',
937
+ 'scrollSnapTypeX',
938
+ 'scrollSnapTypeY',
939
+ 'scrollTimeline',
940
+ 'scrollTimelineAxis',
941
+ 'scrollTimelineName',
942
+ 'shapeImageThreshold',
943
+ 'shapeMargin',
944
+ 'shapeOutside',
945
+ 'tabSize',
946
+ 'tableLayout',
947
+ 'textAlign',
948
+ 'textAlignLast',
949
+ 'textCombineUpright',
950
+ 'textDecoration',
951
+ 'textDecorationColor',
952
+ 'textDecorationLine',
953
+ 'textDecorationSkip',
954
+ 'textDecorationSkipInk',
955
+ 'textDecorationStyle',
956
+ 'textDecorationThickness',
957
+ 'textEmphasis',
958
+ 'textEmphasisColor',
959
+ 'textEmphasisPosition',
960
+ 'textEmphasisStyle',
961
+ 'textIndent',
962
+ 'textJustify',
963
+ 'textOrientation',
964
+ 'textOverflow',
965
+ 'textRendering',
966
+ 'textShadow',
967
+ 'textSizeAdjust',
968
+ 'textTransform',
969
+ 'textUnderlineOffset',
970
+ 'textUnderlinePosition',
971
+ 'top',
972
+ 'touchAction',
973
+ 'transform',
974
+ 'transformBox',
975
+ 'transformOrigin',
976
+ 'transformStyle',
977
+ 'transition',
978
+ 'transitionDelay',
979
+ 'transitionDuration',
980
+ 'transitionProperty',
981
+ 'transitionTimingFunction',
982
+ 'translate',
983
+ 'unicodeBidi',
984
+ 'userSelect',
985
+ 'verticalAlign',
986
+ 'visibility',
987
+ 'whiteSpace',
988
+ 'widows',
989
+ 'width',
990
+ 'willChange',
991
+ 'wordBreak',
992
+ 'wordSpacing',
993
+ 'wordWrap',
994
+ 'writingMode',
995
+ 'zIndex',
996
+ 'zoom',
997
+ ...userGenerated,
998
+ ]
999
+ var properties = new Map(allCssProperties.map((prop) => [prop, true]))
1000
+ function memo(fn) {
1001
+ const cache = /* @__PURE__ */ Object.create(null)
1002
+ return (arg) => {
1003
+ if (cache[arg] === void 0) cache[arg] = fn(arg)
1004
+ return cache[arg]
1005
+ }
1006
+ }
1007
+ var isCssProperty = memo((prop) => {
1008
+ return properties.has(prop) || prop.startsWith('--')
1009
+ })
1010
+ export { allCssProperties, isCssProperty }