lupine.web 1.1.3 → 1.1.5

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 (41) hide show
  1. package/README.md +66 -3
  2. package/jsx-runtime/index.js +14 -14
  3. package/jsx-runtime/package.json +16 -16
  4. package/jsx-runtime/src/index.d.ts +2 -2
  5. package/package.json +53 -52
  6. package/src/core/bind-attributes.ts +61 -61
  7. package/src/core/bind-lang.ts +52 -52
  8. package/src/core/bind-links.ts +26 -16
  9. package/src/core/bind-meta.tsx +52 -52
  10. package/src/core/bind-ref.ts +51 -51
  11. package/src/core/bind-styles.ts +239 -239
  12. package/src/core/bind-theme.ts +53 -53
  13. package/src/core/camel-to-hyphens.ts +3 -3
  14. package/src/core/export-lupine.ts +80 -80
  15. package/src/core/index.ts +17 -17
  16. package/src/core/initialize.ts +116 -116
  17. package/src/core/mount-component.ts +72 -68
  18. package/src/core/page-loaded-events.ts +16 -16
  19. package/src/core/page-router.ts +180 -180
  20. package/src/core/render-component.ts +230 -233
  21. package/src/core/replace-innerhtml.ts +23 -23
  22. package/src/core/server-cookie.ts +24 -24
  23. package/src/global.d.ts +66 -66
  24. package/src/index.ts +14 -14
  25. package/src/jsx.ts +1044 -1043
  26. package/src/lib/cookie.ts +44 -44
  27. package/src/lib/debug-watch.ts +32 -32
  28. package/src/lib/index.ts +7 -7
  29. package/src/lib/is-frontend.ts +3 -3
  30. package/src/lib/logger.ts +55 -55
  31. package/src/lib/unique-id.ts +40 -40
  32. package/src/lib/web-config.ts +79 -77
  33. package/src/lib/web-env.ts +99 -99
  34. package/src/models/index.ts +4 -4
  35. package/src/models/json-props.ts +8 -8
  36. package/src/models/simple-storage-props.ts +9 -9
  37. package/src/models/theme-props.ts +7 -7
  38. package/src/models/to-client-delivery-props.ts +8 -8
  39. package/src/styles/css-styles.ts +814 -814
  40. package/src/styles/index.ts +4 -4
  41. package/tsconfig.json +113 -113
