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