@dt-frames/ui 2.0.9 → 2.0.11

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