cnhis-design-vue 3.1.17-beta.3 → 3.1.17-beta.4

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 (36) hide show
  1. package/es/packages/form-config/index.d.ts +8614 -7222
  2. package/es/packages/form-config/src/FormConfig.js +19 -16
  3. package/es/packages/form-config/src/FormConfig.vue.d.ts +8615 -7223
  4. package/es/packages/form-config/src/components/FormConfigDragDisplay.js +6 -7
  5. package/es/packages/form-config/src/components/FormConfigDragDisplay.vue.d.ts +2 -10
  6. package/es/packages/form-config/src/components/index.d.ts +5 -0
  7. package/es/packages/form-config/src/components/index.js +6 -0
  8. package/es/packages/form-config/src/components/{CloseButton.js → renderer/CloseButton.js} +2 -2
  9. package/es/packages/form-config/src/components/{CloseButton.vue.d.ts → renderer/CloseButton.vue.d.ts} +1 -1
  10. package/es/packages/form-config/src/components/{ComplexNode.js → renderer/ComplexNode.js} +16 -17
  11. package/es/packages/form-config/src/components/{ComplexNode.vue.d.ts → renderer/ComplexNode.vue.d.ts} +5 -25
  12. package/es/packages/form-config/src/components/renderer/DefaultNode.js +59 -0
  13. package/es/packages/form-config/src/components/renderer/DefaultNode.vue.d.ts +3266 -0
  14. package/es/packages/form-config/src/components/renderer/index.d.ts +4 -0
  15. package/es/packages/form-config/src/components/renderer/index.js +3 -0
  16. package/es/packages/form-config/src/hooks/index.d.ts +1 -1
  17. package/es/packages/form-config/src/hooks/index.js +1 -1
  18. package/es/packages/form-config/src/hooks/usePresetRenderer.js +1 -2
  19. package/es/packages/form-config/src/hooks/{useSortable.d.ts → useSortalbeConfig.d.ts} +2 -2
  20. package/es/packages/form-config/src/hooks/{useSortable.js → useSortalbeConfig.js} +5 -5
  21. package/es/packages/form-config/src/utils/index.d.ts +0 -2
  22. package/es/packages/form-config/src/utils/index.js +2 -5
  23. package/es/packages/form-config/style/index.css +11 -17
  24. package/es/packages/form-render/src/FormRender.js +5 -7
  25. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +1 -2
  26. package/es/packages/form-render/src/hooks/useFormContext.js +1 -4
  27. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +1 -0
  28. package/es/packages/form-render/src/hooks/useFormItemDeps.js +5 -2
  29. package/es/packages/form-render/src/utils/index.js +1 -1
  30. package/es/packages/form-render/src/utils/schema.d.ts +0 -1
  31. package/es/packages/form-render/src/utils/schema.js +1 -12
  32. package/es/packages/index.css +11 -17
  33. package/es/packages/shortcut-setter/src/ShortcutSetter.js +2 -1
  34. package/package.json +1 -1
  35. package/es/packages/form-config/src/components/DefaultNode.js +0 -54
  36. package/es/packages/form-config/src/components/DefaultNode.vue.d.ts +0 -1543
