@dt-frames/ui 2.0.8 → 2.0.10

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