cnhis-design-vue 3.1.15-beta.5 → 3.1.15-beta.8

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