@craft-ts/style 0.7.0-beta.15

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 (73) hide show
  1. package/package.json +41 -0
  2. package/src/index.d.ts +18 -0
  3. package/src/index.d.ts.map +1 -0
  4. package/src/index.js +18 -0
  5. package/src/index.js.map +1 -0
  6. package/src/lib/axes/define.d.ts +115 -0
  7. package/src/lib/axes/define.d.ts.map +1 -0
  8. package/src/lib/axes/define.js +81 -0
  9. package/src/lib/axes/define.js.map +1 -0
  10. package/src/lib/axes/index.d.ts +4 -0
  11. package/src/lib/axes/index.d.ts.map +1 -0
  12. package/src/lib/axes/index.js +4 -0
  13. package/src/lib/axes/index.js.map +1 -0
  14. package/src/lib/axes/standard.d.ts +85 -0
  15. package/src/lib/axes/standard.d.ts.map +1 -0
  16. package/src/lib/axes/standard.js +109 -0
  17. package/src/lib/axes/standard.js.map +1 -0
  18. package/src/lib/axes/types.d.ts +67 -0
  19. package/src/lib/axes/types.d.ts.map +1 -0
  20. package/src/lib/axes/types.js +21 -0
  21. package/src/lib/axes/types.js.map +1 -0
  22. package/src/lib/css-vars.d.ts +100 -0
  23. package/src/lib/css-vars.d.ts.map +1 -0
  24. package/src/lib/css-vars.js +96 -0
  25. package/src/lib/css-vars.js.map +1 -0
  26. package/src/lib/kinds.d.ts +84 -0
  27. package/src/lib/kinds.d.ts.map +1 -0
  28. package/src/lib/kinds.js +44 -0
  29. package/src/lib/kinds.js.map +1 -0
  30. package/src/lib/obligations.d.ts +99 -0
  31. package/src/lib/obligations.d.ts.map +1 -0
  32. package/src/lib/obligations.js +69 -0
  33. package/src/lib/obligations.js.map +1 -0
  34. package/src/lib/props/factory.d.ts +61 -0
  35. package/src/lib/props/factory.d.ts.map +1 -0
  36. package/src/lib/props/factory.js +35 -0
  37. package/src/lib/props/factory.js.map +1 -0
  38. package/src/lib/props/generated.d.ts +974 -0
  39. package/src/lib/props/generated.d.ts.map +1 -0
  40. package/src/lib/props/generated.js +2478 -0
  41. package/src/lib/props/generated.js.map +1 -0
  42. package/src/lib/props/index.d.ts +37 -0
  43. package/src/lib/props/index.d.ts.map +1 -0
  44. package/src/lib/props/index.js +27 -0
  45. package/src/lib/props/index.js.map +1 -0
  46. package/src/lib/styles.d.ts +201 -0
  47. package/src/lib/styles.d.ts.map +1 -0
  48. package/src/lib/styles.js +247 -0
  49. package/src/lib/styles.js.map +1 -0
  50. package/src/lib/tokens/index.d.ts +4 -0
  51. package/src/lib/tokens/index.d.ts.map +1 -0
  52. package/src/lib/tokens/index.js +4 -0
  53. package/src/lib/tokens/index.js.map +1 -0
  54. package/src/lib/tokens/palette.d.ts +97 -0
  55. package/src/lib/tokens/palette.d.ts.map +1 -0
  56. package/src/lib/tokens/palette.js +61 -0
  57. package/src/lib/tokens/palette.js.map +1 -0
  58. package/src/lib/tokens/scales.d.ts +47 -0
  59. package/src/lib/tokens/scales.d.ts.map +1 -0
  60. package/src/lib/tokens/scales.js +51 -0
  61. package/src/lib/tokens/scales.js.map +1 -0
  62. package/src/lib/tokens/units.d.ts +114 -0
  63. package/src/lib/tokens/units.d.ts.map +1 -0
  64. package/src/lib/tokens/units.js +54 -0
  65. package/src/lib/tokens/units.js.map +1 -0
  66. package/src/plugin/emit.d.ts +64 -0
  67. package/src/plugin/emit.d.ts.map +1 -0
  68. package/src/plugin/emit.js +134 -0
  69. package/src/plugin/emit.js.map +1 -0
  70. package/src/plugin/vite.d.ts +66 -0
  71. package/src/plugin/vite.d.ts.map +1 -0
  72. package/src/plugin/vite.js +150 -0
  73. package/src/plugin/vite.js.map +1 -0
