@join-x5/react-data-grid 1.3.1-alpha-0 → 1.4.1

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