cnhis-design-vue 3.1.16-beta.8 → 3.1.16-beta.9

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 (27) hide show
  1. package/es/packages/big-table/index.d.ts +1 -1
  2. package/es/packages/big-table/src/BigTable.vue.d.ts +2 -23
  3. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +4 -2
  4. package/es/packages/big-table/src/hooks/useAnchor.d.ts +1 -1
  5. package/es/packages/big-table/src/hooks/useAnchor.js +20 -12
  6. package/es/packages/form-config/index.d.ts +77 -3330
  7. package/es/packages/form-config/src/FormConfig.js +42 -34
  8. package/es/packages/form-config/src/FormConfig.vue.d.ts +121 -3374
  9. package/es/packages/form-config/src/components/FormConfigCreator.js +13 -11
  10. package/es/packages/form-config/src/components/FormConfigCreator.vue.d.ts +10 -7
  11. package/es/packages/form-config/src/components/FormConfigEdit.js +1 -1
  12. package/es/packages/form-config/src/components/FormConfigEdit.vue.d.ts +56 -28
  13. package/es/packages/form-config/src/constants/index.d.ts +20 -20
  14. package/es/packages/form-config/src/constants/index.js +27 -36
  15. package/es/packages/form-config/src/hooks/useConfigurationField.d.ts +2 -1
  16. package/es/packages/form-config/src/hooks/useConfigurationField.js +28 -42
  17. package/es/packages/form-config/src/hooks/usePresetRenderer.d.ts +2 -3
  18. package/es/packages/form-config/src/hooks/usePresetRenderer.js +16 -19
  19. package/es/packages/form-config/src/hooks/useSortable.js +1 -1
  20. package/es/packages/form-config/src/types/index.d.ts +21 -4
  21. package/es/packages/form-config/src/utils/index.d.ts +2 -0
  22. package/es/packages/form-config/src/utils/index.js +15 -0
  23. package/es/packages/form-config/style/index.css +26 -2
  24. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +5 -2
  25. package/es/packages/index.css +26 -2
  26. package/global.d.ts +8 -8
  27. package/package.json +1 -1
@@ -1,12 +1,19 @@
1
1
  /// <reference types="lodash" />
2
+ /// <reference types="lodash" />
2
3
  import { SFCWithInstall } from '../../../es/src/types';
3
4
  export * from './src/types';
4
5
  declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
6
+ maxHeight: {
7
+ type: StringConstructor;
8
+ };
5
9
  textFormatter: {
6
10
  type: import("vue").PropType<import("./src/types").FormConfigTextFormatter>;
7
11
  };
8
12
  }, {
9
13
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
14
+ maxHeight: {
15
+ type: StringConstructor;
16
+ };
10
17
  textFormatter: {
11
18
  type: import("vue").PropType<import("./src/types").FormConfigTextFormatter>;
12
19
  };
@@ -22,3335 +29,42 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
22
29
  'item-key': string;
23
30
  };