@@ -0,0 +1,3266 @@
1
+ import { PropType } from 'vue';
2
+ import { FormConfigItem, FormConfigTextFormatter } from '../../../../../../es/packages/form-config';
3
+ import { bindHover } from '../../../../../../es/packages/form-config/src/utils';
4
+ declare const _default: import("vue").DefineComponent<{
5
+ fieldItem: {
6
+ type: PropType<FormConfigItem>;
7
+ required: true;
8
+ };
9
+ textFormatter: {
10
+ type: PropType<FormConfigTextFormatter>;
11
+ required: true;
12
+ };
13
+ }, {
14
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
15
+ fieldItem: {
16
+ type: PropType<FormConfigItem>;
17
+ required: true;
18
+ };
19
+ textFormatter: {
20
+ type: PropType<FormConfigTextFormatter>;
21
+ required: true;
22
+ };
23
+ }>> & {
24
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
25
+ }>>;
26
+ currentActiveEditField: import("vue").Ref<import("../../../../../src/types").UndefinedAble<FormConfigItem>>;
27
+ active: () => void;
28
+ classList: import("vue").ComputedRef<(string | {
29
+ 'is-active': boolean;
30
+ })[]>;
31
+ ellipsisClassList: import("vue").ComputedRef<(string | {
32
+ 'is-required': boolean | undefined;
33
+ })[]>;
34
+ disabled: import("vue").ComputedRef<boolean>;
35
+ getDisplayText: () => string;
36
+ NEllipsis: import("vue").DefineComponent<{
37
+ readonly expandTrigger: PropType<"click">;
38
+ readonly lineClamp: PropType<string | number>;
39
+ readonly tooltip: {
40
+ readonly type: PropType<boolean | import("naive-ui").PopoverProps>;
41
+ readonly default: true;
42
+ };
43
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
44
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
45
+ borderRadius: string;
46
+ boxShadow: string;
47
+ color: string;
48
+ textColor: string;
49
+ padding: string;
50
+ }, {
51
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
52
+ fontSize: string;
53
+ borderRadius: string;
54
+ color: string;
55
+ dividerColor: string;
56
+ textColor: string;
57
+ boxShadow: string;
58
+ space: string;
59
+ spaceArrow: string;
60
+ arrowOffset: string;
61
+ arrowOffsetVertical: string;
62
+ arrowHeight: string;
63
+ padding: string;
64
+ }, any>;
65
+ }>;
66
+ }>>;
67
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
68
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
69
+ borderRadius: string;
70
+ boxShadow: string;
71
+ color: string;
72
+ textColor: string;
73
+ padding: string;
74
+ }, {
75
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
76
+ fontSize: string;
77
+ borderRadius: string;
78
+ color: string;
79
+ dividerColor: string;
80
+ textColor: string;
81
+ boxShadow: string;
82
+ space: string;
83
+ spaceArrow: string;
84
+ arrowOffset: string;
85
+ arrowOffsetVertical: string;
86
+ arrowHeight: string;
87
+ padding: string;
88
+ }, any>;
89
+ }>;
90
+ }>>>;
91
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
92
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
93
+ borderRadius: string;
94
+ boxShadow: string;
95
+ color: string;
96
+ textColor: string;
97
+ padding: string;
98
+ }, {
99
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
100
+ fontSize: string;
101
+ borderRadius: string;
102
+ color: string;
103
+ dividerColor: string;
104
+ textColor: string;
105
+ boxShadow: string;
106
+ space: string;
107
+ spaceArrow: string;
108
+ arrowOffset: string;
109
+ arrowOffsetVertical: string;
110
+ arrowHeight: string;
111
+ padding: string;
112
+ }, any>;
113
+ }>;
114
+ }>>>;
115
+ }, {
116
+ mergedTheme: import("vue").ComputedRef<{
117
+ common: {
118
+ baseColor: string;
119
+ primaryColor: string;
120
+ primaryColorHover: string;
121
+ primaryColorPressed: string;
122
+ primaryColorSuppl: string;
123
+ infoColor: string;
124
+ infoColorHover: string;
125
+ infoColorPressed: string;
126
+ infoColorSuppl: string;
127
+ successColor: string;
128
+ successColorHover: string;
129
+ successColorPressed: string;
130
+ successColorSuppl: string;
131
+ warningColor: string;
132
+ warningColorHover: string;
133
+ warningColorPressed: string;
134
+ warningColorSuppl: string;
135
+ errorColor: string;
136
+ errorColorHover: string;
137
+ errorColorPressed: string;
138
+ errorColorSuppl: string;
139
+ textColorBase: string;
140
+ textColor1: string;
141
+ textColor2: string;
142
+ textColor3: string;
143
+ textColorDisabled: string;
144
+ placeholderColor: string;
145
+ placeholderColorDisabled: string;
146
+ iconColor: string;
147
+ iconColorHover: string;
148
+ iconColorPressed: string;
149
+ iconColorDisabled: string;
150
+ opacity1: string;
151
+ opacity2: string;
152
+ opacity3: string;
153
+ opacity4: string;
154
+ opacity5: string;
155
+ dividerColor: string;
156
+ borderColor: string;
157
+ closeIconColor: string;
158
+ closeIconColorHover: string;
159
+ closeIconColorPressed: string;
160
+ closeColorHover: string;
161
+ closeColorPressed: string;
162
+ clearColor: string;
163
+ clearColorHover: string;
164
+ clearColorPressed: string;
165
+ scrollbarColor: string;
166
+ scrollbarColorHover: string;
167
+ scrollbarWidth: string;
168
+ scrollbarHeight: string;
169
+ scrollbarBorderRadius: string;
170
+ progressRailColor: string;
171
+ railColor: string;
172
+ popoverColor: string;
173
+ tableColor: string;
174
+ cardColor: string;
175
+ modalColor: string;
176
+ bodyColor: string;
177
+ tagColor: string;
178
+ avatarColor: string;
179
+ invertedColor: string;
180
+ inputColor: string;
181
+ codeColor: string;
182
+ tabColor: string;
183
+ actionColor: string;
184
+ tableHeaderColor: string;
185
+ hoverColor: string;
186
+ tableColorHover: string;
187
+ tableColorStriped: string;
188
+ pressedColor: string;
189
+ opacityDisabled: string;
190
+ inputColorDisabled: string;
191
+ buttonColor2: string;
192
+ buttonColor2Hover: string;
193
+ buttonColor2Pressed: string;
194
+ boxShadow1: string;
195
+ boxShadow2: string;
196
+ boxShadow3: string;
197
+ fontFamily: string;
198
+ fontFamilyMono: string;
199
+ fontWeight: string;
200
+ fontWeightStrong: string;
201
+ cubicBezierEaseInOut: string;
202
+ cubicBezierEaseOut: string;
203
+ cubicBezierEaseIn: string;
204
+ borderRadius: string;
205
+ borderRadiusSmall: string;
206
+ fontSize: string;
207
+ fontSizeMini: string;
208
+ fontSizeTiny: string;
209
+ fontSizeSmall: string;
210
+ fontSizeMedium: string;
211
+ fontSizeLarge: string;
212
+ fontSizeHuge: string;
213
+ lineHeight: string;
214
+ heightMini: string;
215
+ heightTiny: string;
216
+ heightSmall: string;
217
+ heightMedium: string;
218
+ heightLarge: string;
219
+ heightHuge: string;
220
+ name: "common";
221
+ };
222
+ self: unknown;
223
+ peers: {
224
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
225
+ borderRadius: string;
226
+ boxShadow: string;
227
+ color: string;
228
+ textColor: string;
229
+ padding: string;
230
+ }, {
231
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
232
+ fontSize: string;
233
+ borderRadius: string;
234
+ color: string;
235
+ dividerColor: string;
236
+ textColor: string;
237
+ boxShadow: string;
238
+ space: string;
239
+ spaceArrow: string;
240
+ arrowOffset: string;
241
+ arrowOffsetVertical: string;
242
+ arrowHeight: string;
243
+ padding: string;
244
+ }, any>;
245
+ }>;
246
+ };
247
+ peerOverrides: {
248
+ Tooltip?: {
249
+ peers?: {
250
+ Popover?: import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Popover", {
251
+ fontSize: string;
252
+ borderRadius: string;
253
+ color: string;
254
+ dividerColor: string;
255
+ textColor: string;
256
+ boxShadow: string;
257
+ space: string;
258
+ spaceArrow: string;
259
+ arrowOffset: string;
260
+ arrowOffsetVertical: string;
261
+ arrowHeight: string;
262
+ padding: string;
263
+ }, any>> | undefined;
264
+ } | undefined;
265
+ } | undefined;
266
+ };
267
+ }>;
268
+ triggerRef: import("vue").Ref<HTMLElement | null>;
269
+ triggerInnerRef: import("vue").Ref<HTMLElement | null>;
270
+ tooltipRef: import("vue").Ref<{
271
+ syncPosition: () => void;
272
+ setShow: (value: boolean) => void;
273
+ } | null>;
274
+ handleClick: import("vue").ComputedRef<(() => void) | undefined>;
275
+ renderTrigger: () => JSX.Element;
276
+ getTooltipDisabled: () => boolean;
277
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
278
+ readonly expandTrigger: PropType<"click">;
279
+ readonly lineClamp: PropType<string | number>;
280
+ readonly tooltip: {
281
+ readonly type: PropType<boolean | import("naive-ui").PopoverProps>;
282
+ readonly default: true;
283
+ };
284
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
285
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
286
+ borderRadius: string;
287
+ boxShadow: string;
288
+ color: string;
289
+ textColor: string;
290
+ padding: string;
291
+ }, {
292
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
293
+ fontSize: string;
294
+ borderRadius: string;
295
+ color: string;
296
+ dividerColor: string;
297
+ textColor: string;
298
+ boxShadow: string;
299
+ space: string;
300
+ spaceArrow: string;
301
+ arrowOffset: string;
302
+ arrowOffsetVertical: string;
303
+ arrowHeight: string;
304
+ padding: string;
305
+ }, any>;
306
+ }>;
307
+ }>>;
308
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
309
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
310
+ borderRadius: string;
311
+ boxShadow: string;
312
+ color: string;
313
+ textColor: string;
314
+ padding: string;
315
+ }, {
316
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
317
+ fontSize: string;
318
+ borderRadius: string;
319
+ color: string;
320
+ dividerColor: string;
321
+ textColor: string;
322
+ boxShadow: string;
323
+ space: string;
324
+ spaceArrow: string;
325
+ arrowOffset: string;
326
+ arrowOffsetVertical: string;
327
+ arrowHeight: string;
328
+ padding: string;
329
+ }, any>;
330
+ }>;
331
+ }>>>;
332
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Ellipsis", unknown, {
333
+ Tooltip: import("naive-ui/es/_mixins").Theme<"Tooltip", {
334
+ borderRadius: string;
335
+ boxShadow: string;
336
+ color: string;
337
+ textColor: string;
338
+ padding: string;
339
+ }, {
340
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
341
+ fontSize: string;
342
+ borderRadius: string;
343
+ color: string;
344
+ dividerColor: string;
345
+ textColor: string;
346
+ boxShadow: string;
347
+ space: string;
348
+ spaceArrow: string;
349
+ arrowOffset: string;
350
+ arrowOffsetVertical: string;
351
+ arrowHeight: string;
352
+ padding: string;
353
+ }, any>;
354
+ }>;
355
+ }>>>;
356
+ }>>, {
357
+ readonly tooltip: boolean | import("naive-ui").PopoverProps;
358
+ }>;
359
+ NButton: import("vue").DefineComponent<{
360
+ readonly color: StringConstructor;
361
+ readonly textColor: StringConstructor;
362
+ readonly text: BooleanConstructor;
363
+ readonly block: BooleanConstructor;
364
+ readonly loading: BooleanConstructor;
365
+ readonly disabled: BooleanConstructor;
366
+ readonly circle: BooleanConstructor;
367
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
368
+ readonly ghost: BooleanConstructor;
369
+ readonly round: BooleanConstructor;
370
+ readonly secondary: BooleanConstructor;
371
+ readonly tertiary: BooleanConstructor;
372
+ readonly quaternary: BooleanConstructor;
373
+ readonly strong: BooleanConstructor;
374
+ readonly focusable: {
375
+ readonly type: BooleanConstructor;
376
+ readonly default: true;
377
+ };
378
+ readonly keyboard: {
379
+ readonly type: BooleanConstructor;
380
+ readonly default: true;
381
+ };
382
+ readonly tag: {
383
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
384
+ readonly default: "button";
385
+ };
386
+ readonly type: {
387
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
388
+ readonly default: "default";
389
+ };
390
+ readonly dashed: BooleanConstructor;
391
+ readonly iconPlacement: {
392
+ readonly type: PropType<"left" | "right">;
393
+ readonly default: "left";
394
+ };
395
+ readonly attrType: {
396
+ readonly type: PropType<"button" | "reset" | "submit">;
397
+ readonly default: "button";
398
+ };
399
+ readonly bordered: {
400
+ readonly type: BooleanConstructor;
401
+ readonly default: true;
402
+ };
403
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
404
+ readonly nativeFocusBehavior: {
405
+ readonly type: BooleanConstructor;
406
+ readonly default: boolean;
407
+ };
408
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
409
+ heightTiny: string;
410
+ heightSmall: string;
411
+ heightMedium: string;
412
+ heightLarge: string;
413
+ borderRadiusTiny: string;
414
+ borderRadiusSmall: string;
415
+ borderRadiusMedium: string;
416
+ borderRadiusLarge: string;
417
+ fontSizeTiny: string;
418
+ fontSizeSmall: string;
419
+ fontSizeMedium: string;
420
+ fontSizeLarge: string;
421
+ opacityDisabled: string;
422
+ colorOpacitySecondary: string;
423
+ colorOpacitySecondaryHover: string;
424
+ colorOpacitySecondaryPressed: string;
425
+ colorSecondary: string;
426
+ colorSecondaryHover: string;
427
+ colorSecondaryPressed: string;
428
+ colorTertiary: string;
429
+ colorTertiaryHover: string;
430
+ colorTertiaryPressed: string;
431
+ colorQuaternary: string;
432
+ colorQuaternaryHover: string;
433
+ colorQuaternaryPressed: string;
434
+ color: string;
435
+ colorHover: string;
436
+ colorPressed: string;
437
+ colorFocus: string;
438
+ colorDisabled: string;
439
+ textColor: string;
440
+ textColorTertiary: string;
441
+ textColorHover: string;
442
+ textColorPressed: string;
443
+ textColorFocus: string;
444
+ textColorDisabled: string;
445
+ textColorText: string;
446
+ textColorTextHover: string;
447
+ textColorTextPressed: string;
448
+ textColorTextFocus: string;
449
+ textColorTextDisabled: string;
450
+ textColorGhost: string;
451
+ textColorGhostHover: string;
452
+ textColorGhostPressed: string;
453
+ textColorGhostFocus: string;
454
+ textColorGhostDisabled: string;
455
+ border: string;
456
+ borderHover: string;
457
+ borderPressed: string;
458
+ borderFocus: string;
459
+ borderDisabled: string;
460
+ rippleColor: string;
461
+ colorPrimary: string;
462
+ colorHoverPrimary: string;
463
+ colorPressedPrimary: string;
464
+ colorFocusPrimary: string;
465
+ colorDisabledPrimary: string;
466
+ textColorPrimary: string;
467
+ textColorHoverPrimary: string;
468
+ textColorPressedPrimary: string;
469
+ textColorFocusPrimary: string;
470
+ textColorDisabledPrimary: string;
471
+ textColorTextPrimary: string;
472
+ textColorTextHoverPrimary: string;
473
+ textColorTextPressedPrimary: string;
474
+ textColorTextFocusPrimary: string;
475
+ textColorTextDisabledPrimary: string;
476
+ textColorGhostPrimary: string;
477
+ textColorGhostHoverPrimary: string;
478
+ textColorGhostPressedPrimary: string;
479
+ textColorGhostFocusPrimary: string;
480
+ textColorGhostDisabledPrimary: string;
481
+ borderPrimary: string;
482
+ borderHoverPrimary: string;
483
+ borderPressedPrimary: string;
484
+ borderFocusPrimary: string;
485
+ borderDisabledPrimary: string;
486
+ rippleColorPrimary: string;
487
+ colorInfo: string;
488
+ colorHoverInfo: string;
489
+ colorPressedInfo: string;
490
+ colorFocusInfo: string;
491
+ colorDisabledInfo: string;
492
+ textColorInfo: string;
493
+ textColorHoverInfo: string;
494
+ textColorPressedInfo: string;
495
+ textColorFocusInfo: string;
496
+ textColorDisabledInfo: string;
497
+ textColorTextInfo: string;
498
+ textColorTextHoverInfo: string;
499
+ textColorTextPressedInfo: string;
500
+ textColorTextFocusInfo: string;
501
+ textColorTextDisabledInfo: string;
502
+ textColorGhostInfo: string;
503
+ textColorGhostHoverInfo: string;
504
+ textColorGhostPressedInfo: string;
505
+ textColorGhostFocusInfo: string;
506
+ textColorGhostDisabledInfo: string;
507
+ borderInfo: string;
508
+ borderHoverInfo: string;
509
+ borderPressedInfo: string;
510
+ borderFocusInfo: string;
511
+ borderDisabledInfo: string;
512
+ rippleColorInfo: string;
513
+ colorSuccess: string;
514
+ colorHoverSuccess: string;
515
+ colorPressedSuccess: string;
516
+ colorFocusSuccess: string;
517
+ colorDisabledSuccess: string;
518
+ textColorSuccess: string;
519
+ textColorHoverSuccess: string;
520
+ textColorPressedSuccess: string;
521
+ textColorFocusSuccess: string;
522
+ textColorDisabledSuccess: string;
523
+ textColorTextSuccess: string;
524
+ textColorTextHoverSuccess: string;
525
+ textColorTextPressedSuccess: string;
526
+ textColorTextFocusSuccess: string;
527
+ textColorTextDisabledSuccess: string;
528
+ textColorGhostSuccess: string;
529
+ textColorGhostHoverSuccess: string;
530
+ textColorGhostPressedSuccess: string;
531
+ textColorGhostFocusSuccess: string;
532
+ textColorGhostDisabledSuccess: string;
533
+ borderSuccess: string;
534
+ borderHoverSuccess: string;
535
+ borderPressedSuccess: string;
536
+ borderFocusSuccess: string;
537
+ borderDisabledSuccess: string;
538
+ rippleColorSuccess: string;
539
+ colorWarning: string;
540
+ colorHoverWarning: string;
541
+ colorPressedWarning: string;
542
+ colorFocusWarning: string;
543
+ colorDisabledWarning: string;
544
+ textColorWarning: string;
545
+ textColorHoverWarning: string;
546
+ textColorPressedWarning: string;
547
+ textColorFocusWarning: string;
548
+ textColorDisabledWarning: string;
549
+ textColorTextWarning: string;
550
+ textColorTextHoverWarning: string;
551
+ textColorTextPressedWarning: string;
552
+ textColorTextFocusWarning: string;
553
+ textColorTextDisabledWarning: string;
554
+ textColorGhostWarning: string;
555
+ textColorGhostHoverWarning: string;
556
+ textColorGhostPressedWarning: string;
557
+ textColorGhostFocusWarning: string;
558
+ textColorGhostDisabledWarning: string;
559
+ borderWarning: string;
560
+ borderHoverWarning: string;
561
+ borderPressedWarning: string;
562
+ borderFocusWarning: string;
563
+ borderDisabledWarning: string;
564
+ rippleColorWarning: string;
565
+ colorError: string;
566
+ colorHoverError: string;
567
+ colorPressedError: string;
568
+ colorFocusError: string;
569
+ colorDisabledError: string;
570
+ textColorError: string;
571
+ textColorHoverError: string;
572
+ textColorPressedError: string;
573
+ textColorFocusError: string;
574
+ textColorDisabledError: string;
575
+ textColorTextError: string;
576
+ textColorTextHoverError: string;
577
+ textColorTextPressedError: string;
578
+ textColorTextFocusError: string;
579
+ textColorTextDisabledError: string;
580
+ textColorGhostError: string;
581
+ textColorGhostHoverError: string;
582
+ textColorGhostPressedError: string;
583
+ textColorGhostFocusError: string;
584
+ textColorGhostDisabledError: string;
585
+ borderError: string;
586
+ borderHoverError: string;
587
+ borderPressedError: string;
588
+ borderFocusError: string;
589
+ borderDisabledError: string;
590
+ rippleColorError: string;
591
+ waveOpacity: string;
592
+ fontWeight: string;
593
+ fontWeightStrong: string;
594
+ paddingTiny: string;
595
+ paddingSmall: string;
596
+ paddingMedium: string;
597
+ paddingLarge: string;
598
+ paddingRoundTiny: string;
599
+ paddingRoundSmall: string;
600
+ paddingRoundMedium: string;
601
+ paddingRoundLarge: string;
602
+ iconMarginTiny: string;
603
+ iconMarginSmall: string;
604
+ iconMarginMedium: string;
605
+ iconMarginLarge: string;
606
+ iconSizeTiny: string;
607
+ iconSizeSmall: string;
608
+ iconSizeMedium: string;
609
+ iconSizeLarge: string;
610
+ rippleDuration: string;
611
+ }, any>>;
612
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
613
+ heightTiny: string;
614
+ heightSmall: string;
615
+ heightMedium: string;
616
+ heightLarge: string;
617
+ borderRadiusTiny: string;
618
+ borderRadiusSmall: string;
619
+ borderRadiusMedium: string;
620
+ borderRadiusLarge: string;
621
+ fontSizeTiny: string;
622
+ fontSizeSmall: string;
623
+ fontSizeMedium: string;
624
+ fontSizeLarge: string;
625
+ opacityDisabled: string;
626
+ colorOpacitySecondary: string;
627
+ colorOpacitySecondaryHover: string;
628
+ colorOpacitySecondaryPressed: string;
629
+ colorSecondary: string;
630
+ colorSecondaryHover: string;
631
+ colorSecondaryPressed: string;
632
+ colorTertiary: string;
633
+ colorTertiaryHover: string;
634
+ colorTertiaryPressed: string;
635
+ colorQuaternary: string;
636
+ colorQuaternaryHover: string;
637
+ colorQuaternaryPressed: string;
638
+ color: string;
639
+ colorHover: string;
640
+ colorPressed: string;
641
+ colorFocus: string;
642
+ colorDisabled: string;
643
+ textColor: string;
644
+ textColorTertiary: string;
645
+ textColorHover: string;
646
+ textColorPressed: string;
647
+ textColorFocus: string;
648
+ textColorDisabled: string;
649
+ textColorText: string;
650
+ textColorTextHover: string;
651
+ textColorTextPressed: string;
652
+ textColorTextFocus: string;
653
+ textColorTextDisabled: string;
654
+ textColorGhost: string;
655
+ textColorGhostHover: string;
656
+ textColorGhostPressed: string;
657
+ textColorGhostFocus: string;
658
+ textColorGhostDisabled: string;
659
+ border: string;
660
+ borderHover: string;
661
+ borderPressed: string;
662
+ borderFocus: string;
663
+ borderDisabled: string;
664
+ rippleColor: string;
665
+ colorPrimary: string;
666
+ colorHoverPrimary: string;
667
+ colorPressedPrimary: string;
668
+ colorFocusPrimary: string;
669
+ colorDisabledPrimary: string;
670
+ textColorPrimary: string;
671
+ textColorHoverPrimary: string;
672
+ textColorPressedPrimary: string;
673
+ textColorFocusPrimary: string;
674
+ textColorDisabledPrimary: string;
675
+ textColorTextPrimary: string;
676
+ textColorTextHoverPrimary: string;
677
+ textColorTextPressedPrimary: string;
678
+ textColorTextFocusPrimary: string;
679
+ textColorTextDisabledPrimary: string;
680
+ textColorGhostPrimary: string;
681
+ textColorGhostHoverPrimary: string;
682
+ textColorGhostPressedPrimary: string;
683
+ textColorGhostFocusPrimary: string;
684
+ textColorGhostDisabledPrimary: string;
685
+ borderPrimary: string;
686
+ borderHoverPrimary: string;
687
+ borderPressedPrimary: string;
688
+ borderFocusPrimary: string;
689
+ borderDisabledPrimary: string;
690
+ rippleColorPrimary: string;
691
+ colorInfo: string;
692
+ colorHoverInfo: string;
693
+ colorPressedInfo: string;
694
+ colorFocusInfo: string;
695
+ colorDisabledInfo: string;
696
+ textColorInfo: string;
697
+ textColorHoverInfo: string;
698
+ textColorPressedInfo: string;
699
+ textColorFocusInfo: string;
700
+ textColorDisabledInfo: string;
701
+ textColorTextInfo: string;
702
+ textColorTextHoverInfo: string;
703
+ textColorTextPressedInfo: string;
704
+ textColorTextFocusInfo: string;
705
+ textColorTextDisabledInfo: string;
706
+ textColorGhostInfo: string;
707
+ textColorGhostHoverInfo: string;
708
+ textColorGhostPressedInfo: string;
709
+ textColorGhostFocusInfo: string;
710
+ textColorGhostDisabledInfo: string;
711
+ borderInfo: string;
712
+ borderHoverInfo: string;
713
+ borderPressedInfo: string;
714
+ borderFocusInfo: string;
715
+ borderDisabledInfo: string;
716
+ rippleColorInfo: string;
717
+ colorSuccess: string;
718
+ colorHoverSuccess: string;
719
+ colorPressedSuccess: string;
720
+ colorFocusSuccess: string;
721
+ colorDisabledSuccess: string;
722
+ textColorSuccess: string;
723
+ textColorHoverSuccess: string;
724
+ textColorPressedSuccess: string;
725
+ textColorFocusSuccess: string;
726
+ textColorDisabledSuccess: string;
727
+ textColorTextSuccess: string;
728
+ textColorTextHoverSuccess: string;
729
+ textColorTextPressedSuccess: string;
730
+ textColorTextFocusSuccess: string;
731
+ textColorTextDisabledSuccess: string;
732
+ textColorGhostSuccess: string;
733
+ textColorGhostHoverSuccess: string;
734
+ textColorGhostPressedSuccess: string;
735
+ textColorGhostFocusSuccess: string;
736
+ textColorGhostDisabledSuccess: string;
737
+ borderSuccess: string;
738
+ borderHoverSuccess: string;
739
+ borderPressedSuccess: string;
740
+ borderFocusSuccess: string;
741
+ borderDisabledSuccess: string;
742
+ rippleColorSuccess: string;
743
+ colorWarning: string;
744
+ colorHoverWarning: string;
745
+ colorPressedWarning: string;
746
+ colorFocusWarning: string;
747
+ colorDisabledWarning: string;
748
+ textColorWarning: string;
749
+ textColorHoverWarning: string;
750
+ textColorPressedWarning: string;
751
+ textColorFocusWarning: string;
752
+ textColorDisabledWarning: string;
753
+ textColorTextWarning: string;
754
+ textColorTextHoverWarning: string;
755
+ textColorTextPressedWarning: string;
756
+ textColorTextFocusWarning: string;
757
+ textColorTextDisabledWarning: string;
758
+ textColorGhostWarning: string;
759
+ textColorGhostHoverWarning: string;
760
+ textColorGhostPressedWarning: string;
761
+ textColorGhostFocusWarning: string;
762
+ textColorGhostDisabledWarning: string;
763
+ borderWarning: string;
764
+ borderHoverWarning: string;
765
+ borderPressedWarning: string;
766
+ borderFocusWarning: string;
767
+ borderDisabledWarning: string;
768
+ rippleColorWarning: string;
769
+ colorError: string;
770
+ colorHoverError: string;
771
+ colorPressedError: string;
772
+ colorFocusError: string;
773
+ colorDisabledError: string;
774
+ textColorError: string;
775
+ textColorHoverError: string;
776
+ textColorPressedError: string;
777
+ textColorFocusError: string;
778
+ textColorDisabledError: string;
779
+ textColorTextError: string;
780
+ textColorTextHoverError: string;
781
+ textColorTextPressedError: string;
782
+ textColorTextFocusError: string;
783
+ textColorTextDisabledError: string;
784
+ textColorGhostError: string;
785
+ textColorGhostHoverError: string;
786
+ textColorGhostPressedError: string;
787
+ textColorGhostFocusError: string;
788
+ textColorGhostDisabledError: string;
789
+ borderError: string;
790
+ borderHoverError: string;
791
+ borderPressedError: string;
792
+ borderFocusError: string;
793
+ borderDisabledError: string;
794
+ rippleColorError: string;
795
+ waveOpacity: string;
796
+ fontWeight: string;
797
+ fontWeightStrong: string;
798
+ paddingTiny: string;
799
+ paddingSmall: string;
800
+ paddingMedium: string;
801
+ paddingLarge: string;
802
+ paddingRoundTiny: string;
803
+ paddingRoundSmall: string;
804
+ paddingRoundMedium: string;
805
+ paddingRoundLarge: string;
806
+ iconMarginTiny: string;
807
+ iconMarginSmall: string;
808
+ iconMarginMedium: string;
809
+ iconMarginLarge: string;
810
+ iconSizeTiny: string;
811
+ iconSizeSmall: string;
812
+ iconSizeMedium: string;
813
+ iconSizeLarge: string;
814
+ rippleDuration: string;
815
+ }, any>>>;
816
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
817
+ heightTiny: string;
818
+ heightSmall: string;
819
+ heightMedium: string;
820
+ heightLarge: string;
821
+ borderRadiusTiny: string;
822
+ borderRadiusSmall: string;
823
+ borderRadiusMedium: string;
824
+ borderRadiusLarge: string;
825
+ fontSizeTiny: string;
826
+ fontSizeSmall: string;
827
+ fontSizeMedium: string;
828
+ fontSizeLarge: string;
829
+ opacityDisabled: string;
830
+ colorOpacitySecondary: string;
831
+ colorOpacitySecondaryHover: string;
832
+ colorOpacitySecondaryPressed: string;
833
+ colorSecondary: string;
834
+ colorSecondaryHover: string;
835
+ colorSecondaryPressed: string;
836
+ colorTertiary: string;
837
+ colorTertiaryHover: string;
838
+ colorTertiaryPressed: string;
839
+ colorQuaternary: string;
840
+ colorQuaternaryHover: string;
841
+ colorQuaternaryPressed: string;
842
+ color: string;
843
+ colorHover: string;
844
+ colorPressed: string;
845
+ colorFocus: string;
846
+ colorDisabled: string;
847
+ textColor: string;
848
+ textColorTertiary: string;
849
+ textColorHover: string;
850
+ textColorPressed: string;
851
+ textColorFocus: string;
852
+ textColorDisabled: string;
853
+ textColorText: string;
854
+ textColorTextHover: string;
855
+ textColorTextPressed: string;
856
+ textColorTextFocus: string;
857
+ textColorTextDisabled: string;
858
+ textColorGhost: string;
859
+ textColorGhostHover: string;
860
+ textColorGhostPressed: string;
861
+ textColorGhostFocus: string;
862
+ textColorGhostDisabled: string;
863
+ border: string;
864
+ borderHover: string;
865
+ borderPressed: string;
866
+ borderFocus: string;
867
+ borderDisabled: string;
868
+ rippleColor: string;
869
+ colorPrimary: string;
870
+ colorHoverPrimary: string;
871
+ colorPressedPrimary: string;
872
+ colorFocusPrimary: string;
873
+ colorDisabledPrimary: string;
874
+ textColorPrimary: string;
875
+ textColorHoverPrimary: string;
876
+ textColorPressedPrimary: string;
877
+ textColorFocusPrimary: string;
878
+ textColorDisabledPrimary: string;
879
+ textColorTextPrimary: string;
880
+ textColorTextHoverPrimary: string;
881
+ textColorTextPressedPrimary: string;
882
+ textColorTextFocusPrimary: string;
883
+ textColorTextDisabledPrimary: string;
884
+ textColorGhostPrimary: string;
885
+ textColorGhostHoverPrimary: string;
886
+ textColorGhostPressedPrimary: string;
887
+ textColorGhostFocusPrimary: string;
888
+ textColorGhostDisabledPrimary: string;
889
+ borderPrimary: string;
890
+ borderHoverPrimary: string;
891
+ borderPressedPrimary: string;
892
+ borderFocusPrimary: string;
893
+ borderDisabledPrimary: string;
894
+ rippleColorPrimary: string;
895
+ colorInfo: string;
896
+ colorHoverInfo: string;
897
+ colorPressedInfo: string;
898
+ colorFocusInfo: string;
899
+ colorDisabledInfo: string;
900
+ textColorInfo: string;
901
+ textColorHoverInfo: string;
902
+ textColorPressedInfo: string;
903
+ textColorFocusInfo: string;
904
+ textColorDisabledInfo: string;
905
+ textColorTextInfo: string;
906
+ textColorTextHoverInfo: string;
907
+ textColorTextPressedInfo: string;
908
+ textColorTextFocusInfo: string;
909
+ textColorTextDisabledInfo: string;
910
+ textColorGhostInfo: string;
911
+ textColorGhostHoverInfo: string;
912
+ textColorGhostPressedInfo: string;
913
+ textColorGhostFocusInfo: string;
914
+ textColorGhostDisabledInfo: string;
915
+ borderInfo: string;
916
+ borderHoverInfo: string;
917
+ borderPressedInfo: string;
918
+ borderFocusInfo: string;
919
+ borderDisabledInfo: string;
920
+ rippleColorInfo: string;
921
+ colorSuccess: string;
922
+ colorHoverSuccess: string;
923
+ colorPressedSuccess: string;
924
+ colorFocusSuccess: string;
925
+ colorDisabledSuccess: string;
926
+ textColorSuccess: string;
927
+ textColorHoverSuccess: string;
928
+ textColorPressedSuccess: string;
929
+ textColorFocusSuccess: string;
930
+ textColorDisabledSuccess: string;
931
+ textColorTextSuccess: string;
932
+ textColorTextHoverSuccess: string;
933
+ textColorTextPressedSuccess: string;
934
+ textColorTextFocusSuccess: string;
935
+ textColorTextDisabledSuccess: string;
936
+ textColorGhostSuccess: string;
937
+ textColorGhostHoverSuccess: string;
938
+ textColorGhostPressedSuccess: string;
939
+ textColorGhostFocusSuccess: string;
940
+ textColorGhostDisabledSuccess: string;
941
+ borderSuccess: string;
942
+ borderHoverSuccess: string;
943
+ borderPressedSuccess: string;
944
+ borderFocusSuccess: string;
945
+ borderDisabledSuccess: string;
946
+ rippleColorSuccess: string;
947
+ colorWarning: string;
948
+ colorHoverWarning: string;
949
+ colorPressedWarning: string;
950
+ colorFocusWarning: string;
951
+ colorDisabledWarning: string;
952
+ textColorWarning: string;
953
+ textColorHoverWarning: string;
954
+ textColorPressedWarning: string;
955
+ textColorFocusWarning: string;
956
+ textColorDisabledWarning: string;
957
+ textColorTextWarning: string;
958
+ textColorTextHoverWarning: string;
959
+ textColorTextPressedWarning: string;
960
+ textColorTextFocusWarning: string;
961
+ textColorTextDisabledWarning: string;
962
+ textColorGhostWarning: string;
963
+ textColorGhostHoverWarning: string;
964
+ textColorGhostPressedWarning: string;
965
+ textColorGhostFocusWarning: string;
966
+ textColorGhostDisabledWarning: string;
967
+ borderWarning: string;
968
+ borderHoverWarning: string;
969
+ borderPressedWarning: string;
970
+ borderFocusWarning: string;
971
+ borderDisabledWarning: string;
972
+ rippleColorWarning: string;
973
+ colorError: string;
974
+ colorHoverError: string;
975
+ colorPressedError: string;
976
+ colorFocusError: string;
977
+ colorDisabledError: string;
978
+ textColorError: string;
979
+ textColorHoverError: string;
980
+ textColorPressedError: string;
981
+ textColorFocusError: string;
982
+ textColorDisabledError: string;
983
+ textColorTextError: string;
984
+ textColorTextHoverError: string;
985
+ textColorTextPressedError: string;
986
+ textColorTextFocusError: string;
987
+ textColorTextDisabledError: string;
988
+ textColorGhostError: string;
989
+ textColorGhostHoverError: string;
990
+ textColorGhostPressedError: string;
991
+ textColorGhostFocusError: string;
992
+ textColorGhostDisabledError: string;
993
+ borderError: string;
994
+ borderHoverError: string;
995
+ borderPressedError: string;
996
+ borderFocusError: string;
997
+ borderDisabledError: string;
998
+ rippleColorError: string;
999
+ waveOpacity: string;
1000
+ fontWeight: string;
1001
+ fontWeightStrong: string;
1002
+ paddingTiny: string;
1003
+ paddingSmall: string;
1004
+ paddingMedium: string;
1005
+ paddingLarge: string;
1006
+ paddingRoundTiny: string;
1007
+ paddingRoundSmall: string;
1008
+ paddingRoundMedium: string;
1009
+ paddingRoundLarge: string;
1010
+ iconMarginTiny: string;
1011
+ iconMarginSmall: string;
1012
+ iconMarginMedium: string;
1013
+ iconMarginLarge: string;
1014
+ iconSizeTiny: string;
1015
+ iconSizeSmall: string;
1016
+ iconSizeMedium: string;
1017
+ iconSizeLarge: string;
1018
+ rippleDuration: string;
1019
+ }, any>>>;
1020
+ }, {
1021
+ selfElRef: import("vue").Ref<HTMLElement | null>;
1022
+ waveElRef: import("vue").Ref<{
1023
+ play: () => void;
1024
+ } | null>;
1025
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1026
+ mergedFocusable: import("vue").ComputedRef<boolean>;
1027
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
1028
+ showBorder: import("vue").ComputedRef<boolean>;
1029
+ enterPressed: import("vue").Ref<boolean>;
1030
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1031
+ handleMousedown: (e: MouseEvent) => void;
1032
+ handleKeydown: (e: KeyboardEvent) => void;
1033
+ handleBlur: () => void;
1034
+ handleKeyup: (e: KeyboardEvent) => void;
1035
+ handleClick: (e: MouseEvent) => void;
1036
+ customColorCssVars: import("vue").ComputedRef<{
1037
+ '--n-border-color': string;
1038
+ '--n-border-color-hover': string;
1039
+ '--n-border-color-pressed': string;
1040
+ '--n-border-color-focus': string;
1041
+ '--n-border-color-disabled': string;
1042
+ } | null>;
1043
+ cssVars: import("vue").ComputedRef<{
1044
+ '--n-width': string;
1045
+ '--n-height': string;
1046
+ '--n-font-size': string;
1047
+ '--n-padding': string;
1048
+ '--n-icon-size': string;
1049
+ '--n-icon-margin': string;
1050
+ '--n-border-radius': string;
1051
+ '--n-border': string;
1052
+ '--n-border-hover': string;
1053
+ '--n-border-pressed': string;
1054
+ '--n-border-focus': string;
1055
+ '--n-border-disabled': string;
1056
+ '--n-color': string;
1057
+ '--n-color-hover': string;
1058
+ '--n-color-pressed': string;
1059
+ '--n-color-focus': string;
1060
+ '--n-color-disabled': string;
1061
+ '--n-ripple-color': string;
1062
+ '--n-text-color': string;
1063
+ '--n-text-color-hover': string;
1064
+ '--n-text-color-pressed': string;
1065
+ '--n-text-color-focus': string;
1066
+ '--n-text-color-disabled': string;
1067
+ 'font-weight': string;
1068
+ '--n-bezier': string;
1069
+ '--n-bezier-ease-out': string;
1070
+ '--n-ripple-duration': string;
1071
+ '--n-opacity-disabled': string;
1072
+ '--n-wave-opacity': string;
1073
+ }> | undefined;
1074
+ themeClass: import("vue").Ref<string> | undefined;
1075
+ onRender: (() => void) | undefined;
1076
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1077
+ readonly color: StringConstructor;
1078
+ readonly textColor: StringConstructor;
1079
+ readonly text: BooleanConstructor;
1080
+ readonly block: BooleanConstructor;
1081
+ readonly loading: BooleanConstructor;
1082
+ readonly disabled: BooleanConstructor;
1083
+ readonly circle: BooleanConstructor;
1084
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
1085
+ readonly ghost: BooleanConstructor;
1086
+ readonly round: BooleanConstructor;
1087
+ readonly secondary: BooleanConstructor;
1088
+ readonly tertiary: BooleanConstructor;
1089
+ readonly quaternary: BooleanConstructor;
1090
+ readonly strong: BooleanConstructor;
1091
+ readonly focusable: {
1092
+ readonly type: BooleanConstructor;
1093
+ readonly default: true;
1094
+ };
1095
+ readonly keyboard: {
1096
+ readonly type: BooleanConstructor;
1097
+ readonly default: true;
1098
+ };
1099
+ readonly tag: {
1100
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
1101
+ readonly default: "button";
1102
+ };
1103
+ readonly type: {
1104
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
1105
+ readonly default: "default";
1106
+ };
1107
+ readonly dashed: BooleanConstructor;
1108
+ readonly iconPlacement: {
1109
+ readonly type: PropType<"left" | "right">;
1110
+ readonly default: "left";
1111
+ };
1112
+ readonly attrType: {
1113
+ readonly type: PropType<"button" | "reset" | "submit">;
1114
+ readonly default: "button";
1115
+ };
1116
+ readonly bordered: {
1117
+ readonly type: BooleanConstructor;
1118
+ readonly default: true;
1119
+ };
1120
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1121
+ readonly nativeFocusBehavior: {
1122
+ readonly type: BooleanConstructor;
1123
+ readonly default: boolean;
1124
+ };
1125
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1126
+ heightTiny: string;
1127
+ heightSmall: string;
1128
+ heightMedium: string;
1129
+ heightLarge: string;
1130
+ borderRadiusTiny: string;
1131
+ borderRadiusSmall: string;
1132
+ borderRadiusMedium: string;
1133
+ borderRadiusLarge: string;
1134
+ fontSizeTiny: string;
1135
+ fontSizeSmall: string;
1136
+ fontSizeMedium: string;
1137
+ fontSizeLarge: string;
1138
+ opacityDisabled: string;
1139
+ colorOpacitySecondary: string;
1140
+ colorOpacitySecondaryHover: string;
1141
+ colorOpacitySecondaryPressed: string;
1142
+ colorSecondary: string;
1143
+ colorSecondaryHover: string;
1144
+ colorSecondaryPressed: string;
1145
+ colorTertiary: string;
1146
+ colorTertiaryHover: string;
1147
+ colorTertiaryPressed: string;
1148
+ colorQuaternary: string;
1149
+ colorQuaternaryHover: string;
1150
+ colorQuaternaryPressed: string;
1151
+ color: string;
1152
+ colorHover: string;
1153
+ colorPressed: string;
1154
+ colorFocus: string;
1155
+ colorDisabled: string;
1156
+ textColor: string;
1157
+ textColorTertiary: string;
1158
+ textColorHover: string;
1159
+ textColorPressed: string;
1160
+ textColorFocus: string;
1161
+ textColorDisabled: string;
1162
+ textColorText: string;
1163
+ textColorTextHover: string;
1164
+ textColorTextPressed: string;
1165
+ textColorTextFocus: string;
1166
+ textColorTextDisabled: string;
1167
+ textColorGhost: string;
1168
+ textColorGhostHover: string;
1169
+ textColorGhostPressed: string;
1170
+ textColorGhostFocus: string;
1171
+ textColorGhostDisabled: string;
1172
+ border: string;
1173
+ borderHover: string;
1174
+ borderPressed: string;
1175
+ borderFocus: string;
1176
+ borderDisabled: string;
1177
+ rippleColor: string;
1178
+ colorPrimary: string;
1179
+ colorHoverPrimary: string;
1180
+ colorPressedPrimary: string;
1181
+ colorFocusPrimary: string;
1182
+ colorDisabledPrimary: string;
1183
+ textColorPrimary: string;
1184
+ textColorHoverPrimary: string;
1185
+ textColorPressedPrimary: string;
1186
+ textColorFocusPrimary: string;
1187
+ textColorDisabledPrimary: string;
1188
+ textColorTextPrimary: string;
1189
+ textColorTextHoverPrimary: string;
1190
+ textColorTextPressedPrimary: string;
1191
+ textColorTextFocusPrimary: string;
1192
+ textColorTextDisabledPrimary: string;
1193
+ textColorGhostPrimary: string;
1194
+ textColorGhostHoverPrimary: string;
1195
+ textColorGhostPressedPrimary: string;
1196
+ textColorGhostFocusPrimary: string;
1197
+ textColorGhostDisabledPrimary: string;
1198
+ borderPrimary: string;
1199
+ borderHoverPrimary: string;
1200
+ borderPressedPrimary: string;
1201
+ borderFocusPrimary: string;
1202
+ borderDisabledPrimary: string;
1203
+ rippleColorPrimary: string;
1204
+ colorInfo: string;
1205
+ colorHoverInfo: string;
1206
+ colorPressedInfo: string;
1207
+ colorFocusInfo: string;
1208
+ colorDisabledInfo: string;
1209
+ textColorInfo: string;
1210
+ textColorHoverInfo: string;
1211
+ textColorPressedInfo: string;
1212
+ textColorFocusInfo: string;
1213
+ textColorDisabledInfo: string;
1214
+ textColorTextInfo: string;
1215
+ textColorTextHoverInfo: string;
1216
+ textColorTextPressedInfo: string;
1217
+ textColorTextFocusInfo: string;
1218
+ textColorTextDisabledInfo: string;
1219
+ textColorGhostInfo: string;
1220
+ textColorGhostHoverInfo: string;
1221
+ textColorGhostPressedInfo: string;
1222
+ textColorGhostFocusInfo: string;
1223
+ textColorGhostDisabledInfo: string;
1224
+ borderInfo: string;
1225
+ borderHoverInfo: string;
1226
+ borderPressedInfo: string;
1227
+ borderFocusInfo: string;
1228
+ borderDisabledInfo: string;
1229
+ rippleColorInfo: string;
1230
+ colorSuccess: string;
1231
+ colorHoverSuccess: string;
1232
+ colorPressedSuccess: string;
1233
+ colorFocusSuccess: string;
1234
+ colorDisabledSuccess: string;
1235
+ textColorSuccess: string;
1236
+ textColorHoverSuccess: string;
1237
+ textColorPressedSuccess: string;
1238
+ textColorFocusSuccess: string;
1239
+ textColorDisabledSuccess: string;
1240
+ textColorTextSuccess: string;
1241
+ textColorTextHoverSuccess: string;
1242
+ textColorTextPressedSuccess: string;
1243
+ textColorTextFocusSuccess: string;
1244
+ textColorTextDisabledSuccess: string;
1245
+ textColorGhostSuccess: string;
1246
+ textColorGhostHoverSuccess: string;
1247
+ textColorGhostPressedSuccess: string;
1248
+ textColorGhostFocusSuccess: string;
1249
+ textColorGhostDisabledSuccess: string;
1250
+ borderSuccess: string;
1251
+ borderHoverSuccess: string;
1252
+ borderPressedSuccess: string;
1253
+ borderFocusSuccess: string;
1254
+ borderDisabledSuccess: string;
1255
+ rippleColorSuccess: string;
1256
+ colorWarning: string;
1257
+ colorHoverWarning: string;
1258
+ colorPressedWarning: string;
1259
+ colorFocusWarning: string;
1260
+ colorDisabledWarning: string;
1261
+ textColorWarning: string;
1262
+ textColorHoverWarning: string;
1263
+ textColorPressedWarning: string;
1264
+ textColorFocusWarning: string;
1265
+ textColorDisabledWarning: string;
1266
+ textColorTextWarning: string;
1267
+ textColorTextHoverWarning: string;
1268
+ textColorTextPressedWarning: string;
1269
+ textColorTextFocusWarning: string;
1270
+ textColorTextDisabledWarning: string;
1271
+ textColorGhostWarning: string;
1272
+ textColorGhostHoverWarning: string;
1273
+ textColorGhostPressedWarning: string;
1274
+ textColorGhostFocusWarning: string;
1275
+ textColorGhostDisabledWarning: string;
1276
+ borderWarning: string;
1277
+ borderHoverWarning: string;
1278
+ borderPressedWarning: string;
1279
+ borderFocusWarning: string;
1280
+ borderDisabledWarning: string;
1281
+ rippleColorWarning: string;
1282
+ colorError: string;
1283
+ colorHoverError: string;
1284
+ colorPressedError: string;
1285
+ colorFocusError: string;
1286
+ colorDisabledError: string;
1287
+ textColorError: string;
1288
+ textColorHoverError: string;
1289
+ textColorPressedError: string;
1290
+ textColorFocusError: string;
1291
+ textColorDisabledError: string;
1292
+ textColorTextError: string;
1293
+ textColorTextHoverError: string;
1294
+ textColorTextPressedError: string;
1295
+ textColorTextFocusError: string;
1296
+ textColorTextDisabledError: string;
1297
+ textColorGhostError: string;
1298
+ textColorGhostHoverError: string;
1299
+ textColorGhostPressedError: string;
1300
+ textColorGhostFocusError: string;
1301
+ textColorGhostDisabledError: string;
1302
+ borderError: string;
1303
+ borderHoverError: string;
1304
+ borderPressedError: string;
1305
+ borderFocusError: string;
1306
+ borderDisabledError: string;
1307
+ rippleColorError: string;
1308
+ waveOpacity: string;
1309
+ fontWeight: string;
1310
+ fontWeightStrong: string;
1311
+ paddingTiny: string;
1312
+ paddingSmall: string;
1313
+ paddingMedium: string;
1314
+ paddingLarge: string;
1315
+ paddingRoundTiny: string;
1316
+ paddingRoundSmall: string;
1317
+ paddingRoundMedium: string;
1318
+ paddingRoundLarge: string;
1319
+ iconMarginTiny: string;
1320
+ iconMarginSmall: string;
1321
+ iconMarginMedium: string;
1322
+ iconMarginLarge: string;
1323
+ iconSizeTiny: string;
1324
+ iconSizeSmall: string;
1325
+ iconSizeMedium: string;
1326
+ iconSizeLarge: string;
1327
+ rippleDuration: string;
1328
+ }, any>>;
1329
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1330
+ heightTiny: string;
1331
+ heightSmall: string;
1332
+ heightMedium: string;
1333
+ heightLarge: string;
1334
+ borderRadiusTiny: string;
1335
+ borderRadiusSmall: string;
1336
+ borderRadiusMedium: string;
1337
+ borderRadiusLarge: string;
1338
+ fontSizeTiny: string;
1339
+ fontSizeSmall: string;
1340
+ fontSizeMedium: string;
1341
+ fontSizeLarge: string;
1342
+ opacityDisabled: string;
1343
+ colorOpacitySecondary: string;
1344
+ colorOpacitySecondaryHover: string;
1345
+ colorOpacitySecondaryPressed: string;
1346
+ colorSecondary: string;
1347
+ colorSecondaryHover: string;
1348
+ colorSecondaryPressed: string;
1349
+ colorTertiary: string;
1350
+ colorTertiaryHover: string;
1351
+ colorTertiaryPressed: string;
1352
+ colorQuaternary: string;
1353
+ colorQuaternaryHover: string;
1354
+ colorQuaternaryPressed: string;
1355
+ color: string;
1356
+ colorHover: string;
1357
+ colorPressed: string;
1358
+ colorFocus: string;
1359
+ colorDisabled: string;
1360
+ textColor: string;
1361
+ textColorTertiary: string;
1362
+ textColorHover: string;
1363
+ textColorPressed: string;
1364
+ textColorFocus: string;
1365
+ textColorDisabled: string;
1366
+ textColorText: string;
1367
+ textColorTextHover: string;
1368
+ textColorTextPressed: string;
1369
+ textColorTextFocus: string;
1370
+ textColorTextDisabled: string;
1371
+ textColorGhost: string;
1372
+ textColorGhostHover: string;
1373
+ textColorGhostPressed: string;
1374
+ textColorGhostFocus: string;
1375
+ textColorGhostDisabled: string;
1376
+ border: string;
1377
+ borderHover: string;
1378
+ borderPressed: string;
1379
+ borderFocus: string;
1380
+ borderDisabled: string;
1381
+ rippleColor: string;
1382
+ colorPrimary: string;
1383
+ colorHoverPrimary: string;
1384
+ colorPressedPrimary: string;
1385
+ colorFocusPrimary: string;
1386
+ colorDisabledPrimary: string;
1387
+ textColorPrimary: string;
1388
+ textColorHoverPrimary: string;
1389
+ textColorPressedPrimary: string;
1390
+ textColorFocusPrimary: string;
1391
+ textColorDisabledPrimary: string;
1392
+ textColorTextPrimary: string;
1393
+ textColorTextHoverPrimary: string;
1394
+ textColorTextPressedPrimary: string;
1395
+ textColorTextFocusPrimary: string;
1396
+ textColorTextDisabledPrimary: string;
1397
+ textColorGhostPrimary: string;
1398
+ textColorGhostHoverPrimary: string;
1399
+ textColorGhostPressedPrimary: string;
1400
+ textColorGhostFocusPrimary: string;
1401
+ textColorGhostDisabledPrimary: string;
1402
+ borderPrimary: string;
1403
+ borderHoverPrimary: string;
1404
+ borderPressedPrimary: string;
1405
+ borderFocusPrimary: string;
1406
+ borderDisabledPrimary: string;
1407
+ rippleColorPrimary: string;
1408
+ colorInfo: string;
1409
+ colorHoverInfo: string;
1410
+ colorPressedInfo: string;
1411
+ colorFocusInfo: string;
1412
+ colorDisabledInfo: string;
1413
+ textColorInfo: string;
1414
+ textColorHoverInfo: string;
1415
+ textColorPressedInfo: string;
1416
+ textColorFocusInfo: string;
1417
+ textColorDisabledInfo: string;
1418
+ textColorTextInfo: string;
1419
+ textColorTextHoverInfo: string;
1420
+ textColorTextPressedInfo: string;
1421
+ textColorTextFocusInfo: string;
1422
+ textColorTextDisabledInfo: string;
1423
+ textColorGhostInfo: string;
1424
+ textColorGhostHoverInfo: string;
1425
+ textColorGhostPressedInfo: string;
1426
+ textColorGhostFocusInfo: string;
1427
+ textColorGhostDisabledInfo: string;
1428
+ borderInfo: string;
1429
+ borderHoverInfo: string;
1430
+ borderPressedInfo: string;
1431
+ borderFocusInfo: string;
1432
+ borderDisabledInfo: string;
1433
+ rippleColorInfo: string;
1434
+ colorSuccess: string;
1435
+ colorHoverSuccess: string;
1436
+ colorPressedSuccess: string;
1437
+ colorFocusSuccess: string;
1438
+ colorDisabledSuccess: string;
1439
+ textColorSuccess: string;
1440
+ textColorHoverSuccess: string;
1441
+ textColorPressedSuccess: string;
1442
+ textColorFocusSuccess: string;
1443
+ textColorDisabledSuccess: string;
1444
+ textColorTextSuccess: string;
1445
+ textColorTextHoverSuccess: string;
1446
+ textColorTextPressedSuccess: string;
1447
+ textColorTextFocusSuccess: string;
1448
+ textColorTextDisabledSuccess: string;
1449
+ textColorGhostSuccess: string;
1450
+ textColorGhostHoverSuccess: string;
1451
+ textColorGhostPressedSuccess: string;
1452
+ textColorGhostFocusSuccess: string;
1453
+ textColorGhostDisabledSuccess: string;
1454
+ borderSuccess: string;
1455
+ borderHoverSuccess: string;
1456
+ borderPressedSuccess: string;
1457
+ borderFocusSuccess: string;
1458
+ borderDisabledSuccess: string;
1459
+ rippleColorSuccess: string;
1460
+ colorWarning: string;
1461
+ colorHoverWarning: string;
1462
+ colorPressedWarning: string;
1463
+ colorFocusWarning: string;
1464
+ colorDisabledWarning: string;
1465
+ textColorWarning: string;
1466
+ textColorHoverWarning: string;
1467
+ textColorPressedWarning: string;
1468
+ textColorFocusWarning: string;
1469
+ textColorDisabledWarning: string;
1470
+ textColorTextWarning: string;
1471
+ textColorTextHoverWarning: string;
1472
+ textColorTextPressedWarning: string;
1473
+ textColorTextFocusWarning: string;
1474
+ textColorTextDisabledWarning: string;
1475
+ textColorGhostWarning: string;
1476
+ textColorGhostHoverWarning: string;
1477
+ textColorGhostPressedWarning: string;
1478
+ textColorGhostFocusWarning: string;
1479
+ textColorGhostDisabledWarning: string;
1480
+ borderWarning: string;
1481
+ borderHoverWarning: string;
1482
+ borderPressedWarning: string;
1483
+ borderFocusWarning: string;
1484
+ borderDisabledWarning: string;
1485
+ rippleColorWarning: string;
1486
+ colorError: string;
1487
+ colorHoverError: string;
1488
+ colorPressedError: string;
1489
+ colorFocusError: string;
1490
+ colorDisabledError: string;
1491
+ textColorError: string;
1492
+ textColorHoverError: string;
1493
+ textColorPressedError: string;
1494
+ textColorFocusError: string;
1495
+ textColorDisabledError: string;
1496
+ textColorTextError: string;
1497
+ textColorTextHoverError: string;
1498
+ textColorTextPressedError: string;
1499
+ textColorTextFocusError: string;
1500
+ textColorTextDisabledError: string;
1501
+ textColorGhostError: string;
1502
+ textColorGhostHoverError: string;
1503
+ textColorGhostPressedError: string;
1504
+ textColorGhostFocusError: string;
1505
+ textColorGhostDisabledError: string;
1506
+ borderError: string;
1507
+ borderHoverError: string;
1508
+ borderPressedError: string;
1509
+ borderFocusError: string;
1510
+ borderDisabledError: string;
1511
+ rippleColorError: string;
1512
+ waveOpacity: string;
1513
+ fontWeight: string;
1514
+ fontWeightStrong: string;
1515
+ paddingTiny: string;
1516
+ paddingSmall: string;
1517
+ paddingMedium: string;
1518
+ paddingLarge: string;
1519
+ paddingRoundTiny: string;
1520
+ paddingRoundSmall: string;
1521
+ paddingRoundMedium: string;
1522
+ paddingRoundLarge: string;
1523
+ iconMarginTiny: string;
1524
+ iconMarginSmall: string;
1525
+ iconMarginMedium: string;
1526
+ iconMarginLarge: string;
1527
+ iconSizeTiny: string;
1528
+ iconSizeSmall: string;
1529
+ iconSizeMedium: string;
1530
+ iconSizeLarge: string;
1531
+ rippleDuration: string;
1532
+ }, any>>>;
1533
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1534
+ heightTiny: string;
1535
+ heightSmall: string;
1536
+ heightMedium: string;
1537
+ heightLarge: string;
1538
+ borderRadiusTiny: string;
1539
+ borderRadiusSmall: string;
1540
+ borderRadiusMedium: string;
1541
+ borderRadiusLarge: string;
1542
+ fontSizeTiny: string;
1543
+ fontSizeSmall: string;
1544
+ fontSizeMedium: string;
1545
+ fontSizeLarge: string;
1546
+ opacityDisabled: string;
1547
+ colorOpacitySecondary: string;
1548
+ colorOpacitySecondaryHover: string;
1549
+ colorOpacitySecondaryPressed: string;
1550
+ colorSecondary: string;
1551
+ colorSecondaryHover: string;
1552
+ colorSecondaryPressed: string;
1553
+ colorTertiary: string;
1554
+ colorTertiaryHover: string;
1555
+ colorTertiaryPressed: string;
1556
+ colorQuaternary: string;
1557
+ colorQuaternaryHover: string;
1558
+ colorQuaternaryPressed: string;
1559
+ color: string;
1560
+ colorHover: string;
1561
+ colorPressed: string;
1562
+ colorFocus: string;
1563
+ colorDisabled: string;
1564
+ textColor: string;
1565
+ textColorTertiary: string;
1566
+ textColorHover: string;
1567
+ textColorPressed: string;
1568
+ textColorFocus: string;
1569
+ textColorDisabled: string;
1570
+ textColorText: string;
1571
+ textColorTextHover: string;
1572
+ textColorTextPressed: string;
1573
+ textColorTextFocus: string;
1574
+ textColorTextDisabled: string;
1575
+ textColorGhost: string;
1576
+ textColorGhostHover: string;
1577
+ textColorGhostPressed: string;
1578
+ textColorGhostFocus: string;
1579
+ textColorGhostDisabled: string;
1580
+ border: string;
1581
+ borderHover: string;
1582
+ borderPressed: string;
1583
+ borderFocus: string;
1584
+ borderDisabled: string;
1585
+ rippleColor: string;
1586
+ colorPrimary: string;
1587
+ colorHoverPrimary: string;
1588
+ colorPressedPrimary: string;
1589
+ colorFocusPrimary: string;
1590
+ colorDisabledPrimary: string;
1591
+ textColorPrimary: string;
1592
+ textColorHoverPrimary: string;
1593
+ textColorPressedPrimary: string;
1594
+ textColorFocusPrimary: string;
1595
+ textColorDisabledPrimary: string;
1596
+ textColorTextPrimary: string;
1597
+ textColorTextHoverPrimary: string;
1598
+ textColorTextPressedPrimary: string;
1599
+ textColorTextFocusPrimary: string;
1600
+ textColorTextDisabledPrimary: string;
1601
+ textColorGhostPrimary: string;
1602
+ textColorGhostHoverPrimary: string;
1603
+ textColorGhostPressedPrimary: string;
1604
+ textColorGhostFocusPrimary: string;
1605
+ textColorGhostDisabledPrimary: string;
1606
+ borderPrimary: string;
1607
+ borderHoverPrimary: string;
1608
+ borderPressedPrimary: string;
1609
+ borderFocusPrimary: string;
1610
+ borderDisabledPrimary: string;
1611
+ rippleColorPrimary: string;
1612
+ colorInfo: string;
1613
+ colorHoverInfo: string;
1614
+ colorPressedInfo: string;
1615
+ colorFocusInfo: string;
1616
+ colorDisabledInfo: string;
1617
+ textColorInfo: string;
1618
+ textColorHoverInfo: string;
1619
+ textColorPressedInfo: string;
1620
+ textColorFocusInfo: string;
1621
+ textColorDisabledInfo: string;
1622
+ textColorTextInfo: string;
1623
+ textColorTextHoverInfo: string;
1624
+ textColorTextPressedInfo: string;
1625
+ textColorTextFocusInfo: string;
1626
+ textColorTextDisabledInfo: string;
1627
+ textColorGhostInfo: string;
1628
+ textColorGhostHoverInfo: string;
1629
+ textColorGhostPressedInfo: string;
1630
+ textColorGhostFocusInfo: string;
1631
+ textColorGhostDisabledInfo: string;
1632
+ borderInfo: string;
1633
+ borderHoverInfo: string;
1634
+ borderPressedInfo: string;
1635
+ borderFocusInfo: string;
1636
+ borderDisabledInfo: string;
1637
+ rippleColorInfo: string;
1638
+ colorSuccess: string;
1639
+ colorHoverSuccess: string;
1640
+ colorPressedSuccess: string;
1641
+ colorFocusSuccess: string;
1642
+ colorDisabledSuccess: string;
1643
+ textColorSuccess: string;
1644
+ textColorHoverSuccess: string;
1645
+ textColorPressedSuccess: string;
1646
+ textColorFocusSuccess: string;
1647
+ textColorDisabledSuccess: string;
1648
+ textColorTextSuccess: string;
1649
+ textColorTextHoverSuccess: string;
1650
+ textColorTextPressedSuccess: string;
1651
+ textColorTextFocusSuccess: string;
1652
+ textColorTextDisabledSuccess: string;
1653
+ textColorGhostSuccess: string;
1654
+ textColorGhostHoverSuccess: string;
1655
+ textColorGhostPressedSuccess: string;
1656
+ textColorGhostFocusSuccess: string;
1657
+ textColorGhostDisabledSuccess: string;
1658
+ borderSuccess: string;
1659
+ borderHoverSuccess: string;
1660
+ borderPressedSuccess: string;
1661
+ borderFocusSuccess: string;
1662
+ borderDisabledSuccess: string;
1663
+ rippleColorSuccess: string;
1664
+ colorWarning: string;
1665
+ colorHoverWarning: string;
1666
+ colorPressedWarning: string;
1667
+ colorFocusWarning: string;
1668
+ colorDisabledWarning: string;
1669
+ textColorWarning: string;
1670
+ textColorHoverWarning: string;
1671
+ textColorPressedWarning: string;
1672
+ textColorFocusWarning: string;
1673
+ textColorDisabledWarning: string;
1674
+ textColorTextWarning: string;
1675
+ textColorTextHoverWarning: string;
1676
+ textColorTextPressedWarning: string;
1677
+ textColorTextFocusWarning: string;
1678
+ textColorTextDisabledWarning: string;
1679
+ textColorGhostWarning: string;
1680
+ textColorGhostHoverWarning: string;
1681
+ textColorGhostPressedWarning: string;
1682
+ textColorGhostFocusWarning: string;
1683
+ textColorGhostDisabledWarning: string;
1684
+ borderWarning: string;
1685
+ borderHoverWarning: string;
1686
+ borderPressedWarning: string;
1687
+ borderFocusWarning: string;
1688
+ borderDisabledWarning: string;
1689
+ rippleColorWarning: string;
1690
+ colorError: string;
1691
+ colorHoverError: string;
1692
+ colorPressedError: string;
1693
+ colorFocusError: string;
1694
+ colorDisabledError: string;
1695
+ textColorError: string;
1696
+ textColorHoverError: string;
1697
+ textColorPressedError: string;
1698
+ textColorFocusError: string;
1699
+ textColorDisabledError: string;
1700
+ textColorTextError: string;
1701
+ textColorTextHoverError: string;
1702
+ textColorTextPressedError: string;
1703
+ textColorTextFocusError: string;
1704
+ textColorTextDisabledError: string;
1705
+ textColorGhostError: string;
1706
+ textColorGhostHoverError: string;
1707
+ textColorGhostPressedError: string;
1708
+ textColorGhostFocusError: string;
1709
+ textColorGhostDisabledError: string;
1710
+ borderError: string;
1711
+ borderHoverError: string;
1712
+ borderPressedError: string;
1713
+ borderFocusError: string;
1714
+ borderDisabledError: string;
1715
+ rippleColorError: string;
1716
+ waveOpacity: string;
1717
+ fontWeight: string;
1718
+ fontWeightStrong: string;
1719
+ paddingTiny: string;
1720
+ paddingSmall: string;
1721
+ paddingMedium: string;
1722
+ paddingLarge: string;
1723
+ paddingRoundTiny: string;
1724
+ paddingRoundSmall: string;
1725
+ paddingRoundMedium: string;
1726
+ paddingRoundLarge: string;
1727
+ iconMarginTiny: string;
1728
+ iconMarginSmall: string;
1729
+ iconMarginMedium: string;
1730
+ iconMarginLarge: string;
1731
+ iconSizeTiny: string;
1732
+ iconSizeSmall: string;
1733
+ iconSizeMedium: string;
1734
+ iconSizeLarge: string;
1735
+ rippleDuration: string;
1736
+ }, any>>>;
1737
+ }>>, {
1738
+ readonly type: import("naive-ui/es/button/src/interface").Type;
1739
+ readonly tag: keyof HTMLElementTagNameMap;
1740
+ readonly block: boolean;
1741
+ readonly round: boolean;
1742
+ readonly dashed: boolean;
1743
+ readonly text: boolean;
1744
+ readonly circle: boolean;
1745
+ readonly disabled: boolean;
1746
+ readonly focusable: boolean;
1747
+ readonly strong: boolean;
1748
+ readonly loading: boolean;
1749
+ readonly bordered: boolean;
1750
+ readonly tertiary: boolean;
1751
+ readonly ghost: boolean;
1752
+ readonly keyboard: boolean;
1753
+ readonly secondary: boolean;
1754
+ readonly quaternary: boolean;
1755
+ readonly iconPlacement: "left" | "right";
1756
+ readonly attrType: "button" | "reset" | "submit";
1757
+ readonly nativeFocusBehavior: boolean;
1758
+ }>;
1759
+ CloseButton: import("vue").DefineComponent<{
1760
+ fieldItem: {
1761
+ type: PropType<FormConfigItem>;
1762
+ required: true;
1763
+ };
1764
+ }, {
1765
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1766
+ fieldItem: {
1767
+ type: PropType<FormConfigItem>;
1768
+ required: true;
1769
+ };
1770
+ }>> & {
1771
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
1772
+ }>>;
1773
+ fieldList: import("vue").Ref<FormConfigItem[]>;
1774
+ materialList: import("vue").Ref<FormConfigItem[]>;
1775
+ remove: () => void;
1776
+ CloseCircle: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1777
+ NButton: import("vue").DefineComponent<{
1778
+ readonly color: StringConstructor;
1779
+ readonly textColor: StringConstructor;
1780
+ readonly text: BooleanConstructor;
1781
+ readonly block: BooleanConstructor;
1782
+ readonly loading: BooleanConstructor;
1783
+ readonly disabled: BooleanConstructor;
1784
+ readonly circle: BooleanConstructor;
1785
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
1786
+ readonly ghost: BooleanConstructor;
1787
+ readonly round: BooleanConstructor;
1788
+ readonly secondary: BooleanConstructor;
1789
+ readonly tertiary: BooleanConstructor;
1790
+ readonly quaternary: BooleanConstructor;
1791
+ readonly strong: BooleanConstructor;
1792
+ readonly focusable: {
1793
+ readonly type: BooleanConstructor;
1794
+ readonly default: true;
1795
+ };
1796
+ readonly keyboard: {
1797
+ readonly type: BooleanConstructor;
1798
+ readonly default: true;
1799
+ };
1800
+ readonly tag: {
1801
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
1802
+ readonly default: "button";
1803
+ };
1804
+ readonly type: {
1805
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
1806
+ readonly default: "default";
1807
+ };
1808
+ readonly dashed: BooleanConstructor;
1809
+ readonly iconPlacement: {
1810
+ readonly type: PropType<"left" | "right">;
1811
+ readonly default: "left";
1812
+ };
1813
+ readonly attrType: {
1814
+ readonly type: PropType<"button" | "reset" | "submit">;
1815
+ readonly default: "button";
1816
+ };
1817
+ readonly bordered: {
1818
+ readonly type: BooleanConstructor;
1819
+ readonly default: true;
1820
+ };
1821
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
1822
+ readonly nativeFocusBehavior: {
1823
+ readonly type: BooleanConstructor;
1824
+ readonly default: boolean;
1825
+ };
1826
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
1827
+ heightTiny: string;
1828
+ heightSmall: string;
1829
+ heightMedium: string;
1830
+ heightLarge: string;
1831
+ borderRadiusTiny: string;
1832
+ borderRadiusSmall: string;
1833
+ borderRadiusMedium: string;
1834
+ borderRadiusLarge: string;
1835
+ fontSizeTiny: string;
1836
+ fontSizeSmall: string;
1837
+ fontSizeMedium: string;
1838
+ fontSizeLarge: string;
1839
+ opacityDisabled: string;
1840
+ colorOpacitySecondary: string;
1841
+ colorOpacitySecondaryHover: string;
1842
+ colorOpacitySecondaryPressed: string;
1843
+ colorSecondary: string;
1844
+ colorSecondaryHover: string;
1845
+ colorSecondaryPressed: string;
1846
+ colorTertiary: string;
1847
+ colorTertiaryHover: string;
1848
+ colorTertiaryPressed: string;
1849
+ colorQuaternary: string;
1850
+ colorQuaternaryHover: string;
1851
+ colorQuaternaryPressed: string;
1852
+ color: string;
1853
+ colorHover: string;
1854
+ colorPressed: string;
1855
+ colorFocus: string;
1856
+ colorDisabled: string;
1857
+ textColor: string;
1858
+ textColorTertiary: string;
1859
+ textColorHover: string;
1860
+ textColorPressed: string;
1861
+ textColorFocus: string;
1862
+ textColorDisabled: string;
1863
+ textColorText: string;
1864
+ textColorTextHover: string;
1865
+ textColorTextPressed: string;
1866
+ textColorTextFocus: string;
1867
+ textColorTextDisabled: string;
1868
+ textColorGhost: string;
1869
+ textColorGhostHover: string;
1870
+ textColorGhostPressed: string;
1871
+ textColorGhostFocus: string;
1872
+ textColorGhostDisabled: string;
1873
+ border: string;
1874
+ borderHover: string;
1875
+ borderPressed: string;
1876
+ borderFocus: string;
1877
+ borderDisabled: string;
1878
+ rippleColor: string;
1879
+ colorPrimary: string;
1880
+ colorHoverPrimary: string;
1881
+ colorPressedPrimary: string;
1882
+ colorFocusPrimary: string;
1883
+ colorDisabledPrimary: string;
1884
+ textColorPrimary: string;
1885
+ textColorHoverPrimary: string;
1886
+ textColorPressedPrimary: string;
1887
+ textColorFocusPrimary: string;
1888
+ textColorDisabledPrimary: string;
1889
+ textColorTextPrimary: string;
1890
+ textColorTextHoverPrimary: string;
1891
+ textColorTextPressedPrimary: string;
1892
+ textColorTextFocusPrimary: string;
1893
+ textColorTextDisabledPrimary: string;
1894
+ textColorGhostPrimary: string;
1895
+ textColorGhostHoverPrimary: string;
1896
+ textColorGhostPressedPrimary: string;
1897
+ textColorGhostFocusPrimary: string;
1898
+ textColorGhostDisabledPrimary: string;
1899
+ borderPrimary: string;
1900
+ borderHoverPrimary: string;
1901
+ borderPressedPrimary: string;
1902
+ borderFocusPrimary: string;
1903
+ borderDisabledPrimary: string;
1904
+ rippleColorPrimary: string;
1905
+ colorInfo: string;
1906
+ colorHoverInfo: string;
1907
+ colorPressedInfo: string;
1908
+ colorFocusInfo: string;
1909
+ colorDisabledInfo: string;
1910
+ textColorInfo: string;
1911
+ textColorHoverInfo: string;
1912
+ textColorPressedInfo: string;
1913
+ textColorFocusInfo: string;
1914
+ textColorDisabledInfo: string;
1915
+ textColorTextInfo: string;
1916
+ textColorTextHoverInfo: string;
1917
+ textColorTextPressedInfo: string;
1918
+ textColorTextFocusInfo: string;
1919
+ textColorTextDisabledInfo: string;
1920
+ textColorGhostInfo: string;
1921
+ textColorGhostHoverInfo: string;
1922
+ textColorGhostPressedInfo: string;
1923
+ textColorGhostFocusInfo: string;
1924
+ textColorGhostDisabledInfo: string;
1925
+ borderInfo: string;
1926
+ borderHoverInfo: string;
1927
+ borderPressedInfo: string;
1928
+ borderFocusInfo: string;
1929
+ borderDisabledInfo: string;
1930
+ rippleColorInfo: string;
1931
+ colorSuccess: string;
1932
+ colorHoverSuccess: string;
1933
+ colorPressedSuccess: string;
1934
+ colorFocusSuccess: string;
1935
+ colorDisabledSuccess: string;
1936
+ textColorSuccess: string;
1937
+ textColorHoverSuccess: string;
1938
+ textColorPressedSuccess: string;
1939
+ textColorFocusSuccess: string;
1940
+ textColorDisabledSuccess: string;
1941
+ textColorTextSuccess: string;
1942
+ textColorTextHoverSuccess: string;
1943
+ textColorTextPressedSuccess: string;
1944
+ textColorTextFocusSuccess: string;
1945
+ textColorTextDisabledSuccess: string;
1946
+ textColorGhostSuccess: string;
1947
+ textColorGhostHoverSuccess: string;
1948
+ textColorGhostPressedSuccess: string;
1949
+ textColorGhostFocusSuccess: string;
1950
+ textColorGhostDisabledSuccess: string;
1951
+ borderSuccess: string;
1952
+ borderHoverSuccess: string;
1953
+ borderPressedSuccess: string;
1954
+ borderFocusSuccess: string;
1955
+ borderDisabledSuccess: string;
1956
+ rippleColorSuccess: string;
1957
+ colorWarning: string;
1958
+ colorHoverWarning: string;
1959
+ colorPressedWarning: string;
1960
+ colorFocusWarning: string;
1961
+ colorDisabledWarning: string;
1962
+ textColorWarning: string;
1963
+ textColorHoverWarning: string;
1964
+ textColorPressedWarning: string;
1965
+ textColorFocusWarning: string;
1966
+ textColorDisabledWarning: string;
1967
+ textColorTextWarning: string;
1968
+ textColorTextHoverWarning: string;
1969
+ textColorTextPressedWarning: string;
1970
+ textColorTextFocusWarning: string;
1971
+ textColorTextDisabledWarning: string;
1972
+ textColorGhostWarning: string;
1973
+ textColorGhostHoverWarning: string;
1974
+ textColorGhostPressedWarning: string;
1975
+ textColorGhostFocusWarning: string;
1976
+ textColorGhostDisabledWarning: string;
1977
+ borderWarning: string;
1978
+ borderHoverWarning: string;
1979
+ borderPressedWarning: string;
1980
+ borderFocusWarning: string;
1981
+ borderDisabledWarning: string;
1982
+ rippleColorWarning: string;
1983
+ colorError: string;
1984
+ colorHoverError: string;
1985
+ colorPressedError: string;
1986
+ colorFocusError: string;
1987
+ colorDisabledError: string;
1988
+ textColorError: string;
1989
+ textColorHoverError: string;
1990
+ textColorPressedError: string;
1991
+ textColorFocusError: string;
1992
+ textColorDisabledError: string;
1993
+ textColorTextError: string;
1994
+ textColorTextHoverError: string;
1995
+ textColorTextPressedError: string;
1996
+ textColorTextFocusError: string;
1997
+ textColorTextDisabledError: string;
1998
+ textColorGhostError: string;
1999
+ textColorGhostHoverError: string;
2000
+ textColorGhostPressedError: string;
2001
+ textColorGhostFocusError: string;
2002
+ textColorGhostDisabledError: string;
2003
+ borderError: string;
2004
+ borderHoverError: string;
2005
+ borderPressedError: string;
2006
+ borderFocusError: string;
2007
+ borderDisabledError: string;
2008
+ rippleColorError: string;
2009
+ waveOpacity: string;
2010
+ fontWeight: string;
2011
+ fontWeightStrong: string;
2012
+ paddingTiny: string;
2013
+ paddingSmall: string;
2014
+ paddingMedium: string;
2015
+ paddingLarge: string;
2016
+ paddingRoundTiny: string;
2017
+ paddingRoundSmall: string;
2018
+ paddingRoundMedium: string;
2019
+ paddingRoundLarge: string;
2020
+ iconMarginTiny: string;
2021
+ iconMarginSmall: string;
2022
+ iconMarginMedium: string;
2023
+ iconMarginLarge: string;
2024
+ iconSizeTiny: string;
2025
+ iconSizeSmall: string;
2026
+ iconSizeMedium: string;
2027
+ iconSizeLarge: string;
2028
+ rippleDuration: string;
2029
+ }, any>>;
2030
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2031
+ heightTiny: string;
2032
+ heightSmall: string;
2033
+ heightMedium: string;
2034
+ heightLarge: string;
2035
+ borderRadiusTiny: string;
2036
+ borderRadiusSmall: string;
2037
+ borderRadiusMedium: string;
2038
+ borderRadiusLarge: string;
2039
+ fontSizeTiny: string;
2040
+ fontSizeSmall: string;
2041
+ fontSizeMedium: string;
2042
+ fontSizeLarge: string;
2043
+ opacityDisabled: string;
2044
+ colorOpacitySecondary: string;
2045
+ colorOpacitySecondaryHover: string;
2046
+ colorOpacitySecondaryPressed: string;
2047
+ colorSecondary: string;
2048
+ colorSecondaryHover: string;
2049
+ colorSecondaryPressed: string;
2050
+ colorTertiary: string;
2051
+ colorTertiaryHover: string;
2052
+ colorTertiaryPressed: string;
2053
+ colorQuaternary: string;
2054
+ colorQuaternaryHover: string;
2055
+ colorQuaternaryPressed: string;
2056
+ color: string;
2057
+ colorHover: string;
2058
+ colorPressed: string;
2059
+ colorFocus: string;
2060
+ colorDisabled: string;
2061
+ textColor: string;
2062
+ textColorTertiary: string;
2063
+ textColorHover: string;
2064
+ textColorPressed: string;
2065
+ textColorFocus: string;
2066
+ textColorDisabled: string;
2067
+ textColorText: string;
2068
+ textColorTextHover: string;
2069
+ textColorTextPressed: string;
2070
+ textColorTextFocus: string;
2071
+ textColorTextDisabled: string;
2072
+ textColorGhost: string;
2073
+ textColorGhostHover: string;
2074
+ textColorGhostPressed: string;
2075
+ textColorGhostFocus: string;
2076
+ textColorGhostDisabled: string;
2077
+ border: string;
2078
+ borderHover: string;
2079
+ borderPressed: string;
2080
+ borderFocus: string;
2081
+ borderDisabled: string;
2082
+ rippleColor: string;
2083
+ colorPrimary: string;
2084
+ colorHoverPrimary: string;
2085
+ colorPressedPrimary: string;
2086
+ colorFocusPrimary: string;
2087
+ colorDisabledPrimary: string;
2088
+ textColorPrimary: string;
2089
+ textColorHoverPrimary: string;
2090
+ textColorPressedPrimary: string;
2091
+ textColorFocusPrimary: string;
2092
+ textColorDisabledPrimary: string;
2093
+ textColorTextPrimary: string;
2094
+ textColorTextHoverPrimary: string;
2095
+ textColorTextPressedPrimary: string;
2096
+ textColorTextFocusPrimary: string;
2097
+ textColorTextDisabledPrimary: string;
2098
+ textColorGhostPrimary: string;
2099
+ textColorGhostHoverPrimary: string;
2100
+ textColorGhostPressedPrimary: string;
2101
+ textColorGhostFocusPrimary: string;
2102
+ textColorGhostDisabledPrimary: string;
2103
+ borderPrimary: string;
2104
+ borderHoverPrimary: string;
2105
+ borderPressedPrimary: string;
2106
+ borderFocusPrimary: string;
2107
+ borderDisabledPrimary: string;
2108
+ rippleColorPrimary: string;
2109
+ colorInfo: string;
2110
+ colorHoverInfo: string;
2111
+ colorPressedInfo: string;
2112
+ colorFocusInfo: string;
2113
+ colorDisabledInfo: string;
2114
+ textColorInfo: string;
2115
+ textColorHoverInfo: string;
2116
+ textColorPressedInfo: string;
2117
+ textColorFocusInfo: string;
2118
+ textColorDisabledInfo: string;
2119
+ textColorTextInfo: string;
2120
+ textColorTextHoverInfo: string;
2121
+ textColorTextPressedInfo: string;
2122
+ textColorTextFocusInfo: string;
2123
+ textColorTextDisabledInfo: string;
2124
+ textColorGhostInfo: string;
2125
+ textColorGhostHoverInfo: string;
2126
+ textColorGhostPressedInfo: string;
2127
+ textColorGhostFocusInfo: string;
2128
+ textColorGhostDisabledInfo: string;
2129
+ borderInfo: string;
2130
+ borderHoverInfo: string;
2131
+ borderPressedInfo: string;
2132
+ borderFocusInfo: string;
2133
+ borderDisabledInfo: string;
2134
+ rippleColorInfo: string;
2135
+ colorSuccess: string;
2136
+ colorHoverSuccess: string;
2137
+ colorPressedSuccess: string;
2138
+ colorFocusSuccess: string;
2139
+ colorDisabledSuccess: string;
2140
+ textColorSuccess: string;
2141
+ textColorHoverSuccess: string;
2142
+ textColorPressedSuccess: string;
2143
+ textColorFocusSuccess: string;
2144
+ textColorDisabledSuccess: string;
2145
+ textColorTextSuccess: string;
2146
+ textColorTextHoverSuccess: string;
2147
+ textColorTextPressedSuccess: string;
2148
+ textColorTextFocusSuccess: string;
2149
+ textColorTextDisabledSuccess: string;
2150
+ textColorGhostSuccess: string;
2151
+ textColorGhostHoverSuccess: string;
2152
+ textColorGhostPressedSuccess: string;
2153
+ textColorGhostFocusSuccess: string;
2154
+ textColorGhostDisabledSuccess: string;
2155
+ borderSuccess: string;
2156
+ borderHoverSuccess: string;
2157
+ borderPressedSuccess: string;
2158
+ borderFocusSuccess: string;
2159
+ borderDisabledSuccess: string;
2160
+ rippleColorSuccess: string;
2161
+ colorWarning: string;
2162
+ colorHoverWarning: string;
2163
+ colorPressedWarning: string;
2164
+ colorFocusWarning: string;
2165
+ colorDisabledWarning: string;
2166
+ textColorWarning: string;
2167
+ textColorHoverWarning: string;
2168
+ textColorPressedWarning: string;
2169
+ textColorFocusWarning: string;
2170
+ textColorDisabledWarning: string;
2171
+ textColorTextWarning: string;
2172
+ textColorTextHoverWarning: string;
2173
+ textColorTextPressedWarning: string;
2174
+ textColorTextFocusWarning: string;
2175
+ textColorTextDisabledWarning: string;
2176
+ textColorGhostWarning: string;
2177
+ textColorGhostHoverWarning: string;
2178
+ textColorGhostPressedWarning: string;
2179
+ textColorGhostFocusWarning: string;
2180
+ textColorGhostDisabledWarning: string;
2181
+ borderWarning: string;
2182
+ borderHoverWarning: string;
2183
+ borderPressedWarning: string;
2184
+ borderFocusWarning: string;
2185
+ borderDisabledWarning: string;
2186
+ rippleColorWarning: string;
2187
+ colorError: string;
2188
+ colorHoverError: string;
2189
+ colorPressedError: string;
2190
+ colorFocusError: string;
2191
+ colorDisabledError: string;
2192
+ textColorError: string;
2193
+ textColorHoverError: string;
2194
+ textColorPressedError: string;
2195
+ textColorFocusError: string;
2196
+ textColorDisabledError: string;
2197
+ textColorTextError: string;
2198
+ textColorTextHoverError: string;
2199
+ textColorTextPressedError: string;
2200
+ textColorTextFocusError: string;
2201
+ textColorTextDisabledError: string;
2202
+ textColorGhostError: string;
2203
+ textColorGhostHoverError: string;
2204
+ textColorGhostPressedError: string;
2205
+ textColorGhostFocusError: string;
2206
+ textColorGhostDisabledError: string;
2207
+ borderError: string;
2208
+ borderHoverError: string;
2209
+ borderPressedError: string;
2210
+ borderFocusError: string;
2211
+ borderDisabledError: string;
2212
+ rippleColorError: string;
2213
+ waveOpacity: string;
2214
+ fontWeight: string;
2215
+ fontWeightStrong: string;
2216
+ paddingTiny: string;
2217
+ paddingSmall: string;
2218
+ paddingMedium: string;
2219
+ paddingLarge: string;
2220
+ paddingRoundTiny: string;
2221
+ paddingRoundSmall: string;
2222
+ paddingRoundMedium: string;
2223
+ paddingRoundLarge: string;
2224
+ iconMarginTiny: string;
2225
+ iconMarginSmall: string;
2226
+ iconMarginMedium: string;
2227
+ iconMarginLarge: string;
2228
+ iconSizeTiny: string;
2229
+ iconSizeSmall: string;
2230
+ iconSizeMedium: string;
2231
+ iconSizeLarge: string;
2232
+ rippleDuration: string;
2233
+ }, any>>>;
2234
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2235
+ heightTiny: string;
2236
+ heightSmall: string;
2237
+ heightMedium: string;
2238
+ heightLarge: string;
2239
+ borderRadiusTiny: string;
2240
+ borderRadiusSmall: string;
2241
+ borderRadiusMedium: string;
2242
+ borderRadiusLarge: string;
2243
+ fontSizeTiny: string;
2244
+ fontSizeSmall: string;
2245
+ fontSizeMedium: string;
2246
+ fontSizeLarge: string;
2247
+ opacityDisabled: string;
2248
+ colorOpacitySecondary: string;
2249
+ colorOpacitySecondaryHover: string;
2250
+ colorOpacitySecondaryPressed: string;
2251
+ colorSecondary: string;
2252
+ colorSecondaryHover: string;
2253
+ colorSecondaryPressed: string;
2254
+ colorTertiary: string;
2255
+ colorTertiaryHover: string;
2256
+ colorTertiaryPressed: string;
2257
+ colorQuaternary: string;
2258
+ colorQuaternaryHover: string;
2259
+ colorQuaternaryPressed: string;
2260
+ color: string;
2261
+ colorHover: string;
2262
+ colorPressed: string;
2263
+ colorFocus: string;
2264
+ colorDisabled: string;
2265
+ textColor: string;
2266
+ textColorTertiary: string;
2267
+ textColorHover: string;
2268
+ textColorPressed: string;
2269
+ textColorFocus: string;
2270
+ textColorDisabled: string;
2271
+ textColorText: string;
2272
+ textColorTextHover: string;
2273
+ textColorTextPressed: string;
2274
+ textColorTextFocus: string;
2275
+ textColorTextDisabled: string;
2276
+ textColorGhost: string;
2277
+ textColorGhostHover: string;
2278
+ textColorGhostPressed: string;
2279
+ textColorGhostFocus: string;
2280
+ textColorGhostDisabled: string;
2281
+ border: string;
2282
+ borderHover: string;
2283
+ borderPressed: string;
2284
+ borderFocus: string;
2285
+ borderDisabled: string;
2286
+ rippleColor: string;
2287
+ colorPrimary: string;
2288
+ colorHoverPrimary: string;
2289
+ colorPressedPrimary: string;
2290
+ colorFocusPrimary: string;
2291
+ colorDisabledPrimary: string;
2292
+ textColorPrimary: string;
2293
+ textColorHoverPrimary: string;
2294
+ textColorPressedPrimary: string;
2295
+ textColorFocusPrimary: string;
2296
+ textColorDisabledPrimary: string;
2297
+ textColorTextPrimary: string;
2298
+ textColorTextHoverPrimary: string;
2299
+ textColorTextPressedPrimary: string;
2300
+ textColorTextFocusPrimary: string;
2301
+ textColorTextDisabledPrimary: string;
2302
+ textColorGhostPrimary: string;
2303
+ textColorGhostHoverPrimary: string;
2304
+ textColorGhostPressedPrimary: string;
2305
+ textColorGhostFocusPrimary: string;
2306
+ textColorGhostDisabledPrimary: string;
2307
+ borderPrimary: string;
2308
+ borderHoverPrimary: string;
2309
+ borderPressedPrimary: string;
2310
+ borderFocusPrimary: string;
2311
+ borderDisabledPrimary: string;
2312
+ rippleColorPrimary: string;
2313
+ colorInfo: string;
2314
+ colorHoverInfo: string;
2315
+ colorPressedInfo: string;
2316
+ colorFocusInfo: string;
2317
+ colorDisabledInfo: string;
2318
+ textColorInfo: string;
2319
+ textColorHoverInfo: string;
2320
+ textColorPressedInfo: string;
2321
+ textColorFocusInfo: string;
2322
+ textColorDisabledInfo: string;
2323
+ textColorTextInfo: string;
2324
+ textColorTextHoverInfo: string;
2325
+ textColorTextPressedInfo: string;
2326
+ textColorTextFocusInfo: string;
2327
+ textColorTextDisabledInfo: string;
2328
+ textColorGhostInfo: string;
2329
+ textColorGhostHoverInfo: string;
2330
+ textColorGhostPressedInfo: string;
2331
+ textColorGhostFocusInfo: string;
2332
+ textColorGhostDisabledInfo: string;
2333
+ borderInfo: string;
2334
+ borderHoverInfo: string;
2335
+ borderPressedInfo: string;
2336
+ borderFocusInfo: string;
2337
+ borderDisabledInfo: string;
2338
+ rippleColorInfo: string;
2339
+ colorSuccess: string;
2340
+ colorHoverSuccess: string;
2341
+ colorPressedSuccess: string;
2342
+ colorFocusSuccess: string;
2343
+ colorDisabledSuccess: string;
2344
+ textColorSuccess: string;
2345
+ textColorHoverSuccess: string;
2346
+ textColorPressedSuccess: string;
2347
+ textColorFocusSuccess: string;
2348
+ textColorDisabledSuccess: string;
2349
+ textColorTextSuccess: string;
2350
+ textColorTextHoverSuccess: string;
2351
+ textColorTextPressedSuccess: string;
2352
+ textColorTextFocusSuccess: string;
2353
+ textColorTextDisabledSuccess: string;
2354
+ textColorGhostSuccess: string;
2355
+ textColorGhostHoverSuccess: string;
2356
+ textColorGhostPressedSuccess: string;
2357
+ textColorGhostFocusSuccess: string;
2358
+ textColorGhostDisabledSuccess: string;
2359
+ borderSuccess: string;
2360
+ borderHoverSuccess: string;
2361
+ borderPressedSuccess: string;
2362
+ borderFocusSuccess: string;
2363
+ borderDisabledSuccess: string;
2364
+ rippleColorSuccess: string;
2365
+ colorWarning: string;
2366
+ colorHoverWarning: string;
2367
+ colorPressedWarning: string;
2368
+ colorFocusWarning: string;
2369
+ colorDisabledWarning: string;
2370
+ textColorWarning: string;
2371
+ textColorHoverWarning: string;
2372
+ textColorPressedWarning: string;
2373
+ textColorFocusWarning: string;
2374
+ textColorDisabledWarning: string;
2375
+ textColorTextWarning: string;
2376
+ textColorTextHoverWarning: string;
2377
+ textColorTextPressedWarning: string;
2378
+ textColorTextFocusWarning: string;
2379
+ textColorTextDisabledWarning: string;
2380
+ textColorGhostWarning: string;
2381
+ textColorGhostHoverWarning: string;
2382
+ textColorGhostPressedWarning: string;
2383
+ textColorGhostFocusWarning: string;
2384
+ textColorGhostDisabledWarning: string;
2385
+ borderWarning: string;
2386
+ borderHoverWarning: string;
2387
+ borderPressedWarning: string;
2388
+ borderFocusWarning: string;
2389
+ borderDisabledWarning: string;
2390
+ rippleColorWarning: string;
2391
+ colorError: string;
2392
+ colorHoverError: string;
2393
+ colorPressedError: string;
2394
+ colorFocusError: string;
2395
+ colorDisabledError: string;
2396
+ textColorError: string;
2397
+ textColorHoverError: string;
2398
+ textColorPressedError: string;
2399
+ textColorFocusError: string;
2400
+ textColorDisabledError: string;
2401
+ textColorTextError: string;
2402
+ textColorTextHoverError: string;
2403
+ textColorTextPressedError: string;
2404
+ textColorTextFocusError: string;
2405
+ textColorTextDisabledError: string;
2406
+ textColorGhostError: string;
2407
+ textColorGhostHoverError: string;
2408
+ textColorGhostPressedError: string;
2409
+ textColorGhostFocusError: string;
2410
+ textColorGhostDisabledError: string;
2411
+ borderError: string;
2412
+ borderHoverError: string;
2413
+ borderPressedError: string;
2414
+ borderFocusError: string;
2415
+ borderDisabledError: string;
2416
+ rippleColorError: string;
2417
+ waveOpacity: string;
2418
+ fontWeight: string;
2419
+ fontWeightStrong: string;
2420
+ paddingTiny: string;
2421
+ paddingSmall: string;
2422
+ paddingMedium: string;
2423
+ paddingLarge: string;
2424
+ paddingRoundTiny: string;
2425
+ paddingRoundSmall: string;
2426
+ paddingRoundMedium: string;
2427
+ paddingRoundLarge: string;
2428
+ iconMarginTiny: string;
2429
+ iconMarginSmall: string;
2430
+ iconMarginMedium: string;
2431
+ iconMarginLarge: string;
2432
+ iconSizeTiny: string;
2433
+ iconSizeSmall: string;
2434
+ iconSizeMedium: string;
2435
+ iconSizeLarge: string;
2436
+ rippleDuration: string;
2437
+ }, any>>>;
2438
+ }, {
2439
+ selfElRef: import("vue").Ref<HTMLElement | null>;
2440
+ waveElRef: import("vue").Ref<{
2441
+ play: () => void;
2442
+ } | null>;
2443
+ mergedClsPrefix: import("vue").ComputedRef<string>;
2444
+ mergedFocusable: import("vue").ComputedRef<boolean>;
2445
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
2446
+ showBorder: import("vue").ComputedRef<boolean>;
2447
+ enterPressed: import("vue").Ref<boolean>;
2448
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
2449
+ handleMousedown: (e: MouseEvent) => void;
2450
+ handleKeydown: (e: KeyboardEvent) => void;
2451
+ handleBlur: () => void;
2452
+ handleKeyup: (e: KeyboardEvent) => void;
2453
+ handleClick: (e: MouseEvent) => void;
2454
+ customColorCssVars: import("vue").ComputedRef<{
2455
+ '--n-border-color': string;
2456
+ '--n-border-color-hover': string;
2457
+ '--n-border-color-pressed': string;
2458
+ '--n-border-color-focus': string;
2459
+ '--n-border-color-disabled': string;
2460
+ } | null>;
2461
+ cssVars: import("vue").ComputedRef<{
2462
+ '--n-width': string;
2463
+ '--n-height': string;
2464
+ '--n-font-size': string;
2465
+ '--n-padding': string;
2466
+ '--n-icon-size': string;
2467
+ '--n-icon-margin': string;
2468
+ '--n-border-radius': string;
2469
+ '--n-border': string;
2470
+ '--n-border-hover': string;
2471
+ '--n-border-pressed': string;
2472
+ '--n-border-focus': string;
2473
+ '--n-border-disabled': string;
2474
+ '--n-color': string;
2475
+ '--n-color-hover': string;
2476
+ '--n-color-pressed': string;
2477
+ '--n-color-focus': string;
2478
+ '--n-color-disabled': string;
2479
+ '--n-ripple-color': string;
2480
+ '--n-text-color': string;
2481
+ '--n-text-color-hover': string;
2482
+ '--n-text-color-pressed': string;
2483
+ '--n-text-color-focus': string;
2484
+ '--n-text-color-disabled': string;
2485
+ 'font-weight': string;
2486
+ '--n-bezier': string;
2487
+ '--n-bezier-ease-out': string;
2488
+ '--n-ripple-duration': string;
2489
+ '--n-opacity-disabled': string;
2490
+ '--n-wave-opacity': string;
2491
+ }> | undefined;
2492
+ themeClass: import("vue").Ref<string> | undefined;
2493
+ onRender: (() => void) | undefined;
2494
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2495
+ readonly color: StringConstructor;
2496
+ readonly textColor: StringConstructor;
2497
+ readonly text: BooleanConstructor;
2498
+ readonly block: BooleanConstructor;
2499
+ readonly loading: BooleanConstructor;
2500
+ readonly disabled: BooleanConstructor;
2501
+ readonly circle: BooleanConstructor;
2502
+ readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
2503
+ readonly ghost: BooleanConstructor;
2504
+ readonly round: BooleanConstructor;
2505
+ readonly secondary: BooleanConstructor;
2506
+ readonly tertiary: BooleanConstructor;
2507
+ readonly quaternary: BooleanConstructor;
2508
+ readonly strong: BooleanConstructor;
2509
+ readonly focusable: {
2510
+ readonly type: BooleanConstructor;
2511
+ readonly default: true;
2512
+ };
2513
+ readonly keyboard: {
2514
+ readonly type: BooleanConstructor;
2515
+ readonly default: true;
2516
+ };
2517
+ readonly tag: {
2518
+ readonly type: PropType<keyof HTMLElementTagNameMap>;
2519
+ readonly default: "button";
2520
+ };
2521
+ readonly type: {
2522
+ readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
2523
+ readonly default: "default";
2524
+ };
2525
+ readonly dashed: BooleanConstructor;
2526
+ readonly iconPlacement: {
2527
+ readonly type: PropType<"left" | "right">;
2528
+ readonly default: "left";
2529
+ };
2530
+ readonly attrType: {
2531
+ readonly type: PropType<"button" | "reset" | "submit">;
2532
+ readonly default: "button";
2533
+ };
2534
+ readonly bordered: {
2535
+ readonly type: BooleanConstructor;
2536
+ readonly default: true;
2537
+ };
2538
+ readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
2539
+ readonly nativeFocusBehavior: {
2540
+ readonly type: BooleanConstructor;
2541
+ readonly default: boolean;
2542
+ };
2543
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
2544
+ heightTiny: string;
2545
+ heightSmall: string;
2546
+ heightMedium: string;
2547
+ heightLarge: string;
2548
+ borderRadiusTiny: string;
2549
+ borderRadiusSmall: string;
2550
+ borderRadiusMedium: string;
2551
+ borderRadiusLarge: string;
2552
+ fontSizeTiny: string;
2553
+ fontSizeSmall: string;
2554
+ fontSizeMedium: string;
2555
+ fontSizeLarge: string;
2556
+ opacityDisabled: string;
2557
+ colorOpacitySecondary: string;
2558
+ colorOpacitySecondaryHover: string;
2559
+ colorOpacitySecondaryPressed: string;
2560
+ colorSecondary: string;
2561
+ colorSecondaryHover: string;
2562
+ colorSecondaryPressed: string;
2563
+ colorTertiary: string;
2564
+ colorTertiaryHover: string;
2565
+ colorTertiaryPressed: string;
2566
+ colorQuaternary: string;
2567
+ colorQuaternaryHover: string;
2568
+ colorQuaternaryPressed: string;
2569
+ color: string;
2570
+ colorHover: string;
2571
+ colorPressed: string;
2572
+ colorFocus: string;
2573
+ colorDisabled: string;
2574
+ textColor: string;
2575
+ textColorTertiary: string;
2576
+ textColorHover: string;
2577
+ textColorPressed: string;
2578
+ textColorFocus: string;
2579
+ textColorDisabled: string;
2580
+ textColorText: string;
2581
+ textColorTextHover: string;
2582
+ textColorTextPressed: string;
2583
+ textColorTextFocus: string;
2584
+ textColorTextDisabled: string;
2585
+ textColorGhost: string;
2586
+ textColorGhostHover: string;
2587
+ textColorGhostPressed: string;
2588
+ textColorGhostFocus: string;
2589
+ textColorGhostDisabled: string;
2590
+ border: string;
2591
+ borderHover: string;
2592
+ borderPressed: string;
2593
+ borderFocus: string;
2594
+ borderDisabled: string;
2595
+ rippleColor: string;
2596
+ colorPrimary: string;
2597
+ colorHoverPrimary: string;
2598
+ colorPressedPrimary: string;
2599
+ colorFocusPrimary: string;
2600
+ colorDisabledPrimary: string;
2601
+ textColorPrimary: string;
2602
+ textColorHoverPrimary: string;
2603
+ textColorPressedPrimary: string;
2604
+ textColorFocusPrimary: string;
2605
+ textColorDisabledPrimary: string;
2606
+ textColorTextPrimary: string;
2607
+ textColorTextHoverPrimary: string;
2608
+ textColorTextPressedPrimary: string;
2609
+ textColorTextFocusPrimary: string;
2610
+ textColorTextDisabledPrimary: string;
2611
+ textColorGhostPrimary: string;
2612
+ textColorGhostHoverPrimary: string;
2613
+ textColorGhostPressedPrimary: string;
2614
+ textColorGhostFocusPrimary: string;
2615
+ textColorGhostDisabledPrimary: string;
2616
+ borderPrimary: string;
2617
+ borderHoverPrimary: string;
2618
+ borderPressedPrimary: string;
2619
+ borderFocusPrimary: string;
2620
+ borderDisabledPrimary: string;
2621
+ rippleColorPrimary: string;
2622
+ colorInfo: string;
2623
+ colorHoverInfo: string;
2624
+ colorPressedInfo: string;
2625
+ colorFocusInfo: string;
2626
+ colorDisabledInfo: string;
2627
+ textColorInfo: string;
2628
+ textColorHoverInfo: string;
2629
+ textColorPressedInfo: string;
2630
+ textColorFocusInfo: string;
2631
+ textColorDisabledInfo: string;
2632
+ textColorTextInfo: string;
2633
+ textColorTextHoverInfo: string;
2634
+ textColorTextPressedInfo: string;
2635
+ textColorTextFocusInfo: string;
2636
+ textColorTextDisabledInfo: string;
2637
+ textColorGhostInfo: string;
2638
+ textColorGhostHoverInfo: string;
2639
+ textColorGhostPressedInfo: string;
2640
+ textColorGhostFocusInfo: string;
2641
+ textColorGhostDisabledInfo: string;
2642
+ borderInfo: string;
2643
+ borderHoverInfo: string;
2644
+ borderPressedInfo: string;
2645
+ borderFocusInfo: string;
2646
+ borderDisabledInfo: string;
2647
+ rippleColorInfo: string;
2648
+ colorSuccess: string;
2649
+ colorHoverSuccess: string;
2650
+ colorPressedSuccess: string;
2651
+ colorFocusSuccess: string;
2652
+ colorDisabledSuccess: string;
2653
+ textColorSuccess: string;
2654
+ textColorHoverSuccess: string;
2655
+ textColorPressedSuccess: string;
2656
+ textColorFocusSuccess: string;
2657
+ textColorDisabledSuccess: string;
2658
+ textColorTextSuccess: string;
2659
+ textColorTextHoverSuccess: string;
2660
+ textColorTextPressedSuccess: string;
2661
+ textColorTextFocusSuccess: string;
2662
+ textColorTextDisabledSuccess: string;
2663
+ textColorGhostSuccess: string;
2664
+ textColorGhostHoverSuccess: string;
2665
+ textColorGhostPressedSuccess: string;
2666
+ textColorGhostFocusSuccess: string;
2667
+ textColorGhostDisabledSuccess: string;
2668
+ borderSuccess: string;
2669
+ borderHoverSuccess: string;
2670
+ borderPressedSuccess: string;
2671
+ borderFocusSuccess: string;
2672
+ borderDisabledSuccess: string;
2673
+ rippleColorSuccess: string;
2674
+ colorWarning: string;
2675
+ colorHoverWarning: string;
2676
+ colorPressedWarning: string;
2677
+ colorFocusWarning: string;
2678
+ colorDisabledWarning: string;
2679
+ textColorWarning: string;
2680
+ textColorHoverWarning: string;
2681
+ textColorPressedWarning: string;
2682
+ textColorFocusWarning: string;
2683
+ textColorDisabledWarning: string;
2684
+ textColorTextWarning: string;
2685
+ textColorTextHoverWarning: string;
2686
+ textColorTextPressedWarning: string;
2687
+ textColorTextFocusWarning: string;
2688
+ textColorTextDisabledWarning: string;
2689
+ textColorGhostWarning: string;
2690
+ textColorGhostHoverWarning: string;
2691
+ textColorGhostPressedWarning: string;
2692
+ textColorGhostFocusWarning: string;
2693
+ textColorGhostDisabledWarning: string;
2694
+ borderWarning: string;
2695
+ borderHoverWarning: string;
2696
+ borderPressedWarning: string;
2697
+ borderFocusWarning: string;
2698
+ borderDisabledWarning: string;
2699
+ rippleColorWarning: string;
2700
+ colorError: string;
2701
+ colorHoverError: string;
2702
+ colorPressedError: string;
2703
+ colorFocusError: string;
2704
+ colorDisabledError: string;
2705
+ textColorError: string;
2706
+ textColorHoverError: string;
2707
+ textColorPressedError: string;
2708
+ textColorFocusError: string;
2709
+ textColorDisabledError: string;
2710
+ textColorTextError: string;
2711
+ textColorTextHoverError: string;
2712
+ textColorTextPressedError: string;
2713
+ textColorTextFocusError: string;
2714
+ textColorTextDisabledError: string;
2715
+ textColorGhostError: string;
2716
+ textColorGhostHoverError: string;
2717
+ textColorGhostPressedError: string;
2718
+ textColorGhostFocusError: string;
2719
+ textColorGhostDisabledError: string;
2720
+ borderError: string;
2721
+ borderHoverError: string;
2722
+ borderPressedError: string;
2723
+ borderFocusError: string;
2724
+ borderDisabledError: string;
2725
+ rippleColorError: string;
2726
+ waveOpacity: string;
2727
+ fontWeight: string;
2728
+ fontWeightStrong: string;
2729
+ paddingTiny: string;
2730
+ paddingSmall: string;
2731
+ paddingMedium: string;
2732
+ paddingLarge: string;
2733
+ paddingRoundTiny: string;
2734
+ paddingRoundSmall: string;
2735
+ paddingRoundMedium: string;
2736
+ paddingRoundLarge: string;
2737
+ iconMarginTiny: string;
2738
+ iconMarginSmall: string;
2739
+ iconMarginMedium: string;
2740
+ iconMarginLarge: string;
2741
+ iconSizeTiny: string;
2742
+ iconSizeSmall: string;
2743
+ iconSizeMedium: string;
2744
+ iconSizeLarge: string;
2745
+ rippleDuration: string;
2746
+ }, any>>;
2747
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2748
+ heightTiny: string;
2749
+ heightSmall: string;
2750
+ heightMedium: string;
2751
+ heightLarge: string;
2752
+ borderRadiusTiny: string;
2753
+ borderRadiusSmall: string;
2754
+ borderRadiusMedium: string;
2755
+ borderRadiusLarge: string;
2756
+ fontSizeTiny: string;
2757
+ fontSizeSmall: string;
2758
+ fontSizeMedium: string;
2759
+ fontSizeLarge: string;
2760
+ opacityDisabled: string;
2761
+ colorOpacitySecondary: string;
2762
+ colorOpacitySecondaryHover: string;
2763
+ colorOpacitySecondaryPressed: string;
2764
+ colorSecondary: string;
2765
+ colorSecondaryHover: string;
2766
+ colorSecondaryPressed: string;
2767
+ colorTertiary: string;
2768
+ colorTertiaryHover: string;
2769
+ colorTertiaryPressed: string;
2770
+ colorQuaternary: string;
2771
+ colorQuaternaryHover: string;
2772
+ colorQuaternaryPressed: string;
2773
+ color: string;
2774
+ colorHover: string;
2775
+ colorPressed: string;
2776
+ colorFocus: string;
2777
+ colorDisabled: string;
2778
+ textColor: string;
2779
+ textColorTertiary: string;
2780
+ textColorHover: string;
2781
+ textColorPressed: string;
2782
+ textColorFocus: string;
2783
+ textColorDisabled: string;
2784
+ textColorText: string;
2785
+ textColorTextHover: string;
2786
+ textColorTextPressed: string;
2787
+ textColorTextFocus: string;
2788
+ textColorTextDisabled: string;
2789
+ textColorGhost: string;
2790
+ textColorGhostHover: string;
2791
+ textColorGhostPressed: string;
2792
+ textColorGhostFocus: string;
2793
+ textColorGhostDisabled: string;
2794
+ border: string;
2795
+ borderHover: string;
2796
+ borderPressed: string;
2797
+ borderFocus: string;
2798
+ borderDisabled: string;
2799
+ rippleColor: string;
2800
+ colorPrimary: string;
2801
+ colorHoverPrimary: string;
2802
+ colorPressedPrimary: string;
2803
+ colorFocusPrimary: string;
2804
+ colorDisabledPrimary: string;
2805
+ textColorPrimary: string;
2806
+ textColorHoverPrimary: string;
2807
+ textColorPressedPrimary: string;
2808
+ textColorFocusPrimary: string;
2809
+ textColorDisabledPrimary: string;
2810
+ textColorTextPrimary: string;
2811
+ textColorTextHoverPrimary: string;
2812
+ textColorTextPressedPrimary: string;
2813
+ textColorTextFocusPrimary: string;
2814
+ textColorTextDisabledPrimary: string;
2815
+ textColorGhostPrimary: string;
2816
+ textColorGhostHoverPrimary: string;
2817
+ textColorGhostPressedPrimary: string;
2818
+ textColorGhostFocusPrimary: string;
2819
+ textColorGhostDisabledPrimary: string;
2820
+ borderPrimary: string;
2821
+ borderHoverPrimary: string;
2822
+ borderPressedPrimary: string;
2823
+ borderFocusPrimary: string;
2824
+ borderDisabledPrimary: string;
2825
+ rippleColorPrimary: string;
2826
+ colorInfo: string;
2827
+ colorHoverInfo: string;
2828
+ colorPressedInfo: string;
2829
+ colorFocusInfo: string;
2830
+ colorDisabledInfo: string;
2831
+ textColorInfo: string;
2832
+ textColorHoverInfo: string;
2833
+ textColorPressedInfo: string;
2834
+ textColorFocusInfo: string;
2835
+ textColorDisabledInfo: string;
2836
+ textColorTextInfo: string;
2837
+ textColorTextHoverInfo: string;
2838
+ textColorTextPressedInfo: string;
2839
+ textColorTextFocusInfo: string;
2840
+ textColorTextDisabledInfo: string;
2841
+ textColorGhostInfo: string;
2842
+ textColorGhostHoverInfo: string;
2843
+ textColorGhostPressedInfo: string;
2844
+ textColorGhostFocusInfo: string;
2845
+ textColorGhostDisabledInfo: string;
2846
+ borderInfo: string;
2847
+ borderHoverInfo: string;
2848
+ borderPressedInfo: string;
2849
+ borderFocusInfo: string;
2850
+ borderDisabledInfo: string;
2851
+ rippleColorInfo: string;
2852
+ colorSuccess: string;
2853
+ colorHoverSuccess: string;
2854
+ colorPressedSuccess: string;
2855
+ colorFocusSuccess: string;
2856
+ colorDisabledSuccess: string;
2857
+ textColorSuccess: string;
2858
+ textColorHoverSuccess: string;
2859
+ textColorPressedSuccess: string;
2860
+ textColorFocusSuccess: string;
2861
+ textColorDisabledSuccess: string;
2862
+ textColorTextSuccess: string;
2863
+ textColorTextHoverSuccess: string;
2864
+ textColorTextPressedSuccess: string;
2865
+ textColorTextFocusSuccess: string;
2866
+ textColorTextDisabledSuccess: string;
2867
+ textColorGhostSuccess: string;
2868
+ textColorGhostHoverSuccess: string;
2869
+ textColorGhostPressedSuccess: string;
2870
+ textColorGhostFocusSuccess: string;
2871
+ textColorGhostDisabledSuccess: string;
2872
+ borderSuccess: string;
2873
+ borderHoverSuccess: string;
2874
+ borderPressedSuccess: string;
2875
+ borderFocusSuccess: string;
2876
+ borderDisabledSuccess: string;
2877
+ rippleColorSuccess: string;
2878
+ colorWarning: string;
2879
+ colorHoverWarning: string;
2880
+ colorPressedWarning: string;
2881
+ colorFocusWarning: string;
2882
+ colorDisabledWarning: string;
2883
+ textColorWarning: string;
2884
+ textColorHoverWarning: string;
2885
+ textColorPressedWarning: string;
2886
+ textColorFocusWarning: string;
2887
+ textColorDisabledWarning: string;
2888
+ textColorTextWarning: string;
2889
+ textColorTextHoverWarning: string;
2890
+ textColorTextPressedWarning: string;
2891
+ textColorTextFocusWarning: string;
2892
+ textColorTextDisabledWarning: string;
2893
+ textColorGhostWarning: string;
2894
+ textColorGhostHoverWarning: string;
2895
+ textColorGhostPressedWarning: string;
2896
+ textColorGhostFocusWarning: string;
2897
+ textColorGhostDisabledWarning: string;
2898
+ borderWarning: string;
2899
+ borderHoverWarning: string;
2900
+ borderPressedWarning: string;
2901
+ borderFocusWarning: string;
2902
+ borderDisabledWarning: string;
2903
+ rippleColorWarning: string;
2904
+ colorError: string;
2905
+ colorHoverError: string;
2906
+ colorPressedError: string;
2907
+ colorFocusError: string;
2908
+ colorDisabledError: string;
2909
+ textColorError: string;
2910
+ textColorHoverError: string;
2911
+ textColorPressedError: string;
2912
+ textColorFocusError: string;
2913
+ textColorDisabledError: string;
2914
+ textColorTextError: string;
2915
+ textColorTextHoverError: string;
2916
+ textColorTextPressedError: string;
2917
+ textColorTextFocusError: string;
2918
+ textColorTextDisabledError: string;
2919
+ textColorGhostError: string;
2920
+ textColorGhostHoverError: string;
2921
+ textColorGhostPressedError: string;
2922
+ textColorGhostFocusError: string;
2923
+ textColorGhostDisabledError: string;
2924
+ borderError: string;
2925
+ borderHoverError: string;
2926
+ borderPressedError: string;
2927
+ borderFocusError: string;
2928
+ borderDisabledError: string;
2929
+ rippleColorError: string;
2930
+ waveOpacity: string;
2931
+ fontWeight: string;
2932
+ fontWeightStrong: string;
2933
+ paddingTiny: string;
2934
+ paddingSmall: string;
2935
+ paddingMedium: string;
2936
+ paddingLarge: string;
2937
+ paddingRoundTiny: string;
2938
+ paddingRoundSmall: string;
2939
+ paddingRoundMedium: string;
2940
+ paddingRoundLarge: string;
2941
+ iconMarginTiny: string;
2942
+ iconMarginSmall: string;
2943
+ iconMarginMedium: string;
2944
+ iconMarginLarge: string;
2945
+ iconSizeTiny: string;
2946
+ iconSizeSmall: string;
2947
+ iconSizeMedium: string;
2948
+ iconSizeLarge: string;
2949
+ rippleDuration: string;
2950
+ }, any>>>;
2951
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
2952
+ heightTiny: string;
2953
+ heightSmall: string;
2954
+ heightMedium: string;
2955
+ heightLarge: string;
2956
+ borderRadiusTiny: string;
2957
+ borderRadiusSmall: string;
2958
+ borderRadiusMedium: string;
2959
+ borderRadiusLarge: string;
2960
+ fontSizeTiny: string;
2961
+ fontSizeSmall: string;
2962
+ fontSizeMedium: string;
2963
+ fontSizeLarge: string;
2964
+ opacityDisabled: string;
2965
+ colorOpacitySecondary: string;
2966
+ colorOpacitySecondaryHover: string;
2967
+ colorOpacitySecondaryPressed: string;
2968
+ colorSecondary: string;
2969
+ colorSecondaryHover: string;
2970
+ colorSecondaryPressed: string;
2971
+ colorTertiary: string;
2972
+ colorTertiaryHover: string;
2973
+ colorTertiaryPressed: string;
2974
+ colorQuaternary: string;
2975
+ colorQuaternaryHover: string;
2976
+ colorQuaternaryPressed: string;
2977
+ color: string;
2978
+ colorHover: string;
2979
+ colorPressed: string;
2980
+ colorFocus: string;
2981
+ colorDisabled: string;
2982
+ textColor: string;
2983
+ textColorTertiary: string;
2984
+ textColorHover: string;
2985
+ textColorPressed: string;
2986
+ textColorFocus: string;
2987
+ textColorDisabled: string;
2988
+ textColorText: string;
2989
+ textColorTextHover: string;
2990
+ textColorTextPressed: string;
2991
+ textColorTextFocus: string;
2992
+ textColorTextDisabled: string;
2993
+ textColorGhost: string;
2994
+ textColorGhostHover: string;
2995
+ textColorGhostPressed: string;
2996
+ textColorGhostFocus: string;
2997
+ textColorGhostDisabled: string;
2998
+ border: string;
2999
+ borderHover: string;
3000
+ borderPressed: string;
3001
+ borderFocus: string;
3002
+ borderDisabled: string;
3003
+ rippleColor: string;
3004
+ colorPrimary: string;
3005
+ colorHoverPrimary: string;
3006
+ colorPressedPrimary: string;
3007
+ colorFocusPrimary: string;
3008
+ colorDisabledPrimary: string;
3009
+ textColorPrimary: string;
3010
+ textColorHoverPrimary: string;
3011
+ textColorPressedPrimary: string;
3012
+ textColorFocusPrimary: string;
3013
+ textColorDisabledPrimary: string;
3014
+ textColorTextPrimary: string;
3015
+ textColorTextHoverPrimary: string;
3016
+ textColorTextPressedPrimary: string;
3017
+ textColorTextFocusPrimary: string;
3018
+ textColorTextDisabledPrimary: string;
3019
+ textColorGhostPrimary: string;
3020
+ textColorGhostHoverPrimary: string;
3021
+ textColorGhostPressedPrimary: string;
3022
+ textColorGhostFocusPrimary: string;
3023
+ textColorGhostDisabledPrimary: string;
3024
+ borderPrimary: string;
3025
+ borderHoverPrimary: string;
3026
+ borderPressedPrimary: string;
3027
+ borderFocusPrimary: string;
3028
+ borderDisabledPrimary: string;
3029
+ rippleColorPrimary: string;
3030
+ colorInfo: string;
3031
+ colorHoverInfo: string;
3032
+ colorPressedInfo: string;
3033
+ colorFocusInfo: string;
3034
+ colorDisabledInfo: string;
3035
+ textColorInfo: string;
3036
+ textColorHoverInfo: string;
3037
+ textColorPressedInfo: string;
3038
+ textColorFocusInfo: string;
3039
+ textColorDisabledInfo: string;
3040
+ textColorTextInfo: string;
3041
+ textColorTextHoverInfo: string;
3042
+ textColorTextPressedInfo: string;
3043
+ textColorTextFocusInfo: string;
3044
+ textColorTextDisabledInfo: string;
3045
+ textColorGhostInfo: string;
3046
+ textColorGhostHoverInfo: string;
3047
+ textColorGhostPressedInfo: string;
3048
+ textColorGhostFocusInfo: string;
3049
+ textColorGhostDisabledInfo: string;
3050
+ borderInfo: string;
3051
+ borderHoverInfo: string;
3052
+ borderPressedInfo: string;
3053
+ borderFocusInfo: string;
3054
+ borderDisabledInfo: string;
3055
+ rippleColorInfo: string;
3056
+ colorSuccess: string;
3057
+ colorHoverSuccess: string;
3058
+ colorPressedSuccess: string;
3059
+ colorFocusSuccess: string;
3060
+ colorDisabledSuccess: string;
3061
+ textColorSuccess: string;
3062
+ textColorHoverSuccess: string;
3063
+ textColorPressedSuccess: string;
3064
+ textColorFocusSuccess: string;
3065
+ textColorDisabledSuccess: string;
3066
+ textColorTextSuccess: string;
3067
+ textColorTextHoverSuccess: string;
3068
+ textColorTextPressedSuccess: string;
3069
+ textColorTextFocusSuccess: string;
3070
+ textColorTextDisabledSuccess: string;
3071
+ textColorGhostSuccess: string;
3072
+ textColorGhostHoverSuccess: string;
3073
+ textColorGhostPressedSuccess: string;
3074
+ textColorGhostFocusSuccess: string;
3075
+ textColorGhostDisabledSuccess: string;
3076
+ borderSuccess: string;
3077
+ borderHoverSuccess: string;
3078
+ borderPressedSuccess: string;
3079
+ borderFocusSuccess: string;
3080
+ borderDisabledSuccess: string;
3081
+ rippleColorSuccess: string;
3082
+ colorWarning: string;
3083
+ colorHoverWarning: string;
3084
+ colorPressedWarning: string;
3085
+ colorFocusWarning: string;
3086
+ colorDisabledWarning: string;
3087
+ textColorWarning: string;
3088
+ textColorHoverWarning: string;
3089
+ textColorPressedWarning: string;
3090
+ textColorFocusWarning: string;
3091
+ textColorDisabledWarning: string;
3092
+ textColorTextWarning: string;
3093
+ textColorTextHoverWarning: string;
3094
+ textColorTextPressedWarning: string;
3095
+ textColorTextFocusWarning: string;
3096
+ textColorTextDisabledWarning: string;
3097
+ textColorGhostWarning: string;
3098
+ textColorGhostHoverWarning: string;
3099
+ textColorGhostPressedWarning: string;
3100
+ textColorGhostFocusWarning: string;
3101
+ textColorGhostDisabledWarning: string;
3102
+ borderWarning: string;
3103
+ borderHoverWarning: string;
3104
+ borderPressedWarning: string;
3105
+ borderFocusWarning: string;
3106
+ borderDisabledWarning: string;
3107
+ rippleColorWarning: string;
3108
+ colorError: string;
3109
+ colorHoverError: string;
3110
+ colorPressedError: string;
3111
+ colorFocusError: string;
3112
+ colorDisabledError: string;
3113
+ textColorError: string;
3114
+ textColorHoverError: string;
3115
+ textColorPressedError: string;
3116
+ textColorFocusError: string;
3117
+ textColorDisabledError: string;
3118
+ textColorTextError: string;
3119
+ textColorTextHoverError: string;
3120
+ textColorTextPressedError: string;
3121
+ textColorTextFocusError: string;
3122
+ textColorTextDisabledError: string;
3123
+ textColorGhostError: string;
3124
+ textColorGhostHoverError: string;
3125
+ textColorGhostPressedError: string;
3126
+ textColorGhostFocusError: string;
3127
+ textColorGhostDisabledError: string;
3128
+ borderError: string;
3129
+ borderHoverError: string;
3130
+ borderPressedError: string;
3131
+ borderFocusError: string;
3132
+ borderDisabledError: string;
3133
+ rippleColorError: string;
3134
+ waveOpacity: string;
3135
+ fontWeight: string;
3136
+ fontWeightStrong: string;
3137
+ paddingTiny: string;
3138
+ paddingSmall: string;
3139
+ paddingMedium: string;
3140
+ paddingLarge: string;
3141
+ paddingRoundTiny: string;
3142
+ paddingRoundSmall: string;
3143
+ paddingRoundMedium: string;
3144
+ paddingRoundLarge: string;
3145
+ iconMarginTiny: string;
3146
+ iconMarginSmall: string;
3147
+ iconMarginMedium: string;
3148
+ iconMarginLarge: string;
3149
+ iconSizeTiny: string;
3150
+ iconSizeSmall: string;
3151
+ iconSizeMedium: string;
3152
+ iconSizeLarge: string;
3153
+ rippleDuration: string;
3154
+ }, any>>>;
3155
+ }>>, {
3156
+ readonly type: import("naive-ui/es/button/src/interface").Type;
3157
+ readonly tag: keyof HTMLElementTagNameMap;
3158
+ readonly block: boolean;
3159
+ readonly round: boolean;
3160
+ readonly dashed: boolean;
3161
+ readonly text: boolean;
3162
+ readonly circle: boolean;
3163
+ readonly disabled: boolean;
3164
+ readonly focusable: boolean;
3165
+ readonly strong: boolean;
3166
+ readonly loading: boolean;
3167
+ readonly bordered: boolean;
3168
+ readonly tertiary: boolean;
3169
+ readonly ghost: boolean;
3170
+ readonly keyboard: boolean;
3171
+ readonly secondary: boolean;
3172
+ readonly quaternary: boolean;
3173
+ readonly iconPlacement: "left" | "right";
3174
+ readonly attrType: "button" | "reset" | "submit";
3175
+ readonly nativeFocusBehavior: boolean;
3176
+ }>;
3177
+ NIcon: import("vue").DefineComponent<{
3178
+ readonly depth: PropType<import("naive-ui/es/icon/src/Icon").Depth>;
3179
+ readonly size: PropType<string | number>;
3180
+ readonly color: StringConstructor;
3181
+ readonly component: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
3182
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
3183
+ color: string;
3184
+ opacity1Depth: string;
3185
+ opacity2Depth: string;
3186
+ opacity3Depth: string;
3187
+ opacity4Depth: string;
3188
+ opacity5Depth: string;
3189
+ }, any>>;
3190
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3191
+ color: string;
3192
+ opacity1Depth: string;
3193
+ opacity2Depth: string;
3194
+ opacity3Depth: string;
3195
+ opacity4Depth: string;
3196
+ opacity5Depth: string;
3197
+ }, any>>>;
3198
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3199
+ color: string;
3200
+ opacity1Depth: string;
3201
+ opacity2Depth: string;
3202
+ opacity3Depth: string;
3203
+ opacity4Depth: string;
3204
+ opacity5Depth: string;
3205
+ }, any>>>;
3206
+ }, {
3207
+ mergedClsPrefix: import("vue").ComputedRef<string>;
3208
+ mergedStyle: import("vue").ComputedRef<{
3209
+ fontSize: string | undefined;
3210
+ color: string | undefined;
3211
+ }>;
3212
+ cssVars: import("vue").ComputedRef<{
3213
+ '--n-bezier': string;
3214
+ '--n-color': string;
3215
+ '--n-opacity': string;
3216
+ }> | undefined;
3217
+ themeClass: import("vue").Ref<string> | undefined;
3218
+ onRender: (() => void) | undefined;
3219
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3220
+ readonly depth: PropType<import("naive-ui/es/icon/src/Icon").Depth>;
3221
+ readonly size: PropType<string | number>;
3222
+ readonly color: StringConstructor;
3223
+ readonly component: PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
3224
+ readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
3225
+ color: string;
3226
+ opacity1Depth: string;
3227
+ opacity2Depth: string;
3228
+ opacity3Depth: string;
3229
+ opacity4Depth: string;
3230
+ opacity5Depth: string;
3231
+ }, any>>;
3232
+ readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3233
+ color: string;
3234
+ opacity1Depth: string;
3235
+ opacity2Depth: string;
3236
+ opacity3Depth: string;
3237
+ opacity4Depth: string;
3238
+ opacity5Depth: string;
3239
+ }, any>>>;
3240
+ readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
3241
+ color: string;
3242
+ opacity1Depth: string;
3243
+ opacity2Depth: string;
3244
+ opacity3Depth: string;
3245
+ opacity4Depth: string;
3246
+ opacity5Depth: string;
3247
+ }, any>>>;
3248
+ }>>, {}>;
3249
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3250
+ fieldItem: {
3251
+ type: PropType<FormConfigItem>;
3252
+ required: true;
3253
+ };
3254
+ }>>, {}>;
3255
+ bindHover: typeof bindHover;
3256
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3257
+ fieldItem: {
3258
+ type: PropType<FormConfigItem>;
3259
+ required: true;
3260
+ };
3261
+ textFormatter: {
3262
+ type: PropType<FormConfigTextFormatter>;
3263
+ required: true;
3264
+ };
3265
+ }>>, {}>;
3266
+ export default _default;