@@ -1,814 +1,814 @@
1
- export type CssStyles = {
2
- className?: string;
3
-
4
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
5
- accentColor?: string;
6
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-content) */
7
- alignContent?: string;
8
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-items) */
9
- alignItems?: string;
10
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self) */
11
- alignSelf?: string;
12
- alignmentBaseline?: string;
13
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/all) */
14
- all?: string;
15
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation) */
16
- animation?: string;
17
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-composition) */
18
- animationComposition?: string;
19
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay) */
20
- animationDelay?: string;
21
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction) */
22
- animationDirection?: string;
23
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-duration) */
24
- animationDuration?: string;
25
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode) */
26
- animationFillMode?: string;
27
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count) */
28
- animationIterationCount?: string;
29
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-name) */
30
- animationName?: string;
31
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-play-state) */
32
- animationPlayState?: string;
33
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-timing-function) */
34
- animationTimingFunction?: string;
35
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/appearance) */
36
- appearance?: string;
37
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/aspect-ratio) */
38
- aspectRatio?: string;
39
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backdrop-filter) */
40
- backdropFilter?: string;
41
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backface-visibility) */
42
- backfaceVisibility?: string;
43
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background) */
44
- background?: string;
45
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-attachment) */
46
- backgroundAttachment?: string;
47
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-blend-mode) */
48
- backgroundBlendMode?: string;
49
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-clip) */
50
- backgroundClip?: string;
51
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-color) */
52
- backgroundColor?: string;
53
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-image) */
54
- backgroundImage?: string;
55
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-origin) */
56
- backgroundOrigin?: string;
57
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position) */
58
- backgroundPosition?: string;
59
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-x) */
60
- backgroundPositionX?: string;
61
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-y) */
62
- backgroundPositionY?: string;
63
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-repeat) */
64
- backgroundRepeat?: string;
65
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
66
- backgroundSize?: string;
67
- baselineShift?: string;
68
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
69
- blockSize?: string;
70
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border) */
71
- border?: string;
72
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block) */
73
- borderBlock?: string;
74
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-color) */
75
- borderBlockColor?: string;
76
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end) */
77
- borderBlockEnd?: string;
78
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-color) */
79
- borderBlockEndColor?: string;
80
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-style) */
81
- borderBlockEndStyle?: string;
82
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-width) */
83
- borderBlockEndWidth?: string;
84
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start) */
85
- borderBlockStart?: string;
86
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-color) */
87
- borderBlockStartColor?: string;
88
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-style) */
89
- borderBlockStartStyle?: string;
90
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-width) */
91
- borderBlockStartWidth?: string;
92
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-style) */
93
- borderBlockStyle?: string;
94
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-width) */
95
- borderBlockWidth?: string;
96
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom) */
97
- borderBottom?: string;
98
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-color) */
99
- borderBottomColor?: string;
100
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius) */
101
- borderBottomLeftRadius?: string;
102
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius) */
103
- borderBottomRightRadius?: string;
104
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-style) */
105
- borderBottomStyle?: string;
106
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-width) */
107
- borderBottomWidth?: string;
108
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-collapse) */
109
- borderCollapse?: string;
110
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-color) */
111
- borderColor?: string;
112
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius) */
113
- borderEndEndRadius?: string;
114
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius) */
115
- borderEndStartRadius?: string;
116
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image) */
117
- borderImage?: string;
118
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-outset) */
119
- borderImageOutset?: string;
120
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-repeat) */
121
- borderImageRepeat?: string;
122
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-slice) */
123
- borderImageSlice?: string;
124
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-source) */
125
- borderImageSource?: string;
126
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-width) */
127
- borderImageWidth?: string;
128
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline) */
129
- borderInline?: string;
130
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-color) */
131
- borderInlineColor?: string;
132
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end) */
133
- borderInlineEnd?: string;
134
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color) */
135
- borderInlineEndColor?: string;
136
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style) */
137
- borderInlineEndStyle?: string;
138
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width) */
139
- borderInlineEndWidth?: string;
140
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start) */
141
- borderInlineStart?: string;
142
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color) */
143
- borderInlineStartColor?: string;
144
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style) */
145
- borderInlineStartStyle?: string;
146
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width) */
147
- borderInlineStartWidth?: string;
148
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-style) */
149
- borderInlineStyle?: string;
150
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-width) */
151
- borderInlineWidth?: string;
152
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left) */
153
- borderLeft?: string;
154
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-color) */
155
- borderLeftColor?: string;
156
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-style) */
157
- borderLeftStyle?: string;
158
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-width) */
159
- borderLeftWidth?: string;
160
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-radius) */
161
- borderRadius?: string;
162
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right) */
163
- borderRight?: string;
164
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-color) */
165
- borderRightColor?: string;
166
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-style) */
167
- borderRightStyle?: string;
168
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-width) */
169
- borderRightWidth?: string;
170
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-spacing) */
171
- borderSpacing?: string;
172
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius) */
173
- borderStartEndRadius?: string;
174
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius) */
175
- borderStartStartRadius?: string;
176
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-style) */
177
- borderStyle?: string;
178
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top) */
179
- borderTop?: string;
180
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-color) */
181
- borderTopColor?: string;
182
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius) */
183
- borderTopLeftRadius?: string;
184
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius) */
185
- borderTopRightRadius?: string;
186
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-style) */
187
- borderTopStyle?: string;
188
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-width) */
189
- borderTopWidth?: string;
190
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-width) */
191
- borderWidth?: string;
192
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/bottom) */
193
- bottom?: string;
194
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow) */
195
- boxShadow?: string;
196
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing) */
197
- boxSizing?: string;
198
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-after) */
199
- breakAfter?: string;
200
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-before) */
201
- breakBefore?: string;
202
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-inside) */
203
- breakInside?: string;
204
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caption-side) */
205
- captionSide?: string;
206
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caret-color) */
207
- caretColor?: string;
208
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clear) */
209
- clear?: string;
210
- /**
211
- * @deprecated
212
- *
213
- * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip)
214
- */
215
- clip?: string;
216
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip-path) */
217
- clipPath?: string;
218
- clipRule?: string;
219
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
220
- color?: string;
221
- colorInterpolation?: string;
222
- colorInterpolationFilters?: string;
223
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
224
- colorScheme?: string;
225
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-count) */
226
- columnCount?: string;
227
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-fill) */
228
- columnFill?: string;
229
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-gap) */
230
- columnGap?: string;
231
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule) */
232
- columnRule?: string;
233
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-color) */
234
- columnRuleColor?: string;
235
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-style) */
236
- columnRuleStyle?: string;
237
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-width) */
238
- columnRuleWidth?: string;
239
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-span) */
240
- columnSpan?: string;
241
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-width) */
242
- columnWidth?: string;
243
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/columns) */
244
- columns?: string;
245
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
246
- contain?: string;
247
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size) */
248
- containIntrinsicBlockSize?: string;
249
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
250
- containIntrinsicHeight?: string;
251
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size) */
252
- containIntrinsicInlineSize?: string;
253
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
254
- containIntrinsicSize?: string;
255
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width) */
256
- containIntrinsicWidth?: string;
257
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container) */
258
- container?: string;
259
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-name) */
260
- containerName?: string;
261
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-type) */
262
- containerType?: string;
263
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
264
- content?: string;
265
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
266
- counterIncrement?: string;
267
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
268
- counterReset?: string;
269
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
270
- counterSet?: string;
271
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
272
- cssFloat?: string;
273
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssText) */
274
- cssText?: string;
275
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
276
- cursor?: string;
277
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */
278
- direction?: string;
279
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/display) */
280
- display?: string;
281
- dominantBaseline?: string;
282
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
283
- emptyCells?: string;
284
- fill?: string;
285
- fillOpacity?: string;
286
- fillRule?: string;
287
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/filter) */
288
- filter?: string;
289
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex) */
290
- flex?: string;
291
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-basis) */
292
- flexBasis?: string;
293
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-direction) */
294
- flexDirection?: string;
295
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-flow) */
296
- flexFlow?: string;
297
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-grow) */
298
- flexGrow?: string;
299
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-shrink) */
300
- flexShrink?: string;
301
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-wrap) */
302
- flexWrap?: string;
303
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/float) */
304
- float?: string;
305
- floodColor?: string;
306
- floodOpacity?: string;
307
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font) */
308
- font?: string;
309
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-family) */
310
- fontFamily?: string;
311
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-feature-settings) */
312
- fontFeatureSettings?: string;
313
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-kerning) */
314
- fontKerning?: string;
315
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing) */
316
- fontOpticalSizing?: string;
317
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-palette) */
318
- fontPalette?: string;
319
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size) */
320
- fontSize?: string;
321
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size-adjust) */
322
- fontSizeAdjust?: string;
323
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-stretch) */
324
- fontStretch?: string;
325
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-style) */
326
- fontStyle?: string;
327
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
328
- fontSynthesis?: string;
329
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
330
- fontSynthesisSmallCaps?: string;
331
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
332
- fontSynthesisStyle?: string;
333
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
334
- fontSynthesisWeight?: string;
335
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
336
- fontVariant?: string;
337
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates) */
338
- fontVariantAlternates?: string;
339
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-caps) */
340
- fontVariantCaps?: string;
341
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian) */
342
- fontVariantEastAsian?: string;
343
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures) */
344
- fontVariantLigatures?: string;
345
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric) */
346
- fontVariantNumeric?: string;
347
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-position) */
348
- fontVariantPosition?: string;
349
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variation-settings) */
350
- fontVariationSettings?: string;
351
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-weight) */
352
- fontWeight?: string;
353
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust) */
354
- forcedColorAdjust?: string;
355
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/gap) */
356
- gap?: string;
357
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid) */
358
- grid?: string;
359
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-area) */
360
- gridArea?: string;
361
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns) */
362
- gridAutoColumns?: string;
363
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow) */
364
- gridAutoFlow?: string;
365
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows) */
366
- gridAutoRows?: string;
367
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column) */
368
- gridColumn?: string;
369
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-end) */
370
- gridColumnEnd?: string;
371
- /** @deprecated This is a legacy alias of `columnGap`. */
372
- gridColumnGap?: string;
373
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-start) */
374
- gridColumnStart?: string;
375
- /** @deprecated This is a legacy alias of `gap`. */
376
- gridGap?: string;
377
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row) */
378
- gridRow?: string;
379
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-end) */
380
- gridRowEnd?: string;
381
- /** @deprecated This is a legacy alias of `rowGap`. */
382
- gridRowGap?: string;
383
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-start) */
384
- gridRowStart?: string;
385
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template) */
386
- gridTemplate?: string;
387
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-areas) */
388
- gridTemplateAreas?: string;
389
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-columns) */
390
- gridTemplateColumns?: string;
391
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-rows) */
392
- gridTemplateRows?: string;
393
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/height) */
394
- height?: string;
395
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
396
- hyphenateCharacter?: string;
397
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
398
- hyphens?: string;
399
- /**
400
- * @deprecated
401
- *
402
- * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-orientation)
403
- */
404
- imageOrientation?: string;
405
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-rendering) */
406
- imageRendering?: string;
407
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inline-size) */
408
- inlineSize?: string;
409
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset) */
410
- inset?: string;
411
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block) */
412
- insetBlock?: string;
413
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-end) */
414
- insetBlockEnd?: string;
415
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-start) */
416
- insetBlockStart?: string;
417
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline) */
418
- insetInline?: string;
419
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-end) */
420
- insetInlineEnd?: string;
421
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-start) */
422
- insetInlineStart?: string;
423
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/isolation) */
424
- isolation?: string;
425
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content) */
426
- justifyContent?: string;
427
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-items) */
428
- justifyItems?: string;
429
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-self) */
430
- justifySelf?: string;
431
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/left) */
432
- left?: string;
433
- // /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/length) */
434
- // readonly length: number;
435
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/letter-spacing) */
436
- letterSpacing?: string;
437
- lightingColor?: string;
438
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-break) */
439
- lineBreak?: string;
440
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-height) */
441
- lineHeight?: string;
442
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style) */
443
- listStyle?: string;
444
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-image) */
445
- listStyleImage?: string;
446
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-position) */
447
- listStylePosition?: string;
448
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-type) */
449
- listStyleType?: string;
450
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin) */
451
- margin?: string;
452
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block) */
453
- marginBlock?: string;
454
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-end) */
455
- marginBlockEnd?: string;
456
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-start) */
457
- marginBlockStart?: string;
458
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-bottom) */
459
- marginBottom?: string;
460
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline) */
461
- marginInline?: string;
462
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-end) */
463
- marginInlineEnd?: string;
464
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-start) */
465
- marginInlineStart?: string;
466
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-left) */
467
- marginLeft?: string;
468
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-right) */
469
- marginRight?: string;
470
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-top) */
471
- marginTop?: string;
472
- marker?: string;
473
- markerEnd?: string;
474
- markerMid?: string;
475
- markerStart?: string;
476
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask) */
477
- mask?: string;
478
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip) */
479
- maskClip?: string;
480
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite) */
481
- maskComposite?: string;
482
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-image) */
483
- maskImage?: string;
484
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-mode) */
485
- maskMode?: string;
486
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-origin) */
487
- maskOrigin?: string;
488
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-position) */
489
- maskPosition?: string;
490
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-repeat) */
491
- maskRepeat?: string;
492
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-size) */
493
- maskSize?: string;
494
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-type) */
495
- maskType?: string;
496
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-style) */
497
- mathStyle?: string;
498
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-block-size) */
499
- maxBlockSize?: string;
500
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-height) */
501
- maxHeight?: string;
502
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-inline-size) */
503
- maxInlineSize?: string;
504
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-width) */
505
- maxWidth?: string;
506
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-block-size) */
507
- minBlockSize?: string;
508
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-height) */
509
- minHeight?: string;
510
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-inline-size) */
511
- minInlineSize?: string;
512
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-width) */
513
- minWidth?: string;
514
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode) */
515
- mixBlendMode?: string;
516
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-fit) */
517
- objectFit?: string;
518
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-position) */
519
- objectPosition?: string;
520
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset) */
521
- offset?: string;
522
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-distance) */
523
- offsetDistance?: string;
524
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
525
- offsetPath?: string;
526
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
527
- offsetRotate?: string;
528
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
529
- opacity?: string;
530
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/order) */
531
- order?: string;
532
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/orphans) */
533
- orphans?: string;
534
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline) */
535
- outline?: string;
536
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-color) */
537
- outlineColor?: string;
538
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-offset) */
539
- outlineOffset?: string;
540
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-style) */
541
- outlineStyle?: string;
542
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-width) */
543
- outlineWidth?: string;
544
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow) */
545
- overflow?: string;
546
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
547
- overflowAnchor?: string;
548
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
549
- overflowClipMargin?: string;
550
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
551
- overflowWrap?: string;
552
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */
553
- overflowX?: string;
554
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-y) */
555
- overflowY?: string;
556
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior) */
557
- overscrollBehavior?: string;
558
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block) */
559
- overscrollBehaviorBlock?: string;
560
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline) */
561
- overscrollBehaviorInline?: string;
562
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x) */
563
- overscrollBehaviorX?: string;
564
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y) */
565
- overscrollBehaviorY?: string;
566
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding) */
567
- padding?: string;
568
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block) */
569
- paddingBlock?: string;
570
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-end) */
571
- paddingBlockEnd?: string;
572
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-start) */
573
- paddingBlockStart?: string;
574
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-bottom) */
575
- paddingBottom?: string;
576
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline) */
577
- paddingInline?: string;
578
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-end) */
579
- paddingInlineEnd?: string;
580
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-start) */
581
- paddingInlineStart?: string;
582
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-left) */
583
- paddingLeft?: string;
584
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-right) */
585
- paddingRight?: string;
586
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-top) */
587
- paddingTop?: string;
588
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page) */
589
- page?: string;
590
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after) */
591
- pageBreakAfter?: string;
592
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before) */
593
- pageBreakBefore?: string;
594
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside) */
595
- pageBreakInside?: string;
596
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/paint-order) */
597
- paintOrder?: string;
598
- // /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/parentRule) */
599
- // readonly parentRule: CSSRule | null;
600
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective) */
601
- perspective?: string;
602
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective-origin) */
603
- perspectiveOrigin?: string;
604
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-content) */
605
- placeContent?: string;
606
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-items) */
607
- placeItems?: string;
608
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-self) */
609
- placeSelf?: string;
610
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/pointer-events) */
611
- pointerEvents?: string;
612
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
613
- position?: string;
614
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
615
- printColorAdjust?: string;
616
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
617
- quotes?: string;
618
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
619
- resize?: string;
620
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */
621
- right?: string;
622
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/rotate) */
623
- rotate?: string;
624
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/row-gap) */
625
- rowGap?: string;
626
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
627
- rubyPosition?: string;
628
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
629
- scale?: string;
630
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */
631
- scrollBehavior?: string;
632
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin) */
633
- scrollMargin?: string;
634
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block) */
635
- scrollMarginBlock?: string;
636
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end) */
637
- scrollMarginBlockEnd?: string;
638
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start) */
639
- scrollMarginBlockStart?: string;
640
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom) */
641
- scrollMarginBottom?: string;
642
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline) */
643
- scrollMarginInline?: string;
644
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end) */
645
- scrollMarginInlineEnd?: string;
646
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start) */
647
- scrollMarginInlineStart?: string;
648
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left) */
649
- scrollMarginLeft?: string;
650
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right) */
651
- scrollMarginRight?: string;
652
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top) */
653
- scrollMarginTop?: string;
654
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding) */
655
- scrollPadding?: string;
656
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block) */
657
- scrollPaddingBlock?: string;
658
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end) */
659
- scrollPaddingBlockEnd?: string;
660
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start) */
661
- scrollPaddingBlockStart?: string;
662
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom) */
663
- scrollPaddingBottom?: string;
664
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline) */
665
- scrollPaddingInline?: string;
666
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end) */
667
- scrollPaddingInlineEnd?: string;
668
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start) */
669
- scrollPaddingInlineStart?: string;
670
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left) */
671
- scrollPaddingLeft?: string;
672
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right) */
673
- scrollPaddingRight?: string;
674
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top) */
675
- scrollPaddingTop?: string;
676
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align) */
677
- scrollSnapAlign?: string;
678
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop) */
679
- scrollSnapStop?: string;
680
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */
681
- scrollSnapType?: string;
682
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */
683
- scrollbarGutter?: string;
684
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */
685
- shapeImageThreshold?: string;
686
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */
687
- shapeMargin?: string;
688
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-outside) */
689
- shapeOutside?: string;
690
- shapeRendering?: string;
691
- stopColor?: string;
692
- stopOpacity?: string;
693
- stroke?: string;
694
- strokeDasharray?: string;
695
- strokeDashoffset?: string;
696
- strokeLinecap?: string;
697
- strokeLinejoin?: string;
698
- strokeMiterlimit?: string;
699
- strokeOpacity?: string;
700
- strokeWidth?: string;
701
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/tab-size) */
702
- tabSize?: string;
703
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/table-layout) */
704
- tableLayout?: string;
705
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align) */
706
- textAlign?: string;
707
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align-last) */
708
- textAlignLast?: string;
709
- textAnchor?: string;
710
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
711
- textCombineUpright?: string;
712
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
713
- textDecoration?: string;
714
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-color) */
715
- textDecorationColor?: string;
716
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-line) */
717
- textDecorationLine?: string;
718
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink) */
719
- textDecorationSkipInk?: string;
720
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-style) */
721
- textDecorationStyle?: string;
722
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness) */
723
- textDecorationThickness?: string;
724
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis) */
725
- textEmphasis?: string;
726
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color) */
727
- textEmphasisColor?: string;
728
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position) */
729
- textEmphasisPosition?: string;
730
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style) */
731
- textEmphasisStyle?: string;
732
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-indent) */
733
- textIndent?: string;
734
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-orientation) */
735
- textOrientation?: string;
736
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-overflow) */
737
- textOverflow?: string;
738
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-rendering) */
739
- textRendering?: string;
740
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-shadow) */
741
- textShadow?: string;
742
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-transform) */
743
- textTransform?: string;
744
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-offset) */
745
- textUnderlineOffset?: string;
746
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-position) */
747
- textUnderlinePosition?: string;
748
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
749
- top?: string;
750
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
751
- touchAction?: string;
752
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform) */
753
- transform?: string;
754
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-box) */
755
- transformBox?: string;
756
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-origin) */
757
- transformOrigin?: string;
758
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-style) */
759
- transformStyle?: string;
760
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
761
- transition?: string;
762
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
763
- transitionDelay?: string;
764
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
765
- transitionDuration?: string;
766
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-property) */
767
- transitionProperty?: string;
768
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-timing-function) */
769
- transitionTimingFunction?: string;
770
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/translate) */
771
- translate?: string;
772
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/unicode-bidi) */
773
- unicodeBidi?: string;
774
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */
775
- userSelect?: string;
776
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
777
- verticalAlign?: string;
778
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
779
- visibility?: string;
780
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp) */
781
- webkitLineClamp?: string;
782
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite) */
783
- webkitMaskComposite?: string;
784
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color) */
785
- webkitTextFillColor?: string;
786
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke) */
787
- webkitTextStroke?: string;
788
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color) */
789
- webkitTextStrokeColor?: string;
790
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width) */
791
- webkitTextStrokeWidth?: string;
792
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
793
- whiteSpace?: string;
794
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
795
- widows?: string;
796
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
797
- width?: string;
798
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/will-change) */
799
- willChange?: string;
800
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-break) */
801
- wordBreak?: string;
802
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
803
- wordSpacing?: string;
804
- // /**
805
- // * @deprecated
806
- // *
807
- // * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
808
- // */
809
- // wordWrap?: string;
810
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
811
- writingMode?: string;
812
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
813
- zIndex?: string;
814
- };
1
+ export type CssStyles = {
2
+ className?: string;
3
+
4
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/accent-color) */
5
+ accentColor?: string;
6
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-content) */
7
+ alignContent?: string;
8
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-items) */
9
+ alignItems?: string;
10
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/align-self) */
11
+ alignSelf?: string;
12
+ alignmentBaseline?: string;
13
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/all) */
14
+ all?: string;
15
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation) */
16
+ animation?: string;
17
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-composition) */
18
+ animationComposition?: string;
19
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay) */
20
+ animationDelay?: string;
21
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction) */
22
+ animationDirection?: string;
23
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-duration) */
24
+ animationDuration?: string;
25
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode) */
26
+ animationFillMode?: string;
27
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count) */
28
+ animationIterationCount?: string;
29
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-name) */
30
+ animationName?: string;
31
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-play-state) */
32
+ animationPlayState?: string;
33
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-timing-function) */
34
+ animationTimingFunction?: string;
35
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/appearance) */
36
+ appearance?: string;
37
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/aspect-ratio) */
38
+ aspectRatio?: string;
39
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backdrop-filter) */
40
+ backdropFilter?: string;
41
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/backface-visibility) */
42
+ backfaceVisibility?: string;
43
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background) */
44
+ background?: string;
45
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-attachment) */
46
+ backgroundAttachment?: string;
47
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-blend-mode) */
48
+ backgroundBlendMode?: string;
49
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-clip) */
50
+ backgroundClip?: string;
51
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-color) */
52
+ backgroundColor?: string;
53
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-image) */
54
+ backgroundImage?: string;
55
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-origin) */
56
+ backgroundOrigin?: string;
57
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position) */
58
+ backgroundPosition?: string;
59
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-x) */
60
+ backgroundPositionX?: string;
61
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-position-y) */
62
+ backgroundPositionY?: string;
63
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-repeat) */
64
+ backgroundRepeat?: string;
65
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/background-size) */
66
+ backgroundSize?: string;
67
+ baselineShift?: string;
68
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/block-size) */
69
+ blockSize?: string;
70
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border) */
71
+ border?: string;
72
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block) */
73
+ borderBlock?: string;
74
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-color) */
75
+ borderBlockColor?: string;
76
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end) */
77
+ borderBlockEnd?: string;
78
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-color) */
79
+ borderBlockEndColor?: string;
80
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-style) */
81
+ borderBlockEndStyle?: string;
82
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-end-width) */
83
+ borderBlockEndWidth?: string;
84
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start) */
85
+ borderBlockStart?: string;
86
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-color) */
87
+ borderBlockStartColor?: string;
88
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-style) */
89
+ borderBlockStartStyle?: string;
90
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-start-width) */
91
+ borderBlockStartWidth?: string;
92
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-style) */
93
+ borderBlockStyle?: string;
94
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-block-width) */
95
+ borderBlockWidth?: string;
96
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom) */
97
+ borderBottom?: string;
98
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-color) */
99
+ borderBottomColor?: string;
100
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius) */
101
+ borderBottomLeftRadius?: string;
102
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius) */
103
+ borderBottomRightRadius?: string;
104
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-style) */
105
+ borderBottomStyle?: string;
106
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-bottom-width) */
107
+ borderBottomWidth?: string;
108
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-collapse) */
109
+ borderCollapse?: string;
110
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-color) */
111
+ borderColor?: string;
112
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius) */
113
+ borderEndEndRadius?: string;
114
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius) */
115
+ borderEndStartRadius?: string;
116
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image) */
117
+ borderImage?: string;
118
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-outset) */
119
+ borderImageOutset?: string;
120
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-repeat) */
121
+ borderImageRepeat?: string;
122
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-slice) */
123
+ borderImageSlice?: string;
124
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-source) */
125
+ borderImageSource?: string;
126
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-image-width) */
127
+ borderImageWidth?: string;
128
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline) */
129
+ borderInline?: string;
130
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-color) */
131
+ borderInlineColor?: string;
132
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end) */
133
+ borderInlineEnd?: string;
134
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color) */
135
+ borderInlineEndColor?: string;
136
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style) */
137
+ borderInlineEndStyle?: string;
138
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width) */
139
+ borderInlineEndWidth?: string;
140
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start) */
141
+ borderInlineStart?: string;
142
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color) */
143
+ borderInlineStartColor?: string;
144
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style) */
145
+ borderInlineStartStyle?: string;
146
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width) */
147
+ borderInlineStartWidth?: string;
148
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-style) */
149
+ borderInlineStyle?: string;
150
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-inline-width) */
151
+ borderInlineWidth?: string;
152
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left) */
153
+ borderLeft?: string;
154
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-color) */
155
+ borderLeftColor?: string;
156
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-style) */
157
+ borderLeftStyle?: string;
158
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-left-width) */
159
+ borderLeftWidth?: string;
160
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-radius) */
161
+ borderRadius?: string;
162
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right) */
163
+ borderRight?: string;
164
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-color) */
165
+ borderRightColor?: string;
166
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-style) */
167
+ borderRightStyle?: string;
168
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-right-width) */
169
+ borderRightWidth?: string;
170
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-spacing) */
171
+ borderSpacing?: string;
172
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius) */
173
+ borderStartEndRadius?: string;
174
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius) */
175
+ borderStartStartRadius?: string;
176
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-style) */
177
+ borderStyle?: string;
178
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top) */
179
+ borderTop?: string;
180
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-color) */
181
+ borderTopColor?: string;
182
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius) */
183
+ borderTopLeftRadius?: string;
184
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius) */
185
+ borderTopRightRadius?: string;
186
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-style) */
187
+ borderTopStyle?: string;
188
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-top-width) */
189
+ borderTopWidth?: string;
190
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/border-width) */
191
+ borderWidth?: string;
192
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/bottom) */
193
+ bottom?: string;
194
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-shadow) */
195
+ boxShadow?: string;
196
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/box-sizing) */
197
+ boxSizing?: string;
198
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-after) */
199
+ breakAfter?: string;
200
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-before) */
201
+ breakBefore?: string;
202
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/break-inside) */
203
+ breakInside?: string;
204
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caption-side) */
205
+ captionSide?: string;
206
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/caret-color) */
207
+ caretColor?: string;
208
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clear) */
209
+ clear?: string;
210
+ /**
211
+ * @deprecated
212
+ *
213
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip)
214
+ */
215
+ clip?: string;
216
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/clip-path) */
217
+ clipPath?: string;
218
+ clipRule?: string;
219
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color) */
220
+ color?: string;
221
+ colorInterpolation?: string;
222
+ colorInterpolationFilters?: string;
223
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/color-scheme) */
224
+ colorScheme?: string;
225
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-count) */
226
+ columnCount?: string;
227
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-fill) */
228
+ columnFill?: string;
229
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-gap) */
230
+ columnGap?: string;
231
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule) */
232
+ columnRule?: string;
233
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-color) */
234
+ columnRuleColor?: string;
235
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-style) */
236
+ columnRuleStyle?: string;
237
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-rule-width) */
238
+ columnRuleWidth?: string;
239
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-span) */
240
+ columnSpan?: string;
241
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/column-width) */
242
+ columnWidth?: string;
243
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/columns) */
244
+ columns?: string;
245
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain) */
246
+ contain?: string;
247
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-block-size) */
248
+ containIntrinsicBlockSize?: string;
249
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height) */
250
+ containIntrinsicHeight?: string;
251
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-contain-intrinsic-inline-size) */
252
+ containIntrinsicInlineSize?: string;
253
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size) */
254
+ containIntrinsicSize?: string;
255
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width) */
256
+ containIntrinsicWidth?: string;
257
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container) */
258
+ container?: string;
259
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-name) */
260
+ containerName?: string;
261
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/container-type) */
262
+ containerType?: string;
263
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/content) */
264
+ content?: string;
265
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-increment) */
266
+ counterIncrement?: string;
267
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-reset) */
268
+ counterReset?: string;
269
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/counter-set) */
270
+ counterSet?: string;
271
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssFloat) */
272
+ cssFloat?: string;
273
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/cssText) */
274
+ cssText?: string;
275
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/cursor) */
276
+ cursor?: string;
277
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/direction) */
278
+ direction?: string;
279
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/display) */
280
+ display?: string;
281
+ dominantBaseline?: string;
282
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/empty-cells) */
283
+ emptyCells?: string;
284
+ fill?: string;
285
+ fillOpacity?: string;
286
+ fillRule?: string;
287
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/filter) */
288
+ filter?: string;
289
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex) */
290
+ flex?: string;
291
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-basis) */
292
+ flexBasis?: string;
293
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-direction) */
294
+ flexDirection?: string;
295
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-flow) */
296
+ flexFlow?: string;
297
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-grow) */
298
+ flexGrow?: string;
299
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-shrink) */
300
+ flexShrink?: string;
301
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/flex-wrap) */
302
+ flexWrap?: string;
303
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/float) */
304
+ float?: string;
305
+ floodColor?: string;
306
+ floodOpacity?: string;
307
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font) */
308
+ font?: string;
309
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-family) */
310
+ fontFamily?: string;
311
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-feature-settings) */
312
+ fontFeatureSettings?: string;
313
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-kerning) */
314
+ fontKerning?: string;
315
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing) */
316
+ fontOpticalSizing?: string;
317
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-palette) */
318
+ fontPalette?: string;
319
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size) */
320
+ fontSize?: string;
321
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-size-adjust) */
322
+ fontSizeAdjust?: string;
323
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-stretch) */
324
+ fontStretch?: string;
325
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-style) */
326
+ fontStyle?: string;
327
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis) */
328
+ fontSynthesis?: string;
329
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-small-caps) */
330
+ fontSynthesisSmallCaps?: string;
331
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-style) */
332
+ fontSynthesisStyle?: string;
333
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-synthesis-weight) */
334
+ fontSynthesisWeight?: string;
335
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant) */
336
+ fontVariant?: string;
337
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates) */
338
+ fontVariantAlternates?: string;
339
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-caps) */
340
+ fontVariantCaps?: string;
341
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian) */
342
+ fontVariantEastAsian?: string;
343
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures) */
344
+ fontVariantLigatures?: string;
345
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric) */
346
+ fontVariantNumeric?: string;
347
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variant-position) */
348
+ fontVariantPosition?: string;
349
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-variation-settings) */
350
+ fontVariationSettings?: string;
351
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/font-weight) */
352
+ fontWeight?: string;
353
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/forced-color-adjust) */
354
+ forcedColorAdjust?: string;
355
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/gap) */
356
+ gap?: string;
357
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid) */
358
+ grid?: string;
359
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-area) */
360
+ gridArea?: string;
361
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns) */
362
+ gridAutoColumns?: string;
363
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow) */
364
+ gridAutoFlow?: string;
365
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows) */
366
+ gridAutoRows?: string;
367
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column) */
368
+ gridColumn?: string;
369
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-end) */
370
+ gridColumnEnd?: string;
371
+ /** @deprecated This is a legacy alias of `columnGap`. */
372
+ gridColumnGap?: string;
373
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-column-start) */
374
+ gridColumnStart?: string;
375
+ /** @deprecated This is a legacy alias of `gap`. */
376
+ gridGap?: string;
377
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row) */
378
+ gridRow?: string;
379
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-end) */
380
+ gridRowEnd?: string;
381
+ /** @deprecated This is a legacy alias of `rowGap`. */
382
+ gridRowGap?: string;
383
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-row-start) */
384
+ gridRowStart?: string;
385
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template) */
386
+ gridTemplate?: string;
387
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-areas) */
388
+ gridTemplateAreas?: string;
389
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-columns) */
390
+ gridTemplateColumns?: string;
391
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/grid-template-rows) */
392
+ gridTemplateRows?: string;
393
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/height) */
394
+ height?: string;
395
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphenate-character) */
396
+ hyphenateCharacter?: string;
397
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/hyphens) */
398
+ hyphens?: string;
399
+ /**
400
+ * @deprecated
401
+ *
402
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-orientation)
403
+ */
404
+ imageOrientation?: string;
405
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/image-rendering) */
406
+ imageRendering?: string;
407
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inline-size) */
408
+ inlineSize?: string;
409
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset) */
410
+ inset?: string;
411
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block) */
412
+ insetBlock?: string;
413
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-end) */
414
+ insetBlockEnd?: string;
415
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-block-start) */
416
+ insetBlockStart?: string;
417
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline) */
418
+ insetInline?: string;
419
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-end) */
420
+ insetInlineEnd?: string;
421
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/inset-inline-start) */
422
+ insetInlineStart?: string;
423
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/isolation) */
424
+ isolation?: string;
425
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-content) */
426
+ justifyContent?: string;
427
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-items) */
428
+ justifyItems?: string;
429
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/justify-self) */
430
+ justifySelf?: string;
431
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/left) */
432
+ left?: string;
433
+ // /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/length) */
434
+ // readonly length: number;
435
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/letter-spacing) */
436
+ letterSpacing?: string;
437
+ lightingColor?: string;
438
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-break) */
439
+ lineBreak?: string;
440
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/line-height) */
441
+ lineHeight?: string;
442
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style) */
443
+ listStyle?: string;
444
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-image) */
445
+ listStyleImage?: string;
446
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-position) */
447
+ listStylePosition?: string;
448
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/list-style-type) */
449
+ listStyleType?: string;
450
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin) */
451
+ margin?: string;
452
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block) */
453
+ marginBlock?: string;
454
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-end) */
455
+ marginBlockEnd?: string;
456
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-block-start) */
457
+ marginBlockStart?: string;
458
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-bottom) */
459
+ marginBottom?: string;
460
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline) */
461
+ marginInline?: string;
462
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-end) */
463
+ marginInlineEnd?: string;
464
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-inline-start) */
465
+ marginInlineStart?: string;
466
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-left) */
467
+ marginLeft?: string;
468
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-right) */
469
+ marginRight?: string;
470
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/margin-top) */
471
+ marginTop?: string;
472
+ marker?: string;
473
+ markerEnd?: string;
474
+ markerMid?: string;
475
+ markerStart?: string;
476
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask) */
477
+ mask?: string;
478
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-clip) */
479
+ maskClip?: string;
480
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-composite) */
481
+ maskComposite?: string;
482
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-image) */
483
+ maskImage?: string;
484
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-mode) */
485
+ maskMode?: string;
486
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-origin) */
487
+ maskOrigin?: string;
488
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-position) */
489
+ maskPosition?: string;
490
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-repeat) */
491
+ maskRepeat?: string;
492
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-size) */
493
+ maskSize?: string;
494
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mask-type) */
495
+ maskType?: string;
496
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/math-style) */
497
+ mathStyle?: string;
498
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-block-size) */
499
+ maxBlockSize?: string;
500
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-height) */
501
+ maxHeight?: string;
502
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-inline-size) */
503
+ maxInlineSize?: string;
504
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/max-width) */
505
+ maxWidth?: string;
506
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-block-size) */
507
+ minBlockSize?: string;
508
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-height) */
509
+ minHeight?: string;
510
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-inline-size) */
511
+ minInlineSize?: string;
512
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/min-width) */
513
+ minWidth?: string;
514
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode) */
515
+ mixBlendMode?: string;
516
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-fit) */
517
+ objectFit?: string;
518
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/object-position) */
519
+ objectPosition?: string;
520
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset) */
521
+ offset?: string;
522
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-distance) */
523
+ offsetDistance?: string;
524
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
525
+ offsetPath?: string;
526
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
527
+ offsetRotate?: string;
528
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
529
+ opacity?: string;
530
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/order) */
531
+ order?: string;
532
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/orphans) */
533
+ orphans?: string;
534
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline) */
535
+ outline?: string;
536
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-color) */
537
+ outlineColor?: string;
538
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-offset) */
539
+ outlineOffset?: string;
540
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-style) */
541
+ outlineStyle?: string;
542
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/outline-width) */
543
+ outlineWidth?: string;
544
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow) */
545
+ overflow?: string;
546
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-anchor) */
547
+ overflowAnchor?: string;
548
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-clip-margin) */
549
+ overflowClipMargin?: string;
550
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap) */
551
+ overflowWrap?: string;
552
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-x) */
553
+ overflowX?: string;
554
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-y) */
555
+ overflowY?: string;
556
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior) */
557
+ overscrollBehavior?: string;
558
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block) */
559
+ overscrollBehaviorBlock?: string;
560
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline) */
561
+ overscrollBehaviorInline?: string;
562
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x) */
563
+ overscrollBehaviorX?: string;
564
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y) */
565
+ overscrollBehaviorY?: string;
566
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding) */
567
+ padding?: string;
568
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block) */
569
+ paddingBlock?: string;
570
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-end) */
571
+ paddingBlockEnd?: string;
572
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-block-start) */
573
+ paddingBlockStart?: string;
574
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-bottom) */
575
+ paddingBottom?: string;
576
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline) */
577
+ paddingInline?: string;
578
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-end) */
579
+ paddingInlineEnd?: string;
580
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-inline-start) */
581
+ paddingInlineStart?: string;
582
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-left) */
583
+ paddingLeft?: string;
584
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-right) */
585
+ paddingRight?: string;
586
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/padding-top) */
587
+ paddingTop?: string;
588
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page) */
589
+ page?: string;
590
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-after) */
591
+ pageBreakAfter?: string;
592
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-before) */
593
+ pageBreakBefore?: string;
594
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/page-break-inside) */
595
+ pageBreakInside?: string;
596
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/paint-order) */
597
+ paintOrder?: string;
598
+ // /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSStyleDeclaration/parentRule) */
599
+ // readonly parentRule: CSSRule | null;
600
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective) */
601
+ perspective?: string;
602
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/perspective-origin) */
603
+ perspectiveOrigin?: string;
604
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-content) */
605
+ placeContent?: string;
606
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-items) */
607
+ placeItems?: string;
608
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/place-self) */
609
+ placeSelf?: string;
610
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/pointer-events) */
611
+ pointerEvents?: string;
612
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/position) */
613
+ position?: string;
614
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/print-color-adjust) */
615
+ printColorAdjust?: string;
616
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/quotes) */
617
+ quotes?: string;
618
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/resize) */
619
+ resize?: string;
620
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/right) */
621
+ right?: string;
622
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/rotate) */
623
+ rotate?: string;
624
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/row-gap) */
625
+ rowGap?: string;
626
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/ruby-position) */
627
+ rubyPosition?: string;
628
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scale) */
629
+ scale?: string;
630
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-behavior) */
631
+ scrollBehavior?: string;
632
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin) */
633
+ scrollMargin?: string;
634
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block) */
635
+ scrollMarginBlock?: string;
636
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end) */
637
+ scrollMarginBlockEnd?: string;
638
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start) */
639
+ scrollMarginBlockStart?: string;
640
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom) */
641
+ scrollMarginBottom?: string;
642
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline) */
643
+ scrollMarginInline?: string;
644
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end) */
645
+ scrollMarginInlineEnd?: string;
646
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start) */
647
+ scrollMarginInlineStart?: string;
648
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left) */
649
+ scrollMarginLeft?: string;
650
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right) */
651
+ scrollMarginRight?: string;
652
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top) */
653
+ scrollMarginTop?: string;
654
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding) */
655
+ scrollPadding?: string;
656
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block) */
657
+ scrollPaddingBlock?: string;
658
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end) */
659
+ scrollPaddingBlockEnd?: string;
660
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start) */
661
+ scrollPaddingBlockStart?: string;
662
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom) */
663
+ scrollPaddingBottom?: string;
664
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline) */
665
+ scrollPaddingInline?: string;
666
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end) */
667
+ scrollPaddingInlineEnd?: string;
668
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start) */
669
+ scrollPaddingInlineStart?: string;
670
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left) */
671
+ scrollPaddingLeft?: string;
672
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right) */
673
+ scrollPaddingRight?: string;
674
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top) */
675
+ scrollPaddingTop?: string;
676
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align) */
677
+ scrollSnapAlign?: string;
678
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop) */
679
+ scrollSnapStop?: string;
680
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type) */
681
+ scrollSnapType?: string;
682
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter) */
683
+ scrollbarGutter?: string;
684
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold) */
685
+ shapeImageThreshold?: string;
686
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-margin) */
687
+ shapeMargin?: string;
688
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/shape-outside) */
689
+ shapeOutside?: string;
690
+ shapeRendering?: string;
691
+ stopColor?: string;
692
+ stopOpacity?: string;
693
+ stroke?: string;
694
+ strokeDasharray?: string;
695
+ strokeDashoffset?: string;
696
+ strokeLinecap?: string;
697
+ strokeLinejoin?: string;
698
+ strokeMiterlimit?: string;
699
+ strokeOpacity?: string;
700
+ strokeWidth?: string;
701
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/tab-size) */
702
+ tabSize?: string;
703
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/table-layout) */
704
+ tableLayout?: string;
705
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align) */
706
+ textAlign?: string;
707
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-align-last) */
708
+ textAlignLast?: string;
709
+ textAnchor?: string;
710
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-combine-upright) */
711
+ textCombineUpright?: string;
712
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration) */
713
+ textDecoration?: string;
714
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-color) */
715
+ textDecorationColor?: string;
716
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-line) */
717
+ textDecorationLine?: string;
718
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink) */
719
+ textDecorationSkipInk?: string;
720
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-style) */
721
+ textDecorationStyle?: string;
722
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness) */
723
+ textDecorationThickness?: string;
724
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis) */
725
+ textEmphasis?: string;
726
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color) */
727
+ textEmphasisColor?: string;
728
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position) */
729
+ textEmphasisPosition?: string;
730
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style) */
731
+ textEmphasisStyle?: string;
732
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-indent) */
733
+ textIndent?: string;
734
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-orientation) */
735
+ textOrientation?: string;
736
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-overflow) */
737
+ textOverflow?: string;
738
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-rendering) */
739
+ textRendering?: string;
740
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-shadow) */
741
+ textShadow?: string;
742
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-transform) */
743
+ textTransform?: string;
744
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-offset) */
745
+ textUnderlineOffset?: string;
746
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/text-underline-position) */
747
+ textUnderlinePosition?: string;
748
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/top) */
749
+ top?: string;
750
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/touch-action) */
751
+ touchAction?: string;
752
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform) */
753
+ transform?: string;
754
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-box) */
755
+ transformBox?: string;
756
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-origin) */
757
+ transformOrigin?: string;
758
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transform-style) */
759
+ transformStyle?: string;
760
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition) */
761
+ transition?: string;
762
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-delay) */
763
+ transitionDelay?: string;
764
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-duration) */
765
+ transitionDuration?: string;
766
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-property) */
767
+ transitionProperty?: string;
768
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/transition-timing-function) */
769
+ transitionTimingFunction?: string;
770
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/translate) */
771
+ translate?: string;
772
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/unicode-bidi) */
773
+ unicodeBidi?: string;
774
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/user-select) */
775
+ userSelect?: string;
776
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/vertical-align) */
777
+ verticalAlign?: string;
778
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/visibility) */
779
+ visibility?: string;
780
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp) */
781
+ webkitLineClamp?: string;
782
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite) */
783
+ webkitMaskComposite?: string;
784
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color) */
785
+ webkitTextFillColor?: string;
786
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke) */
787
+ webkitTextStroke?: string;
788
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color) */
789
+ webkitTextStrokeColor?: string;
790
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width) */
791
+ webkitTextStrokeWidth?: string;
792
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/white-space) */
793
+ whiteSpace?: string;
794
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/widows) */
795
+ widows?: string;
796
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/width) */
797
+ width?: string;
798
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/will-change) */
799
+ willChange?: string;
800
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-break) */
801
+ wordBreak?: string;
802
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/word-spacing) */
803
+ wordSpacing?: string;
804
+ // /**
805
+ // * @deprecated
806
+ // *
807
+ // * [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/overflow-wrap)
808
+ // */
809
+ // wordWrap?: string;
810
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/writing-mode) */
811
+ writingMode?: string;
812
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/z-index) */
813
+ zIndex?: string;
814
+ };