cnhis-design-vue 3.1.16-beta.0 → 3.1.16-beta.11

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