@@ -0,0 +1,2478 @@
1
+ /**
2
+ * GENERATED by `node tools/generate-css-props.mjs` — do not edit by hand.
3
+ *
4
+ * Source: mdn-data (2.33.0). Regenerating is part of CI:
5
+ * `props.spec.ts` fails when the committed file and a fresh generation differ,
6
+ * which is what keeps the table from quietly ageing behind the spec.
7
+ *
8
+ * 477 properties covered, 5 not. `overflow` and its longhands are
9
+ * excluded by construction — see `tools/css-props.data.mjs`.
10
+ */
11
+ import { keywordProp, propertyName, valueProp } from "./factory.js";
12
+ export const accentColor = /* @__PURE__ */ valueProp('accent-color', ['color'], ['auto']);
13
+ export const alignContent = /* @__PURE__ */ keywordProp('align-content', [
14
+ 'baseline',
15
+ 'center',
16
+ 'end',
17
+ 'flex-end',
18
+ 'flex-start',
19
+ 'normal',
20
+ 'space-around',
21
+ 'space-between',
22
+ 'space-evenly',
23
+ 'start',
24
+ 'stretch',
25
+ ]);
26
+ export const alignItems = /* @__PURE__ */ keywordProp('align-items', [
27
+ 'anchor-center',
28
+ 'baseline',
29
+ 'center',
30
+ 'end',
31
+ 'flex-end',
32
+ 'flex-start',
33
+ 'normal',
34
+ 'self-end',
35
+ 'self-start',
36
+ 'start',
37
+ 'stretch',
38
+ ]);
39
+ export const alignSelf = /* @__PURE__ */ keywordProp('align-self', [
40
+ 'anchor-center',
41
+ 'auto',
42
+ 'baseline',
43
+ 'center',
44
+ 'end',
45
+ 'flex-end',
46
+ 'flex-start',
47
+ 'normal',
48
+ 'self-end',
49
+ 'self-start',
50
+ 'start',
51
+ 'stretch',
52
+ ]);
53
+ export const alignmentBaseline = /* @__PURE__ */ keywordProp('alignment-baseline', [
54
+ 'alphabetic',
55
+ 'baseline',
56
+ 'central',
57
+ 'ideographic',
58
+ 'mathematical',
59
+ 'middle',
60
+ 'text-after-edge',
61
+ 'text-before-edge',
62
+ ]);
63
+ export const all = /* @__PURE__ */ keywordProp('all', [
64
+ 'inherit',
65
+ 'initial',
66
+ 'revert',
67
+ 'revert-layer',
68
+ 'unset',
69
+ ]);
70
+ export const animation = /* @__PURE__ */ valueProp('animation', ['ident'], [
71
+ 'alternate',
72
+ 'auto',
73
+ 'backwards',
74
+ 'ease',
75
+ 'ease-in',
76
+ 'ease-in-out',
77
+ 'ease-out',
78
+ 'forwards',
79
+ 'none',
80
+ 'reverse',
81
+ ]);
82
+ export const animationComposition = /* @__PURE__ */ keywordProp('animation-composition', ['accumulate', 'add', 'replace']);
83
+ export const animationDelay = /* @__PURE__ */ valueProp('animation-delay', ['time'], []);
84
+ export const animationDirection = /* @__PURE__ */ keywordProp('animation-direction', ['alternate', 'alternate-reverse', 'normal', 'reverse']);
85
+ export const animationDuration = /* @__PURE__ */ valueProp('animation-duration', ['time'], ['auto']);
86
+ export const animationFillMode = /* @__PURE__ */ keywordProp('animation-fill-mode', ['backwards', 'both', 'forwards', 'none']);
87
+ export const animationIterationCount = /* @__PURE__ */ valueProp('animation-iteration-count', ['number'], ['infinite']);
88
+ export const animationName = /* @__PURE__ */ valueProp('animation-name', ['ident', 'string'], ['none']);
89
+ export const animationPlayState = /* @__PURE__ */ keywordProp('animation-play-state', ['paused', 'running']);
90
+ export const animationTimingFunction = /* @__PURE__ */ keywordProp('animation-timing-function', ['ease-in', 'ease-in-out', 'ease-out', 'linear', 'step-end']);
91
+ export const animationTrigger = /* @__PURE__ */ keywordProp('animation-trigger', ['none']);
92
+ export const appearance = /* @__PURE__ */ keywordProp('appearance', [
93
+ 'auto',
94
+ 'button',
95
+ 'checkbox',
96
+ 'listbox',
97
+ 'menulist',
98
+ 'menulist-button',
99
+ 'meter',
100
+ 'none',
101
+ 'progress-bar',
102
+ 'radio',
103
+ 'searchfield',
104
+ 'textarea',
105
+ 'textfield',
106
+ ]);
107
+ export const aspectRatio = /* @__PURE__ */ valueProp('aspect-ratio', ['number'], ['auto']);
108
+ export const backdropFilter = /* @__PURE__ */ valueProp('backdrop-filter', ['url'], ['none']);
109
+ export const backfaceVisibility = /* @__PURE__ */ keywordProp('backface-visibility', ['hidden', 'visible']);
110
+ export const backgroundAttachment = /* @__PURE__ */ keywordProp('background-attachment', ['fixed', 'local', 'scroll']);
111
+ export const backgroundBlendMode = /* @__PURE__ */ keywordProp('background-blend-mode', [
112
+ 'color',
113
+ 'color-burn',
114
+ 'color-dodge',
115
+ 'darken',
116
+ 'difference',
117
+ 'exclusion',
118
+ 'hard-light',
119
+ 'hue',
120
+ 'lighten',
121
+ 'luminosity',
122
+ 'multiply',
123
+ 'normal',
124
+ 'overlay',
125
+ 'saturation',
126
+ 'screen',
127
+ 'soft-light',
128
+ ]);
129
+ export const backgroundClip = /* @__PURE__ */ keywordProp('background-clip', [
130
+ 'border-area',
131
+ 'border-box',
132
+ 'content-box',
133
+ 'padding-box',
134
+ 'text',
135
+ ]);
136
+ export const backgroundColor = /* @__PURE__ */ valueProp('background-color', ['color'], []);
137
+ export const backgroundImage = /* @__PURE__ */ valueProp('background-image', ['url'], ['none']);
138
+ export const backgroundOrigin = /* @__PURE__ */ keywordProp('background-origin', ['border-box', 'content-box', 'padding-box']);
139
+ export const backgroundPosition = /* @__PURE__ */ keywordProp('background-position', ['bottom', 'center', 'left', 'right', 'top']);
140
+ export const backgroundPositionX = /* @__PURE__ */ keywordProp('background-position-x', ['center']);
141
+ export const backgroundPositionY = /* @__PURE__ */ keywordProp('background-position-y', ['center']);
142
+ export const backgroundRepeat = /* @__PURE__ */ keywordProp('background-repeat', ['no-repeat', 'repeat', 'repeat-x', 'repeat-y', 'round', 'space']);
143
+ export const backgroundSize = /* @__PURE__ */ valueProp('background-size', ['lengthPercentage'], ['auto', 'contain', 'cover']);
144
+ export const baselineShift = /* @__PURE__ */ valueProp('baseline-shift', ['lengthPercentage'], ['baseline', 'sub', 'super']);
145
+ export const baselineSource = /* @__PURE__ */ keywordProp('baseline-source', [
146
+ 'auto',
147
+ 'first',
148
+ 'last',
149
+ ]);
150
+ export const blockSize = /* @__PURE__ */ valueProp('block-size', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
151
+ export const border = /* @__PURE__ */ valueProp('border', ['color', 'length'], [
152
+ 'dashed',
153
+ 'dotted',
154
+ 'double',
155
+ 'groove',
156
+ 'hidden',
157
+ 'inset',
158
+ 'medium',
159
+ 'none',
160
+ 'outset',
161
+ 'ridge',
162
+ 'solid',
163
+ 'thick',
164
+ 'thin',
165
+ ]);
166
+ export const borderBlock = /* @__PURE__ */ valueProp('border-block', ['color', 'length'], [
167
+ 'dashed',
168
+ 'dotted',
169
+ 'double',
170
+ 'groove',
171
+ 'hidden',
172
+ 'inset',
173
+ 'medium',
174
+ 'none',
175
+ 'outset',
176
+ 'ridge',
177
+ 'solid',
178
+ 'thick',
179
+ 'thin',
180
+ ]);
181
+ export const borderBlockColor = /* @__PURE__ */ valueProp('border-block-color', ['color'], []);
182
+ export const borderBlockEnd = /* @__PURE__ */ valueProp('border-block-end', ['color', 'length'], [
183
+ 'dashed',
184
+ 'dotted',
185
+ 'double',
186
+ 'groove',
187
+ 'hidden',
188
+ 'inset',
189
+ 'medium',
190
+ 'none',
191
+ 'outset',
192
+ 'ridge',
193
+ 'solid',
194
+ 'thick',
195
+ 'thin',
196
+ ]);
197
+ export const borderBlockEndColor = /* @__PURE__ */ valueProp('border-block-end-color', ['color'], []);
198
+ export const borderBlockEndStyle = /* @__PURE__ */ keywordProp('border-block-end-style', [
199
+ 'dashed',
200
+ 'dotted',
201
+ 'double',
202
+ 'groove',
203
+ 'hidden',
204
+ 'inset',
205
+ 'none',
206
+ 'outset',
207
+ 'ridge',
208
+ 'solid',
209
+ ]);
210
+ export const borderBlockEndWidth = /* @__PURE__ */ valueProp('border-block-end-width', ['length'], ['medium', 'thick', 'thin']);
211
+ export const borderBlockStart = /* @__PURE__ */ valueProp('border-block-start', ['color', 'length'], [
212
+ 'dashed',
213
+ 'dotted',
214
+ 'double',
215
+ 'groove',
216
+ 'hidden',
217
+ 'inset',
218
+ 'medium',
219
+ 'none',
220
+ 'outset',
221
+ 'ridge',
222
+ 'solid',
223
+ 'thick',
224
+ 'thin',
225
+ ]);
226
+ export const borderBlockStartColor = /* @__PURE__ */ valueProp('border-block-start-color', ['color'], []);
227
+ export const borderBlockStartStyle = /* @__PURE__ */ keywordProp('border-block-start-style', [
228
+ 'dashed',
229
+ 'dotted',
230
+ 'double',
231
+ 'groove',
232
+ 'hidden',
233
+ 'inset',
234
+ 'none',
235
+ 'outset',
236
+ 'ridge',
237
+ 'solid',
238
+ ]);
239
+ export const borderBlockStartWidth = /* @__PURE__ */ valueProp('border-block-start-width', ['length'], ['medium', 'thick', 'thin']);
240
+ export const borderBlockStyle = /* @__PURE__ */ keywordProp('border-block-style', [
241
+ 'dashed',
242
+ 'dotted',
243
+ 'double',
244
+ 'groove',
245
+ 'hidden',
246
+ 'inset',
247
+ 'none',
248
+ 'outset',
249
+ 'ridge',
250
+ 'solid',
251
+ ]);
252
+ export const borderBlockWidth = /* @__PURE__ */ valueProp('border-block-width', ['length'], ['medium', 'thick', 'thin']);
253
+ export const borderBottom = /* @__PURE__ */ valueProp('border-bottom', ['color', 'length'], [
254
+ 'dashed',
255
+ 'dotted',
256
+ 'double',
257
+ 'groove',
258
+ 'hidden',
259
+ 'inset',
260
+ 'medium',
261
+ 'none',
262
+ 'outset',
263
+ 'ridge',
264
+ 'solid',
265
+ 'thick',
266
+ 'thin',
267
+ ]);
268
+ export const borderBottomColor = /* @__PURE__ */ valueProp('border-bottom-color', ['color'], []);
269
+ export const borderBottomLeftRadius = /* @__PURE__ */ valueProp('border-bottom-left-radius', ['lengthPercentage'], []);
270
+ export const borderBottomRightRadius = /* @__PURE__ */ valueProp('border-bottom-right-radius', ['lengthPercentage'], []);
271
+ export const borderBottomStyle = /* @__PURE__ */ keywordProp('border-bottom-style', [
272
+ 'dashed',
273
+ 'dotted',
274
+ 'double',
275
+ 'groove',
276
+ 'hidden',
277
+ 'inset',
278
+ 'none',
279
+ 'outset',
280
+ 'ridge',
281
+ 'solid',
282
+ ]);
283
+ export const borderBottomWidth = /* @__PURE__ */ valueProp('border-bottom-width', ['length'], ['medium', 'thick', 'thin']);
284
+ export const borderCollapse = /* @__PURE__ */ keywordProp('border-collapse', [
285
+ 'collapse',
286
+ 'separate',
287
+ ]);
288
+ export const borderColor = /* @__PURE__ */ valueProp('border-color', ['color'], []);
289
+ export const borderEndEndRadius = /* @__PURE__ */ valueProp('border-end-end-radius', ['lengthPercentage'], []);
290
+ export const borderEndStartRadius = /* @__PURE__ */ valueProp('border-end-start-radius', ['lengthPercentage'], []);
291
+ export const borderImage = /* @__PURE__ */ valueProp('border-image', ['url'], ['none', 'repeat', 'round', 'space', 'stretch']);
292
+ export const borderImageOutset = /* @__PURE__ */ valueProp('border-image-outset', ['length', 'number'], []);
293
+ export const borderImageRepeat = /* @__PURE__ */ keywordProp('border-image-repeat', ['repeat', 'round', 'space', 'stretch']);
294
+ export const borderImageSource = /* @__PURE__ */ valueProp('border-image-source', ['url'], ['none']);
295
+ export const borderImageWidth = /* @__PURE__ */ valueProp('border-image-width', ['lengthPercentage', 'number'], ['auto']);
296
+ export const borderInline = /* @__PURE__ */ valueProp('border-inline', ['color', 'length'], [
297
+ 'dashed',
298
+ 'dotted',
299
+ 'double',
300
+ 'groove',
301
+ 'hidden',
302
+ 'inset',
303
+ 'medium',
304
+ 'none',
305
+ 'outset',
306
+ 'ridge',
307
+ 'solid',
308
+ 'thick',
309
+ 'thin',
310
+ ]);
311
+ export const borderInlineColor = /* @__PURE__ */ valueProp('border-inline-color', ['color'], []);
312
+ export const borderInlineEnd = /* @__PURE__ */ valueProp('border-inline-end', ['color', 'length'], [
313
+ 'dashed',
314
+ 'dotted',
315
+ 'double',
316
+ 'groove',
317
+ 'hidden',
318
+ 'inset',
319
+ 'medium',
320
+ 'none',
321
+ 'outset',
322
+ 'ridge',
323
+ 'solid',
324
+ 'thick',
325
+ 'thin',
326
+ ]);
327
+ export const borderInlineEndColor = /* @__PURE__ */ valueProp('border-inline-end-color', ['color'], []);
328
+ export const borderInlineEndStyle = /* @__PURE__ */ keywordProp('border-inline-end-style', [
329
+ 'dashed',
330
+ 'dotted',
331
+ 'double',
332
+ 'groove',
333
+ 'hidden',
334
+ 'inset',
335
+ 'none',
336
+ 'outset',
337
+ 'ridge',
338
+ 'solid',
339
+ ]);
340
+ export const borderInlineEndWidth = /* @__PURE__ */ valueProp('border-inline-end-width', ['length'], ['medium', 'thick', 'thin']);
341
+ export const borderInlineStart = /* @__PURE__ */ valueProp('border-inline-start', ['color', 'length'], [
342
+ 'dashed',
343
+ 'dotted',
344
+ 'double',
345
+ 'groove',
346
+ 'hidden',
347
+ 'inset',
348
+ 'medium',
349
+ 'none',
350
+ 'outset',
351
+ 'ridge',
352
+ 'solid',
353
+ 'thick',
354
+ 'thin',
355
+ ]);
356
+ export const borderInlineStartColor = /* @__PURE__ */ valueProp('border-inline-start-color', ['color'], []);
357
+ export const borderInlineStartStyle = /* @__PURE__ */ keywordProp('border-inline-start-style', [
358
+ 'dashed',
359
+ 'dotted',
360
+ 'double',
361
+ 'groove',
362
+ 'hidden',
363
+ 'inset',
364
+ 'none',
365
+ 'outset',
366
+ 'ridge',
367
+ 'solid',
368
+ ]);
369
+ export const borderInlineStartWidth = /* @__PURE__ */ valueProp('border-inline-start-width', ['length'], ['medium', 'thick', 'thin']);
370
+ export const borderInlineStyle = /* @__PURE__ */ keywordProp('border-inline-style', [
371
+ 'dashed',
372
+ 'dotted',
373
+ 'double',
374
+ 'groove',
375
+ 'hidden',
376
+ 'inset',
377
+ 'none',
378
+ 'outset',
379
+ 'ridge',
380
+ 'solid',
381
+ ]);
382
+ export const borderInlineWidth = /* @__PURE__ */ valueProp('border-inline-width', ['length'], ['medium', 'thick', 'thin']);
383
+ export const borderLeft = /* @__PURE__ */ valueProp('border-left', ['color', 'length'], [
384
+ 'dashed',
385
+ 'dotted',
386
+ 'double',
387
+ 'groove',
388
+ 'hidden',
389
+ 'inset',
390
+ 'medium',
391
+ 'none',
392
+ 'outset',
393
+ 'ridge',
394
+ 'solid',
395
+ 'thick',
396
+ 'thin',
397
+ ]);
398
+ export const borderLeftColor = /* @__PURE__ */ valueProp('border-left-color', ['color'], []);
399
+ export const borderLeftStyle = /* @__PURE__ */ keywordProp('border-left-style', [
400
+ 'dashed',
401
+ 'dotted',
402
+ 'double',
403
+ 'groove',
404
+ 'hidden',
405
+ 'inset',
406
+ 'none',
407
+ 'outset',
408
+ 'ridge',
409
+ 'solid',
410
+ ]);
411
+ export const borderLeftWidth = /* @__PURE__ */ valueProp('border-left-width', ['length'], ['medium', 'thick', 'thin']);
412
+ export const borderRadius = /* @__PURE__ */ valueProp('border-radius', ['lengthPercentage'], []);
413
+ export const borderRight = /* @__PURE__ */ valueProp('border-right', ['color', 'length'], [
414
+ 'dashed',
415
+ 'dotted',
416
+ 'double',
417
+ 'groove',
418
+ 'hidden',
419
+ 'inset',
420
+ 'medium',
421
+ 'none',
422
+ 'outset',
423
+ 'ridge',
424
+ 'solid',
425
+ 'thick',
426
+ 'thin',
427
+ ]);
428
+ export const borderRightColor = /* @__PURE__ */ valueProp('border-right-color', ['color'], []);
429
+ export const borderRightStyle = /* @__PURE__ */ keywordProp('border-right-style', [
430
+ 'dashed',
431
+ 'dotted',
432
+ 'double',
433
+ 'groove',
434
+ 'hidden',
435
+ 'inset',
436
+ 'none',
437
+ 'outset',
438
+ 'ridge',
439
+ 'solid',
440
+ ]);
441
+ export const borderRightWidth = /* @__PURE__ */ valueProp('border-right-width', ['length'], ['medium', 'thick', 'thin']);
442
+ export const borderShape = /* @__PURE__ */ keywordProp('border-shape', [
443
+ 'none',
444
+ ]);
445
+ export const borderSpacing = /* @__PURE__ */ valueProp('border-spacing', ['length'], []);
446
+ export const borderStartEndRadius = /* @__PURE__ */ valueProp('border-start-end-radius', ['lengthPercentage'], []);
447
+ export const borderStartStartRadius = /* @__PURE__ */ valueProp('border-start-start-radius', ['lengthPercentage'], []);
448
+ export const borderStyle = /* @__PURE__ */ keywordProp('border-style', [
449
+ 'dashed',
450
+ 'dotted',
451
+ 'double',
452
+ 'groove',
453
+ 'hidden',
454
+ 'inset',
455
+ 'none',
456
+ 'outset',
457
+ 'ridge',
458
+ 'solid',
459
+ ]);
460
+ export const borderTop = /* @__PURE__ */ valueProp('border-top', ['color', 'length'], [
461
+ 'dashed',
462
+ 'dotted',
463
+ 'double',
464
+ 'groove',
465
+ 'hidden',
466
+ 'inset',
467
+ 'medium',
468
+ 'none',
469
+ 'outset',
470
+ 'ridge',
471
+ 'solid',
472
+ 'thick',
473
+ 'thin',
474
+ ]);
475
+ export const borderTopColor = /* @__PURE__ */ valueProp('border-top-color', ['color'], []);
476
+ export const borderTopLeftRadius = /* @__PURE__ */ valueProp('border-top-left-radius', ['lengthPercentage'], []);
477
+ export const borderTopRightRadius = /* @__PURE__ */ valueProp('border-top-right-radius', ['lengthPercentage'], []);
478
+ export const borderTopStyle = /* @__PURE__ */ keywordProp('border-top-style', [
479
+ 'dashed',
480
+ 'dotted',
481
+ 'double',
482
+ 'groove',
483
+ 'hidden',
484
+ 'inset',
485
+ 'none',
486
+ 'outset',
487
+ 'ridge',
488
+ 'solid',
489
+ ]);
490
+ export const borderTopWidth = /* @__PURE__ */ valueProp('border-top-width', ['length'], ['medium', 'thick', 'thin']);
491
+ export const borderWidth = /* @__PURE__ */ valueProp('border-width', ['length'], ['medium', 'thick', 'thin']);
492
+ export const bottom = /* @__PURE__ */ valueProp('bottom', ['lengthPercentage'], ['auto']);
493
+ export const boxDecorationBreak = /* @__PURE__ */ keywordProp('box-decoration-break', ['clone', 'slice']);
494
+ export const boxShadow = /* @__PURE__ */ keywordProp('box-shadow', [
495
+ 'none',
496
+ ]);
497
+ export const boxSizing = /* @__PURE__ */ keywordProp('box-sizing', [
498
+ 'border-box',
499
+ 'content-box',
500
+ ]);
501
+ export const breakAfter = /* @__PURE__ */ keywordProp('break-after', [
502
+ 'all',
503
+ 'always',
504
+ 'auto',
505
+ 'avoid',
506
+ 'avoid-column',
507
+ 'avoid-page',
508
+ 'avoid-region',
509
+ 'column',
510
+ 'left',
511
+ 'page',
512
+ 'recto',
513
+ 'region',
514
+ 'right',
515
+ 'verso',
516
+ ]);
517
+ export const breakBefore = /* @__PURE__ */ keywordProp('break-before', [
518
+ 'all',
519
+ 'always',
520
+ 'auto',
521
+ 'avoid',
522
+ 'avoid-column',
523
+ 'avoid-page',
524
+ 'avoid-region',
525
+ 'column',
526
+ 'left',
527
+ 'page',
528
+ 'recto',
529
+ 'region',
530
+ 'right',
531
+ 'verso',
532
+ ]);
533
+ export const breakInside = /* @__PURE__ */ keywordProp('break-inside', [
534
+ 'auto',
535
+ 'avoid',
536
+ 'avoid-column',
537
+ 'avoid-page',
538
+ 'avoid-region',
539
+ ]);
540
+ export const captionSide = /* @__PURE__ */ keywordProp('caption-side', [
541
+ 'bottom',
542
+ 'top',
543
+ ]);
544
+ export const caret = /* @__PURE__ */ valueProp('caret', ['color'], ['auto', 'bar', 'block', 'manual', 'underscore']);
545
+ export const caretAnimation = /* @__PURE__ */ keywordProp('caret-animation', [
546
+ 'auto',
547
+ 'manual',
548
+ ]);
549
+ export const caretColor = /* @__PURE__ */ valueProp('caret-color', ['color'], ['auto']);
550
+ export const caretShape = /* @__PURE__ */ keywordProp('caret-shape', [
551
+ 'auto',
552
+ 'bar',
553
+ 'block',
554
+ 'underscore',
555
+ ]);
556
+ export const clear = /* @__PURE__ */ keywordProp('clear', [
557
+ 'both',
558
+ 'inline-end',
559
+ 'inline-start',
560
+ 'left',
561
+ 'none',
562
+ 'right',
563
+ ]);
564
+ export const clipPath = /* @__PURE__ */ valueProp('clip-path', ['url'], ['fill-box', 'none', 'stroke-box', 'view-box']);
565
+ export const clipRule = /* @__PURE__ */ keywordProp('clip-rule', [
566
+ 'evenodd',
567
+ 'nonzero',
568
+ ]);
569
+ export const color = /* @__PURE__ */ valueProp('color', ['color'], []);
570
+ export const colorInterpolationFilters = /* @__PURE__ */ keywordProp('color-interpolation-filters', ['auto', 'linearRGB', 'sRGB']);
571
+ export const colorScheme = /* @__PURE__ */ keywordProp('color-scheme', [
572
+ 'normal',
573
+ ]);
574
+ export const columnCount = /* @__PURE__ */ valueProp('column-count', ['integer'], ['auto']);
575
+ export const columnFill = /* @__PURE__ */ keywordProp('column-fill', [
576
+ 'auto',
577
+ 'balance',
578
+ ]);
579
+ export const columnGap = /* @__PURE__ */ valueProp('column-gap', ['lengthPercentage'], ['normal']);
580
+ export const columnHeight = /* @__PURE__ */ valueProp('column-height', ['length'], ['auto']);
581
+ export const columnRule = /* @__PURE__ */ valueProp('column-rule', ['color', 'length'], [
582
+ 'dashed',
583
+ 'dotted',
584
+ 'double',
585
+ 'groove',
586
+ 'hidden',
587
+ 'inset',
588
+ 'medium',
589
+ 'none',
590
+ 'outset',
591
+ 'ridge',
592
+ 'solid',
593
+ 'thick',
594
+ 'thin',
595
+ ]);
596
+ export const columnRuleColor = /* @__PURE__ */ valueProp('column-rule-color', ['color'], []);
597
+ export const columnRuleStyle = /* @__PURE__ */ keywordProp('column-rule-style', [
598
+ 'dashed',
599
+ 'dotted',
600
+ 'double',
601
+ 'groove',
602
+ 'hidden',
603
+ 'inset',
604
+ 'none',
605
+ 'outset',
606
+ 'ridge',
607
+ 'solid',
608
+ ]);
609
+ export const columnRuleWidth = /* @__PURE__ */ valueProp('column-rule-width', ['length'], ['medium', 'thick', 'thin']);
610
+ export const columnSpan = /* @__PURE__ */ keywordProp('column-span', [
611
+ 'all',
612
+ 'none',
613
+ ]);
614
+ export const columnWidth = /* @__PURE__ */ valueProp('column-width', ['length'], ['auto']);
615
+ export const columnWrap = /* @__PURE__ */ keywordProp('column-wrap', [
616
+ 'auto',
617
+ 'nowrap',
618
+ 'wrap',
619
+ ]);
620
+ export const columns = /* @__PURE__ */ keywordProp('columns', [
621
+ 'auto',
622
+ ]);
623
+ export const contain = /* @__PURE__ */ keywordProp('contain', [
624
+ 'content',
625
+ 'inline-size',
626
+ 'layout',
627
+ 'none',
628
+ 'paint',
629
+ 'size',
630
+ 'strict',
631
+ 'style',
632
+ ]);
633
+ export const containIntrinsicBlockSize = /* @__PURE__ */ valueProp('contain-intrinsic-block-size', ['length'], ['none']);
634
+ export const containIntrinsicHeight = /* @__PURE__ */ valueProp('contain-intrinsic-height', ['length'], ['none']);
635
+ export const containIntrinsicInlineSize = /* @__PURE__ */ valueProp('contain-intrinsic-inline-size', ['length'], ['none']);
636
+ export const containIntrinsicSize = /* @__PURE__ */ valueProp('contain-intrinsic-size', ['length'], ['none']);
637
+ export const containIntrinsicWidth = /* @__PURE__ */ valueProp('contain-intrinsic-width', ['length'], ['none']);
638
+ export const containerName = /* @__PURE__ */ valueProp('container-name', ['ident'], ['none']);
639
+ export const content = /* @__PURE__ */ valueProp('content', ['url'], [
640
+ 'close-quote',
641
+ 'no-close-quote',
642
+ 'no-open-quote',
643
+ 'none',
644
+ 'normal',
645
+ 'open-quote',
646
+ ]);
647
+ export const contentVisibility = /* @__PURE__ */ keywordProp('content-visibility', ['auto', 'hidden', 'visible']);
648
+ export const cornerBlockEndShape = /* @__PURE__ */ keywordProp('corner-block-end-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
649
+ export const cornerBlockStartShape = /* @__PURE__ */ keywordProp('corner-block-start-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
650
+ export const cornerBottomLeftShape = /* @__PURE__ */ keywordProp('corner-bottom-left-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
651
+ export const cornerBottomRightShape = /* @__PURE__ */ keywordProp('corner-bottom-right-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
652
+ export const cornerBottomShape = /* @__PURE__ */ keywordProp('corner-bottom-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
653
+ export const cornerEndEndShape = /* @__PURE__ */ keywordProp('corner-end-end-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
654
+ export const cornerEndStartShape = /* @__PURE__ */ keywordProp('corner-end-start-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
655
+ export const cornerInlineEndShape = /* @__PURE__ */ keywordProp('corner-inline-end-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
656
+ export const cornerInlineStartShape = /* @__PURE__ */ keywordProp('corner-inline-start-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
657
+ export const cornerLeftShape = /* @__PURE__ */ keywordProp('corner-left-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
658
+ export const cornerRightShape = /* @__PURE__ */ keywordProp('corner-right-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
659
+ export const cornerShape = /* @__PURE__ */ keywordProp('corner-shape', [
660
+ 'bevel',
661
+ 'notch',
662
+ 'round',
663
+ 'scoop',
664
+ 'square',
665
+ 'squircle',
666
+ ]);
667
+ export const cornerStartEndShape = /* @__PURE__ */ keywordProp('corner-start-end-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
668
+ export const cornerStartStartShape = /* @__PURE__ */ keywordProp('corner-start-start-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
669
+ export const cornerTopLeftShape = /* @__PURE__ */ keywordProp('corner-top-left-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
670
+ export const cornerTopRightShape = /* @__PURE__ */ keywordProp('corner-top-right-shape', ['bevel', 'notch', 'round', 'scoop', 'square', 'squircle']);
671
+ export const cornerTopShape = /* @__PURE__ */ keywordProp('corner-top-shape', [
672
+ 'bevel',
673
+ 'notch',
674
+ 'round',
675
+ 'scoop',
676
+ 'square',
677
+ 'squircle',
678
+ ]);
679
+ export const counterIncrement = /* @__PURE__ */ valueProp('counter-increment', ['ident'], ['none']);
680
+ export const counterReset = /* @__PURE__ */ valueProp('counter-reset', ['ident'], ['none']);
681
+ export const counterSet = /* @__PURE__ */ valueProp('counter-set', ['ident'], ['none']);
682
+ export const cursor = /* @__PURE__ */ keywordProp('cursor', [
683
+ 'alias',
684
+ 'all-scroll',
685
+ 'auto',
686
+ 'cell',
687
+ 'col-resize',
688
+ 'context-menu',
689
+ 'copy',
690
+ 'crosshair',
691
+ 'default',
692
+ 'e-resize',
693
+ 'ew-resize',
694
+ 'grab',
695
+ 'grabbing',
696
+ 'help',
697
+ 'move',
698
+ 'n-resize',
699
+ 'ne-resize',
700
+ 'nesw-resize',
701
+ 'no-drop',
702
+ 'none',
703
+ 'not-allowed',
704
+ 'ns-resize',
705
+ 'nw-resize',
706
+ 'nwse-resize',
707
+ 'pointer',
708
+ 'progress',
709
+ 'row-resize',
710
+ 's-resize',
711
+ 'se-resize',
712
+ 'sw-resize',
713
+ 'text',
714
+ 'vertical-text',
715
+ 'w-resize',
716
+ 'wait',
717
+ 'zoom-in',
718
+ 'zoom-out',
719
+ ]);
720
+ export const cx = /* @__PURE__ */ valueProp('cx', ['length', 'percentage'], []);
721
+ export const cy = /* @__PURE__ */ valueProp('cy', ['length', 'percentage'], []);
722
+ export const d = /* @__PURE__ */ keywordProp('d', ['none']);
723
+ export const direction = /* @__PURE__ */ keywordProp('direction', [
724
+ 'ltr',
725
+ 'rtl',
726
+ ]);
727
+ export const display = /* @__PURE__ */ keywordProp('display', [
728
+ 'block',
729
+ 'contents',
730
+ 'flex',
731
+ 'flow-root',
732
+ 'grid',
733
+ 'inline',
734
+ 'inline-block',
735
+ 'inline-flex',
736
+ 'inline-grid',
737
+ 'inline-list-item',
738
+ 'inline-table',
739
+ 'none',
740
+ 'ruby',
741
+ 'ruby-base',
742
+ 'ruby-base-container',
743
+ 'ruby-text',
744
+ 'ruby-text-container',
745
+ 'table',
746
+ 'table-caption',
747
+ 'table-cell',
748
+ 'table-column',
749
+ 'table-column-group',
750
+ 'table-footer-group',
751
+ 'table-header-group',
752
+ 'table-row',
753
+ 'table-row-group',
754
+ ]);
755
+ export const dominantBaseline = /* @__PURE__ */ keywordProp('dominant-baseline', [
756
+ 'alphabetic',
757
+ 'auto',
758
+ 'central',
759
+ 'hanging',
760
+ 'ideographic',
761
+ 'mathematical',
762
+ 'middle',
763
+ 'text-bottom',
764
+ 'text-top',
765
+ ]);
766
+ export const dynamicRangeLimit = /* @__PURE__ */ keywordProp('dynamic-range-limit', ['constrained', 'no-limit', 'standard']);
767
+ export const emptyCells = /* @__PURE__ */ keywordProp('empty-cells', [
768
+ 'hide',
769
+ 'show',
770
+ ]);
771
+ export const fill = /* @__PURE__ */ valueProp('fill', ['color', 'url'], ['context-fill', 'context-stroke', 'none']);
772
+ export const fillOpacity = /* @__PURE__ */ valueProp('fill-opacity', ['number', 'percentage'], []);
773
+ export const fillRule = /* @__PURE__ */ keywordProp('fill-rule', [
774
+ 'evenodd',
775
+ 'nonzero',
776
+ ]);
777
+ export const filter = /* @__PURE__ */ valueProp('filter', ['url'], ['none']);
778
+ export const flex = /* @__PURE__ */ valueProp('flex', ['lengthPercentage', 'number'], [
779
+ 'auto',
780
+ 'content',
781
+ 'fit-content',
782
+ 'max-content',
783
+ 'min-content',
784
+ 'none',
785
+ ]);
786
+ export const flexBasis = /* @__PURE__ */ valueProp('flex-basis', ['lengthPercentage'], ['auto', 'content', 'fit-content', 'max-content', 'min-content']);
787
+ export const flexDirection = /* @__PURE__ */ keywordProp('flex-direction', [
788
+ 'column',
789
+ 'column-reverse',
790
+ 'row',
791
+ 'row-reverse',
792
+ ]);
793
+ export const flexFlow = /* @__PURE__ */ keywordProp('flex-flow', [
794
+ 'balance',
795
+ 'column',
796
+ 'column-reverse',
797
+ 'nowrap',
798
+ 'row',
799
+ 'row-reverse',
800
+ 'wrap',
801
+ 'wrap-reverse',
802
+ ]);
803
+ export const flexGrow = /* @__PURE__ */ valueProp('flex-grow', ['number'], []);
804
+ export const flexLineCount = /* @__PURE__ */ valueProp('flex-line-count', ['integer'], []);
805
+ export const flexShrink = /* @__PURE__ */ valueProp('flex-shrink', ['number'], []);
806
+ export const flexWrap = /* @__PURE__ */ keywordProp('flex-wrap', [
807
+ 'balance',
808
+ 'nowrap',
809
+ 'wrap',
810
+ 'wrap-reverse',
811
+ ]);
812
+ export const float = /* @__PURE__ */ keywordProp('float', [
813
+ 'inline-end',
814
+ 'inline-start',
815
+ 'left',
816
+ 'none',
817
+ 'right',
818
+ ]);
819
+ export const floodColor = /* @__PURE__ */ valueProp('flood-color', ['color'], []);
820
+ export const floodOpacity = /* @__PURE__ */ valueProp('flood-opacity', ['number', 'percentage'], []);
821
+ export const font = /* @__PURE__ */ keywordProp('font', [
822
+ 'caption',
823
+ 'cursive',
824
+ 'emoji',
825
+ 'fangsong',
826
+ 'fantasy',
827
+ 'icon',
828
+ 'large',
829
+ 'math',
830
+ 'medium',
831
+ 'menu',
832
+ 'message-box',
833
+ 'monospace',
834
+ 'sans-serif',
835
+ 'serif',
836
+ 'small',
837
+ 'small-caption',
838
+ 'status-bar',
839
+ 'system-ui',
840
+ 'ui-monospace',
841
+ 'ui-rounded',
842
+ 'ui-sans-serif',
843
+ 'ui-serif',
844
+ 'x-large',
845
+ 'x-small',
846
+ 'xx-large',
847
+ 'xx-small',
848
+ ]);
849
+ export const fontFamily = /* @__PURE__ */ valueProp('font-family', ['string'], [
850
+ 'emoji',
851
+ 'fangsong',
852
+ 'ui-monospace',
853
+ 'ui-rounded',
854
+ 'ui-sans-serif',
855
+ 'ui-serif',
856
+ ]);
857
+ export const fontFeatureSettings = /* @__PURE__ */ valueProp('font-feature-settings', ['string'], ['normal']);
858
+ export const fontKerning = /* @__PURE__ */ keywordProp('font-kerning', [
859
+ 'auto',
860
+ 'none',
861
+ 'normal',
862
+ ]);
863
+ export const fontLanguageOverride = /* @__PURE__ */ valueProp('font-language-override', ['string'], ['normal']);
864
+ export const fontOpticalSizing = /* @__PURE__ */ keywordProp('font-optical-sizing', ['auto', 'none']);
865
+ export const fontPalette = /* @__PURE__ */ valueProp('font-palette', ['ident'], ['dark', 'light', 'normal']);
866
+ export const fontSize = /* @__PURE__ */ valueProp('font-size', ['lengthPercentage'], [
867
+ 'large',
868
+ 'larger',
869
+ 'math',
870
+ 'medium',
871
+ 'small',
872
+ 'smaller',
873
+ 'x-large',
874
+ 'x-small',
875
+ 'xx-large',
876
+ 'xx-small',
877
+ 'xxx-large',
878
+ ]);
879
+ export const fontSizeAdjust = /* @__PURE__ */ valueProp('font-size-adjust', ['number'], ['from-font', 'none']);
880
+ export const fontStyle = /* @__PURE__ */ keywordProp('font-style', [
881
+ 'italic',
882
+ 'normal',
883
+ 'oblique',
884
+ ]);
885
+ export const fontSynthesis = /* @__PURE__ */ keywordProp('font-synthesis', [
886
+ 'none',
887
+ 'position',
888
+ 'small-caps',
889
+ 'style',
890
+ 'weight',
891
+ ]);
892
+ export const fontSynthesisSmallCaps = /* @__PURE__ */ keywordProp('font-synthesis-small-caps', ['auto', 'none']);
893
+ export const fontSynthesisStyle = /* @__PURE__ */ keywordProp('font-synthesis-style', ['auto', 'none']);
894
+ export const fontSynthesisWeight = /* @__PURE__ */ keywordProp('font-synthesis-weight', ['auto', 'none']);
895
+ export const fontVariant = /* @__PURE__ */ keywordProp('font-variant', [
896
+ 'all-petite-caps',
897
+ 'all-small-caps',
898
+ 'common-ligatures',
899
+ 'contextual',
900
+ 'diagonal-fractions',
901
+ 'discretionary-ligatures',
902
+ 'full-width',
903
+ 'historical-forms',
904
+ 'historical-ligatures',
905
+ 'jis04',
906
+ 'jis78',
907
+ 'jis83',
908
+ 'jis90',
909
+ 'lining-nums',
910
+ 'no-common-ligatures',
911
+ 'no-contextual',
912
+ 'no-discretionary-ligatures',
913
+ 'no-historical-ligatures',
914
+ 'none',
915
+ 'normal',
916
+ 'oldstyle-nums',
917
+ 'ordinal',
918
+ 'petite-caps',
919
+ 'proportional-nums',
920
+ 'proportional-width',
921
+ 'ruby',
922
+ 'simplified',
923
+ 'slashed-zero',
924
+ 'small-caps',
925
+ 'stacked-fractions',
926
+ 'tabular-nums',
927
+ 'titling-caps',
928
+ 'traditional',
929
+ 'unicase',
930
+ ]);
931
+ export const fontVariantAlternates = /* @__PURE__ */ keywordProp('font-variant-alternates', ['historical-forms', 'normal']);
932
+ export const fontVariantCaps = /* @__PURE__ */ keywordProp('font-variant-caps', [
933
+ 'all-petite-caps',
934
+ 'all-small-caps',
935
+ 'normal',
936
+ 'petite-caps',
937
+ 'small-caps',
938
+ 'titling-caps',
939
+ 'unicase',
940
+ ]);
941
+ export const fontVariantEastAsian = /* @__PURE__ */ keywordProp('font-variant-east-asian', [
942
+ 'full-width',
943
+ 'jis04',
944
+ 'jis78',
945
+ 'jis83',
946
+ 'jis90',
947
+ 'normal',
948
+ 'proportional-width',
949
+ 'ruby',
950
+ 'simplified',
951
+ 'traditional',
952
+ ]);
953
+ export const fontVariantEmoji = /* @__PURE__ */ keywordProp('font-variant-emoji', ['emoji', 'normal', 'text', 'unicode']);
954
+ export const fontVariantLigatures = /* @__PURE__ */ keywordProp('font-variant-ligatures', ['common-ligatures', 'no-contextual', 'none', 'normal']);
955
+ export const fontVariantNumeric = /* @__PURE__ */ keywordProp('font-variant-numeric', [
956
+ 'diagonal-fractions',
957
+ 'lining-nums',
958
+ 'normal',
959
+ 'oldstyle-nums',
960
+ 'ordinal',
961
+ 'proportional-nums',
962
+ 'slashed-zero',
963
+ 'stacked-fractions',
964
+ 'tabular-nums',
965
+ ]);
966
+ export const fontVariantPosition = /* @__PURE__ */ keywordProp('font-variant-position', ['normal', 'sub', 'super']);
967
+ export const fontVariationSettings = /* @__PURE__ */ keywordProp('font-variation-settings', ['normal']);
968
+ export const fontWeight = /* @__PURE__ */ valueProp('font-weight', ['number'], ['bold', 'bolder', 'lighter', 'normal']);
969
+ export const forcedColorAdjust = /* @__PURE__ */ keywordProp('forced-color-adjust', ['auto', 'none', 'preserve-parent-color']);
970
+ export const frameSizing = /* @__PURE__ */ keywordProp('frame-sizing', [
971
+ 'auto',
972
+ 'content-block-size',
973
+ 'content-height',
974
+ 'content-inline-size',
975
+ 'content-width',
976
+ ]);
977
+ export const gap = /* @__PURE__ */ valueProp('gap', ['lengthPercentage'], ['normal']);
978
+ export const gridArea = /* @__PURE__ */ valueProp('grid-area', ['ident'], ['auto']);
979
+ export const gridAutoColumns = /* @__PURE__ */ valueProp('grid-auto-columns', ['lengthPercentage'], ['auto', 'max-content', 'min-content']);
980
+ export const gridAutoFlow = /* @__PURE__ */ keywordProp('grid-auto-flow', [
981
+ 'column',
982
+ 'dense',
983
+ 'row',
984
+ ]);
985
+ export const gridAutoRows = /* @__PURE__ */ valueProp('grid-auto-rows', ['lengthPercentage'], ['auto', 'max-content', 'min-content']);
986
+ export const gridColumn = /* @__PURE__ */ valueProp('grid-column', ['ident'], ['auto']);
987
+ export const gridColumnEnd = /* @__PURE__ */ valueProp('grid-column-end', ['ident'], ['auto']);
988
+ export const gridColumnStart = /* @__PURE__ */ valueProp('grid-column-start', ['ident'], ['auto']);
989
+ export const gridRow = /* @__PURE__ */ valueProp('grid-row', ['ident'], ['auto']);
990
+ export const gridRowEnd = /* @__PURE__ */ valueProp('grid-row-end', ['ident'], ['auto']);
991
+ export const gridRowStart = /* @__PURE__ */ valueProp('grid-row-start', ['ident'], ['auto']);
992
+ export const gridTemplate = /* @__PURE__ */ valueProp('grid-template', ['lengthPercentage', 'string'], ['auto', 'max-content', 'min-content', 'none', 'subgrid']);
993
+ export const gridTemplateAreas = /* @__PURE__ */ valueProp('grid-template-areas', ['string'], ['none']);
994
+ export const gridTemplateColumns = /* @__PURE__ */ valueProp('grid-template-columns', ['lengthPercentage'], ['auto', 'max-content', 'min-content', 'none', 'subgrid']);
995
+ export const gridTemplateRows = /* @__PURE__ */ valueProp('grid-template-rows', ['lengthPercentage'], ['auto', 'max-content', 'min-content', 'none', 'subgrid']);
996
+ export const hangingPunctuation = /* @__PURE__ */ keywordProp('hanging-punctuation', ['allow-end', 'first', 'force-end', 'last', 'none']);
997
+ export const height = /* @__PURE__ */ valueProp('height', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
998
+ export const hyphenateCharacter = /* @__PURE__ */ valueProp('hyphenate-character', ['string'], ['auto']);
999
+ export const hyphenateLimitChars = /* @__PURE__ */ valueProp('hyphenate-limit-chars', ['integer'], ['auto']);
1000
+ export const hyphens = /* @__PURE__ */ keywordProp('hyphens', [
1001
+ 'auto',
1002
+ 'manual',
1003
+ 'none',
1004
+ ]);
1005
+ export const imageOrientation = /* @__PURE__ */ valueProp('image-orientation', ['angle'], ['flip', 'from-image']);
1006
+ export const imageRendering = /* @__PURE__ */ keywordProp('image-rendering', [
1007
+ 'auto',
1008
+ 'crisp-edges',
1009
+ 'pixelated',
1010
+ 'smooth',
1011
+ ]);
1012
+ export const initialLetter = /* @__PURE__ */ valueProp('initial-letter', ['number'], ['normal']);
1013
+ export const inlineSize = /* @__PURE__ */ valueProp('inline-size', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1014
+ export const inset = /* @__PURE__ */ valueProp('inset', ['lengthPercentage'], ['auto']);
1015
+ export const insetBlock = /* @__PURE__ */ valueProp('inset-block', ['lengthPercentage'], ['auto']);
1016
+ export const insetBlockEnd = /* @__PURE__ */ valueProp('inset-block-end', ['lengthPercentage'], ['auto']);
1017
+ export const insetBlockStart = /* @__PURE__ */ valueProp('inset-block-start', ['lengthPercentage'], ['auto']);
1018
+ export const insetInline = /* @__PURE__ */ valueProp('inset-inline', ['lengthPercentage'], ['auto']);
1019
+ export const insetInlineEnd = /* @__PURE__ */ valueProp('inset-inline-end', ['lengthPercentage'], ['auto']);
1020
+ export const insetInlineStart = /* @__PURE__ */ valueProp('inset-inline-start', ['lengthPercentage'], ['auto']);
1021
+ export const interactivity = /* @__PURE__ */ keywordProp('interactivity', [
1022
+ 'auto',
1023
+ 'inert',
1024
+ ]);
1025
+ export const interestDelay = /* @__PURE__ */ valueProp('interest-delay', ['time'], ['normal']);
1026
+ export const interestDelayEnd = /* @__PURE__ */ valueProp('interest-delay-end', ['time'], ['normal']);
1027
+ export const interestDelayStart = /* @__PURE__ */ valueProp('interest-delay-start', ['time'], ['normal']);
1028
+ export const isolation = /* @__PURE__ */ keywordProp('isolation', [
1029
+ 'auto',
1030
+ 'isolate',
1031
+ ]);
1032
+ export const justifyContent = /* @__PURE__ */ keywordProp('justify-content', [
1033
+ 'center',
1034
+ 'end',
1035
+ 'flex-end',
1036
+ 'flex-start',
1037
+ 'left',
1038
+ 'normal',
1039
+ 'right',
1040
+ 'space-around',
1041
+ 'space-between',
1042
+ 'space-evenly',
1043
+ 'start',
1044
+ 'stretch',
1045
+ ]);
1046
+ export const justifyItems = /* @__PURE__ */ keywordProp('justify-items', [
1047
+ 'anchor-center',
1048
+ 'baseline',
1049
+ 'center',
1050
+ 'end',
1051
+ 'flex-end',
1052
+ 'flex-start',
1053
+ 'left',
1054
+ 'legacy',
1055
+ 'normal',
1056
+ 'right',
1057
+ 'self-end',
1058
+ 'self-start',
1059
+ 'start',
1060
+ 'stretch',
1061
+ ]);
1062
+ export const justifySelf = /* @__PURE__ */ keywordProp('justify-self', [
1063
+ 'anchor-center',
1064
+ 'auto',
1065
+ 'baseline',
1066
+ 'center',
1067
+ 'end',
1068
+ 'flex-end',
1069
+ 'flex-start',
1070
+ 'left',
1071
+ 'normal',
1072
+ 'right',
1073
+ 'self-end',
1074
+ 'self-start',
1075
+ 'start',
1076
+ 'stretch',
1077
+ ]);
1078
+ export const left = /* @__PURE__ */ valueProp('left', ['lengthPercentage'], ['auto']);
1079
+ export const letterSpacing = /* @__PURE__ */ valueProp('letter-spacing', ['length'], ['normal']);
1080
+ export const lightingColor = /* @__PURE__ */ valueProp('lighting-color', ['color'], []);
1081
+ export const lineBreak = /* @__PURE__ */ keywordProp('line-break', [
1082
+ 'anywhere',
1083
+ 'auto',
1084
+ 'loose',
1085
+ 'normal',
1086
+ 'strict',
1087
+ ]);
1088
+ export const lineClamp = /* @__PURE__ */ valueProp('line-clamp', ['integer'], ['none']);
1089
+ export const lineHeight = /* @__PURE__ */ valueProp('line-height', ['length', 'number', 'percentage'], ['normal']);
1090
+ export const listStyle = /* @__PURE__ */ valueProp('list-style', ['ident', 'string', 'url'], ['inside', 'none', 'outside']);
1091
+ export const listStyleImage = /* @__PURE__ */ valueProp('list-style-image', ['url'], ['none']);
1092
+ export const listStylePosition = /* @__PURE__ */ keywordProp('list-style-position', ['inside', 'outside']);
1093
+ export const listStyleType = /* @__PURE__ */ valueProp('list-style-type', ['ident', 'string'], ['none']);
1094
+ export const margin = /* @__PURE__ */ valueProp('margin', ['lengthPercentage'], ['auto']);
1095
+ export const marginBlock = /* @__PURE__ */ valueProp('margin-block', ['lengthPercentage'], ['auto']);
1096
+ export const marginBlockEnd = /* @__PURE__ */ valueProp('margin-block-end', ['lengthPercentage'], ['auto']);
1097
+ export const marginBlockStart = /* @__PURE__ */ valueProp('margin-block-start', ['lengthPercentage'], ['auto']);
1098
+ export const marginBottom = /* @__PURE__ */ valueProp('margin-bottom', ['lengthPercentage'], ['auto']);
1099
+ export const marginInline = /* @__PURE__ */ valueProp('margin-inline', ['lengthPercentage'], ['auto']);
1100
+ export const marginInlineEnd = /* @__PURE__ */ valueProp('margin-inline-end', ['lengthPercentage'], ['auto']);
1101
+ export const marginInlineStart = /* @__PURE__ */ valueProp('margin-inline-start', ['lengthPercentage'], ['auto']);
1102
+ export const marginLeft = /* @__PURE__ */ valueProp('margin-left', ['lengthPercentage'], ['auto']);
1103
+ export const marginRight = /* @__PURE__ */ valueProp('margin-right', ['lengthPercentage'], ['auto']);
1104
+ export const marginTop = /* @__PURE__ */ valueProp('margin-top', ['lengthPercentage'], ['auto']);
1105
+ export const marker = /* @__PURE__ */ valueProp('marker', ['url'], ['none']);
1106
+ export const markerEnd = /* @__PURE__ */ valueProp('marker-end', ['url'], ['none']);
1107
+ export const markerMid = /* @__PURE__ */ valueProp('marker-mid', ['url'], ['none']);
1108
+ export const markerStart = /* @__PURE__ */ valueProp('marker-start', ['url'], ['none']);
1109
+ export const mask = /* @__PURE__ */ valueProp('mask', ['url'], [
1110
+ 'fill-box',
1111
+ 'intersect',
1112
+ 'luminance',
1113
+ 'margin-box',
1114
+ 'match-source',
1115
+ 'none',
1116
+ 'repeat',
1117
+ 'repeat-y',
1118
+ 'round',
1119
+ 'space',
1120
+ 'stroke-box',
1121
+ 'subtract',
1122
+ ]);
1123
+ export const maskBorder = /* @__PURE__ */ valueProp('mask-border', ['number', 'percentage', 'url'], [
1124
+ 'alpha',
1125
+ 'luminance',
1126
+ 'none',
1127
+ 'repeat',
1128
+ 'round',
1129
+ 'space',
1130
+ 'stretch',
1131
+ ]);
1132
+ export const maskBorderMode = /* @__PURE__ */ keywordProp('mask-border-mode', [
1133
+ 'alpha',
1134
+ 'luminance',
1135
+ ]);
1136
+ export const maskBorderOutset = /* @__PURE__ */ valueProp('mask-border-outset', ['length', 'number'], []);
1137
+ export const maskBorderRepeat = /* @__PURE__ */ keywordProp('mask-border-repeat', ['repeat', 'round', 'space', 'stretch']);
1138
+ export const maskBorderSlice = /* @__PURE__ */ valueProp('mask-border-slice', ['number', 'percentage'], []);
1139
+ export const maskBorderSource = /* @__PURE__ */ valueProp('mask-border-source', ['url'], ['none']);
1140
+ export const maskBorderWidth = /* @__PURE__ */ valueProp('mask-border-width', ['lengthPercentage', 'number'], ['auto']);
1141
+ export const maskClip = /* @__PURE__ */ keywordProp('mask-clip', [
1142
+ 'border-box',
1143
+ 'content-box',
1144
+ 'fill-box',
1145
+ 'no-clip',
1146
+ 'padding-box',
1147
+ 'stroke-box',
1148
+ 'view-box',
1149
+ ]);
1150
+ export const maskComposite = /* @__PURE__ */ keywordProp('mask-composite', [
1151
+ 'add',
1152
+ 'exclude',
1153
+ 'intersect',
1154
+ 'subtract',
1155
+ ]);
1156
+ export const maskImage = /* @__PURE__ */ valueProp('mask-image', ['url'], ['none']);
1157
+ export const maskMode = /* @__PURE__ */ keywordProp('mask-mode', [
1158
+ 'alpha',
1159
+ 'luminance',
1160
+ 'match-source',
1161
+ ]);
1162
+ export const maskOrigin = /* @__PURE__ */ keywordProp('mask-origin', [
1163
+ 'border-box',
1164
+ 'content-box',
1165
+ 'fill-box',
1166
+ 'padding-box',
1167
+ 'stroke-box',
1168
+ 'view-box',
1169
+ ]);
1170
+ export const maskPosition = /* @__PURE__ */ keywordProp('mask-position', [
1171
+ 'center',
1172
+ 'left',
1173
+ 'right',
1174
+ ]);
1175
+ export const maskRepeat = /* @__PURE__ */ keywordProp('mask-repeat', [
1176
+ 'no-repeat',
1177
+ 'repeat',
1178
+ 'repeat-x',
1179
+ 'repeat-y',
1180
+ 'round',
1181
+ 'space',
1182
+ ]);
1183
+ export const maskSize = /* @__PURE__ */ valueProp('mask-size', ['lengthPercentage'], ['auto', 'contain', 'cover']);
1184
+ export const maskType = /* @__PURE__ */ keywordProp('mask-type', [
1185
+ 'alpha',
1186
+ 'luminance',
1187
+ ]);
1188
+ export const mathDepth = /* @__PURE__ */ valueProp('math-depth', ['integer'], ['auto-add']);
1189
+ export const mathStyle = /* @__PURE__ */ keywordProp('math-style', [
1190
+ 'compact',
1191
+ 'normal',
1192
+ ]);
1193
+ export const maxBlockSize = /* @__PURE__ */ valueProp('max-block-size', ['lengthPercentage'], ['fit-content', 'max-content', 'min-content', 'none']);
1194
+ export const maxHeight = /* @__PURE__ */ valueProp('max-height', ['lengthPercentage'], ['fit-content', 'max-content', 'min-content', 'none']);
1195
+ export const maxInlineSize = /* @__PURE__ */ valueProp('max-inline-size', ['lengthPercentage'], ['fit-content', 'max-content', 'min-content', 'none']);
1196
+ export const maxWidth = /* @__PURE__ */ valueProp('max-width', ['lengthPercentage'], ['fit-content', 'max-content', 'min-content', 'none']);
1197
+ export const minBlockSize = /* @__PURE__ */ valueProp('min-block-size', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1198
+ export const minHeight = /* @__PURE__ */ valueProp('min-height', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1199
+ export const minInlineSize = /* @__PURE__ */ valueProp('min-inline-size', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1200
+ export const minWidth = /* @__PURE__ */ valueProp('min-width', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1201
+ export const mixBlendMode = /* @__PURE__ */ keywordProp('mix-blend-mode', [
1202
+ 'color',
1203
+ 'color-burn',
1204
+ 'color-dodge',
1205
+ 'darken',
1206
+ 'difference',
1207
+ 'exclusion',
1208
+ 'hard-light',
1209
+ 'hue',
1210
+ 'lighten',
1211
+ 'luminosity',
1212
+ 'multiply',
1213
+ 'normal',
1214
+ 'overlay',
1215
+ 'plus-darker',
1216
+ 'plus-lighter',
1217
+ 'saturation',
1218
+ 'screen',
1219
+ 'soft-light',
1220
+ ]);
1221
+ export const objectFit = /* @__PURE__ */ keywordProp('object-fit', [
1222
+ 'contain',
1223
+ 'cover',
1224
+ 'fill',
1225
+ 'none',
1226
+ 'scale-down',
1227
+ ]);
1228
+ export const objectPosition = /* @__PURE__ */ keywordProp('object-position', [
1229
+ 'center',
1230
+ 'left',
1231
+ 'right',
1232
+ ]);
1233
+ export const offsetAnchor = /* @__PURE__ */ keywordProp('offset-anchor', [
1234
+ 'auto',
1235
+ 'center',
1236
+ 'left',
1237
+ 'right',
1238
+ ]);
1239
+ export const offsetDistance = /* @__PURE__ */ valueProp('offset-distance', ['lengthPercentage'], []);
1240
+ export const offsetPath = /* @__PURE__ */ valueProp('offset-path', ['url'], [
1241
+ 'border-box',
1242
+ 'content-box',
1243
+ 'fill-box',
1244
+ 'none',
1245
+ 'padding-box',
1246
+ 'stroke-box',
1247
+ 'view-box',
1248
+ ]);
1249
+ export const offsetPosition = /* @__PURE__ */ keywordProp('offset-position', [
1250
+ 'auto',
1251
+ 'center',
1252
+ 'left',
1253
+ 'normal',
1254
+ 'right',
1255
+ ]);
1256
+ export const offsetRotate = /* @__PURE__ */ valueProp('offset-rotate', ['angle'], ['auto', 'reverse']);
1257
+ export const opacity = /* @__PURE__ */ valueProp('opacity', ['number', 'percentage'], []);
1258
+ export const order = /* @__PURE__ */ valueProp('order', ['integer'], []);
1259
+ export const orphans = /* @__PURE__ */ valueProp('orphans', ['integer'], []);
1260
+ export const outline = /* @__PURE__ */ valueProp('outline', ['color', 'length'], [
1261
+ 'auto',
1262
+ 'dashed',
1263
+ 'dotted',
1264
+ 'double',
1265
+ 'groove',
1266
+ 'inset',
1267
+ 'medium',
1268
+ 'none',
1269
+ 'outset',
1270
+ 'ridge',
1271
+ 'solid',
1272
+ 'thick',
1273
+ 'thin',
1274
+ ]);
1275
+ export const outlineColor = /* @__PURE__ */ valueProp('outline-color', ['color'], ['auto']);
1276
+ export const outlineOffset = /* @__PURE__ */ valueProp('outline-offset', ['length'], []);
1277
+ export const outlineStyle = /* @__PURE__ */ keywordProp('outline-style', [
1278
+ 'auto',
1279
+ 'dashed',
1280
+ 'dotted',
1281
+ 'double',
1282
+ 'groove',
1283
+ 'inset',
1284
+ 'none',
1285
+ 'outset',
1286
+ 'ridge',
1287
+ 'solid',
1288
+ ]);
1289
+ export const outlineWidth = /* @__PURE__ */ valueProp('outline-width', ['length'], ['medium', 'thick', 'thin']);
1290
+ export const overflowAnchor = /* @__PURE__ */ keywordProp('overflow-anchor', [
1291
+ 'auto',
1292
+ 'none',
1293
+ ]);
1294
+ export const overflowWrap = /* @__PURE__ */ keywordProp('overflow-wrap', [
1295
+ 'anywhere',
1296
+ 'break-word',
1297
+ 'normal',
1298
+ ]);
1299
+ export const overscrollBehavior = /* @__PURE__ */ keywordProp('overscroll-behavior', ['auto', 'contain', 'none']);
1300
+ export const overscrollBehaviorBlock = /* @__PURE__ */ keywordProp('overscroll-behavior-block', ['auto', 'contain', 'none']);
1301
+ export const overscrollBehaviorInline = /* @__PURE__ */ keywordProp('overscroll-behavior-inline', ['auto', 'contain', 'none']);
1302
+ export const overscrollBehaviorX = /* @__PURE__ */ keywordProp('overscroll-behavior-x', ['auto', 'contain', 'none']);
1303
+ export const overscrollBehaviorY = /* @__PURE__ */ keywordProp('overscroll-behavior-y', ['auto', 'contain', 'none']);
1304
+ export const padding = /* @__PURE__ */ valueProp('padding', ['lengthPercentage'], []);
1305
+ export const paddingBlock = /* @__PURE__ */ valueProp('padding-block', ['lengthPercentage'], []);
1306
+ export const paddingBlockEnd = /* @__PURE__ */ valueProp('padding-block-end', ['lengthPercentage'], []);
1307
+ export const paddingBlockStart = /* @__PURE__ */ valueProp('padding-block-start', ['lengthPercentage'], []);
1308
+ export const paddingBottom = /* @__PURE__ */ valueProp('padding-bottom', ['lengthPercentage'], []);
1309
+ export const paddingInline = /* @__PURE__ */ valueProp('padding-inline', ['lengthPercentage'], []);
1310
+ export const paddingInlineEnd = /* @__PURE__ */ valueProp('padding-inline-end', ['lengthPercentage'], []);
1311
+ export const paddingInlineStart = /* @__PURE__ */ valueProp('padding-inline-start', ['lengthPercentage'], []);
1312
+ export const paddingLeft = /* @__PURE__ */ valueProp('padding-left', ['lengthPercentage'], []);
1313
+ export const paddingRight = /* @__PURE__ */ valueProp('padding-right', ['lengthPercentage'], []);
1314
+ export const paddingTop = /* @__PURE__ */ valueProp('padding-top', ['lengthPercentage'], []);
1315
+ export const page = /* @__PURE__ */ valueProp('page', ['ident'], ['auto']);
1316
+ export const paintOrder = /* @__PURE__ */ keywordProp('paint-order', [
1317
+ 'fill',
1318
+ 'markers',
1319
+ 'normal',
1320
+ 'stroke',
1321
+ ]);
1322
+ export const pathLength = /* @__PURE__ */ keywordProp('path-length', [
1323
+ 'none',
1324
+ ]);
1325
+ export const perspective = /* @__PURE__ */ valueProp('perspective', ['length'], ['none']);
1326
+ export const perspectiveOrigin = /* @__PURE__ */ keywordProp('perspective-origin', ['center', 'left', 'right']);
1327
+ export const placeContent = /* @__PURE__ */ keywordProp('place-content', [
1328
+ 'baseline',
1329
+ 'center',
1330
+ 'end',
1331
+ 'flex-end',
1332
+ 'flex-start',
1333
+ 'normal',
1334
+ 'space-around',
1335
+ 'space-between',
1336
+ 'space-evenly',
1337
+ 'start',
1338
+ 'stretch',
1339
+ ]);
1340
+ export const placeItems = /* @__PURE__ */ keywordProp('place-items', [
1341
+ 'anchor-center',
1342
+ 'baseline',
1343
+ 'center',
1344
+ 'end',
1345
+ 'flex-end',
1346
+ 'flex-start',
1347
+ 'normal',
1348
+ 'self-end',
1349
+ 'self-start',
1350
+ 'start',
1351
+ 'stretch',
1352
+ ]);
1353
+ export const placeSelf = /* @__PURE__ */ keywordProp('place-self', [
1354
+ 'anchor-center',
1355
+ 'auto',
1356
+ 'baseline',
1357
+ 'center',
1358
+ 'end',
1359
+ 'flex-end',
1360
+ 'flex-start',
1361
+ 'normal',
1362
+ 'self-end',
1363
+ 'self-start',
1364
+ 'start',
1365
+ 'stretch',
1366
+ ]);
1367
+ export const pointerEvents = /* @__PURE__ */ keywordProp('pointer-events', [
1368
+ 'all',
1369
+ 'auto',
1370
+ 'fill',
1371
+ 'inherit',
1372
+ 'none',
1373
+ 'painted',
1374
+ 'stroke',
1375
+ 'visible',
1376
+ 'visibleFill',
1377
+ 'visiblePainted',
1378
+ 'visibleStroke',
1379
+ ]);
1380
+ export const position = /* @__PURE__ */ keywordProp('position', [
1381
+ 'absolute',
1382
+ 'fixed',
1383
+ 'relative',
1384
+ 'static',
1385
+ 'sticky',
1386
+ ]);
1387
+ export const printColorAdjust = /* @__PURE__ */ keywordProp('print-color-adjust', ['economy', 'exact']);
1388
+ export const quotes = /* @__PURE__ */ keywordProp('quotes', [
1389
+ 'auto',
1390
+ 'none',
1391
+ ]);
1392
+ export const r = /* @__PURE__ */ valueProp('r', ['length', 'percentage'], []);
1393
+ export const readingFlow = /* @__PURE__ */ keywordProp('reading-flow', [
1394
+ 'flex-flow',
1395
+ 'flex-visual',
1396
+ 'grid-columns',
1397
+ 'grid-order',
1398
+ 'grid-rows',
1399
+ 'normal',
1400
+ 'source-order',
1401
+ ]);
1402
+ export const readingOrder = /* @__PURE__ */ valueProp('reading-order', ['integer'], []);
1403
+ export const resize = /* @__PURE__ */ keywordProp('resize', [
1404
+ 'block',
1405
+ 'both',
1406
+ 'horizontal',
1407
+ 'inline',
1408
+ 'none',
1409
+ 'vertical',
1410
+ ]);
1411
+ export const right = /* @__PURE__ */ valueProp('right', ['lengthPercentage'], ['auto']);
1412
+ export const rotate = /* @__PURE__ */ valueProp('rotate', ['angle'], ['none']);
1413
+ export const rowGap = /* @__PURE__ */ valueProp('row-gap', ['lengthPercentage'], ['normal']);
1414
+ export const rubyAlign = /* @__PURE__ */ keywordProp('ruby-align', [
1415
+ 'center',
1416
+ 'space-around',
1417
+ 'space-between',
1418
+ 'start',
1419
+ ]);
1420
+ export const rubyOverhang = /* @__PURE__ */ keywordProp('ruby-overhang', [
1421
+ 'auto',
1422
+ 'none',
1423
+ ]);
1424
+ export const rubyPosition = /* @__PURE__ */ keywordProp('ruby-position', [
1425
+ 'alternate',
1426
+ 'inter-character',
1427
+ 'over',
1428
+ 'under',
1429
+ ]);
1430
+ export const rx = /* @__PURE__ */ valueProp('rx', ['lengthPercentage'], ['auto']);
1431
+ export const ry = /* @__PURE__ */ valueProp('ry', ['lengthPercentage'], ['auto']);
1432
+ export const scale = /* @__PURE__ */ valueProp('scale', ['number', 'percentage'], ['none']);
1433
+ export const scrollBehavior = /* @__PURE__ */ keywordProp('scroll-behavior', [
1434
+ 'auto',
1435
+ 'smooth',
1436
+ ]);
1437
+ export const scrollMargin = /* @__PURE__ */ valueProp('scroll-margin', ['length'], []);
1438
+ export const scrollMarginBlock = /* @__PURE__ */ valueProp('scroll-margin-block', ['length'], []);
1439
+ export const scrollMarginBlockEnd = /* @__PURE__ */ valueProp('scroll-margin-block-end', ['length'], []);
1440
+ export const scrollMarginBlockStart = /* @__PURE__ */ valueProp('scroll-margin-block-start', ['length'], []);
1441
+ export const scrollMarginBottom = /* @__PURE__ */ valueProp('scroll-margin-bottom', ['length'], []);
1442
+ export const scrollMarginInline = /* @__PURE__ */ valueProp('scroll-margin-inline', ['length'], []);
1443
+ export const scrollMarginInlineEnd = /* @__PURE__ */ valueProp('scroll-margin-inline-end', ['length'], []);
1444
+ export const scrollMarginInlineStart = /* @__PURE__ */ valueProp('scroll-margin-inline-start', ['length'], []);
1445
+ export const scrollMarginLeft = /* @__PURE__ */ valueProp('scroll-margin-left', ['length'], []);
1446
+ export const scrollMarginRight = /* @__PURE__ */ valueProp('scroll-margin-right', ['length'], []);
1447
+ export const scrollMarginTop = /* @__PURE__ */ valueProp('scroll-margin-top', ['length'], []);
1448
+ export const scrollMarkerGroup = /* @__PURE__ */ keywordProp('scroll-marker-group', ['after', 'before', 'none']);
1449
+ export const scrollPadding = /* @__PURE__ */ valueProp('scroll-padding', ['lengthPercentage'], ['auto']);
1450
+ export const scrollPaddingBlock = /* @__PURE__ */ valueProp('scroll-padding-block', ['lengthPercentage'], ['auto']);
1451
+ export const scrollPaddingBlockEnd = /* @__PURE__ */ valueProp('scroll-padding-block-end', ['lengthPercentage'], ['auto']);
1452
+ export const scrollPaddingBlockStart = /* @__PURE__ */ valueProp('scroll-padding-block-start', ['lengthPercentage'], ['auto']);
1453
+ export const scrollPaddingBottom = /* @__PURE__ */ valueProp('scroll-padding-bottom', ['lengthPercentage'], ['auto']);
1454
+ export const scrollPaddingInline = /* @__PURE__ */ valueProp('scroll-padding-inline', ['lengthPercentage'], ['auto']);
1455
+ export const scrollPaddingInlineEnd = /* @__PURE__ */ valueProp('scroll-padding-inline-end', ['lengthPercentage'], ['auto']);
1456
+ export const scrollPaddingInlineStart = /* @__PURE__ */ valueProp('scroll-padding-inline-start', ['lengthPercentage'], ['auto']);
1457
+ export const scrollPaddingLeft = /* @__PURE__ */ valueProp('scroll-padding-left', ['lengthPercentage'], ['auto']);
1458
+ export const scrollPaddingRight = /* @__PURE__ */ valueProp('scroll-padding-right', ['lengthPercentage'], ['auto']);
1459
+ export const scrollPaddingTop = /* @__PURE__ */ valueProp('scroll-padding-top', ['lengthPercentage'], ['auto']);
1460
+ export const scrollSnapAlign = /* @__PURE__ */ keywordProp('scroll-snap-align', ['center', 'end', 'none', 'start']);
1461
+ export const scrollSnapStop = /* @__PURE__ */ keywordProp('scroll-snap-stop', [
1462
+ 'always',
1463
+ 'normal',
1464
+ ]);
1465
+ export const scrollSnapType = /* @__PURE__ */ keywordProp('scroll-snap-type', [
1466
+ 'block',
1467
+ 'both',
1468
+ 'inline',
1469
+ 'none',
1470
+ 'x',
1471
+ 'y',
1472
+ ]);
1473
+ export const scrollTargetGroup = /* @__PURE__ */ keywordProp('scroll-target-group', ['auto', 'none']);
1474
+ export const scrollbarColor = /* @__PURE__ */ valueProp('scrollbar-color', ['color'], ['auto']);
1475
+ export const scrollbarGutter = /* @__PURE__ */ keywordProp('scrollbar-gutter', [
1476
+ 'auto',
1477
+ ]);
1478
+ export const scrollbarWidth = /* @__PURE__ */ keywordProp('scrollbar-width', [
1479
+ 'auto',
1480
+ 'none',
1481
+ 'thin',
1482
+ ]);
1483
+ export const shapeImageThreshold = /* @__PURE__ */ valueProp('shape-image-threshold', ['number', 'percentage'], []);
1484
+ export const shapeMargin = /* @__PURE__ */ valueProp('shape-margin', ['lengthPercentage'], []);
1485
+ export const shapeOutside = /* @__PURE__ */ valueProp('shape-outside', ['url'], ['border-box', 'content-box', 'none', 'padding-box']);
1486
+ export const shapeRendering = /* @__PURE__ */ keywordProp('shape-rendering', [
1487
+ 'auto',
1488
+ 'crispEdges',
1489
+ 'geometricPrecision',
1490
+ 'optimizeSpeed',
1491
+ ]);
1492
+ export const stopColor = /* @__PURE__ */ valueProp('stop-color', ['color'], []);
1493
+ export const stopOpacity = /* @__PURE__ */ valueProp('stop-opacity', ['number', 'percentage'], []);
1494
+ export const stroke = /* @__PURE__ */ valueProp('stroke', ['color', 'url'], ['context-fill', 'context-stroke', 'none']);
1495
+ export const strokeDasharray = /* @__PURE__ */ valueProp('stroke-dasharray', ['lengthPercentage', 'number'], ['none']);
1496
+ export const strokeDashoffset = /* @__PURE__ */ valueProp('stroke-dashoffset', ['lengthPercentage', 'number'], []);
1497
+ export const strokeLinecap = /* @__PURE__ */ keywordProp('stroke-linecap', [
1498
+ 'butt',
1499
+ 'round',
1500
+ 'square',
1501
+ ]);
1502
+ export const strokeLinejoin = /* @__PURE__ */ keywordProp('stroke-linejoin', [
1503
+ 'arcs',
1504
+ 'bevel',
1505
+ 'miter',
1506
+ 'miter-clip',
1507
+ 'round',
1508
+ ]);
1509
+ export const strokeMiterlimit = /* @__PURE__ */ valueProp('stroke-miterlimit', ['number'], []);
1510
+ export const strokeOpacity = /* @__PURE__ */ valueProp('stroke-opacity', ['number', 'percentage'], []);
1511
+ export const strokeWidth = /* @__PURE__ */ valueProp('stroke-width', ['lengthPercentage', 'number'], []);
1512
+ export const tabSize = /* @__PURE__ */ valueProp('tab-size', ['integer', 'length'], []);
1513
+ export const tableLayout = /* @__PURE__ */ keywordProp('table-layout', [
1514
+ 'auto',
1515
+ 'fixed',
1516
+ ]);
1517
+ export const textAlign = /* @__PURE__ */ keywordProp('text-align', [
1518
+ 'center',
1519
+ 'end',
1520
+ 'justify',
1521
+ 'left',
1522
+ 'match-parent',
1523
+ 'right',
1524
+ 'start',
1525
+ ]);
1526
+ export const textAlignLast = /* @__PURE__ */ keywordProp('text-align-last', [
1527
+ 'auto',
1528
+ 'center',
1529
+ 'end',
1530
+ 'justify',
1531
+ 'left',
1532
+ 'right',
1533
+ 'start',
1534
+ ]);
1535
+ export const textAnchor = /* @__PURE__ */ keywordProp('text-anchor', [
1536
+ 'end',
1537
+ 'middle',
1538
+ 'start',
1539
+ ]);
1540
+ export const textAutospace = /* @__PURE__ */ keywordProp('text-autospace', [
1541
+ 'auto',
1542
+ 'normal',
1543
+ ]);
1544
+ export const textBox = /* @__PURE__ */ keywordProp('text-box', [
1545
+ 'auto',
1546
+ 'cap',
1547
+ 'ex',
1548
+ 'ideographic',
1549
+ 'ideographic-ink',
1550
+ 'none',
1551
+ 'normal',
1552
+ 'text',
1553
+ 'trim-both',
1554
+ 'trim-end',
1555
+ 'trim-start',
1556
+ ]);
1557
+ export const textBoxEdge = /* @__PURE__ */ keywordProp('text-box-edge', [
1558
+ 'auto',
1559
+ 'cap',
1560
+ 'ex',
1561
+ 'ideographic',
1562
+ 'ideographic-ink',
1563
+ 'text',
1564
+ ]);
1565
+ export const textBoxTrim = /* @__PURE__ */ keywordProp('text-box-trim', [
1566
+ 'none',
1567
+ 'trim-both',
1568
+ 'trim-end',
1569
+ 'trim-start',
1570
+ ]);
1571
+ export const textCombineUpright = /* @__PURE__ */ keywordProp('text-combine-upright', ['all', 'digits', 'none']);
1572
+ export const textDecoration = /* @__PURE__ */ valueProp('text-decoration', ['color', 'length', 'percentage'], [
1573
+ 'auto',
1574
+ 'blink',
1575
+ 'dashed',
1576
+ 'dotted',
1577
+ 'double',
1578
+ 'from-font',
1579
+ 'grammar-error',
1580
+ 'line-through',
1581
+ 'none',
1582
+ 'overline',
1583
+ 'solid',
1584
+ 'spelling-error',
1585
+ 'underline',
1586
+ 'wavy',
1587
+ ]);
1588
+ export const textDecorationColor = /* @__PURE__ */ valueProp('text-decoration-color', ['color'], []);
1589
+ export const textDecorationInset = /* @__PURE__ */ valueProp('text-decoration-inset', ['lengthPercentage'], ['auto']);
1590
+ export const textDecorationLine = /* @__PURE__ */ keywordProp('text-decoration-line', [
1591
+ 'blink',
1592
+ 'grammar-error',
1593
+ 'line-through',
1594
+ 'none',
1595
+ 'overline',
1596
+ 'spelling-error',
1597
+ 'underline',
1598
+ ]);
1599
+ export const textDecorationSkipInk = /* @__PURE__ */ keywordProp('text-decoration-skip-ink', ['all', 'auto', 'none']);
1600
+ export const textDecorationStyle = /* @__PURE__ */ keywordProp('text-decoration-style', ['dashed', 'dotted', 'double', 'solid', 'wavy']);
1601
+ export const textDecorationThickness = /* @__PURE__ */ valueProp('text-decoration-thickness', ['length', 'percentage'], ['auto', 'from-font']);
1602
+ export const textEmphasis = /* @__PURE__ */ valueProp('text-emphasis', ['color', 'string'], ['circle', 'double-circle', 'filled', 'none', 'sesame', 'triangle']);
1603
+ export const textEmphasisColor = /* @__PURE__ */ valueProp('text-emphasis-color', ['color'], []);
1604
+ export const textEmphasisPosition = /* @__PURE__ */ keywordProp('text-emphasis-position', ['auto']);
1605
+ export const textEmphasisStyle = /* @__PURE__ */ valueProp('text-emphasis-style', ['string'], ['circle', 'double-circle', 'filled', 'none', 'sesame', 'triangle']);
1606
+ export const textFit = /* @__PURE__ */ keywordProp('text-fit', [
1607
+ 'grow',
1608
+ 'none',
1609
+ 'shrink',
1610
+ ]);
1611
+ export const textJustify = /* @__PURE__ */ keywordProp('text-justify', [
1612
+ 'auto',
1613
+ 'inter-character',
1614
+ 'inter-word',
1615
+ 'none',
1616
+ ]);
1617
+ export const textOrientation = /* @__PURE__ */ keywordProp('text-orientation', [
1618
+ 'mixed',
1619
+ 'sideways',
1620
+ 'upright',
1621
+ ]);
1622
+ export const textOverflow = /* @__PURE__ */ valueProp('text-overflow', ['string'], ['clip', 'ellipsis']);
1623
+ export const textRendering = /* @__PURE__ */ keywordProp('text-rendering', [
1624
+ 'auto',
1625
+ 'geometricPrecision',
1626
+ 'optimizeLegibility',
1627
+ 'optimizeSpeed',
1628
+ ]);
1629
+ export const textShadow = /* @__PURE__ */ keywordProp('text-shadow', [
1630
+ 'none',
1631
+ ]);
1632
+ export const textTransform = /* @__PURE__ */ keywordProp('text-transform', [
1633
+ 'capitalize',
1634
+ 'full-size-kana',
1635
+ 'full-width',
1636
+ 'lowercase',
1637
+ 'math-auto',
1638
+ 'none',
1639
+ 'uppercase',
1640
+ ]);
1641
+ export const textUnderlineOffset = /* @__PURE__ */ valueProp('text-underline-offset', ['length', 'percentage'], ['auto']);
1642
+ export const textUnderlinePosition = /* @__PURE__ */ keywordProp('text-underline-position', ['auto', 'from-font', 'left', 'right', 'under']);
1643
+ export const textWrap = /* @__PURE__ */ keywordProp('text-wrap', [
1644
+ 'auto',
1645
+ 'balance',
1646
+ 'nowrap',
1647
+ 'pretty',
1648
+ 'stable',
1649
+ 'wrap',
1650
+ ]);
1651
+ export const textWrapMode = /* @__PURE__ */ keywordProp('text-wrap-mode', [
1652
+ 'nowrap',
1653
+ 'wrap',
1654
+ ]);
1655
+ export const textWrapStyle = /* @__PURE__ */ keywordProp('text-wrap-style', [
1656
+ 'auto',
1657
+ 'balance',
1658
+ 'pretty',
1659
+ 'stable',
1660
+ ]);
1661
+ export const timelineTrigger = /* @__PURE__ */ keywordProp('timeline-trigger', [
1662
+ 'none',
1663
+ ]);
1664
+ export const timelineTriggerActivationRange = /* @__PURE__ */ valueProp('timeline-trigger-activation-range', ['lengthPercentage'], [
1665
+ 'contain',
1666
+ 'cover',
1667
+ 'entry',
1668
+ 'entry-crossing',
1669
+ 'exit',
1670
+ 'exit-crossing',
1671
+ 'normal',
1672
+ ]);
1673
+ export const timelineTriggerActivationRangeEnd = /* @__PURE__ */ valueProp('timeline-trigger-activation-range-end', ['lengthPercentage'], [
1674
+ 'contain',
1675
+ 'cover',
1676
+ 'entry',
1677
+ 'entry-crossing',
1678
+ 'exit',
1679
+ 'exit-crossing',
1680
+ 'normal',
1681
+ ]);
1682
+ export const timelineTriggerActivationRangeStart = /* @__PURE__ */ valueProp('timeline-trigger-activation-range-start', ['lengthPercentage'], [
1683
+ 'contain',
1684
+ 'cover',
1685
+ 'entry',
1686
+ 'entry-crossing',
1687
+ 'exit',
1688
+ 'exit-crossing',
1689
+ 'normal',
1690
+ ]);
1691
+ export const timelineTriggerActiveRange = /* @__PURE__ */ valueProp('timeline-trigger-active-range', ['lengthPercentage'], [
1692
+ 'auto',
1693
+ 'contain',
1694
+ 'cover',
1695
+ 'entry',
1696
+ 'entry-crossing',
1697
+ 'exit',
1698
+ 'exit-crossing',
1699
+ 'normal',
1700
+ ]);
1701
+ export const timelineTriggerActiveRangeEnd = /* @__PURE__ */ valueProp('timeline-trigger-active-range-end', ['lengthPercentage'], [
1702
+ 'auto',
1703
+ 'contain',
1704
+ 'cover',
1705
+ 'entry',
1706
+ 'entry-crossing',
1707
+ 'exit',
1708
+ 'exit-crossing',
1709
+ 'normal',
1710
+ ]);
1711
+ export const timelineTriggerActiveRangeStart = /* @__PURE__ */ valueProp('timeline-trigger-active-range-start', ['lengthPercentage'], [
1712
+ 'auto',
1713
+ 'contain',
1714
+ 'cover',
1715
+ 'entry',
1716
+ 'entry-crossing',
1717
+ 'exit',
1718
+ 'exit-crossing',
1719
+ 'normal',
1720
+ ]);
1721
+ export const timelineTriggerName = /* @__PURE__ */ valueProp('timeline-trigger-name', ['ident'], ['none']);
1722
+ export const timelineTriggerSource = /* @__PURE__ */ valueProp('timeline-trigger-source', ['ident'], ['auto', 'none']);
1723
+ export const top = /* @__PURE__ */ valueProp('top', ['lengthPercentage'], ['auto']);
1724
+ export const touchAction = /* @__PURE__ */ keywordProp('touch-action', [
1725
+ 'auto',
1726
+ 'manipulation',
1727
+ 'none',
1728
+ 'pan-down',
1729
+ 'pan-left',
1730
+ 'pan-right',
1731
+ 'pan-up',
1732
+ 'pan-x',
1733
+ 'pan-y',
1734
+ 'pinch-zoom',
1735
+ ]);
1736
+ export const transform = /* @__PURE__ */ keywordProp('transform', [
1737
+ 'none',
1738
+ ]);
1739
+ export const transformBox = /* @__PURE__ */ keywordProp('transform-box', [
1740
+ 'border-box',
1741
+ 'content-box',
1742
+ 'fill-box',
1743
+ 'stroke-box',
1744
+ 'view-box',
1745
+ ]);
1746
+ export const transformOrigin = /* @__PURE__ */ valueProp('transform-origin', ['lengthPercentage'], ['bottom', 'center', 'left', 'right', 'top']);
1747
+ export const transformStyle = /* @__PURE__ */ keywordProp('transform-style', [
1748
+ 'flat',
1749
+ 'preserve-3d',
1750
+ ]);
1751
+ export const transition = /* @__PURE__ */ keywordProp('transition', [
1752
+ 'all',
1753
+ 'allow-discrete',
1754
+ 'ease',
1755
+ 'ease-in',
1756
+ 'ease-in-out',
1757
+ 'ease-out',
1758
+ 'none',
1759
+ ]);
1760
+ export const transitionBehavior = /* @__PURE__ */ keywordProp('transition-behavior', ['allow-discrete', 'normal']);
1761
+ export const transitionDelay = /* @__PURE__ */ valueProp('transition-delay', ['time'], []);
1762
+ export const transitionDuration = /* @__PURE__ */ valueProp('transition-duration', ['time'], []);
1763
+ export const transitionProperty = /* @__PURE__ */ valueProp('transition-property', ['ident'], ['all', 'none']);
1764
+ export const transitionTimingFunction = /* @__PURE__ */ keywordProp('transition-timing-function', ['ease-in', 'ease-in-out', 'ease-out', 'linear', 'step-end']);
1765
+ export const translate = /* @__PURE__ */ valueProp('translate', ['lengthPercentage'], ['none']);
1766
+ export const triggerScope = /* @__PURE__ */ valueProp('trigger-scope', ['ident'], ['all', 'none']);
1767
+ export const unicodeBidi = /* @__PURE__ */ keywordProp('unicode-bidi', [
1768
+ 'bidi-override',
1769
+ 'embed',
1770
+ 'isolate',
1771
+ 'isolate-override',
1772
+ 'normal',
1773
+ 'plaintext',
1774
+ ]);
1775
+ export const userSelect = /* @__PURE__ */ keywordProp('user-select', [
1776
+ 'all',
1777
+ 'auto',
1778
+ 'none',
1779
+ 'text',
1780
+ ]);
1781
+ export const vectorEffect = /* @__PURE__ */ keywordProp('vector-effect', [
1782
+ 'fixed-position',
1783
+ 'non-rotation',
1784
+ 'non-scaling-size',
1785
+ 'non-scaling-stroke',
1786
+ 'none',
1787
+ ]);
1788
+ export const verticalAlign = /* @__PURE__ */ valueProp('vertical-align', ['length', 'percentage'], [
1789
+ 'baseline',
1790
+ 'bottom',
1791
+ 'middle',
1792
+ 'sub',
1793
+ 'super',
1794
+ 'text-bottom',
1795
+ 'text-top',
1796
+ 'top',
1797
+ ]);
1798
+ export const viewTransitionClass = /* @__PURE__ */ valueProp('view-transition-class', ['ident'], ['none']);
1799
+ export const viewTransitionName = /* @__PURE__ */ valueProp('view-transition-name', ['ident'], ['match-element', 'none']);
1800
+ export const viewTransitionScope = /* @__PURE__ */ keywordProp('view-transition-scope', ['all', 'none']);
1801
+ export const visibility = /* @__PURE__ */ keywordProp('visibility', [
1802
+ 'collapse',
1803
+ 'hidden',
1804
+ 'visible',
1805
+ ]);
1806
+ export const whiteSpace = /* @__PURE__ */ keywordProp('white-space', [
1807
+ 'break-spaces',
1808
+ 'collapse',
1809
+ 'normal',
1810
+ 'nowrap',
1811
+ 'pre',
1812
+ 'pre-line',
1813
+ 'pre-wrap',
1814
+ 'preserve',
1815
+ 'preserve-breaks',
1816
+ 'preserve-spaces',
1817
+ 'wrap',
1818
+ ]);
1819
+ export const whiteSpaceCollapse = /* @__PURE__ */ keywordProp('white-space-collapse', [
1820
+ 'break-spaces',
1821
+ 'collapse',
1822
+ 'preserve',
1823
+ 'preserve-breaks',
1824
+ 'preserve-spaces',
1825
+ ]);
1826
+ export const widows = /* @__PURE__ */ valueProp('widows', ['integer'], []);
1827
+ export const width = /* @__PURE__ */ valueProp('width', ['lengthPercentage'], ['auto', 'fit-content', 'max-content', 'min-content']);
1828
+ export const willChange = /* @__PURE__ */ valueProp('will-change', ['ident'], ['auto', 'contents', 'scroll-position']);
1829
+ export const wordBreak = /* @__PURE__ */ keywordProp('word-break', [
1830
+ 'auto-phrase',
1831
+ 'break-all',
1832
+ 'break-word',
1833
+ 'keep-all',
1834
+ 'normal',
1835
+ ]);
1836
+ export const wordSpacing = /* @__PURE__ */ valueProp('word-spacing', ['length'], ['normal']);
1837
+ export const wordWrap = /* @__PURE__ */ keywordProp('word-wrap', [
1838
+ 'break-word',
1839
+ 'normal',
1840
+ ]);
1841
+ export const writingMode = /* @__PURE__ */ keywordProp('writing-mode', [
1842
+ 'horizontal-tb',
1843
+ 'sideways-lr',
1844
+ 'sideways-rl',
1845
+ 'vertical-lr',
1846
+ 'vertical-rl',
1847
+ ]);
1848
+ export const x = /* @__PURE__ */ valueProp('x', ['length', 'percentage'], []);
1849
+ export const y = /* @__PURE__ */ valueProp('y', ['length', 'percentage'], []);
1850
+ export const zIndex = /* @__PURE__ */ valueProp('z-index', ['integer'], ['auto']);
1851
+ export const zoom = /* @__PURE__ */ valueProp('zoom', ['number', 'percentage'], ['normal', 'reset']);
1852
+ /**
1853
+ * Property-name tokens, for the places that need to *name* a property rather
1854
+ * than set it — `global.inherit(prop.color)`, and the axis `writes` constraint.
1855
+ */
1856
+ export const prop = {
1857
+ accentColor: /* @__PURE__ */ propertyName('accent-color'),
1858
+ alignContent: /* @__PURE__ */ propertyName('align-content'),
1859
+ alignItems: /* @__PURE__ */ propertyName('align-items'),
1860
+ alignSelf: /* @__PURE__ */ propertyName('align-self'),
1861
+ alignmentBaseline: /* @__PURE__ */ propertyName('alignment-baseline'),
1862
+ all: /* @__PURE__ */ propertyName('all'),
1863
+ animation: /* @__PURE__ */ propertyName('animation'),
1864
+ animationComposition: /* @__PURE__ */ propertyName('animation-composition'),
1865
+ animationDelay: /* @__PURE__ */ propertyName('animation-delay'),
1866
+ animationDirection: /* @__PURE__ */ propertyName('animation-direction'),
1867
+ animationDuration: /* @__PURE__ */ propertyName('animation-duration'),
1868
+ animationFillMode: /* @__PURE__ */ propertyName('animation-fill-mode'),
1869
+ animationIterationCount: /* @__PURE__ */ propertyName('animation-iteration-count'),
1870
+ animationName: /* @__PURE__ */ propertyName('animation-name'),
1871
+ animationPlayState: /* @__PURE__ */ propertyName('animation-play-state'),
1872
+ animationTimingFunction: /* @__PURE__ */ propertyName('animation-timing-function'),
1873
+ animationTrigger: /* @__PURE__ */ propertyName('animation-trigger'),
1874
+ appearance: /* @__PURE__ */ propertyName('appearance'),
1875
+ aspectRatio: /* @__PURE__ */ propertyName('aspect-ratio'),
1876
+ backdropFilter: /* @__PURE__ */ propertyName('backdrop-filter'),
1877
+ backfaceVisibility: /* @__PURE__ */ propertyName('backface-visibility'),
1878
+ backgroundAttachment: /* @__PURE__ */ propertyName('background-attachment'),
1879
+ backgroundBlendMode: /* @__PURE__ */ propertyName('background-blend-mode'),
1880
+ backgroundClip: /* @__PURE__ */ propertyName('background-clip'),
1881
+ backgroundColor: /* @__PURE__ */ propertyName('background-color'),
1882
+ backgroundImage: /* @__PURE__ */ propertyName('background-image'),
1883
+ backgroundOrigin: /* @__PURE__ */ propertyName('background-origin'),
1884
+ backgroundPosition: /* @__PURE__ */ propertyName('background-position'),
1885
+ backgroundPositionX: /* @__PURE__ */ propertyName('background-position-x'),
1886
+ backgroundPositionY: /* @__PURE__ */ propertyName('background-position-y'),
1887
+ backgroundRepeat: /* @__PURE__ */ propertyName('background-repeat'),
1888
+ backgroundSize: /* @__PURE__ */ propertyName('background-size'),
1889
+ baselineShift: /* @__PURE__ */ propertyName('baseline-shift'),
1890
+ baselineSource: /* @__PURE__ */ propertyName('baseline-source'),
1891
+ blockSize: /* @__PURE__ */ propertyName('block-size'),
1892
+ border: /* @__PURE__ */ propertyName('border'),
1893
+ borderBlock: /* @__PURE__ */ propertyName('border-block'),
1894
+ borderBlockColor: /* @__PURE__ */ propertyName('border-block-color'),
1895
+ borderBlockEnd: /* @__PURE__ */ propertyName('border-block-end'),
1896
+ borderBlockEndColor: /* @__PURE__ */ propertyName('border-block-end-color'),
1897
+ borderBlockEndStyle: /* @__PURE__ */ propertyName('border-block-end-style'),
1898
+ borderBlockEndWidth: /* @__PURE__ */ propertyName('border-block-end-width'),
1899
+ borderBlockStart: /* @__PURE__ */ propertyName('border-block-start'),
1900
+ borderBlockStartColor: /* @__PURE__ */ propertyName('border-block-start-color'),
1901
+ borderBlockStartStyle: /* @__PURE__ */ propertyName('border-block-start-style'),
1902
+ borderBlockStartWidth: /* @__PURE__ */ propertyName('border-block-start-width'),
1903
+ borderBlockStyle: /* @__PURE__ */ propertyName('border-block-style'),
1904
+ borderBlockWidth: /* @__PURE__ */ propertyName('border-block-width'),
1905
+ borderBottom: /* @__PURE__ */ propertyName('border-bottom'),
1906
+ borderBottomColor: /* @__PURE__ */ propertyName('border-bottom-color'),
1907
+ borderBottomLeftRadius: /* @__PURE__ */ propertyName('border-bottom-left-radius'),
1908
+ borderBottomRightRadius: /* @__PURE__ */ propertyName('border-bottom-right-radius'),
1909
+ borderBottomStyle: /* @__PURE__ */ propertyName('border-bottom-style'),
1910
+ borderBottomWidth: /* @__PURE__ */ propertyName('border-bottom-width'),
1911
+ borderCollapse: /* @__PURE__ */ propertyName('border-collapse'),
1912
+ borderColor: /* @__PURE__ */ propertyName('border-color'),
1913
+ borderEndEndRadius: /* @__PURE__ */ propertyName('border-end-end-radius'),
1914
+ borderEndStartRadius: /* @__PURE__ */ propertyName('border-end-start-radius'),
1915
+ borderImage: /* @__PURE__ */ propertyName('border-image'),
1916
+ borderImageOutset: /* @__PURE__ */ propertyName('border-image-outset'),
1917
+ borderImageRepeat: /* @__PURE__ */ propertyName('border-image-repeat'),
1918
+ borderImageSource: /* @__PURE__ */ propertyName('border-image-source'),
1919
+ borderImageWidth: /* @__PURE__ */ propertyName('border-image-width'),
1920
+ borderInline: /* @__PURE__ */ propertyName('border-inline'),
1921
+ borderInlineColor: /* @__PURE__ */ propertyName('border-inline-color'),
1922
+ borderInlineEnd: /* @__PURE__ */ propertyName('border-inline-end'),
1923
+ borderInlineEndColor: /* @__PURE__ */ propertyName('border-inline-end-color'),
1924
+ borderInlineEndStyle: /* @__PURE__ */ propertyName('border-inline-end-style'),
1925
+ borderInlineEndWidth: /* @__PURE__ */ propertyName('border-inline-end-width'),
1926
+ borderInlineStart: /* @__PURE__ */ propertyName('border-inline-start'),
1927
+ borderInlineStartColor: /* @__PURE__ */ propertyName('border-inline-start-color'),
1928
+ borderInlineStartStyle: /* @__PURE__ */ propertyName('border-inline-start-style'),
1929
+ borderInlineStartWidth: /* @__PURE__ */ propertyName('border-inline-start-width'),
1930
+ borderInlineStyle: /* @__PURE__ */ propertyName('border-inline-style'),
1931
+ borderInlineWidth: /* @__PURE__ */ propertyName('border-inline-width'),
1932
+ borderLeft: /* @__PURE__ */ propertyName('border-left'),
1933
+ borderLeftColor: /* @__PURE__ */ propertyName('border-left-color'),
1934
+ borderLeftStyle: /* @__PURE__ */ propertyName('border-left-style'),
1935
+ borderLeftWidth: /* @__PURE__ */ propertyName('border-left-width'),
1936
+ borderRadius: /* @__PURE__ */ propertyName('border-radius'),
1937
+ borderRight: /* @__PURE__ */ propertyName('border-right'),
1938
+ borderRightColor: /* @__PURE__ */ propertyName('border-right-color'),
1939
+ borderRightStyle: /* @__PURE__ */ propertyName('border-right-style'),
1940
+ borderRightWidth: /* @__PURE__ */ propertyName('border-right-width'),
1941
+ borderShape: /* @__PURE__ */ propertyName('border-shape'),
1942
+ borderSpacing: /* @__PURE__ */ propertyName('border-spacing'),
1943
+ borderStartEndRadius: /* @__PURE__ */ propertyName('border-start-end-radius'),
1944
+ borderStartStartRadius: /* @__PURE__ */ propertyName('border-start-start-radius'),
1945
+ borderStyle: /* @__PURE__ */ propertyName('border-style'),
1946
+ borderTop: /* @__PURE__ */ propertyName('border-top'),
1947
+ borderTopColor: /* @__PURE__ */ propertyName('border-top-color'),
1948
+ borderTopLeftRadius: /* @__PURE__ */ propertyName('border-top-left-radius'),
1949
+ borderTopRightRadius: /* @__PURE__ */ propertyName('border-top-right-radius'),
1950
+ borderTopStyle: /* @__PURE__ */ propertyName('border-top-style'),
1951
+ borderTopWidth: /* @__PURE__ */ propertyName('border-top-width'),
1952
+ borderWidth: /* @__PURE__ */ propertyName('border-width'),
1953
+ bottom: /* @__PURE__ */ propertyName('bottom'),
1954
+ boxDecorationBreak: /* @__PURE__ */ propertyName('box-decoration-break'),
1955
+ boxShadow: /* @__PURE__ */ propertyName('box-shadow'),
1956
+ boxSizing: /* @__PURE__ */ propertyName('box-sizing'),
1957
+ breakAfter: /* @__PURE__ */ propertyName('break-after'),
1958
+ breakBefore: /* @__PURE__ */ propertyName('break-before'),
1959
+ breakInside: /* @__PURE__ */ propertyName('break-inside'),
1960
+ captionSide: /* @__PURE__ */ propertyName('caption-side'),
1961
+ caret: /* @__PURE__ */ propertyName('caret'),
1962
+ caretAnimation: /* @__PURE__ */ propertyName('caret-animation'),
1963
+ caretColor: /* @__PURE__ */ propertyName('caret-color'),
1964
+ caretShape: /* @__PURE__ */ propertyName('caret-shape'),
1965
+ clear: /* @__PURE__ */ propertyName('clear'),
1966
+ clipPath: /* @__PURE__ */ propertyName('clip-path'),
1967
+ clipRule: /* @__PURE__ */ propertyName('clip-rule'),
1968
+ color: /* @__PURE__ */ propertyName('color'),
1969
+ colorInterpolationFilters: /* @__PURE__ */ propertyName('color-interpolation-filters'),
1970
+ colorScheme: /* @__PURE__ */ propertyName('color-scheme'),
1971
+ columnCount: /* @__PURE__ */ propertyName('column-count'),
1972
+ columnFill: /* @__PURE__ */ propertyName('column-fill'),
1973
+ columnGap: /* @__PURE__ */ propertyName('column-gap'),
1974
+ columnHeight: /* @__PURE__ */ propertyName('column-height'),
1975
+ columnRule: /* @__PURE__ */ propertyName('column-rule'),
1976
+ columnRuleColor: /* @__PURE__ */ propertyName('column-rule-color'),
1977
+ columnRuleStyle: /* @__PURE__ */ propertyName('column-rule-style'),
1978
+ columnRuleWidth: /* @__PURE__ */ propertyName('column-rule-width'),
1979
+ columnSpan: /* @__PURE__ */ propertyName('column-span'),
1980
+ columnWidth: /* @__PURE__ */ propertyName('column-width'),
1981
+ columnWrap: /* @__PURE__ */ propertyName('column-wrap'),
1982
+ columns: /* @__PURE__ */ propertyName('columns'),
1983
+ contain: /* @__PURE__ */ propertyName('contain'),
1984
+ containIntrinsicBlockSize: /* @__PURE__ */ propertyName('contain-intrinsic-block-size'),
1985
+ containIntrinsicHeight: /* @__PURE__ */ propertyName('contain-intrinsic-height'),
1986
+ containIntrinsicInlineSize: /* @__PURE__ */ propertyName('contain-intrinsic-inline-size'),
1987
+ containIntrinsicSize: /* @__PURE__ */ propertyName('contain-intrinsic-size'),
1988
+ containIntrinsicWidth: /* @__PURE__ */ propertyName('contain-intrinsic-width'),
1989
+ containerName: /* @__PURE__ */ propertyName('container-name'),
1990
+ content: /* @__PURE__ */ propertyName('content'),
1991
+ contentVisibility: /* @__PURE__ */ propertyName('content-visibility'),
1992
+ cornerBlockEndShape: /* @__PURE__ */ propertyName('corner-block-end-shape'),
1993
+ cornerBlockStartShape: /* @__PURE__ */ propertyName('corner-block-start-shape'),
1994
+ cornerBottomLeftShape: /* @__PURE__ */ propertyName('corner-bottom-left-shape'),
1995
+ cornerBottomRightShape: /* @__PURE__ */ propertyName('corner-bottom-right-shape'),
1996
+ cornerBottomShape: /* @__PURE__ */ propertyName('corner-bottom-shape'),
1997
+ cornerEndEndShape: /* @__PURE__ */ propertyName('corner-end-end-shape'),
1998
+ cornerEndStartShape: /* @__PURE__ */ propertyName('corner-end-start-shape'),
1999
+ cornerInlineEndShape: /* @__PURE__ */ propertyName('corner-inline-end-shape'),
2000
+ cornerInlineStartShape: /* @__PURE__ */ propertyName('corner-inline-start-shape'),
2001
+ cornerLeftShape: /* @__PURE__ */ propertyName('corner-left-shape'),
2002
+ cornerRightShape: /* @__PURE__ */ propertyName('corner-right-shape'),
2003
+ cornerShape: /* @__PURE__ */ propertyName('corner-shape'),
2004
+ cornerStartEndShape: /* @__PURE__ */ propertyName('corner-start-end-shape'),
2005
+ cornerStartStartShape: /* @__PURE__ */ propertyName('corner-start-start-shape'),
2006
+ cornerTopLeftShape: /* @__PURE__ */ propertyName('corner-top-left-shape'),
2007
+ cornerTopRightShape: /* @__PURE__ */ propertyName('corner-top-right-shape'),
2008
+ cornerTopShape: /* @__PURE__ */ propertyName('corner-top-shape'),
2009
+ counterIncrement: /* @__PURE__ */ propertyName('counter-increment'),
2010
+ counterReset: /* @__PURE__ */ propertyName('counter-reset'),
2011
+ counterSet: /* @__PURE__ */ propertyName('counter-set'),
2012
+ cursor: /* @__PURE__ */ propertyName('cursor'),
2013
+ cx: /* @__PURE__ */ propertyName('cx'),
2014
+ cy: /* @__PURE__ */ propertyName('cy'),
2015
+ d: /* @__PURE__ */ propertyName('d'),
2016
+ direction: /* @__PURE__ */ propertyName('direction'),
2017
+ display: /* @__PURE__ */ propertyName('display'),
2018
+ dominantBaseline: /* @__PURE__ */ propertyName('dominant-baseline'),
2019
+ dynamicRangeLimit: /* @__PURE__ */ propertyName('dynamic-range-limit'),
2020
+ emptyCells: /* @__PURE__ */ propertyName('empty-cells'),
2021
+ fill: /* @__PURE__ */ propertyName('fill'),
2022
+ fillOpacity: /* @__PURE__ */ propertyName('fill-opacity'),
2023
+ fillRule: /* @__PURE__ */ propertyName('fill-rule'),
2024
+ filter: /* @__PURE__ */ propertyName('filter'),
2025
+ flex: /* @__PURE__ */ propertyName('flex'),
2026
+ flexBasis: /* @__PURE__ */ propertyName('flex-basis'),
2027
+ flexDirection: /* @__PURE__ */ propertyName('flex-direction'),
2028
+ flexFlow: /* @__PURE__ */ propertyName('flex-flow'),
2029
+ flexGrow: /* @__PURE__ */ propertyName('flex-grow'),
2030
+ flexLineCount: /* @__PURE__ */ propertyName('flex-line-count'),
2031
+ flexShrink: /* @__PURE__ */ propertyName('flex-shrink'),
2032
+ flexWrap: /* @__PURE__ */ propertyName('flex-wrap'),
2033
+ float: /* @__PURE__ */ propertyName('float'),
2034
+ floodColor: /* @__PURE__ */ propertyName('flood-color'),
2035
+ floodOpacity: /* @__PURE__ */ propertyName('flood-opacity'),
2036
+ font: /* @__PURE__ */ propertyName('font'),
2037
+ fontFamily: /* @__PURE__ */ propertyName('font-family'),
2038
+ fontFeatureSettings: /* @__PURE__ */ propertyName('font-feature-settings'),
2039
+ fontKerning: /* @__PURE__ */ propertyName('font-kerning'),
2040
+ fontLanguageOverride: /* @__PURE__ */ propertyName('font-language-override'),
2041
+ fontOpticalSizing: /* @__PURE__ */ propertyName('font-optical-sizing'),
2042
+ fontPalette: /* @__PURE__ */ propertyName('font-palette'),
2043
+ fontSize: /* @__PURE__ */ propertyName('font-size'),
2044
+ fontSizeAdjust: /* @__PURE__ */ propertyName('font-size-adjust'),
2045
+ fontStyle: /* @__PURE__ */ propertyName('font-style'),
2046
+ fontSynthesis: /* @__PURE__ */ propertyName('font-synthesis'),
2047
+ fontSynthesisSmallCaps: /* @__PURE__ */ propertyName('font-synthesis-small-caps'),
2048
+ fontSynthesisStyle: /* @__PURE__ */ propertyName('font-synthesis-style'),
2049
+ fontSynthesisWeight: /* @__PURE__ */ propertyName('font-synthesis-weight'),
2050
+ fontVariant: /* @__PURE__ */ propertyName('font-variant'),
2051
+ fontVariantAlternates: /* @__PURE__ */ propertyName('font-variant-alternates'),
2052
+ fontVariantCaps: /* @__PURE__ */ propertyName('font-variant-caps'),
2053
+ fontVariantEastAsian: /* @__PURE__ */ propertyName('font-variant-east-asian'),
2054
+ fontVariantEmoji: /* @__PURE__ */ propertyName('font-variant-emoji'),
2055
+ fontVariantLigatures: /* @__PURE__ */ propertyName('font-variant-ligatures'),
2056
+ fontVariantNumeric: /* @__PURE__ */ propertyName('font-variant-numeric'),
2057
+ fontVariantPosition: /* @__PURE__ */ propertyName('font-variant-position'),
2058
+ fontVariationSettings: /* @__PURE__ */ propertyName('font-variation-settings'),
2059
+ fontWeight: /* @__PURE__ */ propertyName('font-weight'),
2060
+ forcedColorAdjust: /* @__PURE__ */ propertyName('forced-color-adjust'),
2061
+ frameSizing: /* @__PURE__ */ propertyName('frame-sizing'),
2062
+ gap: /* @__PURE__ */ propertyName('gap'),
2063
+ gridArea: /* @__PURE__ */ propertyName('grid-area'),
2064
+ gridAutoColumns: /* @__PURE__ */ propertyName('grid-auto-columns'),
2065
+ gridAutoFlow: /* @__PURE__ */ propertyName('grid-auto-flow'),
2066
+ gridAutoRows: /* @__PURE__ */ propertyName('grid-auto-rows'),
2067
+ gridColumn: /* @__PURE__ */ propertyName('grid-column'),
2068
+ gridColumnEnd: /* @__PURE__ */ propertyName('grid-column-end'),
2069
+ gridColumnStart: /* @__PURE__ */ propertyName('grid-column-start'),
2070
+ gridRow: /* @__PURE__ */ propertyName('grid-row'),
2071
+ gridRowEnd: /* @__PURE__ */ propertyName('grid-row-end'),
2072
+ gridRowStart: /* @__PURE__ */ propertyName('grid-row-start'),
2073
+ gridTemplate: /* @__PURE__ */ propertyName('grid-template'),
2074
+ gridTemplateAreas: /* @__PURE__ */ propertyName('grid-template-areas'),
2075
+ gridTemplateColumns: /* @__PURE__ */ propertyName('grid-template-columns'),
2076
+ gridTemplateRows: /* @__PURE__ */ propertyName('grid-template-rows'),
2077
+ hangingPunctuation: /* @__PURE__ */ propertyName('hanging-punctuation'),
2078
+ height: /* @__PURE__ */ propertyName('height'),
2079
+ hyphenateCharacter: /* @__PURE__ */ propertyName('hyphenate-character'),
2080
+ hyphenateLimitChars: /* @__PURE__ */ propertyName('hyphenate-limit-chars'),
2081
+ hyphens: /* @__PURE__ */ propertyName('hyphens'),
2082
+ imageOrientation: /* @__PURE__ */ propertyName('image-orientation'),
2083
+ imageRendering: /* @__PURE__ */ propertyName('image-rendering'),
2084
+ initialLetter: /* @__PURE__ */ propertyName('initial-letter'),
2085
+ inlineSize: /* @__PURE__ */ propertyName('inline-size'),
2086
+ inset: /* @__PURE__ */ propertyName('inset'),
2087
+ insetBlock: /* @__PURE__ */ propertyName('inset-block'),
2088
+ insetBlockEnd: /* @__PURE__ */ propertyName('inset-block-end'),
2089
+ insetBlockStart: /* @__PURE__ */ propertyName('inset-block-start'),
2090
+ insetInline: /* @__PURE__ */ propertyName('inset-inline'),
2091
+ insetInlineEnd: /* @__PURE__ */ propertyName('inset-inline-end'),
2092
+ insetInlineStart: /* @__PURE__ */ propertyName('inset-inline-start'),
2093
+ interactivity: /* @__PURE__ */ propertyName('interactivity'),
2094
+ interestDelay: /* @__PURE__ */ propertyName('interest-delay'),
2095
+ interestDelayEnd: /* @__PURE__ */ propertyName('interest-delay-end'),
2096
+ interestDelayStart: /* @__PURE__ */ propertyName('interest-delay-start'),
2097
+ isolation: /* @__PURE__ */ propertyName('isolation'),
2098
+ justifyContent: /* @__PURE__ */ propertyName('justify-content'),
2099
+ justifyItems: /* @__PURE__ */ propertyName('justify-items'),
2100
+ justifySelf: /* @__PURE__ */ propertyName('justify-self'),
2101
+ left: /* @__PURE__ */ propertyName('left'),
2102
+ letterSpacing: /* @__PURE__ */ propertyName('letter-spacing'),
2103
+ lightingColor: /* @__PURE__ */ propertyName('lighting-color'),
2104
+ lineBreak: /* @__PURE__ */ propertyName('line-break'),
2105
+ lineClamp: /* @__PURE__ */ propertyName('line-clamp'),
2106
+ lineHeight: /* @__PURE__ */ propertyName('line-height'),
2107
+ listStyle: /* @__PURE__ */ propertyName('list-style'),
2108
+ listStyleImage: /* @__PURE__ */ propertyName('list-style-image'),
2109
+ listStylePosition: /* @__PURE__ */ propertyName('list-style-position'),
2110
+ listStyleType: /* @__PURE__ */ propertyName('list-style-type'),
2111
+ margin: /* @__PURE__ */ propertyName('margin'),
2112
+ marginBlock: /* @__PURE__ */ propertyName('margin-block'),
2113
+ marginBlockEnd: /* @__PURE__ */ propertyName('margin-block-end'),
2114
+ marginBlockStart: /* @__PURE__ */ propertyName('margin-block-start'),
2115
+ marginBottom: /* @__PURE__ */ propertyName('margin-bottom'),
2116
+ marginInline: /* @__PURE__ */ propertyName('margin-inline'),
2117
+ marginInlineEnd: /* @__PURE__ */ propertyName('margin-inline-end'),
2118
+ marginInlineStart: /* @__PURE__ */ propertyName('margin-inline-start'),
2119
+ marginLeft: /* @__PURE__ */ propertyName('margin-left'),
2120
+ marginRight: /* @__PURE__ */ propertyName('margin-right'),
2121
+ marginTop: /* @__PURE__ */ propertyName('margin-top'),
2122
+ marker: /* @__PURE__ */ propertyName('marker'),
2123
+ markerEnd: /* @__PURE__ */ propertyName('marker-end'),
2124
+ markerMid: /* @__PURE__ */ propertyName('marker-mid'),
2125
+ markerStart: /* @__PURE__ */ propertyName('marker-start'),
2126
+ mask: /* @__PURE__ */ propertyName('mask'),
2127
+ maskBorder: /* @__PURE__ */ propertyName('mask-border'),
2128
+ maskBorderMode: /* @__PURE__ */ propertyName('mask-border-mode'),
2129
+ maskBorderOutset: /* @__PURE__ */ propertyName('mask-border-outset'),
2130
+ maskBorderRepeat: /* @__PURE__ */ propertyName('mask-border-repeat'),
2131
+ maskBorderSlice: /* @__PURE__ */ propertyName('mask-border-slice'),
2132
+ maskBorderSource: /* @__PURE__ */ propertyName('mask-border-source'),
2133
+ maskBorderWidth: /* @__PURE__ */ propertyName('mask-border-width'),
2134
+ maskClip: /* @__PURE__ */ propertyName('mask-clip'),
2135
+ maskComposite: /* @__PURE__ */ propertyName('mask-composite'),
2136
+ maskImage: /* @__PURE__ */ propertyName('mask-image'),
2137
+ maskMode: /* @__PURE__ */ propertyName('mask-mode'),
2138
+ maskOrigin: /* @__PURE__ */ propertyName('mask-origin'),
2139
+ maskPosition: /* @__PURE__ */ propertyName('mask-position'),
2140
+ maskRepeat: /* @__PURE__ */ propertyName('mask-repeat'),
2141
+ maskSize: /* @__PURE__ */ propertyName('mask-size'),
2142
+ maskType: /* @__PURE__ */ propertyName('mask-type'),
2143
+ mathDepth: /* @__PURE__ */ propertyName('math-depth'),
2144
+ mathStyle: /* @__PURE__ */ propertyName('math-style'),
2145
+ maxBlockSize: /* @__PURE__ */ propertyName('max-block-size'),
2146
+ maxHeight: /* @__PURE__ */ propertyName('max-height'),
2147
+ maxInlineSize: /* @__PURE__ */ propertyName('max-inline-size'),
2148
+ maxWidth: /* @__PURE__ */ propertyName('max-width'),
2149
+ minBlockSize: /* @__PURE__ */ propertyName('min-block-size'),
2150
+ minHeight: /* @__PURE__ */ propertyName('min-height'),
2151
+ minInlineSize: /* @__PURE__ */ propertyName('min-inline-size'),
2152
+ minWidth: /* @__PURE__ */ propertyName('min-width'),
2153
+ mixBlendMode: /* @__PURE__ */ propertyName('mix-blend-mode'),
2154
+ objectFit: /* @__PURE__ */ propertyName('object-fit'),
2155
+ objectPosition: /* @__PURE__ */ propertyName('object-position'),
2156
+ offsetAnchor: /* @__PURE__ */ propertyName('offset-anchor'),
2157
+ offsetDistance: /* @__PURE__ */ propertyName('offset-distance'),
2158
+ offsetPath: /* @__PURE__ */ propertyName('offset-path'),
2159
+ offsetPosition: /* @__PURE__ */ propertyName('offset-position'),
2160
+ offsetRotate: /* @__PURE__ */ propertyName('offset-rotate'),
2161
+ opacity: /* @__PURE__ */ propertyName('opacity'),
2162
+ order: /* @__PURE__ */ propertyName('order'),
2163
+ orphans: /* @__PURE__ */ propertyName('orphans'),
2164
+ outline: /* @__PURE__ */ propertyName('outline'),
2165
+ outlineColor: /* @__PURE__ */ propertyName('outline-color'),
2166
+ outlineOffset: /* @__PURE__ */ propertyName('outline-offset'),
2167
+ outlineStyle: /* @__PURE__ */ propertyName('outline-style'),
2168
+ outlineWidth: /* @__PURE__ */ propertyName('outline-width'),
2169
+ overflowAnchor: /* @__PURE__ */ propertyName('overflow-anchor'),
2170
+ overflowWrap: /* @__PURE__ */ propertyName('overflow-wrap'),
2171
+ overscrollBehavior: /* @__PURE__ */ propertyName('overscroll-behavior'),
2172
+ overscrollBehaviorBlock: /* @__PURE__ */ propertyName('overscroll-behavior-block'),
2173
+ overscrollBehaviorInline: /* @__PURE__ */ propertyName('overscroll-behavior-inline'),
2174
+ overscrollBehaviorX: /* @__PURE__ */ propertyName('overscroll-behavior-x'),
2175
+ overscrollBehaviorY: /* @__PURE__ */ propertyName('overscroll-behavior-y'),
2176
+ padding: /* @__PURE__ */ propertyName('padding'),
2177
+ paddingBlock: /* @__PURE__ */ propertyName('padding-block'),
2178
+ paddingBlockEnd: /* @__PURE__ */ propertyName('padding-block-end'),
2179
+ paddingBlockStart: /* @__PURE__ */ propertyName('padding-block-start'),
2180
+ paddingBottom: /* @__PURE__ */ propertyName('padding-bottom'),
2181
+ paddingInline: /* @__PURE__ */ propertyName('padding-inline'),
2182
+ paddingInlineEnd: /* @__PURE__ */ propertyName('padding-inline-end'),
2183
+ paddingInlineStart: /* @__PURE__ */ propertyName('padding-inline-start'),
2184
+ paddingLeft: /* @__PURE__ */ propertyName('padding-left'),
2185
+ paddingRight: /* @__PURE__ */ propertyName('padding-right'),
2186
+ paddingTop: /* @__PURE__ */ propertyName('padding-top'),
2187
+ page: /* @__PURE__ */ propertyName('page'),
2188
+ paintOrder: /* @__PURE__ */ propertyName('paint-order'),
2189
+ pathLength: /* @__PURE__ */ propertyName('path-length'),
2190
+ perspective: /* @__PURE__ */ propertyName('perspective'),
2191
+ perspectiveOrigin: /* @__PURE__ */ propertyName('perspective-origin'),
2192
+ placeContent: /* @__PURE__ */ propertyName('place-content'),
2193
+ placeItems: /* @__PURE__ */ propertyName('place-items'),
2194
+ placeSelf: /* @__PURE__ */ propertyName('place-self'),
2195
+ pointerEvents: /* @__PURE__ */ propertyName('pointer-events'),
2196
+ position: /* @__PURE__ */ propertyName('position'),
2197
+ printColorAdjust: /* @__PURE__ */ propertyName('print-color-adjust'),
2198
+ quotes: /* @__PURE__ */ propertyName('quotes'),
2199
+ r: /* @__PURE__ */ propertyName('r'),
2200
+ readingFlow: /* @__PURE__ */ propertyName('reading-flow'),
2201
+ readingOrder: /* @__PURE__ */ propertyName('reading-order'),
2202
+ resize: /* @__PURE__ */ propertyName('resize'),
2203
+ right: /* @__PURE__ */ propertyName('right'),
2204
+ rotate: /* @__PURE__ */ propertyName('rotate'),
2205
+ rowGap: /* @__PURE__ */ propertyName('row-gap'),
2206
+ rubyAlign: /* @__PURE__ */ propertyName('ruby-align'),
2207
+ rubyOverhang: /* @__PURE__ */ propertyName('ruby-overhang'),
2208
+ rubyPosition: /* @__PURE__ */ propertyName('ruby-position'),
2209
+ rx: /* @__PURE__ */ propertyName('rx'),
2210
+ ry: /* @__PURE__ */ propertyName('ry'),
2211
+ scale: /* @__PURE__ */ propertyName('scale'),
2212
+ scrollBehavior: /* @__PURE__ */ propertyName('scroll-behavior'),
2213
+ scrollMargin: /* @__PURE__ */ propertyName('scroll-margin'),
2214
+ scrollMarginBlock: /* @__PURE__ */ propertyName('scroll-margin-block'),
2215
+ scrollMarginBlockEnd: /* @__PURE__ */ propertyName('scroll-margin-block-end'),
2216
+ scrollMarginBlockStart: /* @__PURE__ */ propertyName('scroll-margin-block-start'),
2217
+ scrollMarginBottom: /* @__PURE__ */ propertyName('scroll-margin-bottom'),
2218
+ scrollMarginInline: /* @__PURE__ */ propertyName('scroll-margin-inline'),
2219
+ scrollMarginInlineEnd: /* @__PURE__ */ propertyName('scroll-margin-inline-end'),
2220
+ scrollMarginInlineStart: /* @__PURE__ */ propertyName('scroll-margin-inline-start'),
2221
+ scrollMarginLeft: /* @__PURE__ */ propertyName('scroll-margin-left'),
2222
+ scrollMarginRight: /* @__PURE__ */ propertyName('scroll-margin-right'),
2223
+ scrollMarginTop: /* @__PURE__ */ propertyName('scroll-margin-top'),
2224
+ scrollMarkerGroup: /* @__PURE__ */ propertyName('scroll-marker-group'),
2225
+ scrollPadding: /* @__PURE__ */ propertyName('scroll-padding'),
2226
+ scrollPaddingBlock: /* @__PURE__ */ propertyName('scroll-padding-block'),
2227
+ scrollPaddingBlockEnd: /* @__PURE__ */ propertyName('scroll-padding-block-end'),
2228
+ scrollPaddingBlockStart: /* @__PURE__ */ propertyName('scroll-padding-block-start'),
2229
+ scrollPaddingBottom: /* @__PURE__ */ propertyName('scroll-padding-bottom'),
2230
+ scrollPaddingInline: /* @__PURE__ */ propertyName('scroll-padding-inline'),
2231
+ scrollPaddingInlineEnd: /* @__PURE__ */ propertyName('scroll-padding-inline-end'),
2232
+ scrollPaddingInlineStart: /* @__PURE__ */ propertyName('scroll-padding-inline-start'),
2233
+ scrollPaddingLeft: /* @__PURE__ */ propertyName('scroll-padding-left'),
2234
+ scrollPaddingRight: /* @__PURE__ */ propertyName('scroll-padding-right'),
2235
+ scrollPaddingTop: /* @__PURE__ */ propertyName('scroll-padding-top'),
2236
+ scrollSnapAlign: /* @__PURE__ */ propertyName('scroll-snap-align'),
2237
+ scrollSnapStop: /* @__PURE__ */ propertyName('scroll-snap-stop'),
2238
+ scrollSnapType: /* @__PURE__ */ propertyName('scroll-snap-type'),
2239
+ scrollTargetGroup: /* @__PURE__ */ propertyName('scroll-target-group'),
2240
+ scrollbarColor: /* @__PURE__ */ propertyName('scrollbar-color'),
2241
+ scrollbarGutter: /* @__PURE__ */ propertyName('scrollbar-gutter'),
2242
+ scrollbarWidth: /* @__PURE__ */ propertyName('scrollbar-width'),
2243
+ shapeImageThreshold: /* @__PURE__ */ propertyName('shape-image-threshold'),
2244
+ shapeMargin: /* @__PURE__ */ propertyName('shape-margin'),
2245
+ shapeOutside: /* @__PURE__ */ propertyName('shape-outside'),
2246
+ shapeRendering: /* @__PURE__ */ propertyName('shape-rendering'),
2247
+ stopColor: /* @__PURE__ */ propertyName('stop-color'),
2248
+ stopOpacity: /* @__PURE__ */ propertyName('stop-opacity'),
2249
+ stroke: /* @__PURE__ */ propertyName('stroke'),
2250
+ strokeDasharray: /* @__PURE__ */ propertyName('stroke-dasharray'),
2251
+ strokeDashoffset: /* @__PURE__ */ propertyName('stroke-dashoffset'),
2252
+ strokeLinecap: /* @__PURE__ */ propertyName('stroke-linecap'),
2253
+ strokeLinejoin: /* @__PURE__ */ propertyName('stroke-linejoin'),
2254
+ strokeMiterlimit: /* @__PURE__ */ propertyName('stroke-miterlimit'),
2255
+ strokeOpacity: /* @__PURE__ */ propertyName('stroke-opacity'),
2256
+ strokeWidth: /* @__PURE__ */ propertyName('stroke-width'),
2257
+ tabSize: /* @__PURE__ */ propertyName('tab-size'),
2258
+ tableLayout: /* @__PURE__ */ propertyName('table-layout'),
2259
+ textAlign: /* @__PURE__ */ propertyName('text-align'),
2260
+ textAlignLast: /* @__PURE__ */ propertyName('text-align-last'),
2261
+ textAnchor: /* @__PURE__ */ propertyName('text-anchor'),
2262
+ textAutospace: /* @__PURE__ */ propertyName('text-autospace'),
2263
+ textBox: /* @__PURE__ */ propertyName('text-box'),
2264
+ textBoxEdge: /* @__PURE__ */ propertyName('text-box-edge'),
2265
+ textBoxTrim: /* @__PURE__ */ propertyName('text-box-trim'),
2266
+ textCombineUpright: /* @__PURE__ */ propertyName('text-combine-upright'),
2267
+ textDecoration: /* @__PURE__ */ propertyName('text-decoration'),
2268
+ textDecorationColor: /* @__PURE__ */ propertyName('text-decoration-color'),
2269
+ textDecorationInset: /* @__PURE__ */ propertyName('text-decoration-inset'),
2270
+ textDecorationLine: /* @__PURE__ */ propertyName('text-decoration-line'),
2271
+ textDecorationSkipInk: /* @__PURE__ */ propertyName('text-decoration-skip-ink'),
2272
+ textDecorationStyle: /* @__PURE__ */ propertyName('text-decoration-style'),
2273
+ textDecorationThickness: /* @__PURE__ */ propertyName('text-decoration-thickness'),
2274
+ textEmphasis: /* @__PURE__ */ propertyName('text-emphasis'),
2275
+ textEmphasisColor: /* @__PURE__ */ propertyName('text-emphasis-color'),
2276
+ textEmphasisPosition: /* @__PURE__ */ propertyName('text-emphasis-position'),
2277
+ textEmphasisStyle: /* @__PURE__ */ propertyName('text-emphasis-style'),
2278
+ textFit: /* @__PURE__ */ propertyName('text-fit'),
2279
+ textJustify: /* @__PURE__ */ propertyName('text-justify'),
2280
+ textOrientation: /* @__PURE__ */ propertyName('text-orientation'),
2281
+ textOverflow: /* @__PURE__ */ propertyName('text-overflow'),
2282
+ textRendering: /* @__PURE__ */ propertyName('text-rendering'),
2283
+ textShadow: /* @__PURE__ */ propertyName('text-shadow'),
2284
+ textTransform: /* @__PURE__ */ propertyName('text-transform'),
2285
+ textUnderlineOffset: /* @__PURE__ */ propertyName('text-underline-offset'),
2286
+ textUnderlinePosition: /* @__PURE__ */ propertyName('text-underline-position'),
2287
+ textWrap: /* @__PURE__ */ propertyName('text-wrap'),
2288
+ textWrapMode: /* @__PURE__ */ propertyName('text-wrap-mode'),
2289
+ textWrapStyle: /* @__PURE__ */ propertyName('text-wrap-style'),
2290
+ timelineTrigger: /* @__PURE__ */ propertyName('timeline-trigger'),
2291
+ timelineTriggerActivationRange: /* @__PURE__ */ propertyName('timeline-trigger-activation-range'),
2292
+ timelineTriggerActivationRangeEnd: /* @__PURE__ */ propertyName('timeline-trigger-activation-range-end'),
2293
+ timelineTriggerActivationRangeStart: /* @__PURE__ */ propertyName('timeline-trigger-activation-range-start'),
2294
+ timelineTriggerActiveRange: /* @__PURE__ */ propertyName('timeline-trigger-active-range'),
2295
+ timelineTriggerActiveRangeEnd: /* @__PURE__ */ propertyName('timeline-trigger-active-range-end'),
2296
+ timelineTriggerActiveRangeStart: /* @__PURE__ */ propertyName('timeline-trigger-active-range-start'),
2297
+ timelineTriggerName: /* @__PURE__ */ propertyName('timeline-trigger-name'),
2298
+ timelineTriggerSource: /* @__PURE__ */ propertyName('timeline-trigger-source'),
2299
+ top: /* @__PURE__ */ propertyName('top'),
2300
+ touchAction: /* @__PURE__ */ propertyName('touch-action'),
2301
+ transform: /* @__PURE__ */ propertyName('transform'),
2302
+ transformBox: /* @__PURE__ */ propertyName('transform-box'),
2303
+ transformOrigin: /* @__PURE__ */ propertyName('transform-origin'),
2304
+ transformStyle: /* @__PURE__ */ propertyName('transform-style'),
2305
+ transition: /* @__PURE__ */ propertyName('transition'),
2306
+ transitionBehavior: /* @__PURE__ */ propertyName('transition-behavior'),
2307
+ transitionDelay: /* @__PURE__ */ propertyName('transition-delay'),
2308
+ transitionDuration: /* @__PURE__ */ propertyName('transition-duration'),
2309
+ transitionProperty: /* @__PURE__ */ propertyName('transition-property'),
2310
+ transitionTimingFunction: /* @__PURE__ */ propertyName('transition-timing-function'),
2311
+ translate: /* @__PURE__ */ propertyName('translate'),
2312
+ triggerScope: /* @__PURE__ */ propertyName('trigger-scope'),
2313
+ unicodeBidi: /* @__PURE__ */ propertyName('unicode-bidi'),
2314
+ userSelect: /* @__PURE__ */ propertyName('user-select'),
2315
+ vectorEffect: /* @__PURE__ */ propertyName('vector-effect'),
2316
+ verticalAlign: /* @__PURE__ */ propertyName('vertical-align'),
2317
+ viewTransitionClass: /* @__PURE__ */ propertyName('view-transition-class'),
2318
+ viewTransitionName: /* @__PURE__ */ propertyName('view-transition-name'),
2319
+ viewTransitionScope: /* @__PURE__ */ propertyName('view-transition-scope'),
2320
+ visibility: /* @__PURE__ */ propertyName('visibility'),
2321
+ whiteSpace: /* @__PURE__ */ propertyName('white-space'),
2322
+ whiteSpaceCollapse: /* @__PURE__ */ propertyName('white-space-collapse'),
2323
+ widows: /* @__PURE__ */ propertyName('widows'),
2324
+ width: /* @__PURE__ */ propertyName('width'),
2325
+ willChange: /* @__PURE__ */ propertyName('will-change'),
2326
+ wordBreak: /* @__PURE__ */ propertyName('word-break'),
2327
+ wordSpacing: /* @__PURE__ */ propertyName('word-spacing'),
2328
+ wordWrap: /* @__PURE__ */ propertyName('word-wrap'),
2329
+ writingMode: /* @__PURE__ */ propertyName('writing-mode'),
2330
+ x: /* @__PURE__ */ propertyName('x'),
2331
+ y: /* @__PURE__ */ propertyName('y'),
2332
+ zIndex: /* @__PURE__ */ propertyName('z-index'),
2333
+ zoom: /* @__PURE__ */ propertyName('zoom'),
2334
+ };
2335
+ /**
2336
+ * Properties whose grammar the reader could not close. They are absent from the
2337
+ * table on purpose: a helper taking `string` would be worse than a missing one.
2338
+ */
2339
+ export const UNCOVERED_PROPERTIES = [
2340
+ 'background',
2341
+ 'border-image-slice',
2342
+ 'grid',
2343
+ 'offset',
2344
+ 'text-indent',
2345
+ ];
2346
+ /**
2347
+ * Properties whose helper is **narrower** than the CSS grammar: at least one
2348
+ * alternative was a shape the reader could not close, so it was left out. A
2349
+ * narrowed helper never emits CSS the browser rejects; it only refuses forms
2350
+ * CSS would have allowed.
2351
+ */
2352
+ export const NARROWED_PROPERTIES = [
2353
+ 'animation',
2354
+ 'animation-timing-function',
2355
+ 'animation-trigger',
2356
+ 'backdrop-filter',
2357
+ 'background-image',
2358
+ 'background-position',
2359
+ 'background-position-x',
2360
+ 'background-position-y',
2361
+ 'block-size',
2362
+ 'border-image',
2363
+ 'border-image-source',
2364
+ 'border-shape',
2365
+ 'bottom',
2366
+ 'box-shadow',
2367
+ 'clip-path',
2368
+ 'color-scheme',
2369
+ 'columns',
2370
+ 'content',
2371
+ 'corner-block-end-shape',
2372
+ 'corner-block-start-shape',
2373
+ 'corner-bottom-left-shape',
2374
+ 'corner-bottom-right-shape',
2375
+ 'corner-bottom-shape',
2376
+ 'corner-end-end-shape',
2377
+ 'corner-end-start-shape',
2378
+ 'corner-inline-end-shape',
2379
+ 'corner-inline-start-shape',
2380
+ 'corner-left-shape',
2381
+ 'corner-right-shape',
2382
+ 'corner-shape',
2383
+ 'corner-start-end-shape',
2384
+ 'corner-start-start-shape',
2385
+ 'corner-top-left-shape',
2386
+ 'corner-top-right-shape',
2387
+ 'corner-top-shape',
2388
+ 'counter-reset',
2389
+ 'd',
2390
+ 'display',
2391
+ 'dynamic-range-limit',
2392
+ 'filter',
2393
+ 'flex',
2394
+ 'flex-basis',
2395
+ 'font',
2396
+ 'font-family',
2397
+ 'font-palette',
2398
+ 'font-variant',
2399
+ 'font-variant-alternates',
2400
+ 'font-variant-ligatures',
2401
+ 'font-variation-settings',
2402
+ 'grid-area',
2403
+ 'grid-auto-columns',
2404
+ 'grid-auto-rows',
2405
+ 'grid-column',
2406
+ 'grid-column-end',
2407
+ 'grid-column-start',
2408
+ 'grid-row',
2409
+ 'grid-row-end',
2410
+ 'grid-row-start',
2411
+ 'grid-template',
2412
+ 'grid-template-columns',
2413
+ 'grid-template-rows',
2414
+ 'height',
2415
+ 'inline-size',
2416
+ 'inset',
2417
+ 'inset-block',
2418
+ 'inset-block-end',
2419
+ 'inset-block-start',
2420
+ 'inset-inline',
2421
+ 'inset-inline-end',
2422
+ 'inset-inline-start',
2423
+ 'justify-items',
2424
+ 'left',
2425
+ 'list-style',
2426
+ 'list-style-image',
2427
+ 'list-style-type',
2428
+ 'margin',
2429
+ 'margin-block',
2430
+ 'margin-block-end',
2431
+ 'margin-block-start',
2432
+ 'margin-bottom',
2433
+ 'margin-inline',
2434
+ 'margin-inline-end',
2435
+ 'margin-inline-start',
2436
+ 'margin-left',
2437
+ 'margin-right',
2438
+ 'margin-top',
2439
+ 'mask',
2440
+ 'mask-border',
2441
+ 'mask-border-source',
2442
+ 'mask-image',
2443
+ 'mask-position',
2444
+ 'math-depth',
2445
+ 'max-block-size',
2446
+ 'max-height',
2447
+ 'max-inline-size',
2448
+ 'max-width',
2449
+ 'min-block-size',
2450
+ 'min-height',
2451
+ 'min-inline-size',
2452
+ 'min-width',
2453
+ 'object-position',
2454
+ 'offset-anchor',
2455
+ 'offset-path',
2456
+ 'offset-position',
2457
+ 'path-length',
2458
+ 'perspective-origin',
2459
+ 'quotes',
2460
+ 'right',
2461
+ 'rotate',
2462
+ 'scrollbar-gutter',
2463
+ 'shape-outside',
2464
+ 'text-autospace',
2465
+ 'text-emphasis',
2466
+ 'text-emphasis-position',
2467
+ 'text-emphasis-style',
2468
+ 'text-shadow',
2469
+ 'timeline-trigger',
2470
+ 'timeline-trigger-source',
2471
+ 'top',
2472
+ 'transform',
2473
+ 'transform-origin',
2474
+ 'transition',
2475
+ 'transition-timing-function',
2476
+ 'width',
2477
+ ];
2478
+ //# sourceMappingURL=generated.js.map