24
31
  fieldListRef: import("vue").Ref<{
25
- [x: string]: any;
26
- val_key: string;
27
- html_type: string;
28
- annotation?: boolean | undefined;
29
- val_key_unit?: string | undefined;
30
- is_edit?: import("..").FormCommonState | undefined;
31
- elem_width?: number | undefined;
32
- is_show?: import("..").FormCommonState | undefined;
33
- is_null?: import("..").FormCommonState | undefined;
34
- name?: string | undefined;
35
- alias?: string | undefined;
36
- default_val?: any;
37
- is_empty?: import("..").FormCommonState | undefined;
38
- hide_title?: import("..").FormCommonState | undefined;
39
- placeholder?: string | undefined;
40
- validate?: {
41
- [x: string]: any;
42
- obj_type?: ("password" | "sex" | "age" | "email" | "id_card" | "age_unit" | "mobile" | "telephone" | "birthday" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
43
- vali_obj?: string | undefined;
44
- max_value?: string | number | undefined;
45
- min_value?: string | number | undefined;
46
- min_length?: string | number | undefined;
47
- max_length?: string | number | undefined;
48
- decimal_length?: string | number | undefined;
49
- regular_expression?: string | {
50
- exec: (string: string) => RegExpExecArray | null;
51
- test: (string: string) => boolean;
52
- readonly source: string;
53
- readonly global: boolean;
54
- readonly ignoreCase: boolean;
55
- readonly multiline: boolean;
56
- lastIndex: number;
57
- compile: (pattern: string, flags?: string | undefined) => RegExp;
58
- readonly flags: string;
59
- readonly sticky: boolean;
60
- readonly unicode: boolean;
61
- readonly dotAll: boolean;
62
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
63
- [Symbol.replace]: {
64
- (string: string, replaceValue: string): string;
65
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
66
- };
67
- [Symbol.search]: (string: string) => number;
68
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
69
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
70
- } | undefined;
71
- regular_error_tip?: string | undefined;
72
- } | undefined;
73
- option?: {
74
- text: string;
75
- value: any;
76
- children?: any[] | undefined;
77
- }[] | undefined;
78
- multi_select?: import("..").FormCommonState | undefined;
79
- multi_select_value?: string | number | undefined;
80
- wordbook?: {
81
- level_num: number;
82
- } | undefined;
83
- open?: {
84
- value?: any;
85
- describe?: string | undefined;
86
- } | undefined;
87
- close?: {
88
- value?: any;
89
- describe?: string | undefined;
90
- } | undefined;
91
- date_format?: string | undefined;
92
- step_length?: string | number | undefined;
93
- urlConfig?: {
94
- url: string;
95
- method?: import("..").FormRequestType | undefined;
96
- nameKey?: string | undefined;
97
- valueKey?: string | undefined;
98
- params?: import("../../../es/src/types").AnyObject | undefined;
99
- dependKey?: string | Record<string, string> | (string | {
100
- paramName: string;
101
- paramValue?: string | undefined;
102
- required?: boolean | undefined;
103
- })[] | undefined;
104
- } | undefined;
105
- suffixConfig?: any | any[] | undefined;
106
- fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
107
- content?: string | import("..").FormRenderer | Record<string, import("..").FormRenderer> | undefined;
108
- lazyRequest?: boolean | undefined;
109
- maxGroupNum?: number | undefined;
32
+ key: string;
33
+ layoutWidthEnum: import("./src/types").FormConfigWidth;
34
+ type: string;
35
+ name: string;
36
+ show?: boolean | undefined;
37
+ defaultValue?: any;
38
+ defaultExpand?: boolean | undefined;
39
+ fold?: boolean | undefined;
40
+ required?: boolean | undefined;
41
+ editable?: boolean | undefined;
42
+ notes?: string | undefined;
43
+ desc?: string | undefined;
110
44
  children?: any[] | undefined;
111
- properties?: any[] | undefined;
112
- componentProps?: import("../../../es/src/types").AnyObject | undefined;
113
- decoratorProps?: import("../../../es/src/types").AnyObject | undefined;
114
- noDecorator?: {
115
- valueOf: () => boolean;
116
- } | undefined;
117
- display?: "flex" | "grid" | undefined;
118
- wrapperStyle?: Record<string, string> | {
119
- [x: `--${string}`]: string | number | undefined;
120
- accentColor?: string | undefined;
121
- alignContent?: string | undefined;
122
- alignItems?: string | undefined;
123
- alignSelf?: string | undefined;
124
- alignTracks?: string | undefined;
125
- animationDelay?: string | undefined;
126
- animationDirection?: string | undefined;
127
- animationDuration?: string | undefined;
128
- animationFillMode?: string | undefined;
129
- animationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
130
- animationName?: string | undefined;
131
- animationPlayState?: string | undefined;
132
- animationTimeline?: string | undefined;
133
- animationTimingFunction?: string | undefined;
134
- appearance?: import("csstype").AppearanceProperty | undefined;
135
- aspectRatio?: string | undefined;
136
- backdropFilter?: string | undefined;
137
- backfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
138
- backgroundAttachment?: string | undefined;
139
- backgroundBlendMode?: string | undefined;
140
- backgroundClip?: string | undefined;
141
- backgroundColor?: string | undefined;
142
- backgroundImage?: string | undefined;
143
- backgroundOrigin?: string | undefined;
144
- backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
145
- backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
146
- backgroundRepeat?: string | undefined;
147
- backgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
148
- blockOverflow?: string | undefined;
149
- blockSize?: import("csstype").BlockSizeProperty<string | number> | undefined;
150
- borderBlockColor?: string | undefined;
151
- borderBlockEndColor?: string | undefined;
152
- borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty | undefined;
153
- borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
154
- borderBlockStartColor?: string | undefined;
155
- borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty | undefined;
156
- borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
157
- borderBlockStyle?: import("csstype").BorderBlockStyleProperty | undefined;
158
- borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
159
- borderBottomColor?: string | undefined;
160
- borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
161
- borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
162
- borderBottomStyle?: import("csstype").BorderBottomStyleProperty | undefined;
163
- borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
164
- borderCollapse?: import("csstype").BorderCollapseProperty | undefined;
165
- borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
166
- borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
167
- borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
168
- borderImageRepeat?: string | undefined;
169
- borderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
170
- borderImageSource?: string | undefined;
171
- borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
172
- borderInlineColor?: string | undefined;
173
- borderInlineEndColor?: string | undefined;
174
- borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
175
- borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
176
- borderInlineStartColor?: string | undefined;
177
- borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
178
- borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
179
- borderInlineStyle?: import("csstype").BorderInlineStyleProperty | undefined;
180
- borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
181
- borderLeftColor?: string | undefined;
182
- borderLeftStyle?: import("csstype").BorderLeftStyleProperty | undefined;
183
- borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
184
- borderRightColor?: string | undefined;
185
- borderRightStyle?: import("csstype").BorderRightStyleProperty | undefined;
186
- borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
187
- borderSpacing?: import("csstype").BorderSpacingProperty<string | number> | undefined;
188
- borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
189
- borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
190
- borderTopColor?: string | undefined;
191
- borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
192
- borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
193
- borderTopStyle?: import("csstype").BorderTopStyleProperty | undefined;
194
- borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
195
- bottom?: import("csstype").BottomProperty<string | number> | undefined;
196
- boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
197
- boxShadow?: string | undefined;
198
- boxSizing?: import("csstype").BoxSizingProperty | undefined;
199
- breakAfter?: import("csstype").BreakAfterProperty | undefined;
200
- breakBefore?: import("csstype").BreakBeforeProperty | undefined;
201
- breakInside?: import("csstype").BreakInsideProperty | undefined;
202
- captionSide?: import("csstype").CaptionSideProperty | undefined;
203
- caretColor?: string | undefined;
204
- clear?: import("csstype").ClearProperty | undefined;
205
- clipPath?: string | undefined;
206
- color?: string | undefined;
207
- colorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
208
- colorScheme?: string | undefined;
209
- columnCount?: import("csstype").ColumnCountProperty | undefined;
210
- columnFill?: import("csstype").ColumnFillProperty | undefined;
211
- columnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
212
- columnRuleColor?: string | undefined;
213
- columnRuleStyle?: string | undefined;
214
- columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
215
- columnSpan?: import("csstype").ColumnSpanProperty | undefined;
216
- columnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
217
- contain?: string | undefined;
218
- content?: string | undefined;
219
- contentVisibility?: import("csstype").ContentVisibilityProperty | undefined;
220
- counterIncrement?: string | undefined;
221
- counterReset?: string | undefined;
222
- counterSet?: string | undefined;
223
- cursor?: string | undefined;
224
- direction?: import("csstype").DirectionProperty | undefined;
225
- display?: string | undefined;
226
- emptyCells?: import("csstype").EmptyCellsProperty | undefined;
227
- filter?: string | undefined;
228
- flexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
229
- flexDirection?: import("csstype").FlexDirectionProperty | undefined;
230
- flexGrow?: import("csstype").GlobalsNumber | undefined;
231
- flexShrink?: import("csstype").GlobalsNumber | undefined;
232
- flexWrap?: import("csstype").FlexWrapProperty | undefined;
233
- float?: import("csstype").FloatProperty | undefined;
234
- fontFamily?: string | undefined;
235
- fontFeatureSettings?: string | undefined;
236
- fontKerning?: import("csstype").FontKerningProperty | undefined;
237
- fontLanguageOverride?: string | undefined;
238
- fontOpticalSizing?: import("csstype").FontOpticalSizingProperty | undefined;
239
- fontSize?: import("csstype").FontSizeProperty<string | number> | undefined;
240
- fontSizeAdjust?: import("csstype").FontSizeAdjustProperty | undefined;
241
- fontSmooth?: import("csstype").FontSmoothProperty<string | number> | undefined;
242
- fontStretch?: string | undefined;
243
- fontStyle?: string | undefined;
244
- fontSynthesis?: string | undefined;
245
- fontVariant?: string | undefined;
246
- fontVariantAlternates?: string | undefined;
247
- fontVariantCaps?: import("csstype").FontVariantCapsProperty | undefined;
248
- fontVariantEastAsian?: string | undefined;
249
- fontVariantLigatures?: string | undefined;
250
- fontVariantNumeric?: string | undefined;
251
- fontVariantPosition?: import("csstype").FontVariantPositionProperty | undefined;
252
- fontVariationSettings?: string | undefined;
253
- fontWeight?: import("csstype").FontWeightProperty | undefined;
254
- forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty | undefined;
255
- gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
256
- gridAutoFlow?: string | undefined;
257
- gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
258
- gridColumnEnd?: import("csstype").GridColumnEndProperty | undefined;
259
- gridColumnStart?: import("csstype").GridColumnStartProperty | undefined;
260
- gridRowEnd?: import("csstype").GridRowEndProperty | undefined;
261
- gridRowStart?: import("csstype").GridRowStartProperty | undefined;
262
- gridTemplateAreas?: string | undefined;
263
- gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
264
- gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
265
- hangingPunctuation?: string | undefined;
266
- height?: import("csstype").HeightProperty<string | number> | undefined;
267
- hyphenateCharacter?: string | undefined;
268
- hyphens?: import("csstype").HyphensProperty | undefined;
269
- imageOrientation?: string | undefined;
270
- imageRendering?: import("csstype").ImageRenderingProperty | undefined;
271
- imageResolution?: string | undefined;
272
- initialLetter?: import("csstype").InitialLetterProperty | undefined;
273
- inlineSize?: import("csstype").InlineSizeProperty<string | number> | undefined;
274
- inputSecurity?: import("csstype").InputSecurityProperty | undefined;
275
- inset?: import("csstype").InsetProperty<string | number> | undefined;
276
- insetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
277
- insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
278
- insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
279
- insetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
280
- insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
281
- insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
282
- isolation?: import("csstype").IsolationProperty | undefined;
283
- justifyContent?: string | undefined;
284
- justifyItems?: string | undefined;
285
- justifySelf?: string | undefined;
286
- justifyTracks?: string | undefined;
287
- left?: import("csstype").LeftProperty<string | number> | undefined;
288
- letterSpacing?: import("csstype").LetterSpacingProperty<string | number> | undefined;
289
- lineBreak?: import("csstype").LineBreakProperty | undefined;
290
- lineHeight?: import("csstype").LineHeightProperty<string | number> | undefined;
291
- lineHeightStep?: import("csstype").LineHeightStepProperty<string | number> | undefined;
292
- listStyleImage?: string | undefined;
293
- listStylePosition?: import("csstype").ListStylePositionProperty | undefined;
294
- listStyleType?: string | undefined;
295
- marginBlock?: import("csstype").MarginBlockProperty<string | number> | undefined;
296
- marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
297
- marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
298
- marginBottom?: import("csstype").MarginBottomProperty<string | number> | undefined;
299
- marginInline?: import("csstype").MarginInlineProperty<string | number> | undefined;
300
- marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
301
- marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
302
- marginLeft?: import("csstype").MarginLeftProperty<string | number> | undefined;
303
- marginRight?: import("csstype").MarginRightProperty<string | number> | undefined;
304
- marginTop?: import("csstype").MarginTopProperty<string | number> | undefined;
305
- maskBorderMode?: import("csstype").MaskBorderModeProperty | undefined;
306
- maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
307
- maskBorderRepeat?: string | undefined;
308
- maskBorderSlice?: import("csstype").MaskBorderSliceProperty | undefined;
309
- maskBorderSource?: string | undefined;
310
- maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
311
- maskClip?: string | undefined;
312
- maskComposite?: string | undefined;
313
- maskImage?: string | undefined;
314
- maskMode?: string | undefined;
315
- maskOrigin?: string | undefined;
316
- maskPosition?: import("csstype").MaskPositionProperty<string | number> | undefined;
317
- maskRepeat?: string | undefined;
318
- maskSize?: import("csstype").MaskSizeProperty<string | number> | undefined;
319
- maskType?: import("csstype").MaskTypeProperty | undefined;
320
- mathStyle?: import("csstype").MathStyleProperty | undefined;
321
- maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
322
- maxHeight?: import("csstype").MaxHeightProperty<string | number> | undefined;
323
- maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
324
- maxLines?: import("csstype").MaxLinesProperty | undefined;
325
- maxWidth?: import("csstype").MaxWidthProperty<string | number> | undefined;
326
- minBlockSize?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
327
- minHeight?: import("csstype").MinHeightProperty<string | number> | undefined;
328
- minInlineSize?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
329
- minWidth?: import("csstype").MinWidthProperty<string | number> | undefined;
330
- mixBlendMode?: import("csstype").MixBlendModeProperty | undefined;
331
- motionDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
332
- motionPath?: string | undefined;
333
- motionRotation?: string | undefined;
334
- objectFit?: import("csstype").ObjectFitProperty | undefined;
335
- objectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
336
- offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
337
- offsetDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
338
- offsetPath?: string | undefined;
339
- offsetRotate?: string | undefined;
340
- offsetRotation?: string | undefined;
341
- opacity?: import("csstype").OpacityProperty | undefined;
342
- order?: import("csstype").GlobalsNumber | undefined;
343
- orphans?: import("csstype").GlobalsNumber | undefined;
344
- outlineColor?: string | undefined;
345
- outlineOffset?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
346
- outlineStyle?: string | undefined;
347
- outlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
348
- overflowAnchor?: import("csstype").OverflowAnchorProperty | undefined;
349
- overflowBlock?: import("csstype").OverflowBlockProperty | undefined;
350
- overflowClipBox?: import("csstype").OverflowClipBoxProperty | undefined;
351
- overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
352
- overflowInline?: import("csstype").OverflowInlineProperty | undefined;
353
- overflowWrap?: import("csstype").OverflowWrapProperty | undefined;
354
- overflowX?: import("csstype").OverflowXProperty | undefined;
355
- overflowY?: import("csstype").OverflowYProperty | undefined;
356
- overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
357
- overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
358
- overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty | undefined;
359
- overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty | undefined;
360
- paddingBlock?: import("csstype").PaddingBlockProperty<string | number> | undefined;
361
- paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
362
- paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
363
- paddingBottom?: import("csstype").PaddingBottomProperty<string | number> | undefined;
364
- paddingInline?: import("csstype").PaddingInlineProperty<string | number> | undefined;
365
- paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
366
- paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
367
- paddingLeft?: import("csstype").PaddingLeftProperty<string | number> | undefined;
368
- paddingRight?: import("csstype").PaddingRightProperty<string | number> | undefined;
369
- paddingTop?: import("csstype").PaddingTopProperty<string | number> | undefined;
370
- pageBreakAfter?: import("csstype").PageBreakAfterProperty | undefined;
371
- pageBreakBefore?: import("csstype").PageBreakBeforeProperty | undefined;
372
- pageBreakInside?: import("csstype").PageBreakInsideProperty | undefined;
373
- paintOrder?: string | undefined;
374
- perspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
375
- perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
376
- placeContent?: string | undefined;
377
- pointerEvents?: import("csstype").PointerEventsProperty | undefined;
378
- position?: import("csstype").PositionProperty | undefined;
379
- printColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
380
- quotes?: string | undefined;
381
- resize?: import("csstype").ResizeProperty | undefined;
382
- right?: import("csstype").RightProperty<string | number> | undefined;
383
- rotate?: string | undefined;
384
- rowGap?: import("csstype").RowGapProperty<string | number> | undefined;
385
- rubyAlign?: import("csstype").RubyAlignProperty | undefined;
386
- rubyMerge?: import("csstype").RubyMergeProperty | undefined;
387
- rubyPosition?: string | undefined;
388
- scale?: import("csstype").ScaleProperty | undefined;
389
- scrollBehavior?: import("csstype").ScrollBehaviorProperty | undefined;
390
- scrollMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
391
- scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
392
- scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
393
- scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
394
- scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
395
- scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
396
- scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
397
- scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
398
- scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
399
- scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
400
- scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
401
- scrollPadding?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
402
- scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
403
- scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
404
- scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
405
- scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
406
- scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
407
- scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
408
- scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
409
- scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
410
- scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
411
- scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
412
- scrollSnapAlign?: string | undefined;
413
- scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
414
- scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
415
- scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
416
- scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
417
- scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
418
- scrollSnapStop?: import("csstype").ScrollSnapStopProperty | undefined;
419
- scrollSnapType?: string | undefined;
420
- scrollbarColor?: string | undefined;
421
- scrollbarGutter?: string | undefined;
422
- scrollbarWidth?: import("csstype").ScrollbarWidthProperty | undefined;
423
- shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty | undefined;
424
- shapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
425
- shapeOutside?: string | undefined;
426
- tabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
427
- tableLayout?: import("csstype").TableLayoutProperty | undefined;
428
- textAlign?: import("csstype").TextAlignProperty | undefined;
429
- textAlignLast?: import("csstype").TextAlignLastProperty | undefined;
430
- textCombineUpright?: string | undefined;
431
- textDecorationColor?: string | undefined;
432
- textDecorationLine?: string | undefined;
433
- textDecorationSkip?: string | undefined;
434
- textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty | undefined;
435
- textDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
436
- textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
437
- textDecorationWidth?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
438
- textEmphasisColor?: string | undefined;
439
- textEmphasisPosition?: string | undefined;
440
- textEmphasisStyle?: string | undefined;
441
- textIndent?: import("csstype").TextIndentProperty<string | number> | undefined;
442
- textJustify?: import("csstype").TextJustifyProperty | undefined;
443
- textOrientation?: import("csstype").TextOrientationProperty | undefined;
444
- textOverflow?: string | undefined;
445
- textRendering?: import("csstype").TextRenderingProperty | undefined;
446
- textShadow?: string | undefined;
447
- textSizeAdjust?: string | undefined;
448
- textTransform?: import("csstype").TextTransformProperty | undefined;
449
- textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
450
- textUnderlinePosition?: string | undefined;
451
- top?: import("csstype").TopProperty<string | number> | undefined;
452
- touchAction?: string | undefined;
453
- transform?: string | undefined;
454
- transformBox?: import("csstype").TransformBoxProperty | undefined;
455
- transformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
456
- transformStyle?: import("csstype").TransformStyleProperty | undefined;
457
- transitionDelay?: string | undefined;
458
- transitionDuration?: string | undefined;
459
- transitionProperty?: string | undefined;
460
- transitionTimingFunction?: string | undefined;
461
- translate?: import("csstype").TranslateProperty<string | number> | undefined;
462
- unicodeBidi?: import("csstype").UnicodeBidiProperty | undefined;
463
- userSelect?: import("csstype").UserSelectProperty | undefined;
464
- verticalAlign?: import("csstype").VerticalAlignProperty<string | number> | undefined;
465
- visibility?: import("csstype").VisibilityProperty | undefined;
466
- whiteSpace?: import("csstype").WhiteSpaceProperty | undefined;
467
- widows?: import("csstype").GlobalsNumber | undefined;
468
- width?: import("csstype").WidthProperty<string | number> | undefined;
469
- willChange?: string | undefined;
470
- wordBreak?: import("csstype").WordBreakProperty | undefined;
471
- wordSpacing?: import("csstype").WordSpacingProperty<string | number> | undefined;
472
- wordWrap?: import("csstype").WordWrapProperty | undefined;
473
- writingMode?: import("csstype").WritingModeProperty | undefined;
474
- zIndex?: import("csstype").ZIndexProperty | undefined;
475
- zoom?: import("csstype").ZoomProperty | undefined;
476
- all?: import("csstype").Globals | undefined;
477
- animation?: import("csstype").AnimationProperty | undefined;
478
- background?: import("csstype").BackgroundProperty<string | number> | undefined;
479
- backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
480
- border?: import("csstype").BorderProperty<string | number> | undefined;
481
- borderBlock?: import("csstype").BorderBlockProperty<string | number> | undefined;
482
- borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
483
- borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
484
- borderBottom?: import("csstype").BorderBottomProperty<string | number> | undefined;
485
- borderColor?: string | undefined;
486
- borderImage?: import("csstype").BorderImageProperty | undefined;
487
- borderInline?: import("csstype").BorderInlineProperty<string | number> | undefined;
488
- borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
489
- borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
490
- borderLeft?: import("csstype").BorderLeftProperty<string | number> | undefined;
491
- borderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
492
- borderRight?: import("csstype").BorderRightProperty<string | number> | undefined;
493
- borderStyle?: string | undefined;
494
- borderTop?: import("csstype").BorderTopProperty<string | number> | undefined;
495
- borderWidth?: import("csstype").BorderWidthProperty<string | number> | undefined;
496
- columnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
497
- columns?: import("csstype").ColumnsProperty<string | number> | undefined;
498
- flex?: import("csstype").FlexProperty<string | number> | undefined;
499
- flexFlow?: string | undefined;
500
- font?: string | undefined;
501
- gap?: import("csstype").GapProperty<string | number> | undefined;
502
- grid?: string | undefined;
503
- gridArea?: import("csstype").GridAreaProperty | undefined;
504
- gridColumn?: import("csstype").GridColumnProperty | undefined;
505
- gridRow?: import("csstype").GridRowProperty | undefined;
506
- gridTemplate?: string | undefined;
507
- lineClamp?: import("csstype").LineClampProperty | undefined;
508
- listStyle?: string | undefined;
509
- margin?: import("csstype").MarginProperty<string | number> | undefined;
510
- mask?: import("csstype").MaskProperty<string | number> | undefined;
511
- maskBorder?: import("csstype").MaskBorderProperty | undefined;
512
- motion?: import("csstype").OffsetProperty<string | number> | undefined;
513
- offset?: import("csstype").OffsetProperty<string | number> | undefined;
514
- outline?: import("csstype").OutlineProperty<string | number> | undefined;
515
- overflow?: string | undefined;
516
- overscrollBehavior?: string | undefined;
517
- padding?: import("csstype").PaddingProperty<string | number> | undefined;
518
- placeItems?: string | undefined;
519
- placeSelf?: string | undefined;
520
- textDecoration?: import("csstype").TextDecorationProperty<string | number> | undefined;
521
- textEmphasis?: string | undefined;
522
- transition?: string | undefined;
523
- MozAnimationDelay?: string | undefined;
524
- MozAnimationDirection?: string | undefined;
525
- MozAnimationDuration?: string | undefined;
526
- MozAnimationFillMode?: string | undefined;
527
- MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
528
- MozAnimationName?: string | undefined;
529
- MozAnimationPlayState?: string | undefined;
530
- MozAnimationTimingFunction?: string | undefined;
531
- MozAppearance?: import("csstype").MozAppearanceProperty | undefined;
532
- MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
533
- MozBorderBottomColors?: string | undefined;
534
- MozBorderEndColor?: string | undefined;
535
- MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
536
- MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
537
- MozBorderLeftColors?: string | undefined;
538
- MozBorderRightColors?: string | undefined;
539
- MozBorderStartColor?: string | undefined;
540
- MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
541
- MozBorderTopColors?: string | undefined;
542
- MozBoxSizing?: import("csstype").BoxSizingProperty | undefined;
543
- MozColumnCount?: import("csstype").ColumnCountProperty | undefined;
544
- MozColumnFill?: import("csstype").ColumnFillProperty | undefined;
545
- MozColumnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
546
- MozColumnRuleColor?: string | undefined;
547
- MozColumnRuleStyle?: string | undefined;
548
- MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
549
- MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
550
- MozContextProperties?: string | undefined;
551
- MozFontFeatureSettings?: string | undefined;
552
- MozFontLanguageOverride?: string | undefined;
553
- MozHyphens?: import("csstype").HyphensProperty | undefined;
554
- MozImageRegion?: string | undefined;
555
- MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
556
- MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
557
- MozOrient?: import("csstype").MozOrientProperty | undefined;
558
- MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
559
- MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
560
- MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
561
- MozPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
562
- MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
563
- MozStackSizing?: import("csstype").MozStackSizingProperty | undefined;
564
- MozTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
565
- MozTextBlink?: import("csstype").MozTextBlinkProperty | undefined;
566
- MozTextSizeAdjust?: string | undefined;
567
- MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
568
- MozTransformStyle?: import("csstype").TransformStyleProperty | undefined;
569
- MozTransitionDelay?: string | undefined;
570
- MozTransitionDuration?: string | undefined;
571
- MozTransitionProperty?: string | undefined;
572
- MozTransitionTimingFunction?: string | undefined;
573
- MozUserFocus?: import("csstype").MozUserFocusProperty | undefined;
574
- MozUserModify?: import("csstype").MozUserModifyProperty | undefined;
575
- MozUserSelect?: import("csstype").UserSelectProperty | undefined;
576
- MozWindowDragging?: import("csstype").MozWindowDraggingProperty | undefined;
577
- MozWindowShadow?: import("csstype").MozWindowShadowProperty | undefined;
578
- msAccelerator?: import("csstype").MsAcceleratorProperty | undefined;
579
- msAlignSelf?: string | undefined;
580
- msBlockProgression?: import("csstype").MsBlockProgressionProperty | undefined;
581
- msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty | undefined;
582
- msContentZoomLimitMax?: string | undefined;
583
- msContentZoomLimitMin?: string | undefined;
584
- msContentZoomSnapPoints?: string | undefined;
585
- msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
586
- msContentZooming?: import("csstype").MsContentZoomingProperty | undefined;
587
- msFilter?: string | undefined;
588
- msFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
589
- msFlexPositive?: import("csstype").GlobalsNumber | undefined;
590
- msFlowFrom?: string | undefined;
591
- msFlowInto?: string | undefined;
592
- msGridColumns?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
593
- msGridRows?: import("csstype").MsGridRowsProperty<string | number> | undefined;
594
- msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty | undefined;
595
- msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
596
- msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
597
- msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
598
- msHyphens?: import("csstype").HyphensProperty | undefined;
599
- msImeAlign?: import("csstype").MsImeAlignProperty | undefined;
600
- msJustifySelf?: string | undefined;
601
- msLineBreak?: import("csstype").LineBreakProperty | undefined;
602
- msOrder?: import("csstype").GlobalsNumber | undefined;
603
- msOverflowStyle?: import("csstype").MsOverflowStyleProperty | undefined;
604
- msOverflowX?: import("csstype").OverflowXProperty | undefined;
605
- msOverflowY?: import("csstype").OverflowYProperty | undefined;
606
- msScrollChaining?: import("csstype").MsScrollChainingProperty | undefined;
607
- msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
608
- msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
609
- msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
610
- msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
611
- msScrollRails?: import("csstype").MsScrollRailsProperty | undefined;
612
- msScrollSnapPointsX?: string | undefined;
613
- msScrollSnapPointsY?: string | undefined;
614
- msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty | undefined;
615
- msScrollTranslation?: import("csstype").MsScrollTranslationProperty | undefined;
616
- msScrollbar3dlightColor?: string | undefined;
617
- msScrollbarArrowColor?: string | undefined;
618
- msScrollbarBaseColor?: string | undefined;
619
- msScrollbarDarkshadowColor?: string | undefined;
620
- msScrollbarFaceColor?: string | undefined;
621
- msScrollbarHighlightColor?: string | undefined;
622
- msScrollbarShadowColor?: string | undefined;
623
- msTextAutospace?: import("csstype").MsTextAutospaceProperty | undefined;
624
- msTextCombineHorizontal?: string | undefined;
625
- msTextOverflow?: string | undefined;
626
- msTouchAction?: string | undefined;
627
- msTouchSelect?: import("csstype").MsTouchSelectProperty | undefined;
628
- msTransform?: string | undefined;
629
- msTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
630
- msTransitionDelay?: string | undefined;
631
- msTransitionDuration?: string | undefined;
632
- msTransitionProperty?: string | undefined;
633
- msTransitionTimingFunction?: string | undefined;
634
- msUserSelect?: import("csstype").MsUserSelectProperty | undefined;
635
- msWordBreak?: import("csstype").WordBreakProperty | undefined;
636
- msWrapFlow?: import("csstype").MsWrapFlowProperty | undefined;
637
- msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
638
- msWrapThrough?: import("csstype").MsWrapThroughProperty | undefined;
639
- msWritingMode?: import("csstype").WritingModeProperty | undefined;
640
- WebkitAlignContent?: string | undefined;
641
- WebkitAlignItems?: string | undefined;
642
- WebkitAlignSelf?: string | undefined;
643
- WebkitAnimationDelay?: string | undefined;
644
- WebkitAnimationDirection?: string | undefined;
645
- WebkitAnimationDuration?: string | undefined;
646
- WebkitAnimationFillMode?: string | undefined;
647
- WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
648
- WebkitAnimationName?: string | undefined;
649
- WebkitAnimationPlayState?: string | undefined;
650
- WebkitAnimationTimingFunction?: string | undefined;
651
- WebkitAppearance?: import("csstype").WebkitAppearanceProperty | undefined;
652
- WebkitBackdropFilter?: string | undefined;
653
- WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
654
- WebkitBackgroundClip?: string | undefined;
655
- WebkitBackgroundOrigin?: string | undefined;
656
- WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
657
- WebkitBorderBeforeColor?: string | undefined;
658
- WebkitBorderBeforeStyle?: string | undefined;
659
- WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
660
- WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
661
- WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
662
- WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
663
- WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
664
- WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
665
- WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
666
- WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
667
- WebkitBoxShadow?: string | undefined;
668
- WebkitBoxSizing?: import("csstype").BoxSizingProperty | undefined;
669
- WebkitClipPath?: string | undefined;
670
- WebkitColumnCount?: import("csstype").ColumnCountProperty | undefined;
671
- WebkitColumnFill?: import("csstype").ColumnFillProperty | undefined;
672
- WebkitColumnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
673
- WebkitColumnRuleColor?: string | undefined;
674
- WebkitColumnRuleStyle?: string | undefined;
675
- WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
676
- WebkitColumnSpan?: import("csstype").ColumnSpanProperty | undefined;
677
- WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
678
- WebkitFilter?: string | undefined;
679
- WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
680
- WebkitFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
681
- WebkitFlexGrow?: import("csstype").GlobalsNumber | undefined;
682
- WebkitFlexShrink?: import("csstype").GlobalsNumber | undefined;
683
- WebkitFlexWrap?: import("csstype").FlexWrapProperty | undefined;
684
- WebkitFontFeatureSettings?: string | undefined;
685
- WebkitFontKerning?: import("csstype").FontKerningProperty | undefined;
686
- WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
687
- WebkitFontVariantLigatures?: string | undefined;
688
- WebkitHyphenateCharacter?: string | undefined;
689
- WebkitHyphens?: import("csstype").HyphensProperty | undefined;
690
- WebkitInitialLetter?: import("csstype").InitialLetterProperty | undefined;
691
- WebkitJustifyContent?: string | undefined;
692
- WebkitLineBreak?: import("csstype").LineBreakProperty | undefined;
693
- WebkitLineClamp?: import("csstype").WebkitLineClampProperty | undefined;
694
- WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
695
- WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
696
- WebkitMaskAttachment?: string | undefined;
697
- WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
698
- WebkitMaskBoxImageRepeat?: string | undefined;
699
- WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty | undefined;
700
- WebkitMaskBoxImageSource?: string | undefined;
701
- WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
702
- WebkitMaskClip?: string | undefined;
703
- WebkitMaskComposite?: string | undefined;
704
- WebkitMaskImage?: string | undefined;
705
- WebkitMaskOrigin?: string | undefined;
706
- WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
707
- WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
708
- WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
709
- WebkitMaskRepeat?: string | undefined;
710
- WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty | undefined;
711
- WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty | undefined;
712
- WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
713
- WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
714
- WebkitOrder?: import("csstype").GlobalsNumber | undefined;
715
- WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty | undefined;
716
- WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
717
- WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
718
- WebkitPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
719
- WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
720
- WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
721
- WebkitRubyPosition?: string | undefined;
722
- WebkitScrollSnapType?: string | undefined;
723
- WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
724
- WebkitTapHighlightColor?: string | undefined;
725
- WebkitTextCombine?: string | undefined;
726
- WebkitTextDecorationColor?: string | undefined;
727
- WebkitTextDecorationLine?: string | undefined;
728
- WebkitTextDecorationSkip?: string | undefined;
729
- WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
730
- WebkitTextEmphasisColor?: string | undefined;
731
- WebkitTextEmphasisPosition?: string | undefined;
732
- WebkitTextEmphasisStyle?: string | undefined;
733
- WebkitTextFillColor?: string | undefined;
734
- WebkitTextOrientation?: import("csstype").TextOrientationProperty | undefined;
735
- WebkitTextSizeAdjust?: string | undefined;
736
- WebkitTextStrokeColor?: string | undefined;
737
- WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
738
- WebkitTextUnderlinePosition?: string | undefined;
739
- WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty | undefined;
740
- WebkitTransform?: string | undefined;
741
- WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
742
- WebkitTransformStyle?: import("csstype").TransformStyleProperty | undefined;
743
- WebkitTransitionDelay?: string | undefined;
744
- WebkitTransitionDuration?: string | undefined;
745
- WebkitTransitionProperty?: string | undefined;
746
- WebkitTransitionTimingFunction?: string | undefined;
747
- WebkitUserModify?: import("csstype").WebkitUserModifyProperty | undefined;
748
- WebkitUserSelect?: import("csstype").UserSelectProperty | undefined;
749
- WebkitWritingMode?: import("csstype").WritingModeProperty | undefined;
750
- MozAnimation?: import("csstype").AnimationProperty | undefined;
751
- MozBorderImage?: import("csstype").BorderImageProperty | undefined;
752
- MozColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
753
- MozColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
754
- MozTransition?: string | undefined;
755
- msContentZoomLimit?: string | undefined;
756
- msContentZoomSnap?: string | undefined;
757
- msFlex?: import("csstype").FlexProperty<string | number> | undefined;
758
- msScrollLimit?: string | undefined;
759
- msScrollSnapX?: string | undefined;
760
- msScrollSnapY?: string | undefined;
761
- msTransition?: string | undefined;
762
- WebkitAnimation?: import("csstype").AnimationProperty | undefined;
763
- WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
764
- WebkitBorderImage?: import("csstype").BorderImageProperty | undefined;
765
- WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
766
- WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
767
- WebkitColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
768
- WebkitFlex?: import("csstype").FlexProperty<string | number> | undefined;
769
- WebkitFlexFlow?: string | undefined;
770
- WebkitMask?: import("csstype").WebkitMaskProperty<string | number> | undefined;
771
- WebkitMaskBoxImage?: import("csstype").MaskBorderProperty | undefined;
772
- WebkitTextEmphasis?: string | undefined;
773
- WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
774
- WebkitTransition?: string | undefined;
775
- azimuth?: string | undefined;
776
- boxAlign?: import("csstype").BoxAlignProperty | undefined;
777
- boxDirection?: import("csstype").BoxDirectionProperty | undefined;
778
- boxFlex?: import("csstype").GlobalsNumber | undefined;
779
- boxFlexGroup?: import("csstype").GlobalsNumber | undefined;
780
- boxLines?: import("csstype").BoxLinesProperty | undefined;
781
- boxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
782
- boxOrient?: import("csstype").BoxOrientProperty | undefined;
783
- boxPack?: import("csstype").BoxPackProperty | undefined;
784
- clip?: string | undefined;
785
- gridColumnGap?: import("csstype").GridColumnGapProperty<string | number> | undefined;
786
- gridGap?: import("csstype").GridGapProperty<string | number> | undefined;
787
- gridRowGap?: import("csstype").GridRowGapProperty<string | number> | undefined;
788
- imeMode?: import("csstype").ImeModeProperty | undefined;
789
- offsetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
790
- offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
791
- offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
792
- offsetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
793
- offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
794
- offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
795
- scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
796
- scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
797
- scrollSnapPointsX?: string | undefined;
798
- scrollSnapPointsY?: string | undefined;
799
- scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty | undefined;
800
- scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty | undefined;
801
- scrollbarTrackColor?: string | undefined;
802
- KhtmlBoxAlign?: import("csstype").BoxAlignProperty | undefined;
803
- KhtmlBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
804
- KhtmlBoxFlex?: import("csstype").GlobalsNumber | undefined;
805
- KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
806
- KhtmlBoxLines?: import("csstype").BoxLinesProperty | undefined;
807
- KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
808
- KhtmlBoxOrient?: import("csstype").BoxOrientProperty | undefined;
809
- KhtmlBoxPack?: import("csstype").BoxPackProperty | undefined;
810
- KhtmlLineBreak?: import("csstype").LineBreakProperty | undefined;
811
- KhtmlOpacity?: import("csstype").OpacityProperty | undefined;
812
- KhtmlUserSelect?: import("csstype").UserSelectProperty | undefined;
813
- MozBackgroundClip?: string | undefined;
814
- MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty | undefined;
815
- MozBackgroundOrigin?: string | undefined;
816
- MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
817
- MozBinding?: string | undefined;
818
- MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
819
- MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
820
- MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
821
- MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
822
- MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
823
- MozBoxAlign?: import("csstype").BoxAlignProperty | undefined;
824
- MozBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
825
- MozBoxFlex?: import("csstype").GlobalsNumber | undefined;
826
- MozBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
827
- MozBoxOrient?: import("csstype").BoxOrientProperty | undefined;
828
- MozBoxPack?: import("csstype").BoxPackProperty | undefined;
829
- MozBoxShadow?: string | undefined;
830
- MozFloatEdge?: import("csstype").MozFloatEdgeProperty | undefined;
831
- MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty | undefined;
832
- MozOpacity?: import("csstype").OpacityProperty | undefined;
833
- MozOutline?: import("csstype").OutlineProperty<string | number> | undefined;
834
- MozOutlineColor?: string | undefined;
835
- MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
836
- MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
837
- MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
838
- MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
839
- MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
840
- MozOutlineStyle?: string | undefined;
841
- MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
842
- MozTextAlignLast?: import("csstype").TextAlignLastProperty | undefined;
843
- MozTextDecorationColor?: string | undefined;
844
- MozTextDecorationLine?: string | undefined;
845
- MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
846
- MozUserInput?: import("csstype").MozUserInputProperty | undefined;
847
- msImeMode?: import("csstype").ImeModeProperty | undefined;
848
- msScrollbarTrackColor?: string | undefined;
849
- OAnimation?: import("csstype").AnimationProperty | undefined;
850
- OAnimationDelay?: string | undefined;
851
- OAnimationDirection?: string | undefined;
852
- OAnimationDuration?: string | undefined;
853
- OAnimationFillMode?: string | undefined;
854
- OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
855
- OAnimationName?: string | undefined;
856
- OAnimationPlayState?: string | undefined;
857
- OAnimationTimingFunction?: string | undefined;
858
- OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
859
- OBorderImage?: import("csstype").BorderImageProperty | undefined;
860
- OObjectFit?: import("csstype").ObjectFitProperty | undefined;
861
- OObjectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
862
- OTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
863
- OTextOverflow?: string | undefined;
864
- OTransform?: string | undefined;
865
- OTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
866
- OTransition?: string | undefined;
867
- OTransitionDelay?: string | undefined;
868
- OTransitionDuration?: string | undefined;
869
- OTransitionProperty?: string | undefined;
870
- OTransitionTimingFunction?: string | undefined;
871
- WebkitBoxAlign?: import("csstype").BoxAlignProperty | undefined;
872
- WebkitBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
873
- WebkitBoxFlex?: import("csstype").GlobalsNumber | undefined;
874
- WebkitBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
875
- WebkitBoxLines?: import("csstype").BoxLinesProperty | undefined;
876
- WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
877
- WebkitBoxOrient?: import("csstype").BoxOrientProperty | undefined;
878
- WebkitBoxPack?: import("csstype").BoxPackProperty | undefined;
879
- WebkitScrollSnapPointsX?: string | undefined;
880
- WebkitScrollSnapPointsY?: string | undefined;
881
- alignmentBaseline?: import("csstype").AlignmentBaselineProperty | undefined;
882
- baselineShift?: import("csstype").BaselineShiftProperty<string | number> | undefined;
883
- clipRule?: import("csstype").ClipRuleProperty | undefined;
884
- colorInterpolation?: import("csstype").ColorInterpolationProperty | undefined;
885
- colorRendering?: import("csstype").ColorRenderingProperty | undefined;
886
- dominantBaseline?: import("csstype").DominantBaselineProperty | undefined;
887
- fill?: string | undefined;
888
- fillOpacity?: import("csstype").GlobalsNumber | undefined;
889
- fillRule?: import("csstype").FillRuleProperty | undefined;
890
- floodColor?: string | undefined;
891
- floodOpacity?: import("csstype").GlobalsNumber | undefined;
892
- glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty | undefined;
893
- lightingColor?: string | undefined;
894
- marker?: string | undefined;
895
- markerEnd?: string | undefined;
896
- markerMid?: string | undefined;
897
- markerStart?: string | undefined;
898
- shapeRendering?: import("csstype").ShapeRenderingProperty | undefined;
899
- stopColor?: string | undefined;
900
- stopOpacity?: import("csstype").GlobalsNumber | undefined;
901
- stroke?: string | undefined;
902
- strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
903
- strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
904
- strokeLinecap?: import("csstype").StrokeLinecapProperty | undefined;
905
- strokeLinejoin?: import("csstype").StrokeLinejoinProperty | undefined;
906
- strokeMiterlimit?: import("csstype").GlobalsNumber | undefined;
907
- strokeOpacity?: import("csstype").GlobalsNumber | undefined;
908
- strokeWidth?: import("csstype").StrokeWidthProperty<string | number> | undefined;
909
- textAnchor?: import("csstype").TextAnchorProperty | undefined;
910
- vectorEffect?: import("csstype").VectorEffectProperty | undefined;
911
- "accent-color"?: string | undefined;
912
- "align-content"?: string | undefined;
913
- "align-items"?: string | undefined;
914
- "align-self"?: string | undefined;
915
- "align-tracks"?: string | undefined;
916
- "animation-delay"?: string | undefined;
917
- "animation-direction"?: string | undefined;
918
- "animation-duration"?: string | undefined;
919
- "animation-fill-mode"?: string | undefined;
920
- "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
921
- "animation-name"?: string | undefined;
922
- "animation-play-state"?: string | undefined;
923
- "animation-timeline"?: string | undefined;
924
- "animation-timing-function"?: string | undefined;
925
- "aspect-ratio"?: string | undefined;
926
- "backdrop-filter"?: string | undefined;
927
- "backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
928
- "background-attachment"?: string | undefined;
929
- "background-blend-mode"?: string | undefined;
930
- "background-clip"?: string | undefined;
931
- "background-color"?: string | undefined;
932
- "background-image"?: string | undefined;
933
- "background-origin"?: string | undefined;
934
- "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
935
- "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
936
- "background-repeat"?: string | undefined;
937
- "background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
938
- "block-overflow"?: string | undefined;
939
- "block-size"?: import("csstype").BlockSizeProperty<string | number> | undefined;
940
- "border-block-color"?: string | undefined;
941
- "border-block-end-color"?: string | undefined;
942
- "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty | undefined;
943
- "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
944
- "border-block-start-color"?: string | undefined;
945
- "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty | undefined;
946
- "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
947
- "border-block-style"?: import("csstype").BorderBlockStyleProperty | undefined;
948
- "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
949
- "border-bottom-color"?: string | undefined;
950
- "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
951
- "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
952
- "border-bottom-style"?: import("csstype").BorderBottomStyleProperty | undefined;
953
- "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
954
- "border-collapse"?: import("csstype").BorderCollapseProperty | undefined;
955
- "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
956
- "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
957
- "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
958
- "border-image-repeat"?: string | undefined;
959
- "border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
960
- "border-image-source"?: string | undefined;
961
- "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
962
- "border-inline-color"?: string | undefined;
963
- "border-inline-end-color"?: string | undefined;
964
- "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
965
- "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
966
- "border-inline-start-color"?: string | undefined;
967
- "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
968
- "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
969
- "border-inline-style"?: import("csstype").BorderInlineStyleProperty | undefined;
970
- "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
971
- "border-left-color"?: string | undefined;
972
- "border-left-style"?: import("csstype").BorderLeftStyleProperty | undefined;
973
- "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
974
- "border-right-color"?: string | undefined;
975
- "border-right-style"?: import("csstype").BorderRightStyleProperty | undefined;
976
- "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
977
- "border-spacing"?: import("csstype").BorderSpacingProperty<string | number> | undefined;
978
- "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
979
- "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
980
- "border-top-color"?: string | undefined;
981
- "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
982
- "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
983
- "border-top-style"?: import("csstype").BorderTopStyleProperty | undefined;
984
- "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
985
- "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
986
- "box-shadow"?: string | undefined;
987
- "box-sizing"?: import("csstype").BoxSizingProperty | undefined;
988
- "break-after"?: import("csstype").BreakAfterProperty | undefined;
989
- "break-before"?: import("csstype").BreakBeforeProperty | undefined;
990
- "break-inside"?: import("csstype").BreakInsideProperty | undefined;
991
- "caption-side"?: import("csstype").CaptionSideProperty | undefined;
992
- "caret-color"?: string | undefined;
993
- "clip-path"?: string | undefined;
994
- "color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
995
- "color-scheme"?: string | undefined;
996
- "column-count"?: import("csstype").ColumnCountProperty | undefined;
997
- "column-fill"?: import("csstype").ColumnFillProperty | undefined;
998
- "column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
999
- "column-rule-color"?: string | undefined;
1000
- "column-rule-style"?: string | undefined;
1001
- "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1002
- "column-span"?: import("csstype").ColumnSpanProperty | undefined;
1003
- "column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1004
- "content-visibility"?: import("csstype").ContentVisibilityProperty | undefined;
1005
- "counter-increment"?: string | undefined;
1006
- "counter-reset"?: string | undefined;
1007
- "counter-set"?: string | undefined;
1008
- "empty-cells"?: import("csstype").EmptyCellsProperty | undefined;
1009
- "flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
1010
- "flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1011
- "flex-grow"?: import("csstype").GlobalsNumber | undefined;
1012
- "flex-shrink"?: import("csstype").GlobalsNumber | undefined;
1013
- "flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
1014
- "font-family"?: string | undefined;
1015
- "font-feature-settings"?: string | undefined;
1016
- "font-kerning"?: import("csstype").FontKerningProperty | undefined;
1017
- "font-language-override"?: string | undefined;
1018
- "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty | undefined;
1019
- "font-size"?: import("csstype").FontSizeProperty<string | number> | undefined;
1020
- "font-size-adjust"?: import("csstype").FontSizeAdjustProperty | undefined;
1021
- "font-smooth"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1022
- "font-stretch"?: string | undefined;
1023
- "font-style"?: string | undefined;
1024
- "font-synthesis"?: string | undefined;
1025
- "font-variant"?: string | undefined;
1026
- "font-variant-alternates"?: string | undefined;
1027
- "font-variant-caps"?: import("csstype").FontVariantCapsProperty | undefined;
1028
- "font-variant-east-asian"?: string | undefined;
1029
- "font-variant-ligatures"?: string | undefined;
1030
- "font-variant-numeric"?: string | undefined;
1031
- "font-variant-position"?: import("csstype").FontVariantPositionProperty | undefined;
1032
- "font-variation-settings"?: string | undefined;
1033
- "font-weight"?: import("csstype").FontWeightProperty | undefined;
1034
- "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty | undefined;
1035
- "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
1036
- "grid-auto-flow"?: string | undefined;
1037
- "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
1038
- "grid-column-end"?: import("csstype").GridColumnEndProperty | undefined;
1039
- "grid-column-start"?: import("csstype").GridColumnStartProperty | undefined;
1040
- "grid-row-end"?: import("csstype").GridRowEndProperty | undefined;
1041
- "grid-row-start"?: import("csstype").GridRowStartProperty | undefined;
1042
- "grid-template-areas"?: string | undefined;
1043
- "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
1044
- "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
1045
- "hanging-punctuation"?: string | undefined;
1046
- "hyphenate-character"?: string | undefined;
1047
- "image-orientation"?: string | undefined;
1048
- "image-rendering"?: import("csstype").ImageRenderingProperty | undefined;
1049
- "image-resolution"?: string | undefined;
1050
- "initial-letter"?: import("csstype").InitialLetterProperty | undefined;
1051
- "inline-size"?: import("csstype").InlineSizeProperty<string | number> | undefined;
1052
- "input-security"?: import("csstype").InputSecurityProperty | undefined;
1053
- "inset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
1054
- "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
1055
- "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
1056
- "inset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
1057
- "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
1058
- "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
1059
- "justify-content"?: string | undefined;
1060
- "justify-items"?: string | undefined;
1061
- "justify-self"?: string | undefined;
1062
- "justify-tracks"?: string | undefined;
1063
- "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number> | undefined;
1064
- "line-break"?: import("csstype").LineBreakProperty | undefined;
1065
- "line-height"?: import("csstype").LineHeightProperty<string | number> | undefined;
1066
- "line-height-step"?: import("csstype").LineHeightStepProperty<string | number> | undefined;
1067
- "list-style-image"?: string | undefined;
1068
- "list-style-position"?: import("csstype").ListStylePositionProperty | undefined;
1069
- "list-style-type"?: string | undefined;
1070
- "margin-block"?: import("csstype").MarginBlockProperty<string | number> | undefined;
1071
- "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
1072
- "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
1073
- "margin-bottom"?: import("csstype").MarginBottomProperty<string | number> | undefined;
1074
- "margin-inline"?: import("csstype").MarginInlineProperty<string | number> | undefined;
1075
- "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1076
- "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1077
- "margin-left"?: import("csstype").MarginLeftProperty<string | number> | undefined;
1078
- "margin-right"?: import("csstype").MarginRightProperty<string | number> | undefined;
1079
- "margin-top"?: import("csstype").MarginTopProperty<string | number> | undefined;
1080
- "mask-border-mode"?: import("csstype").MaskBorderModeProperty | undefined;
1081
- "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
1082
- "mask-border-repeat"?: string | undefined;
1083
- "mask-border-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
1084
- "mask-border-source"?: string | undefined;
1085
- "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
1086
- "mask-clip"?: string | undefined;
1087
- "mask-composite"?: string | undefined;
1088
- "mask-image"?: string | undefined;
1089
- "mask-mode"?: string | undefined;
1090
- "mask-origin"?: string | undefined;
1091
- "mask-position"?: import("csstype").MaskPositionProperty<string | number> | undefined;
1092
- "mask-repeat"?: string | undefined;
1093
- "mask-size"?: import("csstype").MaskSizeProperty<string | number> | undefined;
1094
- "mask-type"?: import("csstype").MaskTypeProperty | undefined;
1095
- "math-style"?: import("csstype").MathStyleProperty | undefined;
1096
- "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
1097
- "max-height"?: import("csstype").MaxHeightProperty<string | number> | undefined;
1098
- "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
1099
- "max-lines"?: import("csstype").MaxLinesProperty | undefined;
1100
- "max-width"?: import("csstype").MaxWidthProperty<string | number> | undefined;
1101
- "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
1102
- "min-height"?: import("csstype").MinHeightProperty<string | number> | undefined;
1103
- "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
1104
- "min-width"?: import("csstype").MinWidthProperty<string | number> | undefined;
1105
- "mix-blend-mode"?: import("csstype").MixBlendModeProperty | undefined;
1106
- "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1107
- "motion-path"?: string | undefined;
1108
- "motion-rotation"?: string | undefined;
1109
- "object-fit"?: import("csstype").ObjectFitProperty | undefined;
1110
- "object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
1111
- "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
1112
- "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1113
- "offset-path"?: string | undefined;
1114
- "offset-rotate"?: string | undefined;
1115
- "offset-rotation"?: string | undefined;
1116
- "outline-color"?: string | undefined;
1117
- "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
1118
- "outline-style"?: string | undefined;
1119
- "outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
1120
- "overflow-anchor"?: import("csstype").OverflowAnchorProperty | undefined;
1121
- "overflow-block"?: import("csstype").OverflowBlockProperty | undefined;
1122
- "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty | undefined;
1123
- "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
1124
- "overflow-inline"?: import("csstype").OverflowInlineProperty | undefined;
1125
- "overflow-wrap"?: import("csstype").OverflowWrapProperty | undefined;
1126
- "overflow-x"?: import("csstype").OverflowXProperty | undefined;
1127
- "overflow-y"?: import("csstype").OverflowYProperty | undefined;
1128
- "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
1129
- "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
1130
- "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty | undefined;
1131
- "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty | undefined;
1132
- "padding-block"?: import("csstype").PaddingBlockProperty<string | number> | undefined;
1133
- "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
1134
- "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
1135
- "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number> | undefined;
1136
- "padding-inline"?: import("csstype").PaddingInlineProperty<string | number> | undefined;
1137
- "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1138
- "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1139
- "padding-left"?: import("csstype").PaddingLeftProperty<string | number> | undefined;
1140
- "padding-right"?: import("csstype").PaddingRightProperty<string | number> | undefined;
1141
- "padding-top"?: import("csstype").PaddingTopProperty<string | number> | undefined;
1142
- "page-break-after"?: import("csstype").PageBreakAfterProperty | undefined;
1143
- "page-break-before"?: import("csstype").PageBreakBeforeProperty | undefined;
1144
- "page-break-inside"?: import("csstype").PageBreakInsideProperty | undefined;
1145
- "paint-order"?: string | undefined;
1146
- "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1147
- "place-content"?: string | undefined;
1148
- "pointer-events"?: import("csstype").PointerEventsProperty | undefined;
1149
- "print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
1150
- "row-gap"?: import("csstype").RowGapProperty<string | number> | undefined;
1151
- "ruby-align"?: import("csstype").RubyAlignProperty | undefined;
1152
- "ruby-merge"?: import("csstype").RubyMergeProperty | undefined;
1153
- "ruby-position"?: string | undefined;
1154
- "scroll-behavior"?: import("csstype").ScrollBehaviorProperty | undefined;
1155
- "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
1156
- "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
1157
- "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
1158
- "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
1159
- "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
1160
- "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
1161
- "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
1162
- "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
1163
- "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
1164
- "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
1165
- "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
1166
- "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
1167
- "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
1168
- "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
1169
- "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
1170
- "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
1171
- "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
1172
- "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
1173
- "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
1174
- "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
1175
- "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
1176
- "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
1177
- "scroll-snap-align"?: string | undefined;
1178
- "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
1179
- "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
1180
- "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
1181
- "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
1182
- "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
1183
- "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty | undefined;
1184
- "scroll-snap-type"?: string | undefined;
1185
- "scrollbar-color"?: string | undefined;
1186
- "scrollbar-gutter"?: string | undefined;
1187
- "scrollbar-width"?: import("csstype").ScrollbarWidthProperty | undefined;
1188
- "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty | undefined;
1189
- "shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
1190
- "shape-outside"?: string | undefined;
1191
- "tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1192
- "table-layout"?: import("csstype").TableLayoutProperty | undefined;
1193
- "text-align"?: import("csstype").TextAlignProperty | undefined;
1194
- "text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
1195
- "text-combine-upright"?: string | undefined;
1196
- "text-decoration-color"?: string | undefined;
1197
- "text-decoration-line"?: string | undefined;
1198
- "text-decoration-skip"?: string | undefined;
1199
- "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty | undefined;
1200
- "text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1201
- "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
1202
- "text-decoration-width"?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
1203
- "text-emphasis-color"?: string | undefined;
1204
- "text-emphasis-position"?: string | undefined;
1205
- "text-emphasis-style"?: string | undefined;
1206
- "text-indent"?: import("csstype").TextIndentProperty<string | number> | undefined;
1207
- "text-justify"?: import("csstype").TextJustifyProperty | undefined;
1208
- "text-orientation"?: import("csstype").TextOrientationProperty | undefined;
1209
- "text-overflow"?: string | undefined;
1210
- "text-rendering"?: import("csstype").TextRenderingProperty | undefined;
1211
- "text-shadow"?: string | undefined;
1212
- "text-size-adjust"?: string | undefined;
1213
- "text-transform"?: import("csstype").TextTransformProperty | undefined;
1214
- "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
1215
- "text-underline-position"?: string | undefined;
1216
- "touch-action"?: string | undefined;
1217
- "transform-box"?: import("csstype").TransformBoxProperty | undefined;
1218
- "transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1219
- "transform-style"?: import("csstype").TransformStyleProperty | undefined;
1220
- "transition-delay"?: string | undefined;
1221
- "transition-duration"?: string | undefined;
1222
- "transition-property"?: string | undefined;
1223
- "transition-timing-function"?: string | undefined;
1224
- "unicode-bidi"?: import("csstype").UnicodeBidiProperty | undefined;
1225
- "user-select"?: import("csstype").UserSelectProperty | undefined;
1226
- "vertical-align"?: import("csstype").VerticalAlignProperty<string | number> | undefined;
1227
- "white-space"?: import("csstype").WhiteSpaceProperty | undefined;
1228
- "will-change"?: string | undefined;
1229
- "word-break"?: import("csstype").WordBreakProperty | undefined;
1230
- "word-spacing"?: import("csstype").WordSpacingProperty<string | number> | undefined;
1231
- "word-wrap"?: import("csstype").WordWrapProperty | undefined;
1232
- "writing-mode"?: import("csstype").WritingModeProperty | undefined;
1233
- "z-index"?: import("csstype").ZIndexProperty | undefined;
1234
- "background-position"?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
1235
- "border-block"?: import("csstype").BorderBlockProperty<string | number> | undefined;
1236
- "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
1237
- "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
1238
- "border-bottom"?: import("csstype").BorderBottomProperty<string | number> | undefined;
1239
- "border-color"?: string | undefined;
1240
- "border-image"?: import("csstype").BorderImageProperty | undefined;
1241
- "border-inline"?: import("csstype").BorderInlineProperty<string | number> | undefined;
1242
- "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
1243
- "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
1244
- "border-left"?: import("csstype").BorderLeftProperty<string | number> | undefined;
1245
- "border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1246
- "border-right"?: import("csstype").BorderRightProperty<string | number> | undefined;
1247
- "border-style"?: string | undefined;
1248
- "border-top"?: import("csstype").BorderTopProperty<string | number> | undefined;
1249
- "border-width"?: import("csstype").BorderWidthProperty<string | number> | undefined;
1250
- "column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1251
- "flex-flow"?: string | undefined;
1252
- "grid-area"?: import("csstype").GridAreaProperty | undefined;
1253
- "grid-column"?: import("csstype").GridColumnProperty | undefined;
1254
- "grid-row"?: import("csstype").GridRowProperty | undefined;
1255
- "grid-template"?: string | undefined;
1256
- "line-clamp"?: import("csstype").LineClampProperty | undefined;
1257
- "list-style"?: string | undefined;
1258
- "mask-border"?: import("csstype").MaskBorderProperty | undefined;
1259
- "overscroll-behavior"?: string | undefined;
1260
- "place-items"?: string | undefined;
1261
- "place-self"?: string | undefined;
1262
- "text-decoration"?: import("csstype").TextDecorationProperty<string | number> | undefined;
1263
- "text-emphasis"?: string | undefined;
1264
- "-moz-animation-delay"?: string | undefined;
1265
- "-moz-animation-direction"?: string | undefined;
1266
- "-moz-animation-duration"?: string | undefined;
1267
- "-moz-animation-fill-mode"?: string | undefined;
1268
- "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1269
- "-moz-animation-name"?: string | undefined;
1270
- "-moz-animation-play-state"?: string | undefined;
1271
- "-moz-animation-timing-function"?: string | undefined;
1272
- "-moz-appearance"?: import("csstype").MozAppearanceProperty | undefined;
1273
- "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
1274
- "-moz-border-bottom-colors"?: string | undefined;
1275
- "-moz-border-end-color"?: string | undefined;
1276
- "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
1277
- "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
1278
- "-moz-border-left-colors"?: string | undefined;
1279
- "-moz-border-right-colors"?: string | undefined;
1280
- "-moz-border-start-color"?: string | undefined;
1281
- "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
1282
- "-moz-border-top-colors"?: string | undefined;
1283
- "-moz-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
1284
- "-moz-column-count"?: import("csstype").ColumnCountProperty | undefined;
1285
- "-moz-column-fill"?: import("csstype").ColumnFillProperty | undefined;
1286
- "-moz-column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
1287
- "-moz-column-rule-color"?: string | undefined;
1288
- "-moz-column-rule-style"?: string | undefined;
1289
- "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1290
- "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1291
- "-moz-context-properties"?: string | undefined;
1292
- "-moz-font-feature-settings"?: string | undefined;
1293
- "-moz-font-language-override"?: string | undefined;
1294
- "-moz-hyphens"?: import("csstype").HyphensProperty | undefined;
1295
- "-moz-image-region"?: string | undefined;
1296
- "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1297
- "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1298
- "-moz-orient"?: import("csstype").MozOrientProperty | undefined;
1299
- "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1300
- "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1301
- "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1302
- "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
1303
- "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1304
- "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty | undefined;
1305
- "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1306
- "-moz-text-blink"?: import("csstype").MozTextBlinkProperty | undefined;
1307
- "-moz-text-size-adjust"?: string | undefined;
1308
- "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1309
- "-moz-transform-style"?: import("csstype").TransformStyleProperty | undefined;
1310
- "-moz-transition-delay"?: string | undefined;
1311
- "-moz-transition-duration"?: string | undefined;
1312
- "-moz-transition-property"?: string | undefined;
1313
- "-moz-transition-timing-function"?: string | undefined;
1314
- "-moz-user-focus"?: import("csstype").MozUserFocusProperty | undefined;
1315
- "-moz-user-modify"?: import("csstype").MozUserModifyProperty | undefined;
1316
- "-moz-user-select"?: import("csstype").UserSelectProperty | undefined;
1317
- "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty | undefined;
1318
- "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty | undefined;
1319
- "-ms-accelerator"?: import("csstype").MsAcceleratorProperty | undefined;
1320
- "-ms-align-self"?: string | undefined;
1321
- "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty | undefined;
1322
- "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty | undefined;
1323
- "-ms-content-zoom-limit-max"?: string | undefined;
1324
- "-ms-content-zoom-limit-min"?: string | undefined;
1325
- "-ms-content-zoom-snap-points"?: string | undefined;
1326
- "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
1327
- "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty | undefined;
1328
- "-ms-filter"?: string | undefined;
1329
- "-ms-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1330
- "-ms-flex-positive"?: import("csstype").GlobalsNumber | undefined;
1331
- "-ms-flow-from"?: string | undefined;
1332
- "-ms-flow-into"?: string | undefined;
1333
- "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
1334
- "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number> | undefined;
1335
- "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty | undefined;
1336
- "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
1337
- "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
1338
- "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
1339
- "-ms-hyphens"?: import("csstype").HyphensProperty | undefined;
1340
- "-ms-ime-align"?: import("csstype").MsImeAlignProperty | undefined;
1341
- "-ms-justify-self"?: string | undefined;
1342
- "-ms-line-break"?: import("csstype").LineBreakProperty | undefined;
1343
- "-ms-order"?: import("csstype").GlobalsNumber | undefined;
1344
- "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty | undefined;
1345
- "-ms-overflow-x"?: import("csstype").OverflowXProperty | undefined;
1346
- "-ms-overflow-y"?: import("csstype").OverflowYProperty | undefined;
1347
- "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty | undefined;
1348
- "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
1349
- "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
1350
- "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
1351
- "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
1352
- "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty | undefined;
1353
- "-ms-scroll-snap-points-x"?: string | undefined;
1354
- "-ms-scroll-snap-points-y"?: string | undefined;
1355
- "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty | undefined;
1356
- "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty | undefined;
1357
- "-ms-scrollbar-3dlight-color"?: string | undefined;
1358
- "-ms-scrollbar-arrow-color"?: string | undefined;
1359
- "-ms-scrollbar-base-color"?: string | undefined;
1360
- "-ms-scrollbar-darkshadow-color"?: string | undefined;
1361
- "-ms-scrollbar-face-color"?: string | undefined;
1362
- "-ms-scrollbar-highlight-color"?: string | undefined;
1363
- "-ms-scrollbar-shadow-color"?: string | undefined;
1364
- "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty | undefined;
1365
- "-ms-text-combine-horizontal"?: string | undefined;
1366
- "-ms-text-overflow"?: string | undefined;
1367
- "-ms-touch-action"?: string | undefined;
1368
- "-ms-touch-select"?: import("csstype").MsTouchSelectProperty | undefined;
1369
- "-ms-transform"?: string | undefined;
1370
- "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1371
- "-ms-transition-delay"?: string | undefined;
1372
- "-ms-transition-duration"?: string | undefined;
1373
- "-ms-transition-property"?: string | undefined;
1374
- "-ms-transition-timing-function"?: string | undefined;
1375
- "-ms-user-select"?: import("csstype").MsUserSelectProperty | undefined;
1376
- "-ms-word-break"?: import("csstype").WordBreakProperty | undefined;
1377
- "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty | undefined;
1378
- "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
1379
- "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty | undefined;
1380
- "-ms-writing-mode"?: import("csstype").WritingModeProperty | undefined;
1381
- "-webkit-align-content"?: string | undefined;
1382
- "-webkit-align-items"?: string | undefined;
1383
- "-webkit-align-self"?: string | undefined;
1384
- "-webkit-animation-delay"?: string | undefined;
1385
- "-webkit-animation-direction"?: string | undefined;
1386
- "-webkit-animation-duration"?: string | undefined;
1387
- "-webkit-animation-fill-mode"?: string | undefined;
1388
- "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1389
- "-webkit-animation-name"?: string | undefined;
1390
- "-webkit-animation-play-state"?: string | undefined;
1391
- "-webkit-animation-timing-function"?: string | undefined;
1392
- "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty | undefined;
1393
- "-webkit-backdrop-filter"?: string | undefined;
1394
- "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
1395
- "-webkit-background-clip"?: string | undefined;
1396
- "-webkit-background-origin"?: string | undefined;
1397
- "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1398
- "-webkit-border-before-color"?: string | undefined;
1399
- "-webkit-border-before-style"?: string | undefined;
1400
- "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
1401
- "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
1402
- "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
1403
- "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
1404
- "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1405
- "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1406
- "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
1407
- "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
1408
- "-webkit-box-shadow"?: string | undefined;
1409
- "-webkit-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
1410
- "-webkit-clip-path"?: string | undefined;
1411
- "-webkit-column-count"?: import("csstype").ColumnCountProperty | undefined;
1412
- "-webkit-column-fill"?: import("csstype").ColumnFillProperty | undefined;
1413
- "-webkit-column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
1414
- "-webkit-column-rule-color"?: string | undefined;
1415
- "-webkit-column-rule-style"?: string | undefined;
1416
- "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1417
- "-webkit-column-span"?: import("csstype").ColumnSpanProperty | undefined;
1418
- "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1419
- "-webkit-filter"?: string | undefined;
1420
- "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
1421
- "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1422
- "-webkit-flex-grow"?: import("csstype").GlobalsNumber | undefined;
1423
- "-webkit-flex-shrink"?: import("csstype").GlobalsNumber | undefined;
1424
- "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
1425
- "-webkit-font-feature-settings"?: string | undefined;
1426
- "-webkit-font-kerning"?: import("csstype").FontKerningProperty | undefined;
1427
- "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1428
- "-webkit-font-variant-ligatures"?: string | undefined;
1429
- "-webkit-hyphenate-character"?: string | undefined;
1430
- "-webkit-hyphens"?: import("csstype").HyphensProperty | undefined;
1431
- "-webkit-initial-letter"?: import("csstype").InitialLetterProperty | undefined;
1432
- "-webkit-justify-content"?: string | undefined;
1433
- "-webkit-line-break"?: import("csstype").LineBreakProperty | undefined;
1434
- "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty | undefined;
1435
- "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1436
- "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1437
- "-webkit-mask-attachment"?: string | undefined;
1438
- "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
1439
- "-webkit-mask-box-image-repeat"?: string | undefined;
1440
- "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
1441
- "-webkit-mask-box-image-source"?: string | undefined;
1442
- "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
1443
- "-webkit-mask-clip"?: string | undefined;
1444
- "-webkit-mask-composite"?: string | undefined;
1445
- "-webkit-mask-image"?: string | undefined;
1446
- "-webkit-mask-origin"?: string | undefined;
1447
- "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
1448
- "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
1449
- "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
1450
- "-webkit-mask-repeat"?: string | undefined;
1451
- "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty | undefined;
1452
- "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty | undefined;
1453
- "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
1454
- "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
1455
- "-webkit-order"?: import("csstype").GlobalsNumber | undefined;
1456
- "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty | undefined;
1457
- "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1458
- "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1459
- "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
1460
- "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1461
- "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
1462
- "-webkit-ruby-position"?: string | undefined;
1463
- "-webkit-scroll-snap-type"?: string | undefined;
1464
- "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
1465
- "-webkit-tap-highlight-color"?: string | undefined;
1466
- "-webkit-text-combine"?: string | undefined;
1467
- "-webkit-text-decoration-color"?: string | undefined;
1468
- "-webkit-text-decoration-line"?: string | undefined;
1469
- "-webkit-text-decoration-skip"?: string | undefined;
1470
- "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1471
- "-webkit-text-emphasis-color"?: string | undefined;
1472
- "-webkit-text-emphasis-position"?: string | undefined;
1473
- "-webkit-text-emphasis-style"?: string | undefined;
1474
- "-webkit-text-fill-color"?: string | undefined;
1475
- "-webkit-text-orientation"?: import("csstype").TextOrientationProperty | undefined;
1476
- "-webkit-text-size-adjust"?: string | undefined;
1477
- "-webkit-text-stroke-color"?: string | undefined;
1478
- "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
1479
- "-webkit-text-underline-position"?: string | undefined;
1480
- "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty | undefined;
1481
- "-webkit-transform"?: string | undefined;
1482
- "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1483
- "-webkit-transform-style"?: import("csstype").TransformStyleProperty | undefined;
1484
- "-webkit-transition-delay"?: string | undefined;
1485
- "-webkit-transition-duration"?: string | undefined;
1486
- "-webkit-transition-property"?: string | undefined;
1487
- "-webkit-transition-timing-function"?: string | undefined;
1488
- "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty | undefined;
1489
- "-webkit-user-select"?: import("csstype").UserSelectProperty | undefined;
1490
- "-webkit-writing-mode"?: import("csstype").WritingModeProperty | undefined;
1491
- "-moz-animation"?: import("csstype").AnimationProperty | undefined;
1492
- "-moz-border-image"?: import("csstype").BorderImageProperty | undefined;
1493
- "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1494
- "-moz-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
1495
- "-moz-transition"?: string | undefined;
1496
- "-ms-content-zoom-limit"?: string | undefined;
1497
- "-ms-content-zoom-snap"?: string | undefined;
1498
- "-ms-flex"?: import("csstype").FlexProperty<string | number> | undefined;
1499
- "-ms-scroll-limit"?: string | undefined;
1500
- "-ms-scroll-snap-x"?: string | undefined;
1501
- "-ms-scroll-snap-y"?: string | undefined;
1502
- "-ms-transition"?: string | undefined;
1503
- "-webkit-animation"?: import("csstype").AnimationProperty | undefined;
1504
- "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
1505
- "-webkit-border-image"?: import("csstype").BorderImageProperty | undefined;
1506
- "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1507
- "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1508
- "-webkit-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
1509
- "-webkit-flex"?: import("csstype").FlexProperty<string | number> | undefined;
1510
- "-webkit-flex-flow"?: string | undefined;
1511
- "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number> | undefined;
1512
- "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty | undefined;
1513
- "-webkit-text-emphasis"?: string | undefined;
1514
- "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
1515
- "-webkit-transition"?: string | undefined;
1516
- "box-align"?: import("csstype").BoxAlignProperty | undefined;
1517
- "box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1518
- "box-flex"?: import("csstype").GlobalsNumber | undefined;
1519
- "box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1520
- "box-lines"?: import("csstype").BoxLinesProperty | undefined;
1521
- "box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1522
- "box-orient"?: import("csstype").BoxOrientProperty | undefined;
1523
- "box-pack"?: import("csstype").BoxPackProperty | undefined;
1524
- "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number> | undefined;
1525
- "grid-gap"?: import("csstype").GridGapProperty<string | number> | undefined;
1526
- "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number> | undefined;
1527
- "ime-mode"?: import("csstype").ImeModeProperty | undefined;
1528
- "offset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
1529
- "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
1530
- "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
1531
- "offset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
1532
- "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
1533
- "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
1534
- "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
1535
- "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
1536
- "scroll-snap-points-x"?: string | undefined;
1537
- "scroll-snap-points-y"?: string | undefined;
1538
- "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty | undefined;
1539
- "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty | undefined;
1540
- "scrollbar-track-color"?: string | undefined;
1541
- "-khtml-box-align"?: import("csstype").BoxAlignProperty | undefined;
1542
- "-khtml-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1543
- "-khtml-box-flex"?: import("csstype").GlobalsNumber | undefined;
1544
- "-khtml-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1545
- "-khtml-box-lines"?: import("csstype").BoxLinesProperty | undefined;
1546
- "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1547
- "-khtml-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1548
- "-khtml-box-pack"?: import("csstype").BoxPackProperty | undefined;
1549
- "-khtml-line-break"?: import("csstype").LineBreakProperty | undefined;
1550
- "-khtml-opacity"?: import("csstype").OpacityProperty | undefined;
1551
- "-khtml-user-select"?: import("csstype").UserSelectProperty | undefined;
1552
- "-moz-background-clip"?: string | undefined;
1553
- "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty | undefined;
1554
- "-moz-background-origin"?: string | undefined;
1555
- "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1556
- "-moz-binding"?: string | undefined;
1557
- "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1558
- "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
1559
- "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
1560
- "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1561
- "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1562
- "-moz-box-align"?: import("csstype").BoxAlignProperty | undefined;
1563
- "-moz-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1564
- "-moz-box-flex"?: import("csstype").GlobalsNumber | undefined;
1565
- "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1566
- "-moz-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1567
- "-moz-box-pack"?: import("csstype").BoxPackProperty | undefined;
1568
- "-moz-box-shadow"?: string | undefined;
1569
- "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty | undefined;
1570
- "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty | undefined;
1571
- "-moz-opacity"?: import("csstype").OpacityProperty | undefined;
1572
- "-moz-outline"?: import("csstype").OutlineProperty<string | number> | undefined;
1573
- "-moz-outline-color"?: string | undefined;
1574
- "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
1575
- "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
1576
- "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
1577
- "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
1578
- "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
1579
- "-moz-outline-style"?: string | undefined;
1580
- "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
1581
- "-moz-text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
1582
- "-moz-text-decoration-color"?: string | undefined;
1583
- "-moz-text-decoration-line"?: string | undefined;
1584
- "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1585
- "-moz-user-input"?: import("csstype").MozUserInputProperty | undefined;
1586
- "-ms-ime-mode"?: import("csstype").ImeModeProperty | undefined;
1587
- "-ms-scrollbar-track-color"?: string | undefined;
1588
- "-o-animation"?: import("csstype").AnimationProperty | undefined;
1589
- "-o-animation-delay"?: string | undefined;
1590
- "-o-animation-direction"?: string | undefined;
1591
- "-o-animation-duration"?: string | undefined;
1592
- "-o-animation-fill-mode"?: string | undefined;
1593
- "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1594
- "-o-animation-name"?: string | undefined;
1595
- "-o-animation-play-state"?: string | undefined;
1596
- "-o-animation-timing-function"?: string | undefined;
1597
- "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1598
- "-o-border-image"?: import("csstype").BorderImageProperty | undefined;
1599
- "-o-object-fit"?: import("csstype").ObjectFitProperty | undefined;
1600
- "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
1601
- "-o-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1602
- "-o-text-overflow"?: string | undefined;
1603
- "-o-transform"?: string | undefined;
1604
- "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1605
- "-o-transition"?: string | undefined;
1606
- "-o-transition-delay"?: string | undefined;
1607
- "-o-transition-duration"?: string | undefined;
1608
- "-o-transition-property"?: string | undefined;
1609
- "-o-transition-timing-function"?: string | undefined;
1610
- "-webkit-box-align"?: import("csstype").BoxAlignProperty | undefined;
1611
- "-webkit-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1612
- "-webkit-box-flex"?: import("csstype").GlobalsNumber | undefined;
1613
- "-webkit-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1614
- "-webkit-box-lines"?: import("csstype").BoxLinesProperty | undefined;
1615
- "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1616
- "-webkit-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1617
- "-webkit-box-pack"?: import("csstype").BoxPackProperty | undefined;
1618
- "-webkit-scroll-snap-points-x"?: string | undefined;
1619
- "-webkit-scroll-snap-points-y"?: string | undefined;
1620
- "alignment-baseline"?: import("csstype").AlignmentBaselineProperty | undefined;
1621
- "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number> | undefined;
1622
- "clip-rule"?: import("csstype").ClipRuleProperty | undefined;
1623
- "color-interpolation"?: import("csstype").ColorInterpolationProperty | undefined;
1624
- "color-rendering"?: import("csstype").ColorRenderingProperty | undefined;
1625
- "dominant-baseline"?: import("csstype").DominantBaselineProperty | undefined;
1626
- "fill-opacity"?: import("csstype").GlobalsNumber | undefined;
1627
- "fill-rule"?: import("csstype").FillRuleProperty | undefined;
1628
- "flood-color"?: string | undefined;
1629
- "flood-opacity"?: import("csstype").GlobalsNumber | undefined;
1630
- "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty | undefined;
1631
- "lighting-color"?: string | undefined;
1632
- "marker-end"?: string | undefined;
1633
- "marker-mid"?: string | undefined;
1634
- "marker-start"?: string | undefined;
1635
- "shape-rendering"?: import("csstype").ShapeRenderingProperty | undefined;
1636
- "stop-color"?: string | undefined;
1637
- "stop-opacity"?: import("csstype").GlobalsNumber | undefined;
1638
- "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
1639
- "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
1640
- "stroke-linecap"?: import("csstype").StrokeLinecapProperty | undefined;
1641
- "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty | undefined;
1642
- "stroke-miterlimit"?: import("csstype").GlobalsNumber | undefined;
1643
- "stroke-opacity"?: import("csstype").GlobalsNumber | undefined;
1644
- "stroke-width"?: import("csstype").StrokeWidthProperty<string | number> | undefined;
1645
- "text-anchor"?: import("csstype").TextAnchorProperty | undefined;
1646
- "vector-effect"?: import("csstype").VectorEffectProperty | undefined;
1647
- } | undefined;
1648
- validator?: ((value: unknown, fieldItem: import("..").FieldItem) => string | void) | undefined;
1649
- reactions?: {
1650
- [x: string]: any;
1651
- dependencies?: string[] | undefined;
1652
- target?: string | undefined;
1653
- when?: string | boolean | undefined;
1654
- fulfill?: {
1655
- state?: import("../../../es/src/types").AnyObject | undefined;
1656
- run?: string | undefined;
1657
- } | undefined;
1658
- otherwise?: {
1659
- state?: import("../../../es/src/types").AnyObject | undefined;
1660
- run?: string | undefined;
1661
- } | undefined;
1662
- } | {
1663
- [x: string]: any;
1664
- dependencies?: string[] | undefined;
1665
- target?: string | undefined;
1666
- when?: string | boolean | undefined;
1667
- fulfill?: {
1668
- state?: import("../../../es/src/types").AnyObject | undefined;
1669
- run?: string | undefined;
1670
- } | undefined;
1671
- otherwise?: {
1672
- state?: import("../../../es/src/types").AnyObject | undefined;
1673
- run?: string | undefined;
1674
- } | undefined;
1675
- }[] | undefined;
1676
45
  }[]>;
1677
46
  materialListRef: import("vue").Ref<{
1678
- [x: string]: any;
1679
- val_key: string;
1680
- html_type: string;
1681
- annotation?: boolean | undefined;
1682
- val_key_unit?: string | undefined;
1683
- is_edit?: import("..").FormCommonState | undefined;
1684
- elem_width?: number | undefined;
1685
- is_show?: import("..").FormCommonState | undefined;
1686
- is_null?: import("..").FormCommonState | undefined;
1687
- name?: string | undefined;
1688
- alias?: string | undefined;
1689
- default_val?: any;
1690
- is_empty?: import("..").FormCommonState | undefined;
1691
- hide_title?: import("..").FormCommonState | undefined;
1692
- placeholder?: string | undefined;
1693
- validate?: {
1694
- [x: string]: any;
1695
- obj_type?: ("password" | "sex" | "age" | "email" | "id_card" | "age_unit" | "mobile" | "telephone" | "birthday" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
1696
- vali_obj?: string | undefined;
1697
- max_value?: string | number | undefined;
1698
- min_value?: string | number | undefined;
1699
- min_length?: string | number | undefined;
1700
- max_length?: string | number | undefined;
1701
- decimal_length?: string | number | undefined;
1702
- regular_expression?: string | {
1703
- exec: (string: string) => RegExpExecArray | null;
1704
- test: (string: string) => boolean;
1705
- readonly source: string;
1706
- readonly global: boolean;
1707
- readonly ignoreCase: boolean;
1708
- readonly multiline: boolean;
1709
- lastIndex: number;
1710
- compile: (pattern: string, flags?: string | undefined) => RegExp;
1711
- readonly flags: string;
1712
- readonly sticky: boolean;
1713
- readonly unicode: boolean;
1714
- readonly dotAll: boolean;
1715
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1716
- [Symbol.replace]: {
1717
- (string: string, replaceValue: string): string;
1718
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1719
- };
1720
- [Symbol.search]: (string: string) => number;
1721
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1722
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1723
- } | undefined;
1724
- regular_error_tip?: string | undefined;
1725
- } | undefined;
1726
- option?: {
1727
- text: string;
1728
- value: any;
1729
- children?: any[] | undefined;
1730
- }[] | undefined;
1731
- multi_select?: import("..").FormCommonState | undefined;
1732
- multi_select_value?: string | number | undefined;
1733
- wordbook?: {
1734
- level_num: number;
1735
- } | undefined;
1736
- open?: {
1737
- value?: any;
1738
- describe?: string | undefined;
1739
- } | undefined;
1740
- close?: {
1741
- value?: any;
1742
- describe?: string | undefined;
1743
- } | undefined;
1744
- date_format?: string | undefined;
1745
- step_length?: string | number | undefined;
1746
- urlConfig?: {
1747
- url: string;
1748
- method?: import("..").FormRequestType | undefined;
1749
- nameKey?: string | undefined;
1750
- valueKey?: string | undefined;
1751
- params?: import("../../../es/src/types").AnyObject | undefined;
1752
- dependKey?: string | Record<string, string> | (string | {
1753
- paramName: string;
1754
- paramValue?: string | undefined;
1755
- required?: boolean | undefined;
1756
- })[] | undefined;
1757
- } | undefined;
1758
- suffixConfig?: any | any[] | undefined;
1759
- fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
1760
- content?: string | import("..").FormRenderer | Record<string, import("..").FormRenderer> | undefined;
1761
- lazyRequest?: boolean | undefined;
1762
- maxGroupNum?: number | undefined;
47
+ key: string;
48
+ layoutWidthEnum: import("./src/types").FormConfigWidth;
49
+ type: string;
50
+ name: string;
51
+ show?: boolean | undefined;
52
+ defaultValue?: any;
53
+ defaultExpand?: boolean | undefined;
54
+ fold?: boolean | undefined;
55
+ required?: boolean | undefined;
56
+ editable?: boolean | undefined;
57
+ notes?: string | undefined;
58
+ desc?: string | undefined;
1763
59
  children?: any[] | undefined;
1764
- properties?: any[] | undefined;
1765
- componentProps?: import("../../../es/src/types").AnyObject | undefined;
1766
- decoratorProps?: import("../../../es/src/types").AnyObject | undefined;
1767
- noDecorator?: {
1768
- valueOf: () => boolean;
1769
- } | undefined;
1770
- display?: "flex" | "grid" | undefined;
1771
- wrapperStyle?: Record<string, string> | {
1772
- [x: `--${string}`]: string | number | undefined;
1773
- accentColor?: string | undefined;
1774
- alignContent?: string | undefined;
1775
- alignItems?: string | undefined;
1776
- alignSelf?: string | undefined;
1777
- alignTracks?: string | undefined;
1778
- animationDelay?: string | undefined;
1779
- animationDirection?: string | undefined;
1780
- animationDuration?: string | undefined;
1781
- animationFillMode?: string | undefined;
1782
- animationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
1783
- animationName?: string | undefined;
1784
- animationPlayState?: string | undefined;
1785
- animationTimeline?: string | undefined;
1786
- animationTimingFunction?: string | undefined;
1787
- appearance?: import("csstype").AppearanceProperty | undefined;
1788
- aspectRatio?: string | undefined;
1789
- backdropFilter?: string | undefined;
1790
- backfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
1791
- backgroundAttachment?: string | undefined;
1792
- backgroundBlendMode?: string | undefined;
1793
- backgroundClip?: string | undefined;
1794
- backgroundColor?: string | undefined;
1795
- backgroundImage?: string | undefined;
1796
- backgroundOrigin?: string | undefined;
1797
- backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
1798
- backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
1799
- backgroundRepeat?: string | undefined;
1800
- backgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1801
- blockOverflow?: string | undefined;
1802
- blockSize?: import("csstype").BlockSizeProperty<string | number> | undefined;
1803
- borderBlockColor?: string | undefined;
1804
- borderBlockEndColor?: string | undefined;
1805
- borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty | undefined;
1806
- borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
1807
- borderBlockStartColor?: string | undefined;
1808
- borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty | undefined;
1809
- borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
1810
- borderBlockStyle?: import("csstype").BorderBlockStyleProperty | undefined;
1811
- borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
1812
- borderBottomColor?: string | undefined;
1813
- borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
1814
- borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
1815
- borderBottomStyle?: import("csstype").BorderBottomStyleProperty | undefined;
1816
- borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
1817
- borderCollapse?: import("csstype").BorderCollapseProperty | undefined;
1818
- borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
1819
- borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
1820
- borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
1821
- borderImageRepeat?: string | undefined;
1822
- borderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
1823
- borderImageSource?: string | undefined;
1824
- borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
1825
- borderInlineColor?: string | undefined;
1826
- borderInlineEndColor?: string | undefined;
1827
- borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
1828
- borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
1829
- borderInlineStartColor?: string | undefined;
1830
- borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
1831
- borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
1832
- borderInlineStyle?: import("csstype").BorderInlineStyleProperty | undefined;
1833
- borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
1834
- borderLeftColor?: string | undefined;
1835
- borderLeftStyle?: import("csstype").BorderLeftStyleProperty | undefined;
1836
- borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
1837
- borderRightColor?: string | undefined;
1838
- borderRightStyle?: import("csstype").BorderRightStyleProperty | undefined;
1839
- borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
1840
- borderSpacing?: import("csstype").BorderSpacingProperty<string | number> | undefined;
1841
- borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
1842
- borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
1843
- borderTopColor?: string | undefined;
1844
- borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1845
- borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1846
- borderTopStyle?: import("csstype").BorderTopStyleProperty | undefined;
1847
- borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
1848
- bottom?: import("csstype").BottomProperty<string | number> | undefined;
1849
- boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
1850
- boxShadow?: string | undefined;
1851
- boxSizing?: import("csstype").BoxSizingProperty | undefined;
1852
- breakAfter?: import("csstype").BreakAfterProperty | undefined;
1853
- breakBefore?: import("csstype").BreakBeforeProperty | undefined;
1854
- breakInside?: import("csstype").BreakInsideProperty | undefined;
1855
- captionSide?: import("csstype").CaptionSideProperty | undefined;
1856
- caretColor?: string | undefined;
1857
- clear?: import("csstype").ClearProperty | undefined;
1858
- clipPath?: string | undefined;
1859
- color?: string | undefined;
1860
- colorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
1861
- colorScheme?: string | undefined;
1862
- columnCount?: import("csstype").ColumnCountProperty | undefined;
1863
- columnFill?: import("csstype").ColumnFillProperty | undefined;
1864
- columnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
1865
- columnRuleColor?: string | undefined;
1866
- columnRuleStyle?: string | undefined;
1867
- columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1868
- columnSpan?: import("csstype").ColumnSpanProperty | undefined;
1869
- columnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1870
- contain?: string | undefined;
1871
- content?: string | undefined;
1872
- contentVisibility?: import("csstype").ContentVisibilityProperty | undefined;
1873
- counterIncrement?: string | undefined;
1874
- counterReset?: string | undefined;
1875
- counterSet?: string | undefined;
1876
- cursor?: string | undefined;
1877
- direction?: import("csstype").DirectionProperty | undefined;
1878
- display?: string | undefined;
1879
- emptyCells?: import("csstype").EmptyCellsProperty | undefined;
1880
- filter?: string | undefined;
1881
- flexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
1882
- flexDirection?: import("csstype").FlexDirectionProperty | undefined;
1883
- flexGrow?: import("csstype").GlobalsNumber | undefined;
1884
- flexShrink?: import("csstype").GlobalsNumber | undefined;
1885
- flexWrap?: import("csstype").FlexWrapProperty | undefined;
1886
- float?: import("csstype").FloatProperty | undefined;
1887
- fontFamily?: string | undefined;
1888
- fontFeatureSettings?: string | undefined;
1889
- fontKerning?: import("csstype").FontKerningProperty | undefined;
1890
- fontLanguageOverride?: string | undefined;
1891
- fontOpticalSizing?: import("csstype").FontOpticalSizingProperty | undefined;
1892
- fontSize?: import("csstype").FontSizeProperty<string | number> | undefined;
1893
- fontSizeAdjust?: import("csstype").FontSizeAdjustProperty | undefined;
1894
- fontSmooth?: import("csstype").FontSmoothProperty<string | number> | undefined;
1895
- fontStretch?: string | undefined;
1896
- fontStyle?: string | undefined;
1897
- fontSynthesis?: string | undefined;
1898
- fontVariant?: string | undefined;
1899
- fontVariantAlternates?: string | undefined;
1900
- fontVariantCaps?: import("csstype").FontVariantCapsProperty | undefined;
1901
- fontVariantEastAsian?: string | undefined;
1902
- fontVariantLigatures?: string | undefined;
1903
- fontVariantNumeric?: string | undefined;
1904
- fontVariantPosition?: import("csstype").FontVariantPositionProperty | undefined;
1905
- fontVariationSettings?: string | undefined;
1906
- fontWeight?: import("csstype").FontWeightProperty | undefined;
1907
- forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty | undefined;
1908
- gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
1909
- gridAutoFlow?: string | undefined;
1910
- gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
1911
- gridColumnEnd?: import("csstype").GridColumnEndProperty | undefined;
1912
- gridColumnStart?: import("csstype").GridColumnStartProperty | undefined;
1913
- gridRowEnd?: import("csstype").GridRowEndProperty | undefined;
1914
- gridRowStart?: import("csstype").GridRowStartProperty | undefined;
1915
- gridTemplateAreas?: string | undefined;
1916
- gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
1917
- gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
1918
- hangingPunctuation?: string | undefined;
1919
- height?: import("csstype").HeightProperty<string | number> | undefined;
1920
- hyphenateCharacter?: string | undefined;
1921
- hyphens?: import("csstype").HyphensProperty | undefined;
1922
- imageOrientation?: string | undefined;
1923
- imageRendering?: import("csstype").ImageRenderingProperty | undefined;
1924
- imageResolution?: string | undefined;
1925
- initialLetter?: import("csstype").InitialLetterProperty | undefined;
1926
- inlineSize?: import("csstype").InlineSizeProperty<string | number> | undefined;
1927
- inputSecurity?: import("csstype").InputSecurityProperty | undefined;
1928
- inset?: import("csstype").InsetProperty<string | number> | undefined;
1929
- insetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
1930
- insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
1931
- insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
1932
- insetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
1933
- insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
1934
- insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
1935
- isolation?: import("csstype").IsolationProperty | undefined;
1936
- justifyContent?: string | undefined;
1937
- justifyItems?: string | undefined;
1938
- justifySelf?: string | undefined;
1939
- justifyTracks?: string | undefined;
1940
- left?: import("csstype").LeftProperty<string | number> | undefined;
1941
- letterSpacing?: import("csstype").LetterSpacingProperty<string | number> | undefined;
1942
- lineBreak?: import("csstype").LineBreakProperty | undefined;
1943
- lineHeight?: import("csstype").LineHeightProperty<string | number> | undefined;
1944
- lineHeightStep?: import("csstype").LineHeightStepProperty<string | number> | undefined;
1945
- listStyleImage?: string | undefined;
1946
- listStylePosition?: import("csstype").ListStylePositionProperty | undefined;
1947
- listStyleType?: string | undefined;
1948
- marginBlock?: import("csstype").MarginBlockProperty<string | number> | undefined;
1949
- marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
1950
- marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
1951
- marginBottom?: import("csstype").MarginBottomProperty<string | number> | undefined;
1952
- marginInline?: import("csstype").MarginInlineProperty<string | number> | undefined;
1953
- marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1954
- marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1955
- marginLeft?: import("csstype").MarginLeftProperty<string | number> | undefined;
1956
- marginRight?: import("csstype").MarginRightProperty<string | number> | undefined;
1957
- marginTop?: import("csstype").MarginTopProperty<string | number> | undefined;
1958
- maskBorderMode?: import("csstype").MaskBorderModeProperty | undefined;
1959
- maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
1960
- maskBorderRepeat?: string | undefined;
1961
- maskBorderSlice?: import("csstype").MaskBorderSliceProperty | undefined;
1962
- maskBorderSource?: string | undefined;
1963
- maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
1964
- maskClip?: string | undefined;
1965
- maskComposite?: string | undefined;
1966
- maskImage?: string | undefined;
1967
- maskMode?: string | undefined;
1968
- maskOrigin?: string | undefined;
1969
- maskPosition?: import("csstype").MaskPositionProperty<string | number> | undefined;
1970
- maskRepeat?: string | undefined;
1971
- maskSize?: import("csstype").MaskSizeProperty<string | number> | undefined;
1972
- maskType?: import("csstype").MaskTypeProperty | undefined;
1973
- mathStyle?: import("csstype").MathStyleProperty | undefined;
1974
- maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
1975
- maxHeight?: import("csstype").MaxHeightProperty<string | number> | undefined;
1976
- maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
1977
- maxLines?: import("csstype").MaxLinesProperty | undefined;
1978
- maxWidth?: import("csstype").MaxWidthProperty<string | number> | undefined;
1979
- minBlockSize?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
1980
- minHeight?: import("csstype").MinHeightProperty<string | number> | undefined;
1981
- minInlineSize?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
1982
- minWidth?: import("csstype").MinWidthProperty<string | number> | undefined;
1983
- mixBlendMode?: import("csstype").MixBlendModeProperty | undefined;
1984
- motionDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1985
- motionPath?: string | undefined;
1986
- motionRotation?: string | undefined;
1987
- objectFit?: import("csstype").ObjectFitProperty | undefined;
1988
- objectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
1989
- offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
1990
- offsetDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1991
- offsetPath?: string | undefined;
1992
- offsetRotate?: string | undefined;
1993
- offsetRotation?: string | undefined;
1994
- opacity?: import("csstype").OpacityProperty | undefined;
1995
- order?: import("csstype").GlobalsNumber | undefined;
1996
- orphans?: import("csstype").GlobalsNumber | undefined;
1997
- outlineColor?: string | undefined;
1998
- outlineOffset?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
1999
- outlineStyle?: string | undefined;
2000
- outlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
2001
- overflowAnchor?: import("csstype").OverflowAnchorProperty | undefined;
2002
- overflowBlock?: import("csstype").OverflowBlockProperty | undefined;
2003
- overflowClipBox?: import("csstype").OverflowClipBoxProperty | undefined;
2004
- overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
2005
- overflowInline?: import("csstype").OverflowInlineProperty | undefined;
2006
- overflowWrap?: import("csstype").OverflowWrapProperty | undefined;
2007
- overflowX?: import("csstype").OverflowXProperty | undefined;
2008
- overflowY?: import("csstype").OverflowYProperty | undefined;
2009
- overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
2010
- overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
2011
- overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty | undefined;
2012
- overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty | undefined;
2013
- paddingBlock?: import("csstype").PaddingBlockProperty<string | number> | undefined;
2014
- paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
2015
- paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
2016
- paddingBottom?: import("csstype").PaddingBottomProperty<string | number> | undefined;
2017
- paddingInline?: import("csstype").PaddingInlineProperty<string | number> | undefined;
2018
- paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
2019
- paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
2020
- paddingLeft?: import("csstype").PaddingLeftProperty<string | number> | undefined;
2021
- paddingRight?: import("csstype").PaddingRightProperty<string | number> | undefined;
2022
- paddingTop?: import("csstype").PaddingTopProperty<string | number> | undefined;
2023
- pageBreakAfter?: import("csstype").PageBreakAfterProperty | undefined;
2024
- pageBreakBefore?: import("csstype").PageBreakBeforeProperty | undefined;
2025
- pageBreakInside?: import("csstype").PageBreakInsideProperty | undefined;
2026
- paintOrder?: string | undefined;
2027
- perspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
2028
- perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
2029
- placeContent?: string | undefined;
2030
- pointerEvents?: import("csstype").PointerEventsProperty | undefined;
2031
- position?: import("csstype").PositionProperty | undefined;
2032
- printColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
2033
- quotes?: string | undefined;
2034
- resize?: import("csstype").ResizeProperty | undefined;
2035
- right?: import("csstype").RightProperty<string | number> | undefined;
2036
- rotate?: string | undefined;
2037
- rowGap?: import("csstype").RowGapProperty<string | number> | undefined;
2038
- rubyAlign?: import("csstype").RubyAlignProperty | undefined;
2039
- rubyMerge?: import("csstype").RubyMergeProperty | undefined;
2040
- rubyPosition?: string | undefined;
2041
- scale?: import("csstype").ScaleProperty | undefined;
2042
- scrollBehavior?: import("csstype").ScrollBehaviorProperty | undefined;
2043
- scrollMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
2044
- scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
2045
- scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
2046
- scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
2047
- scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
2048
- scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
2049
- scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
2050
- scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
2051
- scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
2052
- scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
2053
- scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
2054
- scrollPadding?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
2055
- scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
2056
- scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
2057
- scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
2058
- scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
2059
- scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
2060
- scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
2061
- scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
2062
- scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
2063
- scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
2064
- scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
2065
- scrollSnapAlign?: string | undefined;
2066
- scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
2067
- scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
2068
- scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
2069
- scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
2070
- scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
2071
- scrollSnapStop?: import("csstype").ScrollSnapStopProperty | undefined;
2072
- scrollSnapType?: string | undefined;
2073
- scrollbarColor?: string | undefined;
2074
- scrollbarGutter?: string | undefined;
2075
- scrollbarWidth?: import("csstype").ScrollbarWidthProperty | undefined;
2076
- shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty | undefined;
2077
- shapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
2078
- shapeOutside?: string | undefined;
2079
- tabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
2080
- tableLayout?: import("csstype").TableLayoutProperty | undefined;
2081
- textAlign?: import("csstype").TextAlignProperty | undefined;
2082
- textAlignLast?: import("csstype").TextAlignLastProperty | undefined;
2083
- textCombineUpright?: string | undefined;
2084
- textDecorationColor?: string | undefined;
2085
- textDecorationLine?: string | undefined;
2086
- textDecorationSkip?: string | undefined;
2087
- textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty | undefined;
2088
- textDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
2089
- textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
2090
- textDecorationWidth?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
2091
- textEmphasisColor?: string | undefined;
2092
- textEmphasisPosition?: string | undefined;
2093
- textEmphasisStyle?: string | undefined;
2094
- textIndent?: import("csstype").TextIndentProperty<string | number> | undefined;
2095
- textJustify?: import("csstype").TextJustifyProperty | undefined;
2096
- textOrientation?: import("csstype").TextOrientationProperty | undefined;
2097
- textOverflow?: string | undefined;
2098
- textRendering?: import("csstype").TextRenderingProperty | undefined;
2099
- textShadow?: string | undefined;
2100
- textSizeAdjust?: string | undefined;
2101
- textTransform?: import("csstype").TextTransformProperty | undefined;
2102
- textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
2103
- textUnderlinePosition?: string | undefined;
2104
- top?: import("csstype").TopProperty<string | number> | undefined;
2105
- touchAction?: string | undefined;
2106
- transform?: string | undefined;
2107
- transformBox?: import("csstype").TransformBoxProperty | undefined;
2108
- transformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
2109
- transformStyle?: import("csstype").TransformStyleProperty | undefined;
2110
- transitionDelay?: string | undefined;
2111
- transitionDuration?: string | undefined;
2112
- transitionProperty?: string | undefined;
2113
- transitionTimingFunction?: string | undefined;
2114
- translate?: import("csstype").TranslateProperty<string | number> | undefined;
2115
- unicodeBidi?: import("csstype").UnicodeBidiProperty | undefined;
2116
- userSelect?: import("csstype").UserSelectProperty | undefined;
2117
- verticalAlign?: import("csstype").VerticalAlignProperty<string | number> | undefined;
2118
- visibility?: import("csstype").VisibilityProperty | undefined;
2119
- whiteSpace?: import("csstype").WhiteSpaceProperty | undefined;
2120
- widows?: import("csstype").GlobalsNumber | undefined;
2121
- width?: import("csstype").WidthProperty<string | number> | undefined;
2122
- willChange?: string | undefined;
2123
- wordBreak?: import("csstype").WordBreakProperty | undefined;
2124
- wordSpacing?: import("csstype").WordSpacingProperty<string | number> | undefined;
2125
- wordWrap?: import("csstype").WordWrapProperty | undefined;
2126
- writingMode?: import("csstype").WritingModeProperty | undefined;
2127
- zIndex?: import("csstype").ZIndexProperty | undefined;
2128
- zoom?: import("csstype").ZoomProperty | undefined;
2129
- all?: import("csstype").Globals | undefined;
2130
- animation?: import("csstype").AnimationProperty | undefined;
2131
- background?: import("csstype").BackgroundProperty<string | number> | undefined;
2132
- backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
2133
- border?: import("csstype").BorderProperty<string | number> | undefined;
2134
- borderBlock?: import("csstype").BorderBlockProperty<string | number> | undefined;
2135
- borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
2136
- borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
2137
- borderBottom?: import("csstype").BorderBottomProperty<string | number> | undefined;
2138
- borderColor?: string | undefined;
2139
- borderImage?: import("csstype").BorderImageProperty | undefined;
2140
- borderInline?: import("csstype").BorderInlineProperty<string | number> | undefined;
2141
- borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
2142
- borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
2143
- borderLeft?: import("csstype").BorderLeftProperty<string | number> | undefined;
2144
- borderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
2145
- borderRight?: import("csstype").BorderRightProperty<string | number> | undefined;
2146
- borderStyle?: string | undefined;
2147
- borderTop?: import("csstype").BorderTopProperty<string | number> | undefined;
2148
- borderWidth?: import("csstype").BorderWidthProperty<string | number> | undefined;
2149
- columnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
2150
- columns?: import("csstype").ColumnsProperty<string | number> | undefined;
2151
- flex?: import("csstype").FlexProperty<string | number> | undefined;
2152
- flexFlow?: string | undefined;
2153
- font?: string | undefined;
2154
- gap?: import("csstype").GapProperty<string | number> | undefined;
2155
- grid?: string | undefined;
2156
- gridArea?: import("csstype").GridAreaProperty | undefined;
2157
- gridColumn?: import("csstype").GridColumnProperty | undefined;
2158
- gridRow?: import("csstype").GridRowProperty | undefined;
2159
- gridTemplate?: string | undefined;
2160
- lineClamp?: import("csstype").LineClampProperty | undefined;
2161
- listStyle?: string | undefined;
2162
- margin?: import("csstype").MarginProperty<string | number> | undefined;
2163
- mask?: import("csstype").MaskProperty<string | number> | undefined;
2164
- maskBorder?: import("csstype").MaskBorderProperty | undefined;
2165
- motion?: import("csstype").OffsetProperty<string | number> | undefined;
2166
- offset?: import("csstype").OffsetProperty<string | number> | undefined;
2167
- outline?: import("csstype").OutlineProperty<string | number> | undefined;
2168
- overflow?: string | undefined;
2169
- overscrollBehavior?: string | undefined;
2170
- padding?: import("csstype").PaddingProperty<string | number> | undefined;
2171
- placeItems?: string | undefined;
2172
- placeSelf?: string | undefined;
2173
- textDecoration?: import("csstype").TextDecorationProperty<string | number> | undefined;
2174
- textEmphasis?: string | undefined;
2175
- transition?: string | undefined;
2176
- MozAnimationDelay?: string | undefined;
2177
- MozAnimationDirection?: string | undefined;
2178
- MozAnimationDuration?: string | undefined;
2179
- MozAnimationFillMode?: string | undefined;
2180
- MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
2181
- MozAnimationName?: string | undefined;
2182
- MozAnimationPlayState?: string | undefined;
2183
- MozAnimationTimingFunction?: string | undefined;
2184
- MozAppearance?: import("csstype").MozAppearanceProperty | undefined;
2185
- MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
2186
- MozBorderBottomColors?: string | undefined;
2187
- MozBorderEndColor?: string | undefined;
2188
- MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
2189
- MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
2190
- MozBorderLeftColors?: string | undefined;
2191
- MozBorderRightColors?: string | undefined;
2192
- MozBorderStartColor?: string | undefined;
2193
- MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
2194
- MozBorderTopColors?: string | undefined;
2195
- MozBoxSizing?: import("csstype").BoxSizingProperty | undefined;
2196
- MozColumnCount?: import("csstype").ColumnCountProperty | undefined;
2197
- MozColumnFill?: import("csstype").ColumnFillProperty | undefined;
2198
- MozColumnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
2199
- MozColumnRuleColor?: string | undefined;
2200
- MozColumnRuleStyle?: string | undefined;
2201
- MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
2202
- MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
2203
- MozContextProperties?: string | undefined;
2204
- MozFontFeatureSettings?: string | undefined;
2205
- MozFontLanguageOverride?: string | undefined;
2206
- MozHyphens?: import("csstype").HyphensProperty | undefined;
2207
- MozImageRegion?: string | undefined;
2208
- MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
2209
- MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
2210
- MozOrient?: import("csstype").MozOrientProperty | undefined;
2211
- MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
2212
- MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
2213
- MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
2214
- MozPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
2215
- MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
2216
- MozStackSizing?: import("csstype").MozStackSizingProperty | undefined;
2217
- MozTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
2218
- MozTextBlink?: import("csstype").MozTextBlinkProperty | undefined;
2219
- MozTextSizeAdjust?: string | undefined;
2220
- MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
2221
- MozTransformStyle?: import("csstype").TransformStyleProperty | undefined;
2222
- MozTransitionDelay?: string | undefined;
2223
- MozTransitionDuration?: string | undefined;
2224
- MozTransitionProperty?: string | undefined;
2225
- MozTransitionTimingFunction?: string | undefined;
2226
- MozUserFocus?: import("csstype").MozUserFocusProperty | undefined;
2227
- MozUserModify?: import("csstype").MozUserModifyProperty | undefined;
2228
- MozUserSelect?: import("csstype").UserSelectProperty | undefined;
2229
- MozWindowDragging?: import("csstype").MozWindowDraggingProperty | undefined;
2230
- MozWindowShadow?: import("csstype").MozWindowShadowProperty | undefined;
2231
- msAccelerator?: import("csstype").MsAcceleratorProperty | undefined;
2232
- msAlignSelf?: string | undefined;
2233
- msBlockProgression?: import("csstype").MsBlockProgressionProperty | undefined;
2234
- msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty | undefined;
2235
- msContentZoomLimitMax?: string | undefined;
2236
- msContentZoomLimitMin?: string | undefined;
2237
- msContentZoomSnapPoints?: string | undefined;
2238
- msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
2239
- msContentZooming?: import("csstype").MsContentZoomingProperty | undefined;
2240
- msFilter?: string | undefined;
2241
- msFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
2242
- msFlexPositive?: import("csstype").GlobalsNumber | undefined;
2243
- msFlowFrom?: string | undefined;
2244
- msFlowInto?: string | undefined;
2245
- msGridColumns?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
2246
- msGridRows?: import("csstype").MsGridRowsProperty<string | number> | undefined;
2247
- msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty | undefined;
2248
- msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
2249
- msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
2250
- msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
2251
- msHyphens?: import("csstype").HyphensProperty | undefined;
2252
- msImeAlign?: import("csstype").MsImeAlignProperty | undefined;
2253
- msJustifySelf?: string | undefined;
2254
- msLineBreak?: import("csstype").LineBreakProperty | undefined;
2255
- msOrder?: import("csstype").GlobalsNumber | undefined;
2256
- msOverflowStyle?: import("csstype").MsOverflowStyleProperty | undefined;
2257
- msOverflowX?: import("csstype").OverflowXProperty | undefined;
2258
- msOverflowY?: import("csstype").OverflowYProperty | undefined;
2259
- msScrollChaining?: import("csstype").MsScrollChainingProperty | undefined;
2260
- msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
2261
- msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
2262
- msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
2263
- msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
2264
- msScrollRails?: import("csstype").MsScrollRailsProperty | undefined;
2265
- msScrollSnapPointsX?: string | undefined;
2266
- msScrollSnapPointsY?: string | undefined;
2267
- msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty | undefined;
2268
- msScrollTranslation?: import("csstype").MsScrollTranslationProperty | undefined;
2269
- msScrollbar3dlightColor?: string | undefined;
2270
- msScrollbarArrowColor?: string | undefined;
2271
- msScrollbarBaseColor?: string | undefined;
2272
- msScrollbarDarkshadowColor?: string | undefined;
2273
- msScrollbarFaceColor?: string | undefined;
2274
- msScrollbarHighlightColor?: string | undefined;
2275
- msScrollbarShadowColor?: string | undefined;
2276
- msTextAutospace?: import("csstype").MsTextAutospaceProperty | undefined;
2277
- msTextCombineHorizontal?: string | undefined;
2278
- msTextOverflow?: string | undefined;
2279
- msTouchAction?: string | undefined;
2280
- msTouchSelect?: import("csstype").MsTouchSelectProperty | undefined;
2281
- msTransform?: string | undefined;
2282
- msTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
2283
- msTransitionDelay?: string | undefined;
2284
- msTransitionDuration?: string | undefined;
2285
- msTransitionProperty?: string | undefined;
2286
- msTransitionTimingFunction?: string | undefined;
2287
- msUserSelect?: import("csstype").MsUserSelectProperty | undefined;
2288
- msWordBreak?: import("csstype").WordBreakProperty | undefined;
2289
- msWrapFlow?: import("csstype").MsWrapFlowProperty | undefined;
2290
- msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
2291
- msWrapThrough?: import("csstype").MsWrapThroughProperty | undefined;
2292
- msWritingMode?: import("csstype").WritingModeProperty | undefined;
2293
- WebkitAlignContent?: string | undefined;
2294
- WebkitAlignItems?: string | undefined;
2295
- WebkitAlignSelf?: string | undefined;
2296
- WebkitAnimationDelay?: string | undefined;
2297
- WebkitAnimationDirection?: string | undefined;
2298
- WebkitAnimationDuration?: string | undefined;
2299
- WebkitAnimationFillMode?: string | undefined;
2300
- WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
2301
- WebkitAnimationName?: string | undefined;
2302
- WebkitAnimationPlayState?: string | undefined;
2303
- WebkitAnimationTimingFunction?: string | undefined;
2304
- WebkitAppearance?: import("csstype").WebkitAppearanceProperty | undefined;
2305
- WebkitBackdropFilter?: string | undefined;
2306
- WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
2307
- WebkitBackgroundClip?: string | undefined;
2308
- WebkitBackgroundOrigin?: string | undefined;
2309
- WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
2310
- WebkitBorderBeforeColor?: string | undefined;
2311
- WebkitBorderBeforeStyle?: string | undefined;
2312
- WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
2313
- WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
2314
- WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
2315
- WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
2316
- WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
2317
- WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
2318
- WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
2319
- WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
2320
- WebkitBoxShadow?: string | undefined;
2321
- WebkitBoxSizing?: import("csstype").BoxSizingProperty | undefined;
2322
- WebkitClipPath?: string | undefined;
2323
- WebkitColumnCount?: import("csstype").ColumnCountProperty | undefined;
2324
- WebkitColumnFill?: import("csstype").ColumnFillProperty | undefined;
2325
- WebkitColumnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
2326
- WebkitColumnRuleColor?: string | undefined;
2327
- WebkitColumnRuleStyle?: string | undefined;
2328
- WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
2329
- WebkitColumnSpan?: import("csstype").ColumnSpanProperty | undefined;
2330
- WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
2331
- WebkitFilter?: string | undefined;
2332
- WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
2333
- WebkitFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
2334
- WebkitFlexGrow?: import("csstype").GlobalsNumber | undefined;
2335
- WebkitFlexShrink?: import("csstype").GlobalsNumber | undefined;
2336
- WebkitFlexWrap?: import("csstype").FlexWrapProperty | undefined;
2337
- WebkitFontFeatureSettings?: string | undefined;
2338
- WebkitFontKerning?: import("csstype").FontKerningProperty | undefined;
2339
- WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
2340
- WebkitFontVariantLigatures?: string | undefined;
2341
- WebkitHyphenateCharacter?: string | undefined;
2342
- WebkitHyphens?: import("csstype").HyphensProperty | undefined;
2343
- WebkitInitialLetter?: import("csstype").InitialLetterProperty | undefined;
2344
- WebkitJustifyContent?: string | undefined;
2345
- WebkitLineBreak?: import("csstype").LineBreakProperty | undefined;
2346
- WebkitLineClamp?: import("csstype").WebkitLineClampProperty | undefined;
2347
- WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
2348
- WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
2349
- WebkitMaskAttachment?: string | undefined;
2350
- WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
2351
- WebkitMaskBoxImageRepeat?: string | undefined;
2352
- WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty | undefined;
2353
- WebkitMaskBoxImageSource?: string | undefined;
2354
- WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
2355
- WebkitMaskClip?: string | undefined;
2356
- WebkitMaskComposite?: string | undefined;
2357
- WebkitMaskImage?: string | undefined;
2358
- WebkitMaskOrigin?: string | undefined;
2359
- WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
2360
- WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
2361
- WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
2362
- WebkitMaskRepeat?: string | undefined;
2363
- WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty | undefined;
2364
- WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty | undefined;
2365
- WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
2366
- WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
2367
- WebkitOrder?: import("csstype").GlobalsNumber | undefined;
2368
- WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty | undefined;
2369
- WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
2370
- WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
2371
- WebkitPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
2372
- WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
2373
- WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
2374
- WebkitRubyPosition?: string | undefined;
2375
- WebkitScrollSnapType?: string | undefined;
2376
- WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
2377
- WebkitTapHighlightColor?: string | undefined;
2378
- WebkitTextCombine?: string | undefined;
2379
- WebkitTextDecorationColor?: string | undefined;
2380
- WebkitTextDecorationLine?: string | undefined;
2381
- WebkitTextDecorationSkip?: string | undefined;
2382
- WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
2383
- WebkitTextEmphasisColor?: string | undefined;
2384
- WebkitTextEmphasisPosition?: string | undefined;
2385
- WebkitTextEmphasisStyle?: string | undefined;
2386
- WebkitTextFillColor?: string | undefined;
2387
- WebkitTextOrientation?: import("csstype").TextOrientationProperty | undefined;
2388
- WebkitTextSizeAdjust?: string | undefined;
2389
- WebkitTextStrokeColor?: string | undefined;
2390
- WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
2391
- WebkitTextUnderlinePosition?: string | undefined;
2392
- WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty | undefined;
2393
- WebkitTransform?: string | undefined;
2394
- WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
2395
- WebkitTransformStyle?: import("csstype").TransformStyleProperty | undefined;
2396
- WebkitTransitionDelay?: string | undefined;
2397
- WebkitTransitionDuration?: string | undefined;
2398
- WebkitTransitionProperty?: string | undefined;
2399
- WebkitTransitionTimingFunction?: string | undefined;
2400
- WebkitUserModify?: import("csstype").WebkitUserModifyProperty | undefined;
2401
- WebkitUserSelect?: import("csstype").UserSelectProperty | undefined;
2402
- WebkitWritingMode?: import("csstype").WritingModeProperty | undefined;
2403
- MozAnimation?: import("csstype").AnimationProperty | undefined;
2404
- MozBorderImage?: import("csstype").BorderImageProperty | undefined;
2405
- MozColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
2406
- MozColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
2407
- MozTransition?: string | undefined;
2408
- msContentZoomLimit?: string | undefined;
2409
- msContentZoomSnap?: string | undefined;
2410
- msFlex?: import("csstype").FlexProperty<string | number> | undefined;
2411
- msScrollLimit?: string | undefined;
2412
- msScrollSnapX?: string | undefined;
2413
- msScrollSnapY?: string | undefined;
2414
- msTransition?: string | undefined;
2415
- WebkitAnimation?: import("csstype").AnimationProperty | undefined;
2416
- WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
2417
- WebkitBorderImage?: import("csstype").BorderImageProperty | undefined;
2418
- WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
2419
- WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
2420
- WebkitColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
2421
- WebkitFlex?: import("csstype").FlexProperty<string | number> | undefined;
2422
- WebkitFlexFlow?: string | undefined;
2423
- WebkitMask?: import("csstype").WebkitMaskProperty<string | number> | undefined;
2424
- WebkitMaskBoxImage?: import("csstype").MaskBorderProperty | undefined;
2425
- WebkitTextEmphasis?: string | undefined;
2426
- WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
2427
- WebkitTransition?: string | undefined;
2428
- azimuth?: string | undefined;
2429
- boxAlign?: import("csstype").BoxAlignProperty | undefined;
2430
- boxDirection?: import("csstype").BoxDirectionProperty | undefined;
2431
- boxFlex?: import("csstype").GlobalsNumber | undefined;
2432
- boxFlexGroup?: import("csstype").GlobalsNumber | undefined;
2433
- boxLines?: import("csstype").BoxLinesProperty | undefined;
2434
- boxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
2435
- boxOrient?: import("csstype").BoxOrientProperty | undefined;
2436
- boxPack?: import("csstype").BoxPackProperty | undefined;
2437
- clip?: string | undefined;
2438
- gridColumnGap?: import("csstype").GridColumnGapProperty<string | number> | undefined;
2439
- gridGap?: import("csstype").GridGapProperty<string | number> | undefined;
2440
- gridRowGap?: import("csstype").GridRowGapProperty<string | number> | undefined;
2441
- imeMode?: import("csstype").ImeModeProperty | undefined;
2442
- offsetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
2443
- offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
2444
- offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
2445
- offsetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
2446
- offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
2447
- offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
2448
- scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
2449
- scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
2450
- scrollSnapPointsX?: string | undefined;
2451
- scrollSnapPointsY?: string | undefined;
2452
- scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty | undefined;
2453
- scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty | undefined;
2454
- scrollbarTrackColor?: string | undefined;
2455
- KhtmlBoxAlign?: import("csstype").BoxAlignProperty | undefined;
2456
- KhtmlBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
2457
- KhtmlBoxFlex?: import("csstype").GlobalsNumber | undefined;
2458
- KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
2459
- KhtmlBoxLines?: import("csstype").BoxLinesProperty | undefined;
2460
- KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
2461
- KhtmlBoxOrient?: import("csstype").BoxOrientProperty | undefined;
2462
- KhtmlBoxPack?: import("csstype").BoxPackProperty | undefined;
2463
- KhtmlLineBreak?: import("csstype").LineBreakProperty | undefined;
2464
- KhtmlOpacity?: import("csstype").OpacityProperty | undefined;
2465
- KhtmlUserSelect?: import("csstype").UserSelectProperty | undefined;
2466
- MozBackgroundClip?: string | undefined;
2467
- MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty | undefined;
2468
- MozBackgroundOrigin?: string | undefined;
2469
- MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
2470
- MozBinding?: string | undefined;
2471
- MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
2472
- MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
2473
- MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
2474
- MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
2475
- MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
2476
- MozBoxAlign?: import("csstype").BoxAlignProperty | undefined;
2477
- MozBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
2478
- MozBoxFlex?: import("csstype").GlobalsNumber | undefined;
2479
- MozBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
2480
- MozBoxOrient?: import("csstype").BoxOrientProperty | undefined;
2481
- MozBoxPack?: import("csstype").BoxPackProperty | undefined;
2482
- MozBoxShadow?: string | undefined;
2483
- MozFloatEdge?: import("csstype").MozFloatEdgeProperty | undefined;
2484
- MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty | undefined;
2485
- MozOpacity?: import("csstype").OpacityProperty | undefined;
2486
- MozOutline?: import("csstype").OutlineProperty<string | number> | undefined;
2487
- MozOutlineColor?: string | undefined;
2488
- MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
2489
- MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
2490
- MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
2491
- MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
2492
- MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
2493
- MozOutlineStyle?: string | undefined;
2494
- MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
2495
- MozTextAlignLast?: import("csstype").TextAlignLastProperty | undefined;
2496
- MozTextDecorationColor?: string | undefined;
2497
- MozTextDecorationLine?: string | undefined;
2498
- MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
2499
- MozUserInput?: import("csstype").MozUserInputProperty | undefined;
2500
- msImeMode?: import("csstype").ImeModeProperty | undefined;
2501
- msScrollbarTrackColor?: string | undefined;
2502
- OAnimation?: import("csstype").AnimationProperty | undefined;
2503
- OAnimationDelay?: string | undefined;
2504
- OAnimationDirection?: string | undefined;
2505
- OAnimationDuration?: string | undefined;
2506
- OAnimationFillMode?: string | undefined;
2507
- OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
2508
- OAnimationName?: string | undefined;
2509
- OAnimationPlayState?: string | undefined;
2510
- OAnimationTimingFunction?: string | undefined;
2511
- OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
2512
- OBorderImage?: import("csstype").BorderImageProperty | undefined;
2513
- OObjectFit?: import("csstype").ObjectFitProperty | undefined;
2514
- OObjectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
2515
- OTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
2516
- OTextOverflow?: string | undefined;
2517
- OTransform?: string | undefined;
2518
- OTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
2519
- OTransition?: string | undefined;
2520
- OTransitionDelay?: string | undefined;
2521
- OTransitionDuration?: string | undefined;
2522
- OTransitionProperty?: string | undefined;
2523
- OTransitionTimingFunction?: string | undefined;
2524
- WebkitBoxAlign?: import("csstype").BoxAlignProperty | undefined;
2525
- WebkitBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
2526
- WebkitBoxFlex?: import("csstype").GlobalsNumber | undefined;
2527
- WebkitBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
2528
- WebkitBoxLines?: import("csstype").BoxLinesProperty | undefined;
2529
- WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
2530
- WebkitBoxOrient?: import("csstype").BoxOrientProperty | undefined;
2531
- WebkitBoxPack?: import("csstype").BoxPackProperty | undefined;
2532
- WebkitScrollSnapPointsX?: string | undefined;
2533
- WebkitScrollSnapPointsY?: string | undefined;
2534
- alignmentBaseline?: import("csstype").AlignmentBaselineProperty | undefined;
2535
- baselineShift?: import("csstype").BaselineShiftProperty<string | number> | undefined;
2536
- clipRule?: import("csstype").ClipRuleProperty | undefined;
2537
- colorInterpolation?: import("csstype").ColorInterpolationProperty | undefined;
2538
- colorRendering?: import("csstype").ColorRenderingProperty | undefined;
2539
- dominantBaseline?: import("csstype").DominantBaselineProperty | undefined;
2540
- fill?: string | undefined;
2541
- fillOpacity?: import("csstype").GlobalsNumber | undefined;
2542
- fillRule?: import("csstype").FillRuleProperty | undefined;
2543
- floodColor?: string | undefined;
2544
- floodOpacity?: import("csstype").GlobalsNumber | undefined;
2545
- glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty | undefined;
2546
- lightingColor?: string | undefined;
2547
- marker?: string | undefined;
2548
- markerEnd?: string | undefined;
2549
- markerMid?: string | undefined;
2550
- markerStart?: string | undefined;
2551
- shapeRendering?: import("csstype").ShapeRenderingProperty | undefined;
2552
- stopColor?: string | undefined;
2553
- stopOpacity?: import("csstype").GlobalsNumber | undefined;
2554
- stroke?: string | undefined;
2555
- strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
2556
- strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
2557
- strokeLinecap?: import("csstype").StrokeLinecapProperty | undefined;
2558
- strokeLinejoin?: import("csstype").StrokeLinejoinProperty | undefined;
2559
- strokeMiterlimit?: import("csstype").GlobalsNumber | undefined;
2560
- strokeOpacity?: import("csstype").GlobalsNumber | undefined;
2561
- strokeWidth?: import("csstype").StrokeWidthProperty<string | number> | undefined;
2562
- textAnchor?: import("csstype").TextAnchorProperty | undefined;
2563
- vectorEffect?: import("csstype").VectorEffectProperty | undefined;
2564
- "accent-color"?: string | undefined;
2565
- "align-content"?: string | undefined;
2566
- "align-items"?: string | undefined;
2567
- "align-self"?: string | undefined;
2568
- "align-tracks"?: string | undefined;
2569
- "animation-delay"?: string | undefined;
2570
- "animation-direction"?: string | undefined;
2571
- "animation-duration"?: string | undefined;
2572
- "animation-fill-mode"?: string | undefined;
2573
- "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
2574
- "animation-name"?: string | undefined;
2575
- "animation-play-state"?: string | undefined;
2576
- "animation-timeline"?: string | undefined;
2577
- "animation-timing-function"?: string | undefined;
2578
- "aspect-ratio"?: string | undefined;
2579
- "backdrop-filter"?: string | undefined;
2580
- "backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
2581
- "background-attachment"?: string | undefined;
2582
- "background-blend-mode"?: string | undefined;
2583
- "background-clip"?: string | undefined;
2584
- "background-color"?: string | undefined;
2585
- "background-image"?: string | undefined;
2586
- "background-origin"?: string | undefined;
2587
- "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
2588
- "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
2589
- "background-repeat"?: string | undefined;
2590
- "background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
2591
- "block-overflow"?: string | undefined;
2592
- "block-size"?: import("csstype").BlockSizeProperty<string | number> | undefined;
2593
- "border-block-color"?: string | undefined;
2594
- "border-block-end-color"?: string | undefined;
2595
- "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty | undefined;
2596
- "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
2597
- "border-block-start-color"?: string | undefined;
2598
- "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty | undefined;
2599
- "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
2600
- "border-block-style"?: import("csstype").BorderBlockStyleProperty | undefined;
2601
- "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
2602
- "border-bottom-color"?: string | undefined;
2603
- "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
2604
- "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
2605
- "border-bottom-style"?: import("csstype").BorderBottomStyleProperty | undefined;
2606
- "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
2607
- "border-collapse"?: import("csstype").BorderCollapseProperty | undefined;
2608
- "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
2609
- "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
2610
- "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
2611
- "border-image-repeat"?: string | undefined;
2612
- "border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
2613
- "border-image-source"?: string | undefined;
2614
- "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
2615
- "border-inline-color"?: string | undefined;
2616
- "border-inline-end-color"?: string | undefined;
2617
- "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
2618
- "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
2619
- "border-inline-start-color"?: string | undefined;
2620
- "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
2621
- "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
2622
- "border-inline-style"?: import("csstype").BorderInlineStyleProperty | undefined;
2623
- "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
2624
- "border-left-color"?: string | undefined;
2625
- "border-left-style"?: import("csstype").BorderLeftStyleProperty | undefined;
2626
- "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
2627
- "border-right-color"?: string | undefined;
2628
- "border-right-style"?: import("csstype").BorderRightStyleProperty | undefined;
2629
- "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
2630
- "border-spacing"?: import("csstype").BorderSpacingProperty<string | number> | undefined;
2631
- "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
2632
- "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
2633
- "border-top-color"?: string | undefined;
2634
- "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
2635
- "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
2636
- "border-top-style"?: import("csstype").BorderTopStyleProperty | undefined;
2637
- "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
2638
- "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
2639
- "box-shadow"?: string | undefined;
2640
- "box-sizing"?: import("csstype").BoxSizingProperty | undefined;
2641
- "break-after"?: import("csstype").BreakAfterProperty | undefined;
2642
- "break-before"?: import("csstype").BreakBeforeProperty | undefined;
2643
- "break-inside"?: import("csstype").BreakInsideProperty | undefined;
2644
- "caption-side"?: import("csstype").CaptionSideProperty | undefined;
2645
- "caret-color"?: string | undefined;
2646
- "clip-path"?: string | undefined;
2647
- "color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
2648
- "color-scheme"?: string | undefined;
2649
- "column-count"?: import("csstype").ColumnCountProperty | undefined;
2650
- "column-fill"?: import("csstype").ColumnFillProperty | undefined;
2651
- "column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
2652
- "column-rule-color"?: string | undefined;
2653
- "column-rule-style"?: string | undefined;
2654
- "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
2655
- "column-span"?: import("csstype").ColumnSpanProperty | undefined;
2656
- "column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
2657
- "content-visibility"?: import("csstype").ContentVisibilityProperty | undefined;
2658
- "counter-increment"?: string | undefined;
2659
- "counter-reset"?: string | undefined;
2660
- "counter-set"?: string | undefined;
2661
- "empty-cells"?: import("csstype").EmptyCellsProperty | undefined;
2662
- "flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
2663
- "flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
2664
- "flex-grow"?: import("csstype").GlobalsNumber | undefined;
2665
- "flex-shrink"?: import("csstype").GlobalsNumber | undefined;
2666
- "flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
2667
- "font-family"?: string | undefined;
2668
- "font-feature-settings"?: string | undefined;
2669
- "font-kerning"?: import("csstype").FontKerningProperty | undefined;
2670
- "font-language-override"?: string | undefined;
2671
- "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty | undefined;
2672
- "font-size"?: import("csstype").FontSizeProperty<string | number> | undefined;
2673
- "font-size-adjust"?: import("csstype").FontSizeAdjustProperty | undefined;
2674
- "font-smooth"?: import("csstype").FontSmoothProperty<string | number> | undefined;
2675
- "font-stretch"?: string | undefined;
2676
- "font-style"?: string | undefined;
2677
- "font-synthesis"?: string | undefined;
2678
- "font-variant"?: string | undefined;
2679
- "font-variant-alternates"?: string | undefined;
2680
- "font-variant-caps"?: import("csstype").FontVariantCapsProperty | undefined;
2681
- "font-variant-east-asian"?: string | undefined;
2682
- "font-variant-ligatures"?: string | undefined;
2683
- "font-variant-numeric"?: string | undefined;
2684
- "font-variant-position"?: import("csstype").FontVariantPositionProperty | undefined;
2685
- "font-variation-settings"?: string | undefined;
2686
- "font-weight"?: import("csstype").FontWeightProperty | undefined;
2687
- "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty | undefined;
2688
- "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
2689
- "grid-auto-flow"?: string | undefined;
2690
- "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
2691
- "grid-column-end"?: import("csstype").GridColumnEndProperty | undefined;
2692
- "grid-column-start"?: import("csstype").GridColumnStartProperty | undefined;
2693
- "grid-row-end"?: import("csstype").GridRowEndProperty | undefined;
2694
- "grid-row-start"?: import("csstype").GridRowStartProperty | undefined;
2695
- "grid-template-areas"?: string | undefined;
2696
- "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
2697
- "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
2698
- "hanging-punctuation"?: string | undefined;
2699
- "hyphenate-character"?: string | undefined;
2700
- "image-orientation"?: string | undefined;
2701
- "image-rendering"?: import("csstype").ImageRenderingProperty | undefined;
2702
- "image-resolution"?: string | undefined;
2703
- "initial-letter"?: import("csstype").InitialLetterProperty | undefined;
2704
- "inline-size"?: import("csstype").InlineSizeProperty<string | number> | undefined;
2705
- "input-security"?: import("csstype").InputSecurityProperty | undefined;
2706
- "inset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
2707
- "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
2708
- "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
2709
- "inset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
2710
- "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
2711
- "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
2712
- "justify-content"?: string | undefined;
2713
- "justify-items"?: string | undefined;
2714
- "justify-self"?: string | undefined;
2715
- "justify-tracks"?: string | undefined;
2716
- "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number> | undefined;
2717
- "line-break"?: import("csstype").LineBreakProperty | undefined;
2718
- "line-height"?: import("csstype").LineHeightProperty<string | number> | undefined;
2719
- "line-height-step"?: import("csstype").LineHeightStepProperty<string | number> | undefined;
2720
- "list-style-image"?: string | undefined;
2721
- "list-style-position"?: import("csstype").ListStylePositionProperty | undefined;
2722
- "list-style-type"?: string | undefined;
2723
- "margin-block"?: import("csstype").MarginBlockProperty<string | number> | undefined;
2724
- "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
2725
- "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
2726
- "margin-bottom"?: import("csstype").MarginBottomProperty<string | number> | undefined;
2727
- "margin-inline"?: import("csstype").MarginInlineProperty<string | number> | undefined;
2728
- "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
2729
- "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
2730
- "margin-left"?: import("csstype").MarginLeftProperty<string | number> | undefined;
2731
- "margin-right"?: import("csstype").MarginRightProperty<string | number> | undefined;
2732
- "margin-top"?: import("csstype").MarginTopProperty<string | number> | undefined;
2733
- "mask-border-mode"?: import("csstype").MaskBorderModeProperty | undefined;
2734
- "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
2735
- "mask-border-repeat"?: string | undefined;
2736
- "mask-border-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
2737
- "mask-border-source"?: string | undefined;
2738
- "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
2739
- "mask-clip"?: string | undefined;
2740
- "mask-composite"?: string | undefined;
2741
- "mask-image"?: string | undefined;
2742
- "mask-mode"?: string | undefined;
2743
- "mask-origin"?: string | undefined;
2744
- "mask-position"?: import("csstype").MaskPositionProperty<string | number> | undefined;
2745
- "mask-repeat"?: string | undefined;
2746
- "mask-size"?: import("csstype").MaskSizeProperty<string | number> | undefined;
2747
- "mask-type"?: import("csstype").MaskTypeProperty | undefined;
2748
- "math-style"?: import("csstype").MathStyleProperty | undefined;
2749
- "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
2750
- "max-height"?: import("csstype").MaxHeightProperty<string | number> | undefined;
2751
- "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
2752
- "max-lines"?: import("csstype").MaxLinesProperty | undefined;
2753
- "max-width"?: import("csstype").MaxWidthProperty<string | number> | undefined;
2754
- "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
2755
- "min-height"?: import("csstype").MinHeightProperty<string | number> | undefined;
2756
- "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
2757
- "min-width"?: import("csstype").MinWidthProperty<string | number> | undefined;
2758
- "mix-blend-mode"?: import("csstype").MixBlendModeProperty | undefined;
2759
- "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
2760
- "motion-path"?: string | undefined;
2761
- "motion-rotation"?: string | undefined;
2762
- "object-fit"?: import("csstype").ObjectFitProperty | undefined;
2763
- "object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
2764
- "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
2765
- "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
2766
- "offset-path"?: string | undefined;
2767
- "offset-rotate"?: string | undefined;
2768
- "offset-rotation"?: string | undefined;
2769
- "outline-color"?: string | undefined;
2770
- "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
2771
- "outline-style"?: string | undefined;
2772
- "outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
2773
- "overflow-anchor"?: import("csstype").OverflowAnchorProperty | undefined;
2774
- "overflow-block"?: import("csstype").OverflowBlockProperty | undefined;
2775
- "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty | undefined;
2776
- "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
2777
- "overflow-inline"?: import("csstype").OverflowInlineProperty | undefined;
2778
- "overflow-wrap"?: import("csstype").OverflowWrapProperty | undefined;
2779
- "overflow-x"?: import("csstype").OverflowXProperty | undefined;
2780
- "overflow-y"?: import("csstype").OverflowYProperty | undefined;
2781
- "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
2782
- "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
2783
- "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty | undefined;
2784
- "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty | undefined;
2785
- "padding-block"?: import("csstype").PaddingBlockProperty<string | number> | undefined;
2786
- "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
2787
- "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
2788
- "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number> | undefined;
2789
- "padding-inline"?: import("csstype").PaddingInlineProperty<string | number> | undefined;
2790
- "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
2791
- "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
2792
- "padding-left"?: import("csstype").PaddingLeftProperty<string | number> | undefined;
2793
- "padding-right"?: import("csstype").PaddingRightProperty<string | number> | undefined;
2794
- "padding-top"?: import("csstype").PaddingTopProperty<string | number> | undefined;
2795
- "page-break-after"?: import("csstype").PageBreakAfterProperty | undefined;
2796
- "page-break-before"?: import("csstype").PageBreakBeforeProperty | undefined;
2797
- "page-break-inside"?: import("csstype").PageBreakInsideProperty | undefined;
2798
- "paint-order"?: string | undefined;
2799
- "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
2800
- "place-content"?: string | undefined;
2801
- "pointer-events"?: import("csstype").PointerEventsProperty | undefined;
2802
- "print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
2803
- "row-gap"?: import("csstype").RowGapProperty<string | number> | undefined;
2804
- "ruby-align"?: import("csstype").RubyAlignProperty | undefined;
2805
- "ruby-merge"?: import("csstype").RubyMergeProperty | undefined;
2806
- "ruby-position"?: string | undefined;
2807
- "scroll-behavior"?: import("csstype").ScrollBehaviorProperty | undefined;
2808
- "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
2809
- "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
2810
- "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
2811
- "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
2812
- "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
2813
- "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
2814
- "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
2815
- "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
2816
- "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
2817
- "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
2818
- "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
2819
- "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
2820
- "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
2821
- "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
2822
- "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
2823
- "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
2824
- "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
2825
- "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
2826
- "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
2827
- "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
2828
- "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
2829
- "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
2830
- "scroll-snap-align"?: string | undefined;
2831
- "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
2832
- "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
2833
- "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
2834
- "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
2835
- "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
2836
- "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty | undefined;
2837
- "scroll-snap-type"?: string | undefined;
2838
- "scrollbar-color"?: string | undefined;
2839
- "scrollbar-gutter"?: string | undefined;
2840
- "scrollbar-width"?: import("csstype").ScrollbarWidthProperty | undefined;
2841
- "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty | undefined;
2842
- "shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
2843
- "shape-outside"?: string | undefined;
2844
- "tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
2845
- "table-layout"?: import("csstype").TableLayoutProperty | undefined;
2846
- "text-align"?: import("csstype").TextAlignProperty | undefined;
2847
- "text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
2848
- "text-combine-upright"?: string | undefined;
2849
- "text-decoration-color"?: string | undefined;
2850
- "text-decoration-line"?: string | undefined;
2851
- "text-decoration-skip"?: string | undefined;
2852
- "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty | undefined;
2853
- "text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
2854
- "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
2855
- "text-decoration-width"?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
2856
- "text-emphasis-color"?: string | undefined;
2857
- "text-emphasis-position"?: string | undefined;
2858
- "text-emphasis-style"?: string | undefined;
2859
- "text-indent"?: import("csstype").TextIndentProperty<string | number> | undefined;
2860
- "text-justify"?: import("csstype").TextJustifyProperty | undefined;
2861
- "text-orientation"?: import("csstype").TextOrientationProperty | undefined;
2862
- "text-overflow"?: string | undefined;
2863
- "text-rendering"?: import("csstype").TextRenderingProperty | undefined;
2864
- "text-shadow"?: string | undefined;
2865
- "text-size-adjust"?: string | undefined;
2866
- "text-transform"?: import("csstype").TextTransformProperty | undefined;
2867
- "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
2868
- "text-underline-position"?: string | undefined;
2869
- "touch-action"?: string | undefined;
2870
- "transform-box"?: import("csstype").TransformBoxProperty | undefined;
2871
- "transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
2872
- "transform-style"?: import("csstype").TransformStyleProperty | undefined;
2873
- "transition-delay"?: string | undefined;
2874
- "transition-duration"?: string | undefined;
2875
- "transition-property"?: string | undefined;
2876
- "transition-timing-function"?: string | undefined;
2877
- "unicode-bidi"?: import("csstype").UnicodeBidiProperty | undefined;
2878
- "user-select"?: import("csstype").UserSelectProperty | undefined;
2879
- "vertical-align"?: import("csstype").VerticalAlignProperty<string | number> | undefined;
2880
- "white-space"?: import("csstype").WhiteSpaceProperty | undefined;
2881
- "will-change"?: string | undefined;
2882
- "word-break"?: import("csstype").WordBreakProperty | undefined;
2883
- "word-spacing"?: import("csstype").WordSpacingProperty<string | number> | undefined;
2884
- "word-wrap"?: import("csstype").WordWrapProperty | undefined;
2885
- "writing-mode"?: import("csstype").WritingModeProperty | undefined;
2886
- "z-index"?: import("csstype").ZIndexProperty | undefined;
2887
- "background-position"?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
2888
- "border-block"?: import("csstype").BorderBlockProperty<string | number> | undefined;
2889
- "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
2890
- "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
2891
- "border-bottom"?: import("csstype").BorderBottomProperty<string | number> | undefined;
2892
- "border-color"?: string | undefined;
2893
- "border-image"?: import("csstype").BorderImageProperty | undefined;
2894
- "border-inline"?: import("csstype").BorderInlineProperty<string | number> | undefined;
2895
- "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
2896
- "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
2897
- "border-left"?: import("csstype").BorderLeftProperty<string | number> | undefined;
2898
- "border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
2899
- "border-right"?: import("csstype").BorderRightProperty<string | number> | undefined;
2900
- "border-style"?: string | undefined;
2901
- "border-top"?: import("csstype").BorderTopProperty<string | number> | undefined;
2902
- "border-width"?: import("csstype").BorderWidthProperty<string | number> | undefined;
2903
- "column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
2904
- "flex-flow"?: string | undefined;
2905
- "grid-area"?: import("csstype").GridAreaProperty | undefined;
2906
- "grid-column"?: import("csstype").GridColumnProperty | undefined;
2907
- "grid-row"?: import("csstype").GridRowProperty | undefined;
2908
- "grid-template"?: string | undefined;
2909
- "line-clamp"?: import("csstype").LineClampProperty | undefined;
2910
- "list-style"?: string | undefined;
2911
- "mask-border"?: import("csstype").MaskBorderProperty | undefined;
2912
- "overscroll-behavior"?: string | undefined;
2913
- "place-items"?: string | undefined;
2914
- "place-self"?: string | undefined;
2915
- "text-decoration"?: import("csstype").TextDecorationProperty<string | number> | undefined;
2916
- "text-emphasis"?: string | undefined;
2917
- "-moz-animation-delay"?: string | undefined;
2918
- "-moz-animation-direction"?: string | undefined;
2919
- "-moz-animation-duration"?: string | undefined;
2920
- "-moz-animation-fill-mode"?: string | undefined;
2921
- "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
2922
- "-moz-animation-name"?: string | undefined;
2923
- "-moz-animation-play-state"?: string | undefined;
2924
- "-moz-animation-timing-function"?: string | undefined;
2925
- "-moz-appearance"?: import("csstype").MozAppearanceProperty | undefined;
2926
- "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
2927
- "-moz-border-bottom-colors"?: string | undefined;
2928
- "-moz-border-end-color"?: string | undefined;
2929
- "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
2930
- "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
2931
- "-moz-border-left-colors"?: string | undefined;
2932
- "-moz-border-right-colors"?: string | undefined;
2933
- "-moz-border-start-color"?: string | undefined;
2934
- "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
2935
- "-moz-border-top-colors"?: string | undefined;
2936
- "-moz-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
2937
- "-moz-column-count"?: import("csstype").ColumnCountProperty | undefined;
2938
- "-moz-column-fill"?: import("csstype").ColumnFillProperty | undefined;
2939
- "-moz-column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
2940
- "-moz-column-rule-color"?: string | undefined;
2941
- "-moz-column-rule-style"?: string | undefined;
2942
- "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
2943
- "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
2944
- "-moz-context-properties"?: string | undefined;
2945
- "-moz-font-feature-settings"?: string | undefined;
2946
- "-moz-font-language-override"?: string | undefined;
2947
- "-moz-hyphens"?: import("csstype").HyphensProperty | undefined;
2948
- "-moz-image-region"?: string | undefined;
2949
- "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
2950
- "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
2951
- "-moz-orient"?: import("csstype").MozOrientProperty | undefined;
2952
- "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
2953
- "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
2954
- "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
2955
- "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
2956
- "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
2957
- "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty | undefined;
2958
- "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
2959
- "-moz-text-blink"?: import("csstype").MozTextBlinkProperty | undefined;
2960
- "-moz-text-size-adjust"?: string | undefined;
2961
- "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
2962
- "-moz-transform-style"?: import("csstype").TransformStyleProperty | undefined;
2963
- "-moz-transition-delay"?: string | undefined;
2964
- "-moz-transition-duration"?: string | undefined;
2965
- "-moz-transition-property"?: string | undefined;
2966
- "-moz-transition-timing-function"?: string | undefined;
2967
- "-moz-user-focus"?: import("csstype").MozUserFocusProperty | undefined;
2968
- "-moz-user-modify"?: import("csstype").MozUserModifyProperty | undefined;
2969
- "-moz-user-select"?: import("csstype").UserSelectProperty | undefined;
2970
- "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty | undefined;
2971
- "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty | undefined;
2972
- "-ms-accelerator"?: import("csstype").MsAcceleratorProperty | undefined;
2973
- "-ms-align-self"?: string | undefined;
2974
- "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty | undefined;
2975
- "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty | undefined;
2976
- "-ms-content-zoom-limit-max"?: string | undefined;
2977
- "-ms-content-zoom-limit-min"?: string | undefined;
2978
- "-ms-content-zoom-snap-points"?: string | undefined;
2979
- "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
2980
- "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty | undefined;
2981
- "-ms-filter"?: string | undefined;
2982
- "-ms-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
2983
- "-ms-flex-positive"?: import("csstype").GlobalsNumber | undefined;
2984
- "-ms-flow-from"?: string | undefined;
2985
- "-ms-flow-into"?: string | undefined;
2986
- "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
2987
- "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number> | undefined;
2988
- "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty | undefined;
2989
- "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
2990
- "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
2991
- "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
2992
- "-ms-hyphens"?: import("csstype").HyphensProperty | undefined;
2993
- "-ms-ime-align"?: import("csstype").MsImeAlignProperty | undefined;
2994
- "-ms-justify-self"?: string | undefined;
2995
- "-ms-line-break"?: import("csstype").LineBreakProperty | undefined;
2996
- "-ms-order"?: import("csstype").GlobalsNumber | undefined;
2997
- "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty | undefined;
2998
- "-ms-overflow-x"?: import("csstype").OverflowXProperty | undefined;
2999
- "-ms-overflow-y"?: import("csstype").OverflowYProperty | undefined;
3000
- "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty | undefined;
3001
- "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
3002
- "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
3003
- "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
3004
- "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
3005
- "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty | undefined;
3006
- "-ms-scroll-snap-points-x"?: string | undefined;
3007
- "-ms-scroll-snap-points-y"?: string | undefined;
3008
- "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty | undefined;
3009
- "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty | undefined;
3010
- "-ms-scrollbar-3dlight-color"?: string | undefined;
3011
- "-ms-scrollbar-arrow-color"?: string | undefined;
3012
- "-ms-scrollbar-base-color"?: string | undefined;
3013
- "-ms-scrollbar-darkshadow-color"?: string | undefined;
3014
- "-ms-scrollbar-face-color"?: string | undefined;
3015
- "-ms-scrollbar-highlight-color"?: string | undefined;
3016
- "-ms-scrollbar-shadow-color"?: string | undefined;
3017
- "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty | undefined;
3018
- "-ms-text-combine-horizontal"?: string | undefined;
3019
- "-ms-text-overflow"?: string | undefined;
3020
- "-ms-touch-action"?: string | undefined;
3021
- "-ms-touch-select"?: import("csstype").MsTouchSelectProperty | undefined;
3022
- "-ms-transform"?: string | undefined;
3023
- "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
3024
- "-ms-transition-delay"?: string | undefined;
3025
- "-ms-transition-duration"?: string | undefined;
3026
- "-ms-transition-property"?: string | undefined;
3027
- "-ms-transition-timing-function"?: string | undefined;
3028
- "-ms-user-select"?: import("csstype").MsUserSelectProperty | undefined;
3029
- "-ms-word-break"?: import("csstype").WordBreakProperty | undefined;
3030
- "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty | undefined;
3031
- "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
3032
- "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty | undefined;
3033
- "-ms-writing-mode"?: import("csstype").WritingModeProperty | undefined;
3034
- "-webkit-align-content"?: string | undefined;
3035
- "-webkit-align-items"?: string | undefined;
3036
- "-webkit-align-self"?: string | undefined;
3037
- "-webkit-animation-delay"?: string | undefined;
3038
- "-webkit-animation-direction"?: string | undefined;
3039
- "-webkit-animation-duration"?: string | undefined;
3040
- "-webkit-animation-fill-mode"?: string | undefined;
3041
- "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
3042
- "-webkit-animation-name"?: string | undefined;
3043
- "-webkit-animation-play-state"?: string | undefined;
3044
- "-webkit-animation-timing-function"?: string | undefined;
3045
- "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty | undefined;
3046
- "-webkit-backdrop-filter"?: string | undefined;
3047
- "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
3048
- "-webkit-background-clip"?: string | undefined;
3049
- "-webkit-background-origin"?: string | undefined;
3050
- "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
3051
- "-webkit-border-before-color"?: string | undefined;
3052
- "-webkit-border-before-style"?: string | undefined;
3053
- "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
3054
- "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
3055
- "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
3056
- "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
3057
- "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
3058
- "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
3059
- "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
3060
- "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
3061
- "-webkit-box-shadow"?: string | undefined;
3062
- "-webkit-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
3063
- "-webkit-clip-path"?: string | undefined;
3064
- "-webkit-column-count"?: import("csstype").ColumnCountProperty | undefined;
3065
- "-webkit-column-fill"?: import("csstype").ColumnFillProperty | undefined;
3066
- "-webkit-column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
3067
- "-webkit-column-rule-color"?: string | undefined;
3068
- "-webkit-column-rule-style"?: string | undefined;
3069
- "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
3070
- "-webkit-column-span"?: import("csstype").ColumnSpanProperty | undefined;
3071
- "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
3072
- "-webkit-filter"?: string | undefined;
3073
- "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
3074
- "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
3075
- "-webkit-flex-grow"?: import("csstype").GlobalsNumber | undefined;
3076
- "-webkit-flex-shrink"?: import("csstype").GlobalsNumber | undefined;
3077
- "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
3078
- "-webkit-font-feature-settings"?: string | undefined;
3079
- "-webkit-font-kerning"?: import("csstype").FontKerningProperty | undefined;
3080
- "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
3081
- "-webkit-font-variant-ligatures"?: string | undefined;
3082
- "-webkit-hyphenate-character"?: string | undefined;
3083
- "-webkit-hyphens"?: import("csstype").HyphensProperty | undefined;
3084
- "-webkit-initial-letter"?: import("csstype").InitialLetterProperty | undefined;
3085
- "-webkit-justify-content"?: string | undefined;
3086
- "-webkit-line-break"?: import("csstype").LineBreakProperty | undefined;
3087
- "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty | undefined;
3088
- "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
3089
- "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
3090
- "-webkit-mask-attachment"?: string | undefined;
3091
- "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
3092
- "-webkit-mask-box-image-repeat"?: string | undefined;
3093
- "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
3094
- "-webkit-mask-box-image-source"?: string | undefined;
3095
- "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
3096
- "-webkit-mask-clip"?: string | undefined;
3097
- "-webkit-mask-composite"?: string | undefined;
3098
- "-webkit-mask-image"?: string | undefined;
3099
- "-webkit-mask-origin"?: string | undefined;
3100
- "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
3101
- "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
3102
- "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
3103
- "-webkit-mask-repeat"?: string | undefined;
3104
- "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty | undefined;
3105
- "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty | undefined;
3106
- "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
3107
- "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
3108
- "-webkit-order"?: import("csstype").GlobalsNumber | undefined;
3109
- "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty | undefined;
3110
- "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
3111
- "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
3112
- "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
3113
- "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
3114
- "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
3115
- "-webkit-ruby-position"?: string | undefined;
3116
- "-webkit-scroll-snap-type"?: string | undefined;
3117
- "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
3118
- "-webkit-tap-highlight-color"?: string | undefined;
3119
- "-webkit-text-combine"?: string | undefined;
3120
- "-webkit-text-decoration-color"?: string | undefined;
3121
- "-webkit-text-decoration-line"?: string | undefined;
3122
- "-webkit-text-decoration-skip"?: string | undefined;
3123
- "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
3124
- "-webkit-text-emphasis-color"?: string | undefined;
3125
- "-webkit-text-emphasis-position"?: string | undefined;
3126
- "-webkit-text-emphasis-style"?: string | undefined;
3127
- "-webkit-text-fill-color"?: string | undefined;
3128
- "-webkit-text-orientation"?: import("csstype").TextOrientationProperty | undefined;
3129
- "-webkit-text-size-adjust"?: string | undefined;
3130
- "-webkit-text-stroke-color"?: string | undefined;
3131
- "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
3132
- "-webkit-text-underline-position"?: string | undefined;
3133
- "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty | undefined;
3134
- "-webkit-transform"?: string | undefined;
3135
- "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
3136
- "-webkit-transform-style"?: import("csstype").TransformStyleProperty | undefined;
3137
- "-webkit-transition-delay"?: string | undefined;
3138
- "-webkit-transition-duration"?: string | undefined;
3139
- "-webkit-transition-property"?: string | undefined;
3140
- "-webkit-transition-timing-function"?: string | undefined;
3141
- "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty | undefined;
3142
- "-webkit-user-select"?: import("csstype").UserSelectProperty | undefined;
3143
- "-webkit-writing-mode"?: import("csstype").WritingModeProperty | undefined;
3144
- "-moz-animation"?: import("csstype").AnimationProperty | undefined;
3145
- "-moz-border-image"?: import("csstype").BorderImageProperty | undefined;
3146
- "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
3147
- "-moz-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
3148
- "-moz-transition"?: string | undefined;
3149
- "-ms-content-zoom-limit"?: string | undefined;
3150
- "-ms-content-zoom-snap"?: string | undefined;
3151
- "-ms-flex"?: import("csstype").FlexProperty<string | number> | undefined;
3152
- "-ms-scroll-limit"?: string | undefined;
3153
- "-ms-scroll-snap-x"?: string | undefined;
3154
- "-ms-scroll-snap-y"?: string | undefined;
3155
- "-ms-transition"?: string | undefined;
3156
- "-webkit-animation"?: import("csstype").AnimationProperty | undefined;
3157
- "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
3158
- "-webkit-border-image"?: import("csstype").BorderImageProperty | undefined;
3159
- "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
3160
- "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
3161
- "-webkit-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
3162
- "-webkit-flex"?: import("csstype").FlexProperty<string | number> | undefined;
3163
- "-webkit-flex-flow"?: string | undefined;
3164
- "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number> | undefined;
3165
- "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty | undefined;
3166
- "-webkit-text-emphasis"?: string | undefined;
3167
- "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
3168
- "-webkit-transition"?: string | undefined;
3169
- "box-align"?: import("csstype").BoxAlignProperty | undefined;
3170
- "box-direction"?: import("csstype").BoxDirectionProperty | undefined;
3171
- "box-flex"?: import("csstype").GlobalsNumber | undefined;
3172
- "box-flex-group"?: import("csstype").GlobalsNumber | undefined;
3173
- "box-lines"?: import("csstype").BoxLinesProperty | undefined;
3174
- "box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
3175
- "box-orient"?: import("csstype").BoxOrientProperty | undefined;
3176
- "box-pack"?: import("csstype").BoxPackProperty | undefined;
3177
- "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number> | undefined;
3178
- "grid-gap"?: import("csstype").GridGapProperty<string | number> | undefined;
3179
- "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number> | undefined;
3180
- "ime-mode"?: import("csstype").ImeModeProperty | undefined;
3181
- "offset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
3182
- "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
3183
- "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
3184
- "offset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
3185
- "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
3186
- "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
3187
- "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
3188
- "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
3189
- "scroll-snap-points-x"?: string | undefined;
3190
- "scroll-snap-points-y"?: string | undefined;
3191
- "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty | undefined;
3192
- "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty | undefined;
3193
- "scrollbar-track-color"?: string | undefined;
3194
- "-khtml-box-align"?: import("csstype").BoxAlignProperty | undefined;
3195
- "-khtml-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
3196
- "-khtml-box-flex"?: import("csstype").GlobalsNumber | undefined;
3197
- "-khtml-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
3198
- "-khtml-box-lines"?: import("csstype").BoxLinesProperty | undefined;
3199
- "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
3200
- "-khtml-box-orient"?: import("csstype").BoxOrientProperty | undefined;
3201
- "-khtml-box-pack"?: import("csstype").BoxPackProperty | undefined;
3202
- "-khtml-line-break"?: import("csstype").LineBreakProperty | undefined;
3203
- "-khtml-opacity"?: import("csstype").OpacityProperty | undefined;
3204
- "-khtml-user-select"?: import("csstype").UserSelectProperty | undefined;
3205
- "-moz-background-clip"?: string | undefined;
3206
- "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty | undefined;
3207
- "-moz-background-origin"?: string | undefined;
3208
- "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
3209
- "-moz-binding"?: string | undefined;
3210
- "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
3211
- "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
3212
- "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
3213
- "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
3214
- "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
3215
- "-moz-box-align"?: import("csstype").BoxAlignProperty | undefined;
3216
- "-moz-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
3217
- "-moz-box-flex"?: import("csstype").GlobalsNumber | undefined;
3218
- "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
3219
- "-moz-box-orient"?: import("csstype").BoxOrientProperty | undefined;
3220
- "-moz-box-pack"?: import("csstype").BoxPackProperty | undefined;
3221
- "-moz-box-shadow"?: string | undefined;
3222
- "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty | undefined;
3223
- "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty | undefined;
3224
- "-moz-opacity"?: import("csstype").OpacityProperty | undefined;
3225
- "-moz-outline"?: import("csstype").OutlineProperty<string | number> | undefined;
3226
- "-moz-outline-color"?: string | undefined;
3227
- "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
3228
- "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
3229
- "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
3230
- "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
3231
- "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
3232
- "-moz-outline-style"?: string | undefined;
3233
- "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
3234
- "-moz-text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
3235
- "-moz-text-decoration-color"?: string | undefined;
3236
- "-moz-text-decoration-line"?: string | undefined;
3237
- "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
3238
- "-moz-user-input"?: import("csstype").MozUserInputProperty | undefined;
3239
- "-ms-ime-mode"?: import("csstype").ImeModeProperty | undefined;
3240
- "-ms-scrollbar-track-color"?: string | undefined;
3241
- "-o-animation"?: import("csstype").AnimationProperty | undefined;
3242
- "-o-animation-delay"?: string | undefined;
3243
- "-o-animation-direction"?: string | undefined;
3244
- "-o-animation-duration"?: string | undefined;
3245
- "-o-animation-fill-mode"?: string | undefined;
3246
- "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
3247
- "-o-animation-name"?: string | undefined;
3248
- "-o-animation-play-state"?: string | undefined;
3249
- "-o-animation-timing-function"?: string | undefined;
3250
- "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
3251
- "-o-border-image"?: import("csstype").BorderImageProperty | undefined;
3252
- "-o-object-fit"?: import("csstype").ObjectFitProperty | undefined;
3253
- "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
3254
- "-o-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
3255
- "-o-text-overflow"?: string | undefined;
3256
- "-o-transform"?: string | undefined;
3257
- "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
3258
- "-o-transition"?: string | undefined;
3259
- "-o-transition-delay"?: string | undefined;
3260
- "-o-transition-duration"?: string | undefined;
3261
- "-o-transition-property"?: string | undefined;
3262
- "-o-transition-timing-function"?: string | undefined;
3263
- "-webkit-box-align"?: import("csstype").BoxAlignProperty | undefined;
3264
- "-webkit-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
3265
- "-webkit-box-flex"?: import("csstype").GlobalsNumber | undefined;
3266
- "-webkit-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
3267
- "-webkit-box-lines"?: import("csstype").BoxLinesProperty | undefined;
3268
- "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
3269
- "-webkit-box-orient"?: import("csstype").BoxOrientProperty | undefined;
3270
- "-webkit-box-pack"?: import("csstype").BoxPackProperty | undefined;
3271
- "-webkit-scroll-snap-points-x"?: string | undefined;
3272
- "-webkit-scroll-snap-points-y"?: string | undefined;
3273
- "alignment-baseline"?: import("csstype").AlignmentBaselineProperty | undefined;
3274
- "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number> | undefined;
3275
- "clip-rule"?: import("csstype").ClipRuleProperty | undefined;
3276
- "color-interpolation"?: import("csstype").ColorInterpolationProperty | undefined;
3277
- "color-rendering"?: import("csstype").ColorRenderingProperty | undefined;
3278
- "dominant-baseline"?: import("csstype").DominantBaselineProperty | undefined;
3279
- "fill-opacity"?: import("csstype").GlobalsNumber | undefined;
3280
- "fill-rule"?: import("csstype").FillRuleProperty | undefined;
3281
- "flood-color"?: string | undefined;
3282
- "flood-opacity"?: import("csstype").GlobalsNumber | undefined;
3283
- "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty | undefined;
3284
- "lighting-color"?: string | undefined;
3285
- "marker-end"?: string | undefined;
3286
- "marker-mid"?: string | undefined;
3287
- "marker-start"?: string | undefined;
3288
- "shape-rendering"?: import("csstype").ShapeRenderingProperty | undefined;
3289
- "stop-color"?: string | undefined;
3290
- "stop-opacity"?: import("csstype").GlobalsNumber | undefined;
3291
- "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
3292
- "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
3293
- "stroke-linecap"?: import("csstype").StrokeLinecapProperty | undefined;
3294
- "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty | undefined;
3295
- "stroke-miterlimit"?: import("csstype").GlobalsNumber | undefined;
3296
- "stroke-opacity"?: import("csstype").GlobalsNumber | undefined;
3297
- "stroke-width"?: import("csstype").StrokeWidthProperty<string | number> | undefined;
3298
- "text-anchor"?: import("csstype").TextAnchorProperty | undefined;
3299
- "vector-effect"?: import("csstype").VectorEffectProperty | undefined;
3300
- } | undefined;
3301
- validator?: ((value: unknown, fieldItem: import("..").FieldItem) => string | void) | undefined;
3302
- reactions?: {
3303
- [x: string]: any;
3304
- dependencies?: string[] | undefined;
3305
- target?: string | undefined;
3306
- when?: string | boolean | undefined;
3307
- fulfill?: {
3308
- state?: import("../../../es/src/types").AnyObject | undefined;
3309
- run?: string | undefined;
3310
- } | undefined;
3311
- otherwise?: {
3312
- state?: import("../../../es/src/types").AnyObject | undefined;
3313
- run?: string | undefined;
3314
- } | undefined;
3315
- } | {
3316
- [x: string]: any;
3317
- dependencies?: string[] | undefined;
3318
- target?: string | undefined;
3319
- when?: string | boolean | undefined;
3320
- fulfill?: {
3321
- state?: import("../../../es/src/types").AnyObject | undefined;
3322
- run?: string | undefined;
3323
- } | undefined;
3324
- otherwise?: {
3325
- state?: import("../../../es/src/types").AnyObject | undefined;
3326
- run?: string | undefined;
3327
- } | undefined;
3328
- }[] | undefined;
3329
60
  }[]>;
3330
- addItem: (fieldItem: import("..").FieldItem) => void;
61
+ addItem: (fieldItem: import("./src/types").FormConfigItem) => void;
3331
62
  textFormatter: import("./src/types").FormConfigTextFormatter;
3332
- getRenderer: (fieldItem: import("..").FieldItem) => import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>;
3333
- currentEditField: import("vue").Ref<import("..").FieldItem | undefined>;
63
+ getRenderer: (fieldItem: import("./src/types").FormConfigItem) => import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>;
64
+ currentEditField: import("vue").Ref<import("./src/types").FormConfigItem | undefined>;
3334
65
  formConfigEditRef: import("vue").Ref<{
3335
66
  validate: import("../../../es/src/types").Func<any[], any>;
3336
67
  } | undefined>;
3337
- SlotRender: import("vue").DefineComponent<{
3338
- renderer: {
3339
- type: import("vue").PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("../../../es/src/types").Func<any[], any>>;
3340
- required: true;
3341
- };
3342
- rootSlots: {
3343
- type: import("vue").PropType<Record<string, import("../../../es/src/types").Func<any[], any>>>;
3344
- };
3345
- }, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3346
- renderer: {
3347
- type: import("vue").PropType<string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("../../../es/src/types").Func<any[], any>>;
3348
- required: true;
3349
- };
3350
- rootSlots: {
3351
- type: import("vue").PropType<Record<string, import("../../../es/src/types").Func<any[], any>>>;
3352
- };
3353
- }>>, {}>;
3354
68
  Draggable: import("vue").DefineComponent<{
3355
69
  list: {
3356
70
  type: ArrayConstructor;
@@ -3424,10 +138,11 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
3424
138
  modelValue: unknown[];
3425
139
  componentData: Record<string, any>;
3426
140
  }>;
141
+ layoutWidthEnum2Column: typeof import("./src/utils").layoutWidthEnum2Column;
3427
142
  FormConfigEdit: import("vue").DefineComponent<{}, {
3428
143
  key: import("vue").Ref<number>;
3429
144
  formRenderRef: import("vue").Ref<import("..").FormRenderExpose | undefined>;
3430
- currentActiveField: import("vue").Ref<import("../../../es/src/types").WithUndefined<import("..").FieldItem>>;
145
+ currentActiveField: import("vue").Ref<import("../../../es/src/types").WithUndefined<import("./src/types").FormConfigItem>>;
3431
146
  fieldList: import("vue").Ref<{
3432
147
  [x: string]: any;
3433
148
  val_key: string;
@@ -5081,8 +1796,36 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
5081
1796
  } | undefined;
5082
1797
  }[] | undefined;
5083
1798
  }[]>;
5084
- initialData: import("vue").Ref<import("../../../es/src/types").AnyObject>;
5085
- generateFieldListByFieldItem: (fieldItem: import("..").FieldItem) => import("..").FieldItem[];
1799
+ initialData: import("vue").Ref<{
1800
+ key?: string | undefined;
1801
+ layoutWidthEnum?: import("./src/types").FormConfigWidth | undefined;
1802
+ type?: string | undefined;
1803
+ name?: string | undefined;
1804
+ show?: boolean | undefined;
1805
+ defaultValue?: any;
1806
+ defaultExpand?: boolean | undefined;
1807
+ fold?: boolean | undefined;
1808
+ required?: boolean | undefined;
1809
+ editable?: boolean | undefined;
1810
+ notes?: string | undefined;
1811
+ desc?: string | undefined;
1812
+ children?: {
1813
+ key: string;
1814
+ layoutWidthEnum: import("./src/types").FormConfigWidth;
1815
+ type: string;
1816
+ name: string;
1817
+ show?: boolean | undefined;
1818
+ defaultValue?: any;
1819
+ defaultExpand?: boolean | undefined;
1820
+ fold?: boolean | undefined;
1821
+ required?: boolean | undefined;
1822
+ editable?: boolean | undefined;
1823
+ notes?: string | undefined;
1824
+ desc?: string | undefined;
1825
+ children?: any[] | undefined;
1826
+ }[] | undefined;
1827
+ }>;
1828
+ generateFieldListByFieldItem: (fieldItem: import("./src/types").FormConfigItem) => import("..").FieldItem[];
5086
1829
  showModal: import("vue").Ref<boolean>;
5087
1830
  onPositiveClick: () => Promise<void>;
5088
1831
  prevOldField: null;
@@ -8757,12 +5500,13 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
8757
5500
  linebarField: import("..").FieldItem[];
8758
5501
  linebarFormRef: import("vue").Ref<import("..").FormRenderExpose | undefined>;
8759
5502
  lineBreakFormRef: import("vue").Ref<import("..").FormRenderExpose | undefined>;
8760
- initialData: {
8761
- is_show: string;
8762
- is_not_fold: string;
5503
+ initialData: Partial<import("./src/types").FormConfigItem>;
5504
+ emit: (event: "submit", payload: import("./src/types").FormConfigItem) => void;
5505
+ submit: (type: string, formRef?: import("..").FormRenderExpose | undefined) => Promise<void>;
5506
+ pick: {
5507
+ <T extends object, U extends keyof T>(object: T, ...props: import("lodash").Many<U>[]): Pick<T, U>;
5508
+ <T_1>(object: T_1 | null | undefined, ...props: import("lodash").PropertyPath[]): Partial<T_1>;
8763
5509
  };
8764
- emit: (event: "submit", payload: import("..").FieldItem) => void;
8765
- submit: (html_type: string, formRef?: import("..").FormRenderExpose | undefined) => Promise<void>;
8766
5510
  NButton: import("vue").DefineComponent<{
8767
5511
  readonly color: StringConstructor;
8768
5512
  readonly textColor: StringConstructor;
@@ -13838,11 +10582,14 @@ declare const FormConfig: SFCWithInstall<import("vue").DefineComponent<{
13838
10582
  consumer: boolean;
13839
10583
  }>>;
13840
10584
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13841
- submit: (payload: import("..").FieldItem) => import("..").FieldItem;
10585
+ submit: (payload: import("./src/types").FormConfigItem) => import("./src/types").FormConfigItem;
13842
10586
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
13843
- onSubmit?: ((payload: import("..").FieldItem) => any) | undefined;
10587
+ onSubmit?: ((payload: import("./src/types").FormConfigItem) => any) | undefined;
13844
10588
  }, {}>;
13845
10589
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
10590
+ maxHeight: {
10591
+ type: StringConstructor;
10592
+ };
13846
10593
  textFormatter: {
13847
10594
  type: import("vue").PropType<import("./src/types").FormConfigTextFormatter>;
13848
10595
  };