base6-ui 2.0.13 → 2.0.14

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 (32) hide show
  1. package/dist/components/button/button.d.ts +1352 -0
  2. package/dist/components/button/index.d.ts +2 -1
  3. package/dist/components/button/interface.d.ts +678 -0
  4. package/dist/components/data-table/data-table.d.ts +1 -1
  5. package/dist/components/tabs/tabs.d.ts +1 -1
  6. package/dist/index.umd.js +1 -1
  7. package/es/components/button/button.d.ts +1352 -0
  8. package/es/components/button/button.mjs +28 -0
  9. package/es/components/button/index.d.ts +2 -1
  10. package/es/components/button/interface.d.ts +678 -0
  11. package/es/components/button/interface.mjs +22 -0
  12. package/es/components/data-table/data-table.d.ts +1 -1
  13. package/es/components/dialog/index.vue.mjs +7 -6
  14. package/es/components/tabs/tabs.d.ts +1 -1
  15. package/es/index.mjs +92 -90
  16. package/lib/components/button/button.d.ts +1352 -0
  17. package/lib/components/button/button.js +1 -0
  18. package/lib/components/button/index.d.ts +2 -1
  19. package/lib/components/button/interface.d.ts +678 -0
  20. package/lib/components/button/interface.js +1 -0
  21. package/lib/components/data-table/data-table.d.ts +1 -1
  22. package/lib/components/dialog/index.vue.js +1 -1
  23. package/lib/components/tabs/tabs.d.ts +1 -1
  24. package/lib/index.js +1 -1
  25. package/package.json +1 -1
  26. package/dist/components/button/index.vue.d.ts +0 -24
  27. package/es/components/button/index.vue.d.ts +0 -24
  28. package/es/components/button/index.vue.mjs +0 -36
  29. package/es/components/button/index.vue2.mjs +0 -4
  30. package/lib/components/button/index.vue.d.ts +0 -24
  31. package/lib/components/button/index.vue.js +0 -1
  32. package/lib/components/button/index.vue2.js +0 -1
@@ -0,0 +1,1352 @@
1
+ import { SlotsType } from 'vue';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ readonly focusable: {
4
+ readonly type: BooleanConstructor;
5
+ readonly default: false;
6
+ };
7
+ readonly content: StringConstructor;
8
+ readonly icon: StringConstructor;
9
+ readonly color: StringConstructor;
10
+ readonly textColor: StringConstructor;
11
+ readonly text: BooleanConstructor;
12
+ readonly block: BooleanConstructor;
13
+ readonly loading: BooleanConstructor;
14
+ readonly disabled: BooleanConstructor;
15
+ readonly circle: BooleanConstructor;
16
+ readonly size: import('vue').PropType<import('naive-ui/es/button/src/interface').Size>;
17
+ readonly ghost: BooleanConstructor;
18
+ readonly round: BooleanConstructor;
19
+ readonly secondary: BooleanConstructor;
20
+ readonly tertiary: BooleanConstructor;
21
+ readonly quaternary: BooleanConstructor;
22
+ readonly strong: BooleanConstructor;
23
+ readonly keyboard: {
24
+ readonly type: BooleanConstructor;
25
+ readonly default: true;
26
+ };
27
+ readonly tag: {
28
+ readonly type: import('vue').PropType<keyof HTMLElementTagNameMap>;
29
+ readonly default: "button";
30
+ };
31
+ readonly type: {
32
+ readonly type: import('vue').PropType<import('naive-ui/es/button/src/interface').Type>;
33
+ readonly default: "default";
34
+ };
35
+ readonly dashed: BooleanConstructor;
36
+ readonly renderIcon: import('vue').PropType<() => import('vue').VNodeChild>;
37
+ readonly iconPlacement: {
38
+ readonly type: import('vue').PropType<"left" | "right">;
39
+ readonly default: "left";
40
+ };
41
+ readonly attrType: {
42
+ readonly type: import('vue').PropType<"button" | "submit" | "reset">;
43
+ readonly default: "button";
44
+ };
45
+ readonly bordered: {
46
+ readonly type: BooleanConstructor;
47
+ readonly default: true;
48
+ };
49
+ readonly onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
50
+ readonly nativeFocusBehavior: {
51
+ readonly type: BooleanConstructor;
52
+ readonly default: boolean;
53
+ };
54
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Button", {
55
+ heightTiny: string;
56
+ heightSmall: string;
57
+ heightMedium: string;
58
+ heightLarge: string;
59
+ borderRadiusTiny: string;
60
+ borderRadiusSmall: string;
61
+ borderRadiusMedium: string;
62
+ borderRadiusLarge: string;
63
+ fontSizeTiny: string;
64
+ fontSizeSmall: string;
65
+ fontSizeMedium: string;
66
+ fontSizeLarge: string;
67
+ opacityDisabled: string;
68
+ colorOpacitySecondary: string;
69
+ colorOpacitySecondaryHover: string;
70
+ colorOpacitySecondaryPressed: string;
71
+ colorSecondary: string;
72
+ colorSecondaryHover: string;
73
+ colorSecondaryPressed: string;
74
+ colorTertiary: string;
75
+ colorTertiaryHover: string;
76
+ colorTertiaryPressed: string;
77
+ colorQuaternary: string;
78
+ colorQuaternaryHover: string;
79
+ colorQuaternaryPressed: string;
80
+ color: string;
81
+ colorHover: string;
82
+ colorPressed: string;
83
+ colorFocus: string;
84
+ colorDisabled: string;
85
+ textColor: string;
86
+ textColorTertiary: string;
87
+ textColorHover: string;
88
+ textColorPressed: string;
89
+ textColorFocus: string;
90
+ textColorDisabled: string;
91
+ textColorText: string;
92
+ textColorTextHover: string;
93
+ textColorTextPressed: string;
94
+ textColorTextFocus: string;
95
+ textColorTextDisabled: string;
96
+ textColorGhost: string;
97
+ textColorGhostHover: string;
98
+ textColorGhostPressed: string;
99
+ textColorGhostFocus: string;
100
+ textColorGhostDisabled: string;
101
+ border: string;
102
+ borderHover: string;
103
+ borderPressed: string;
104
+ borderFocus: string;
105
+ borderDisabled: string;
106
+ rippleColor: string;
107
+ colorPrimary: string;
108
+ colorHoverPrimary: string;
109
+ colorPressedPrimary: string;
110
+ colorFocusPrimary: string;
111
+ colorDisabledPrimary: string;
112
+ textColorPrimary: string;
113
+ textColorHoverPrimary: string;
114
+ textColorPressedPrimary: string;
115
+ textColorFocusPrimary: string;
116
+ textColorDisabledPrimary: string;
117
+ textColorTextPrimary: string;
118
+ textColorTextHoverPrimary: string;
119
+ textColorTextPressedPrimary: string;
120
+ textColorTextFocusPrimary: string;
121
+ textColorTextDisabledPrimary: string;
122
+ textColorGhostPrimary: string;
123
+ textColorGhostHoverPrimary: string;
124
+ textColorGhostPressedPrimary: string;
125
+ textColorGhostFocusPrimary: string;
126
+ textColorGhostDisabledPrimary: string;
127
+ borderPrimary: string;
128
+ borderHoverPrimary: string;
129
+ borderPressedPrimary: string;
130
+ borderFocusPrimary: string;
131
+ borderDisabledPrimary: string;
132
+ rippleColorPrimary: string;
133
+ colorInfo: string;
134
+ colorHoverInfo: string;
135
+ colorPressedInfo: string;
136
+ colorFocusInfo: string;
137
+ colorDisabledInfo: string;
138
+ textColorInfo: string;
139
+ textColorHoverInfo: string;
140
+ textColorPressedInfo: string;
141
+ textColorFocusInfo: string;
142
+ textColorDisabledInfo: string;
143
+ textColorTextInfo: string;
144
+ textColorTextHoverInfo: string;
145
+ textColorTextPressedInfo: string;
146
+ textColorTextFocusInfo: string;
147
+ textColorTextDisabledInfo: string;
148
+ textColorGhostInfo: string;
149
+ textColorGhostHoverInfo: string;
150
+ textColorGhostPressedInfo: string;
151
+ textColorGhostFocusInfo: string;
152
+ textColorGhostDisabledInfo: string;
153
+ borderInfo: string;
154
+ borderHoverInfo: string;
155
+ borderPressedInfo: string;
156
+ borderFocusInfo: string;
157
+ borderDisabledInfo: string;
158
+ rippleColorInfo: string;
159
+ colorSuccess: string;
160
+ colorHoverSuccess: string;
161
+ colorPressedSuccess: string;
162
+ colorFocusSuccess: string;
163
+ colorDisabledSuccess: string;
164
+ textColorSuccess: string;
165
+ textColorHoverSuccess: string;
166
+ textColorPressedSuccess: string;
167
+ textColorFocusSuccess: string;
168
+ textColorDisabledSuccess: string;
169
+ textColorTextSuccess: string;
170
+ textColorTextHoverSuccess: string;
171
+ textColorTextPressedSuccess: string;
172
+ textColorTextFocusSuccess: string;
173
+ textColorTextDisabledSuccess: string;
174
+ textColorGhostSuccess: string;
175
+ textColorGhostHoverSuccess: string;
176
+ textColorGhostPressedSuccess: string;
177
+ textColorGhostFocusSuccess: string;
178
+ textColorGhostDisabledSuccess: string;
179
+ borderSuccess: string;
180
+ borderHoverSuccess: string;
181
+ borderPressedSuccess: string;
182
+ borderFocusSuccess: string;
183
+ borderDisabledSuccess: string;
184
+ rippleColorSuccess: string;
185
+ colorWarning: string;
186
+ colorHoverWarning: string;
187
+ colorPressedWarning: string;
188
+ colorFocusWarning: string;
189
+ colorDisabledWarning: string;
190
+ textColorWarning: string;
191
+ textColorHoverWarning: string;
192
+ textColorPressedWarning: string;
193
+ textColorFocusWarning: string;
194
+ textColorDisabledWarning: string;
195
+ textColorTextWarning: string;
196
+ textColorTextHoverWarning: string;
197
+ textColorTextPressedWarning: string;
198
+ textColorTextFocusWarning: string;
199
+ textColorTextDisabledWarning: string;
200
+ textColorGhostWarning: string;
201
+ textColorGhostHoverWarning: string;
202
+ textColorGhostPressedWarning: string;
203
+ textColorGhostFocusWarning: string;
204
+ textColorGhostDisabledWarning: string;
205
+ borderWarning: string;
206
+ borderHoverWarning: string;
207
+ borderPressedWarning: string;
208
+ borderFocusWarning: string;
209
+ borderDisabledWarning: string;
210
+ rippleColorWarning: string;
211
+ colorError: string;
212
+ colorHoverError: string;
213
+ colorPressedError: string;
214
+ colorFocusError: string;
215
+ colorDisabledError: string;
216
+ textColorError: string;
217
+ textColorHoverError: string;
218
+ textColorPressedError: string;
219
+ textColorFocusError: string;
220
+ textColorDisabledError: string;
221
+ textColorTextError: string;
222
+ textColorTextHoverError: string;
223
+ textColorTextPressedError: string;
224
+ textColorTextFocusError: string;
225
+ textColorTextDisabledError: string;
226
+ textColorGhostError: string;
227
+ textColorGhostHoverError: string;
228
+ textColorGhostPressedError: string;
229
+ textColorGhostFocusError: string;
230
+ textColorGhostDisabledError: string;
231
+ borderError: string;
232
+ borderHoverError: string;
233
+ borderPressedError: string;
234
+ borderFocusError: string;
235
+ borderDisabledError: string;
236
+ rippleColorError: string;
237
+ waveOpacity: string;
238
+ fontWeight: string;
239
+ fontWeightStrong: string;
240
+ paddingTiny: string;
241
+ paddingSmall: string;
242
+ paddingMedium: string;
243
+ paddingLarge: string;
244
+ paddingRoundTiny: string;
245
+ paddingRoundSmall: string;
246
+ paddingRoundMedium: string;
247
+ paddingRoundLarge: string;
248
+ iconMarginTiny: string;
249
+ iconMarginSmall: string;
250
+ iconMarginMedium: string;
251
+ iconMarginLarge: string;
252
+ iconSizeTiny: string;
253
+ iconSizeSmall: string;
254
+ iconSizeMedium: string;
255
+ iconSizeLarge: string;
256
+ rippleDuration: string;
257
+ }, any>>;
258
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
259
+ heightTiny: string;
260
+ heightSmall: string;
261
+ heightMedium: string;
262
+ heightLarge: string;
263
+ borderRadiusTiny: string;
264
+ borderRadiusSmall: string;
265
+ borderRadiusMedium: string;
266
+ borderRadiusLarge: string;
267
+ fontSizeTiny: string;
268
+ fontSizeSmall: string;
269
+ fontSizeMedium: string;
270
+ fontSizeLarge: string;
271
+ opacityDisabled: string;
272
+ colorOpacitySecondary: string;
273
+ colorOpacitySecondaryHover: string;
274
+ colorOpacitySecondaryPressed: string;
275
+ colorSecondary: string;
276
+ colorSecondaryHover: string;
277
+ colorSecondaryPressed: string;
278
+ colorTertiary: string;
279
+ colorTertiaryHover: string;
280
+ colorTertiaryPressed: string;
281
+ colorQuaternary: string;
282
+ colorQuaternaryHover: string;
283
+ colorQuaternaryPressed: string;
284
+ color: string;
285
+ colorHover: string;
286
+ colorPressed: string;
287
+ colorFocus: string;
288
+ colorDisabled: string;
289
+ textColor: string;
290
+ textColorTertiary: string;
291
+ textColorHover: string;
292
+ textColorPressed: string;
293
+ textColorFocus: string;
294
+ textColorDisabled: string;
295
+ textColorText: string;
296
+ textColorTextHover: string;
297
+ textColorTextPressed: string;
298
+ textColorTextFocus: string;
299
+ textColorTextDisabled: string;
300
+ textColorGhost: string;
301
+ textColorGhostHover: string;
302
+ textColorGhostPressed: string;
303
+ textColorGhostFocus: string;
304
+ textColorGhostDisabled: string;
305
+ border: string;
306
+ borderHover: string;
307
+ borderPressed: string;
308
+ borderFocus: string;
309
+ borderDisabled: string;
310
+ rippleColor: string;
311
+ colorPrimary: string;
312
+ colorHoverPrimary: string;
313
+ colorPressedPrimary: string;
314
+ colorFocusPrimary: string;
315
+ colorDisabledPrimary: string;
316
+ textColorPrimary: string;
317
+ textColorHoverPrimary: string;
318
+ textColorPressedPrimary: string;
319
+ textColorFocusPrimary: string;
320
+ textColorDisabledPrimary: string;
321
+ textColorTextPrimary: string;
322
+ textColorTextHoverPrimary: string;
323
+ textColorTextPressedPrimary: string;
324
+ textColorTextFocusPrimary: string;
325
+ textColorTextDisabledPrimary: string;
326
+ textColorGhostPrimary: string;
327
+ textColorGhostHoverPrimary: string;
328
+ textColorGhostPressedPrimary: string;
329
+ textColorGhostFocusPrimary: string;
330
+ textColorGhostDisabledPrimary: string;
331
+ borderPrimary: string;
332
+ borderHoverPrimary: string;
333
+ borderPressedPrimary: string;
334
+ borderFocusPrimary: string;
335
+ borderDisabledPrimary: string;
336
+ rippleColorPrimary: string;
337
+ colorInfo: string;
338
+ colorHoverInfo: string;
339
+ colorPressedInfo: string;
340
+ colorFocusInfo: string;
341
+ colorDisabledInfo: string;
342
+ textColorInfo: string;
343
+ textColorHoverInfo: string;
344
+ textColorPressedInfo: string;
345
+ textColorFocusInfo: string;
346
+ textColorDisabledInfo: string;
347
+ textColorTextInfo: string;
348
+ textColorTextHoverInfo: string;
349
+ textColorTextPressedInfo: string;
350
+ textColorTextFocusInfo: string;
351
+ textColorTextDisabledInfo: string;
352
+ textColorGhostInfo: string;
353
+ textColorGhostHoverInfo: string;
354
+ textColorGhostPressedInfo: string;
355
+ textColorGhostFocusInfo: string;
356
+ textColorGhostDisabledInfo: string;
357
+ borderInfo: string;
358
+ borderHoverInfo: string;
359
+ borderPressedInfo: string;
360
+ borderFocusInfo: string;
361
+ borderDisabledInfo: string;
362
+ rippleColorInfo: string;
363
+ colorSuccess: string;
364
+ colorHoverSuccess: string;
365
+ colorPressedSuccess: string;
366
+ colorFocusSuccess: string;
367
+ colorDisabledSuccess: string;
368
+ textColorSuccess: string;
369
+ textColorHoverSuccess: string;
370
+ textColorPressedSuccess: string;
371
+ textColorFocusSuccess: string;
372
+ textColorDisabledSuccess: string;
373
+ textColorTextSuccess: string;
374
+ textColorTextHoverSuccess: string;
375
+ textColorTextPressedSuccess: string;
376
+ textColorTextFocusSuccess: string;
377
+ textColorTextDisabledSuccess: string;
378
+ textColorGhostSuccess: string;
379
+ textColorGhostHoverSuccess: string;
380
+ textColorGhostPressedSuccess: string;
381
+ textColorGhostFocusSuccess: string;
382
+ textColorGhostDisabledSuccess: string;
383
+ borderSuccess: string;
384
+ borderHoverSuccess: string;
385
+ borderPressedSuccess: string;
386
+ borderFocusSuccess: string;
387
+ borderDisabledSuccess: string;
388
+ rippleColorSuccess: string;
389
+ colorWarning: string;
390
+ colorHoverWarning: string;
391
+ colorPressedWarning: string;
392
+ colorFocusWarning: string;
393
+ colorDisabledWarning: string;
394
+ textColorWarning: string;
395
+ textColorHoverWarning: string;
396
+ textColorPressedWarning: string;
397
+ textColorFocusWarning: string;
398
+ textColorDisabledWarning: string;
399
+ textColorTextWarning: string;
400
+ textColorTextHoverWarning: string;
401
+ textColorTextPressedWarning: string;
402
+ textColorTextFocusWarning: string;
403
+ textColorTextDisabledWarning: string;
404
+ textColorGhostWarning: string;
405
+ textColorGhostHoverWarning: string;
406
+ textColorGhostPressedWarning: string;
407
+ textColorGhostFocusWarning: string;
408
+ textColorGhostDisabledWarning: string;
409
+ borderWarning: string;
410
+ borderHoverWarning: string;
411
+ borderPressedWarning: string;
412
+ borderFocusWarning: string;
413
+ borderDisabledWarning: string;
414
+ rippleColorWarning: string;
415
+ colorError: string;
416
+ colorHoverError: string;
417
+ colorPressedError: string;
418
+ colorFocusError: string;
419
+ colorDisabledError: string;
420
+ textColorError: string;
421
+ textColorHoverError: string;
422
+ textColorPressedError: string;
423
+ textColorFocusError: string;
424
+ textColorDisabledError: string;
425
+ textColorTextError: string;
426
+ textColorTextHoverError: string;
427
+ textColorTextPressedError: string;
428
+ textColorTextFocusError: string;
429
+ textColorTextDisabledError: string;
430
+ textColorGhostError: string;
431
+ textColorGhostHoverError: string;
432
+ textColorGhostPressedError: string;
433
+ textColorGhostFocusError: string;
434
+ textColorGhostDisabledError: string;
435
+ borderError: string;
436
+ borderHoverError: string;
437
+ borderPressedError: string;
438
+ borderFocusError: string;
439
+ borderDisabledError: string;
440
+ rippleColorError: string;
441
+ waveOpacity: string;
442
+ fontWeight: string;
443
+ fontWeightStrong: string;
444
+ paddingTiny: string;
445
+ paddingSmall: string;
446
+ paddingMedium: string;
447
+ paddingLarge: string;
448
+ paddingRoundTiny: string;
449
+ paddingRoundSmall: string;
450
+ paddingRoundMedium: string;
451
+ paddingRoundLarge: string;
452
+ iconMarginTiny: string;
453
+ iconMarginSmall: string;
454
+ iconMarginMedium: string;
455
+ iconMarginLarge: string;
456
+ iconSizeTiny: string;
457
+ iconSizeSmall: string;
458
+ iconSizeMedium: string;
459
+ iconSizeLarge: string;
460
+ rippleDuration: string;
461
+ }, any>>>;
462
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
463
+ heightTiny: string;
464
+ heightSmall: string;
465
+ heightMedium: string;
466
+ heightLarge: string;
467
+ borderRadiusTiny: string;
468
+ borderRadiusSmall: string;
469
+ borderRadiusMedium: string;
470
+ borderRadiusLarge: string;
471
+ fontSizeTiny: string;
472
+ fontSizeSmall: string;
473
+ fontSizeMedium: string;
474
+ fontSizeLarge: string;
475
+ opacityDisabled: string;
476
+ colorOpacitySecondary: string;
477
+ colorOpacitySecondaryHover: string;
478
+ colorOpacitySecondaryPressed: string;
479
+ colorSecondary: string;
480
+ colorSecondaryHover: string;
481
+ colorSecondaryPressed: string;
482
+ colorTertiary: string;
483
+ colorTertiaryHover: string;
484
+ colorTertiaryPressed: string;
485
+ colorQuaternary: string;
486
+ colorQuaternaryHover: string;
487
+ colorQuaternaryPressed: string;
488
+ color: string;
489
+ colorHover: string;
490
+ colorPressed: string;
491
+ colorFocus: string;
492
+ colorDisabled: string;
493
+ textColor: string;
494
+ textColorTertiary: string;
495
+ textColorHover: string;
496
+ textColorPressed: string;
497
+ textColorFocus: string;
498
+ textColorDisabled: string;
499
+ textColorText: string;
500
+ textColorTextHover: string;
501
+ textColorTextPressed: string;
502
+ textColorTextFocus: string;
503
+ textColorTextDisabled: string;
504
+ textColorGhost: string;
505
+ textColorGhostHover: string;
506
+ textColorGhostPressed: string;
507
+ textColorGhostFocus: string;
508
+ textColorGhostDisabled: string;
509
+ border: string;
510
+ borderHover: string;
511
+ borderPressed: string;
512
+ borderFocus: string;
513
+ borderDisabled: string;
514
+ rippleColor: string;
515
+ colorPrimary: string;
516
+ colorHoverPrimary: string;
517
+ colorPressedPrimary: string;
518
+ colorFocusPrimary: string;
519
+ colorDisabledPrimary: string;
520
+ textColorPrimary: string;
521
+ textColorHoverPrimary: string;
522
+ textColorPressedPrimary: string;
523
+ textColorFocusPrimary: string;
524
+ textColorDisabledPrimary: string;
525
+ textColorTextPrimary: string;
526
+ textColorTextHoverPrimary: string;
527
+ textColorTextPressedPrimary: string;
528
+ textColorTextFocusPrimary: string;
529
+ textColorTextDisabledPrimary: string;
530
+ textColorGhostPrimary: string;
531
+ textColorGhostHoverPrimary: string;
532
+ textColorGhostPressedPrimary: string;
533
+ textColorGhostFocusPrimary: string;
534
+ textColorGhostDisabledPrimary: string;
535
+ borderPrimary: string;
536
+ borderHoverPrimary: string;
537
+ borderPressedPrimary: string;
538
+ borderFocusPrimary: string;
539
+ borderDisabledPrimary: string;
540
+ rippleColorPrimary: string;
541
+ colorInfo: string;
542
+ colorHoverInfo: string;
543
+ colorPressedInfo: string;
544
+ colorFocusInfo: string;
545
+ colorDisabledInfo: string;
546
+ textColorInfo: string;
547
+ textColorHoverInfo: string;
548
+ textColorPressedInfo: string;
549
+ textColorFocusInfo: string;
550
+ textColorDisabledInfo: string;
551
+ textColorTextInfo: string;
552
+ textColorTextHoverInfo: string;
553
+ textColorTextPressedInfo: string;
554
+ textColorTextFocusInfo: string;
555
+ textColorTextDisabledInfo: string;
556
+ textColorGhostInfo: string;
557
+ textColorGhostHoverInfo: string;
558
+ textColorGhostPressedInfo: string;
559
+ textColorGhostFocusInfo: string;
560
+ textColorGhostDisabledInfo: string;
561
+ borderInfo: string;
562
+ borderHoverInfo: string;
563
+ borderPressedInfo: string;
564
+ borderFocusInfo: string;
565
+ borderDisabledInfo: string;
566
+ rippleColorInfo: string;
567
+ colorSuccess: string;
568
+ colorHoverSuccess: string;
569
+ colorPressedSuccess: string;
570
+ colorFocusSuccess: string;
571
+ colorDisabledSuccess: string;
572
+ textColorSuccess: string;
573
+ textColorHoverSuccess: string;
574
+ textColorPressedSuccess: string;
575
+ textColorFocusSuccess: string;
576
+ textColorDisabledSuccess: string;
577
+ textColorTextSuccess: string;
578
+ textColorTextHoverSuccess: string;
579
+ textColorTextPressedSuccess: string;
580
+ textColorTextFocusSuccess: string;
581
+ textColorTextDisabledSuccess: string;
582
+ textColorGhostSuccess: string;
583
+ textColorGhostHoverSuccess: string;
584
+ textColorGhostPressedSuccess: string;
585
+ textColorGhostFocusSuccess: string;
586
+ textColorGhostDisabledSuccess: string;
587
+ borderSuccess: string;
588
+ borderHoverSuccess: string;
589
+ borderPressedSuccess: string;
590
+ borderFocusSuccess: string;
591
+ borderDisabledSuccess: string;
592
+ rippleColorSuccess: string;
593
+ colorWarning: string;
594
+ colorHoverWarning: string;
595
+ colorPressedWarning: string;
596
+ colorFocusWarning: string;
597
+ colorDisabledWarning: string;
598
+ textColorWarning: string;
599
+ textColorHoverWarning: string;
600
+ textColorPressedWarning: string;
601
+ textColorFocusWarning: string;
602
+ textColorDisabledWarning: string;
603
+ textColorTextWarning: string;
604
+ textColorTextHoverWarning: string;
605
+ textColorTextPressedWarning: string;
606
+ textColorTextFocusWarning: string;
607
+ textColorTextDisabledWarning: string;
608
+ textColorGhostWarning: string;
609
+ textColorGhostHoverWarning: string;
610
+ textColorGhostPressedWarning: string;
611
+ textColorGhostFocusWarning: string;
612
+ textColorGhostDisabledWarning: string;
613
+ borderWarning: string;
614
+ borderHoverWarning: string;
615
+ borderPressedWarning: string;
616
+ borderFocusWarning: string;
617
+ borderDisabledWarning: string;
618
+ rippleColorWarning: string;
619
+ colorError: string;
620
+ colorHoverError: string;
621
+ colorPressedError: string;
622
+ colorFocusError: string;
623
+ colorDisabledError: string;
624
+ textColorError: string;
625
+ textColorHoverError: string;
626
+ textColorPressedError: string;
627
+ textColorFocusError: string;
628
+ textColorDisabledError: string;
629
+ textColorTextError: string;
630
+ textColorTextHoverError: string;
631
+ textColorTextPressedError: string;
632
+ textColorTextFocusError: string;
633
+ textColorTextDisabledError: string;
634
+ textColorGhostError: string;
635
+ textColorGhostHoverError: string;
636
+ textColorGhostPressedError: string;
637
+ textColorGhostFocusError: string;
638
+ textColorGhostDisabledError: string;
639
+ borderError: string;
640
+ borderHoverError: string;
641
+ borderPressedError: string;
642
+ borderFocusError: string;
643
+ borderDisabledError: string;
644
+ rippleColorError: string;
645
+ waveOpacity: string;
646
+ fontWeight: string;
647
+ fontWeightStrong: string;
648
+ paddingTiny: string;
649
+ paddingSmall: string;
650
+ paddingMedium: string;
651
+ paddingLarge: string;
652
+ paddingRoundTiny: string;
653
+ paddingRoundSmall: string;
654
+ paddingRoundMedium: string;
655
+ paddingRoundLarge: string;
656
+ iconMarginTiny: string;
657
+ iconMarginSmall: string;
658
+ iconMarginMedium: string;
659
+ iconMarginLarge: string;
660
+ iconSizeTiny: string;
661
+ iconSizeSmall: string;
662
+ iconSizeMedium: string;
663
+ iconSizeLarge: string;
664
+ rippleDuration: string;
665
+ }, any>>>;
666
+ }>, void, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
667
+ readonly focusable: {
668
+ readonly type: BooleanConstructor;
669
+ readonly default: false;
670
+ };
671
+ readonly content: StringConstructor;
672
+ readonly icon: StringConstructor;
673
+ readonly color: StringConstructor;
674
+ readonly textColor: StringConstructor;
675
+ readonly text: BooleanConstructor;
676
+ readonly block: BooleanConstructor;
677
+ readonly loading: BooleanConstructor;
678
+ readonly disabled: BooleanConstructor;
679
+ readonly circle: BooleanConstructor;
680
+ readonly size: import('vue').PropType<import('naive-ui/es/button/src/interface').Size>;
681
+ readonly ghost: BooleanConstructor;
682
+ readonly round: BooleanConstructor;
683
+ readonly secondary: BooleanConstructor;
684
+ readonly tertiary: BooleanConstructor;
685
+ readonly quaternary: BooleanConstructor;
686
+ readonly strong: BooleanConstructor;
687
+ readonly keyboard: {
688
+ readonly type: BooleanConstructor;
689
+ readonly default: true;
690
+ };
691
+ readonly tag: {
692
+ readonly type: import('vue').PropType<keyof HTMLElementTagNameMap>;
693
+ readonly default: "button";
694
+ };
695
+ readonly type: {
696
+ readonly type: import('vue').PropType<import('naive-ui/es/button/src/interface').Type>;
697
+ readonly default: "default";
698
+ };
699
+ readonly dashed: BooleanConstructor;
700
+ readonly renderIcon: import('vue').PropType<() => import('vue').VNodeChild>;
701
+ readonly iconPlacement: {
702
+ readonly type: import('vue').PropType<"left" | "right">;
703
+ readonly default: "left";
704
+ };
705
+ readonly attrType: {
706
+ readonly type: import('vue').PropType<"button" | "submit" | "reset">;
707
+ readonly default: "button";
708
+ };
709
+ readonly bordered: {
710
+ readonly type: BooleanConstructor;
711
+ readonly default: true;
712
+ };
713
+ readonly onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
714
+ readonly nativeFocusBehavior: {
715
+ readonly type: BooleanConstructor;
716
+ readonly default: boolean;
717
+ };
718
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Button", {
719
+ heightTiny: string;
720
+ heightSmall: string;
721
+ heightMedium: string;
722
+ heightLarge: string;
723
+ borderRadiusTiny: string;
724
+ borderRadiusSmall: string;
725
+ borderRadiusMedium: string;
726
+ borderRadiusLarge: string;
727
+ fontSizeTiny: string;
728
+ fontSizeSmall: string;
729
+ fontSizeMedium: string;
730
+ fontSizeLarge: string;
731
+ opacityDisabled: string;
732
+ colorOpacitySecondary: string;
733
+ colorOpacitySecondaryHover: string;
734
+ colorOpacitySecondaryPressed: string;
735
+ colorSecondary: string;
736
+ colorSecondaryHover: string;
737
+ colorSecondaryPressed: string;
738
+ colorTertiary: string;
739
+ colorTertiaryHover: string;
740
+ colorTertiaryPressed: string;
741
+ colorQuaternary: string;
742
+ colorQuaternaryHover: string;
743
+ colorQuaternaryPressed: string;
744
+ color: string;
745
+ colorHover: string;
746
+ colorPressed: string;
747
+ colorFocus: string;
748
+ colorDisabled: string;
749
+ textColor: string;
750
+ textColorTertiary: string;
751
+ textColorHover: string;
752
+ textColorPressed: string;
753
+ textColorFocus: string;
754
+ textColorDisabled: string;
755
+ textColorText: string;
756
+ textColorTextHover: string;
757
+ textColorTextPressed: string;
758
+ textColorTextFocus: string;
759
+ textColorTextDisabled: string;
760
+ textColorGhost: string;
761
+ textColorGhostHover: string;
762
+ textColorGhostPressed: string;
763
+ textColorGhostFocus: string;
764
+ textColorGhostDisabled: string;
765
+ border: string;
766
+ borderHover: string;
767
+ borderPressed: string;
768
+ borderFocus: string;
769
+ borderDisabled: string;
770
+ rippleColor: string;
771
+ colorPrimary: string;
772
+ colorHoverPrimary: string;
773
+ colorPressedPrimary: string;
774
+ colorFocusPrimary: string;
775
+ colorDisabledPrimary: string;
776
+ textColorPrimary: string;
777
+ textColorHoverPrimary: string;
778
+ textColorPressedPrimary: string;
779
+ textColorFocusPrimary: string;
780
+ textColorDisabledPrimary: string;
781
+ textColorTextPrimary: string;
782
+ textColorTextHoverPrimary: string;
783
+ textColorTextPressedPrimary: string;
784
+ textColorTextFocusPrimary: string;
785
+ textColorTextDisabledPrimary: string;
786
+ textColorGhostPrimary: string;
787
+ textColorGhostHoverPrimary: string;
788
+ textColorGhostPressedPrimary: string;
789
+ textColorGhostFocusPrimary: string;
790
+ textColorGhostDisabledPrimary: string;
791
+ borderPrimary: string;
792
+ borderHoverPrimary: string;
793
+ borderPressedPrimary: string;
794
+ borderFocusPrimary: string;
795
+ borderDisabledPrimary: string;
796
+ rippleColorPrimary: string;
797
+ colorInfo: string;
798
+ colorHoverInfo: string;
799
+ colorPressedInfo: string;
800
+ colorFocusInfo: string;
801
+ colorDisabledInfo: string;
802
+ textColorInfo: string;
803
+ textColorHoverInfo: string;
804
+ textColorPressedInfo: string;
805
+ textColorFocusInfo: string;
806
+ textColorDisabledInfo: string;
807
+ textColorTextInfo: string;
808
+ textColorTextHoverInfo: string;
809
+ textColorTextPressedInfo: string;
810
+ textColorTextFocusInfo: string;
811
+ textColorTextDisabledInfo: string;
812
+ textColorGhostInfo: string;
813
+ textColorGhostHoverInfo: string;
814
+ textColorGhostPressedInfo: string;
815
+ textColorGhostFocusInfo: string;
816
+ textColorGhostDisabledInfo: string;
817
+ borderInfo: string;
818
+ borderHoverInfo: string;
819
+ borderPressedInfo: string;
820
+ borderFocusInfo: string;
821
+ borderDisabledInfo: string;
822
+ rippleColorInfo: string;
823
+ colorSuccess: string;
824
+ colorHoverSuccess: string;
825
+ colorPressedSuccess: string;
826
+ colorFocusSuccess: string;
827
+ colorDisabledSuccess: string;
828
+ textColorSuccess: string;
829
+ textColorHoverSuccess: string;
830
+ textColorPressedSuccess: string;
831
+ textColorFocusSuccess: string;
832
+ textColorDisabledSuccess: string;
833
+ textColorTextSuccess: string;
834
+ textColorTextHoverSuccess: string;
835
+ textColorTextPressedSuccess: string;
836
+ textColorTextFocusSuccess: string;
837
+ textColorTextDisabledSuccess: string;
838
+ textColorGhostSuccess: string;
839
+ textColorGhostHoverSuccess: string;
840
+ textColorGhostPressedSuccess: string;
841
+ textColorGhostFocusSuccess: string;
842
+ textColorGhostDisabledSuccess: string;
843
+ borderSuccess: string;
844
+ borderHoverSuccess: string;
845
+ borderPressedSuccess: string;
846
+ borderFocusSuccess: string;
847
+ borderDisabledSuccess: string;
848
+ rippleColorSuccess: string;
849
+ colorWarning: string;
850
+ colorHoverWarning: string;
851
+ colorPressedWarning: string;
852
+ colorFocusWarning: string;
853
+ colorDisabledWarning: string;
854
+ textColorWarning: string;
855
+ textColorHoverWarning: string;
856
+ textColorPressedWarning: string;
857
+ textColorFocusWarning: string;
858
+ textColorDisabledWarning: string;
859
+ textColorTextWarning: string;
860
+ textColorTextHoverWarning: string;
861
+ textColorTextPressedWarning: string;
862
+ textColorTextFocusWarning: string;
863
+ textColorTextDisabledWarning: string;
864
+ textColorGhostWarning: string;
865
+ textColorGhostHoverWarning: string;
866
+ textColorGhostPressedWarning: string;
867
+ textColorGhostFocusWarning: string;
868
+ textColorGhostDisabledWarning: string;
869
+ borderWarning: string;
870
+ borderHoverWarning: string;
871
+ borderPressedWarning: string;
872
+ borderFocusWarning: string;
873
+ borderDisabledWarning: string;
874
+ rippleColorWarning: string;
875
+ colorError: string;
876
+ colorHoverError: string;
877
+ colorPressedError: string;
878
+ colorFocusError: string;
879
+ colorDisabledError: string;
880
+ textColorError: string;
881
+ textColorHoverError: string;
882
+ textColorPressedError: string;
883
+ textColorFocusError: string;
884
+ textColorDisabledError: string;
885
+ textColorTextError: string;
886
+ textColorTextHoverError: string;
887
+ textColorTextPressedError: string;
888
+ textColorTextFocusError: string;
889
+ textColorTextDisabledError: string;
890
+ textColorGhostError: string;
891
+ textColorGhostHoverError: string;
892
+ textColorGhostPressedError: string;
893
+ textColorGhostFocusError: string;
894
+ textColorGhostDisabledError: string;
895
+ borderError: string;
896
+ borderHoverError: string;
897
+ borderPressedError: string;
898
+ borderFocusError: string;
899
+ borderDisabledError: string;
900
+ rippleColorError: string;
901
+ waveOpacity: string;
902
+ fontWeight: string;
903
+ fontWeightStrong: string;
904
+ paddingTiny: string;
905
+ paddingSmall: string;
906
+ paddingMedium: string;
907
+ paddingLarge: string;
908
+ paddingRoundTiny: string;
909
+ paddingRoundSmall: string;
910
+ paddingRoundMedium: string;
911
+ paddingRoundLarge: string;
912
+ iconMarginTiny: string;
913
+ iconMarginSmall: string;
914
+ iconMarginMedium: string;
915
+ iconMarginLarge: string;
916
+ iconSizeTiny: string;
917
+ iconSizeSmall: string;
918
+ iconSizeMedium: string;
919
+ iconSizeLarge: string;
920
+ rippleDuration: string;
921
+ }, any>>;
922
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
923
+ heightTiny: string;
924
+ heightSmall: string;
925
+ heightMedium: string;
926
+ heightLarge: string;
927
+ borderRadiusTiny: string;
928
+ borderRadiusSmall: string;
929
+ borderRadiusMedium: string;
930
+ borderRadiusLarge: string;
931
+ fontSizeTiny: string;
932
+ fontSizeSmall: string;
933
+ fontSizeMedium: string;
934
+ fontSizeLarge: string;
935
+ opacityDisabled: string;
936
+ colorOpacitySecondary: string;
937
+ colorOpacitySecondaryHover: string;
938
+ colorOpacitySecondaryPressed: string;
939
+ colorSecondary: string;
940
+ colorSecondaryHover: string;
941
+ colorSecondaryPressed: string;
942
+ colorTertiary: string;
943
+ colorTertiaryHover: string;
944
+ colorTertiaryPressed: string;
945
+ colorQuaternary: string;
946
+ colorQuaternaryHover: string;
947
+ colorQuaternaryPressed: string;
948
+ color: string;
949
+ colorHover: string;
950
+ colorPressed: string;
951
+ colorFocus: string;
952
+ colorDisabled: string;
953
+ textColor: string;
954
+ textColorTertiary: string;
955
+ textColorHover: string;
956
+ textColorPressed: string;
957
+ textColorFocus: string;
958
+ textColorDisabled: string;
959
+ textColorText: string;
960
+ textColorTextHover: string;
961
+ textColorTextPressed: string;
962
+ textColorTextFocus: string;
963
+ textColorTextDisabled: string;
964
+ textColorGhost: string;
965
+ textColorGhostHover: string;
966
+ textColorGhostPressed: string;
967
+ textColorGhostFocus: string;
968
+ textColorGhostDisabled: string;
969
+ border: string;
970
+ borderHover: string;
971
+ borderPressed: string;
972
+ borderFocus: string;
973
+ borderDisabled: string;
974
+ rippleColor: string;
975
+ colorPrimary: string;
976
+ colorHoverPrimary: string;
977
+ colorPressedPrimary: string;
978
+ colorFocusPrimary: string;
979
+ colorDisabledPrimary: string;
980
+ textColorPrimary: string;
981
+ textColorHoverPrimary: string;
982
+ textColorPressedPrimary: string;
983
+ textColorFocusPrimary: string;
984
+ textColorDisabledPrimary: string;
985
+ textColorTextPrimary: string;
986
+ textColorTextHoverPrimary: string;
987
+ textColorTextPressedPrimary: string;
988
+ textColorTextFocusPrimary: string;
989
+ textColorTextDisabledPrimary: string;
990
+ textColorGhostPrimary: string;
991
+ textColorGhostHoverPrimary: string;
992
+ textColorGhostPressedPrimary: string;
993
+ textColorGhostFocusPrimary: string;
994
+ textColorGhostDisabledPrimary: string;
995
+ borderPrimary: string;
996
+ borderHoverPrimary: string;
997
+ borderPressedPrimary: string;
998
+ borderFocusPrimary: string;
999
+ borderDisabledPrimary: string;
1000
+ rippleColorPrimary: string;
1001
+ colorInfo: string;
1002
+ colorHoverInfo: string;
1003
+ colorPressedInfo: string;
1004
+ colorFocusInfo: string;
1005
+ colorDisabledInfo: string;
1006
+ textColorInfo: string;
1007
+ textColorHoverInfo: string;
1008
+ textColorPressedInfo: string;
1009
+ textColorFocusInfo: string;
1010
+ textColorDisabledInfo: string;
1011
+ textColorTextInfo: string;
1012
+ textColorTextHoverInfo: string;
1013
+ textColorTextPressedInfo: string;
1014
+ textColorTextFocusInfo: string;
1015
+ textColorTextDisabledInfo: string;
1016
+ textColorGhostInfo: string;
1017
+ textColorGhostHoverInfo: string;
1018
+ textColorGhostPressedInfo: string;
1019
+ textColorGhostFocusInfo: string;
1020
+ textColorGhostDisabledInfo: string;
1021
+ borderInfo: string;
1022
+ borderHoverInfo: string;
1023
+ borderPressedInfo: string;
1024
+ borderFocusInfo: string;
1025
+ borderDisabledInfo: string;
1026
+ rippleColorInfo: string;
1027
+ colorSuccess: string;
1028
+ colorHoverSuccess: string;
1029
+ colorPressedSuccess: string;
1030
+ colorFocusSuccess: string;
1031
+ colorDisabledSuccess: string;
1032
+ textColorSuccess: string;
1033
+ textColorHoverSuccess: string;
1034
+ textColorPressedSuccess: string;
1035
+ textColorFocusSuccess: string;
1036
+ textColorDisabledSuccess: string;
1037
+ textColorTextSuccess: string;
1038
+ textColorTextHoverSuccess: string;
1039
+ textColorTextPressedSuccess: string;
1040
+ textColorTextFocusSuccess: string;
1041
+ textColorTextDisabledSuccess: string;
1042
+ textColorGhostSuccess: string;
1043
+ textColorGhostHoverSuccess: string;
1044
+ textColorGhostPressedSuccess: string;
1045
+ textColorGhostFocusSuccess: string;
1046
+ textColorGhostDisabledSuccess: string;
1047
+ borderSuccess: string;
1048
+ borderHoverSuccess: string;
1049
+ borderPressedSuccess: string;
1050
+ borderFocusSuccess: string;
1051
+ borderDisabledSuccess: string;
1052
+ rippleColorSuccess: string;
1053
+ colorWarning: string;
1054
+ colorHoverWarning: string;
1055
+ colorPressedWarning: string;
1056
+ colorFocusWarning: string;
1057
+ colorDisabledWarning: string;
1058
+ textColorWarning: string;
1059
+ textColorHoverWarning: string;
1060
+ textColorPressedWarning: string;
1061
+ textColorFocusWarning: string;
1062
+ textColorDisabledWarning: string;
1063
+ textColorTextWarning: string;
1064
+ textColorTextHoverWarning: string;
1065
+ textColorTextPressedWarning: string;
1066
+ textColorTextFocusWarning: string;
1067
+ textColorTextDisabledWarning: string;
1068
+ textColorGhostWarning: string;
1069
+ textColorGhostHoverWarning: string;
1070
+ textColorGhostPressedWarning: string;
1071
+ textColorGhostFocusWarning: string;
1072
+ textColorGhostDisabledWarning: string;
1073
+ borderWarning: string;
1074
+ borderHoverWarning: string;
1075
+ borderPressedWarning: string;
1076
+ borderFocusWarning: string;
1077
+ borderDisabledWarning: string;
1078
+ rippleColorWarning: string;
1079
+ colorError: string;
1080
+ colorHoverError: string;
1081
+ colorPressedError: string;
1082
+ colorFocusError: string;
1083
+ colorDisabledError: string;
1084
+ textColorError: string;
1085
+ textColorHoverError: string;
1086
+ textColorPressedError: string;
1087
+ textColorFocusError: string;
1088
+ textColorDisabledError: string;
1089
+ textColorTextError: string;
1090
+ textColorTextHoverError: string;
1091
+ textColorTextPressedError: string;
1092
+ textColorTextFocusError: string;
1093
+ textColorTextDisabledError: string;
1094
+ textColorGhostError: string;
1095
+ textColorGhostHoverError: string;
1096
+ textColorGhostPressedError: string;
1097
+ textColorGhostFocusError: string;
1098
+ textColorGhostDisabledError: string;
1099
+ borderError: string;
1100
+ borderHoverError: string;
1101
+ borderPressedError: string;
1102
+ borderFocusError: string;
1103
+ borderDisabledError: string;
1104
+ rippleColorError: string;
1105
+ waveOpacity: string;
1106
+ fontWeight: string;
1107
+ fontWeightStrong: string;
1108
+ paddingTiny: string;
1109
+ paddingSmall: string;
1110
+ paddingMedium: string;
1111
+ paddingLarge: string;
1112
+ paddingRoundTiny: string;
1113
+ paddingRoundSmall: string;
1114
+ paddingRoundMedium: string;
1115
+ paddingRoundLarge: string;
1116
+ iconMarginTiny: string;
1117
+ iconMarginSmall: string;
1118
+ iconMarginMedium: string;
1119
+ iconMarginLarge: string;
1120
+ iconSizeTiny: string;
1121
+ iconSizeSmall: string;
1122
+ iconSizeMedium: string;
1123
+ iconSizeLarge: string;
1124
+ rippleDuration: string;
1125
+ }, any>>>;
1126
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
1127
+ heightTiny: string;
1128
+ heightSmall: string;
1129
+ heightMedium: string;
1130
+ heightLarge: string;
1131
+ borderRadiusTiny: string;
1132
+ borderRadiusSmall: string;
1133
+ borderRadiusMedium: string;
1134
+ borderRadiusLarge: string;
1135
+ fontSizeTiny: string;
1136
+ fontSizeSmall: string;
1137
+ fontSizeMedium: string;
1138
+ fontSizeLarge: string;
1139
+ opacityDisabled: string;
1140
+ colorOpacitySecondary: string;
1141
+ colorOpacitySecondaryHover: string;
1142
+ colorOpacitySecondaryPressed: string;
1143
+ colorSecondary: string;
1144
+ colorSecondaryHover: string;
1145
+ colorSecondaryPressed: string;
1146
+ colorTertiary: string;
1147
+ colorTertiaryHover: string;
1148
+ colorTertiaryPressed: string;
1149
+ colorQuaternary: string;
1150
+ colorQuaternaryHover: string;
1151
+ colorQuaternaryPressed: string;
1152
+ color: string;
1153
+ colorHover: string;
1154
+ colorPressed: string;
1155
+ colorFocus: string;
1156
+ colorDisabled: string;
1157
+ textColor: string;
1158
+ textColorTertiary: string;
1159
+ textColorHover: string;
1160
+ textColorPressed: string;
1161
+ textColorFocus: string;
1162
+ textColorDisabled: string;
1163
+ textColorText: string;
1164
+ textColorTextHover: string;
1165
+ textColorTextPressed: string;
1166
+ textColorTextFocus: string;
1167
+ textColorTextDisabled: string;
1168
+ textColorGhost: string;
1169
+ textColorGhostHover: string;
1170
+ textColorGhostPressed: string;
1171
+ textColorGhostFocus: string;
1172
+ textColorGhostDisabled: string;
1173
+ border: string;
1174
+ borderHover: string;
1175
+ borderPressed: string;
1176
+ borderFocus: string;
1177
+ borderDisabled: string;
1178
+ rippleColor: string;
1179
+ colorPrimary: string;
1180
+ colorHoverPrimary: string;
1181
+ colorPressedPrimary: string;
1182
+ colorFocusPrimary: string;
1183
+ colorDisabledPrimary: string;
1184
+ textColorPrimary: string;
1185
+ textColorHoverPrimary: string;
1186
+ textColorPressedPrimary: string;
1187
+ textColorFocusPrimary: string;
1188
+ textColorDisabledPrimary: string;
1189
+ textColorTextPrimary: string;
1190
+ textColorTextHoverPrimary: string;
1191
+ textColorTextPressedPrimary: string;
1192
+ textColorTextFocusPrimary: string;
1193
+ textColorTextDisabledPrimary: string;
1194
+ textColorGhostPrimary: string;
1195
+ textColorGhostHoverPrimary: string;
1196
+ textColorGhostPressedPrimary: string;
1197
+ textColorGhostFocusPrimary: string;
1198
+ textColorGhostDisabledPrimary: string;
1199
+ borderPrimary: string;
1200
+ borderHoverPrimary: string;
1201
+ borderPressedPrimary: string;
1202
+ borderFocusPrimary: string;
1203
+ borderDisabledPrimary: string;
1204
+ rippleColorPrimary: string;
1205
+ colorInfo: string;
1206
+ colorHoverInfo: string;
1207
+ colorPressedInfo: string;
1208
+ colorFocusInfo: string;
1209
+ colorDisabledInfo: string;
1210
+ textColorInfo: string;
1211
+ textColorHoverInfo: string;
1212
+ textColorPressedInfo: string;
1213
+ textColorFocusInfo: string;
1214
+ textColorDisabledInfo: string;
1215
+ textColorTextInfo: string;
1216
+ textColorTextHoverInfo: string;
1217
+ textColorTextPressedInfo: string;
1218
+ textColorTextFocusInfo: string;
1219
+ textColorTextDisabledInfo: string;
1220
+ textColorGhostInfo: string;
1221
+ textColorGhostHoverInfo: string;
1222
+ textColorGhostPressedInfo: string;
1223
+ textColorGhostFocusInfo: string;
1224
+ textColorGhostDisabledInfo: string;
1225
+ borderInfo: string;
1226
+ borderHoverInfo: string;
1227
+ borderPressedInfo: string;
1228
+ borderFocusInfo: string;
1229
+ borderDisabledInfo: string;
1230
+ rippleColorInfo: string;
1231
+ colorSuccess: string;
1232
+ colorHoverSuccess: string;
1233
+ colorPressedSuccess: string;
1234
+ colorFocusSuccess: string;
1235
+ colorDisabledSuccess: string;
1236
+ textColorSuccess: string;
1237
+ textColorHoverSuccess: string;
1238
+ textColorPressedSuccess: string;
1239
+ textColorFocusSuccess: string;
1240
+ textColorDisabledSuccess: string;
1241
+ textColorTextSuccess: string;
1242
+ textColorTextHoverSuccess: string;
1243
+ textColorTextPressedSuccess: string;
1244
+ textColorTextFocusSuccess: string;
1245
+ textColorTextDisabledSuccess: string;
1246
+ textColorGhostSuccess: string;
1247
+ textColorGhostHoverSuccess: string;
1248
+ textColorGhostPressedSuccess: string;
1249
+ textColorGhostFocusSuccess: string;
1250
+ textColorGhostDisabledSuccess: string;
1251
+ borderSuccess: string;
1252
+ borderHoverSuccess: string;
1253
+ borderPressedSuccess: string;
1254
+ borderFocusSuccess: string;
1255
+ borderDisabledSuccess: string;
1256
+ rippleColorSuccess: string;
1257
+ colorWarning: string;
1258
+ colorHoverWarning: string;
1259
+ colorPressedWarning: string;
1260
+ colorFocusWarning: string;
1261
+ colorDisabledWarning: string;
1262
+ textColorWarning: string;
1263
+ textColorHoverWarning: string;
1264
+ textColorPressedWarning: string;
1265
+ textColorFocusWarning: string;
1266
+ textColorDisabledWarning: string;
1267
+ textColorTextWarning: string;
1268
+ textColorTextHoverWarning: string;
1269
+ textColorTextPressedWarning: string;
1270
+ textColorTextFocusWarning: string;
1271
+ textColorTextDisabledWarning: string;
1272
+ textColorGhostWarning: string;
1273
+ textColorGhostHoverWarning: string;
1274
+ textColorGhostPressedWarning: string;
1275
+ textColorGhostFocusWarning: string;
1276
+ textColorGhostDisabledWarning: string;
1277
+ borderWarning: string;
1278
+ borderHoverWarning: string;
1279
+ borderPressedWarning: string;
1280
+ borderFocusWarning: string;
1281
+ borderDisabledWarning: string;
1282
+ rippleColorWarning: string;
1283
+ colorError: string;
1284
+ colorHoverError: string;
1285
+ colorPressedError: string;
1286
+ colorFocusError: string;
1287
+ colorDisabledError: string;
1288
+ textColorError: string;
1289
+ textColorHoverError: string;
1290
+ textColorPressedError: string;
1291
+ textColorFocusError: string;
1292
+ textColorDisabledError: string;
1293
+ textColorTextError: string;
1294
+ textColorTextHoverError: string;
1295
+ textColorTextPressedError: string;
1296
+ textColorTextFocusError: string;
1297
+ textColorTextDisabledError: string;
1298
+ textColorGhostError: string;
1299
+ textColorGhostHoverError: string;
1300
+ textColorGhostPressedError: string;
1301
+ textColorGhostFocusError: string;
1302
+ textColorGhostDisabledError: string;
1303
+ borderError: string;
1304
+ borderHoverError: string;
1305
+ borderPressedError: string;
1306
+ borderFocusError: string;
1307
+ borderDisabledError: string;
1308
+ rippleColorError: string;
1309
+ waveOpacity: string;
1310
+ fontWeight: string;
1311
+ fontWeightStrong: string;
1312
+ paddingTiny: string;
1313
+ paddingSmall: string;
1314
+ paddingMedium: string;
1315
+ paddingLarge: string;
1316
+ paddingRoundTiny: string;
1317
+ paddingRoundSmall: string;
1318
+ paddingRoundMedium: string;
1319
+ paddingRoundLarge: string;
1320
+ iconMarginTiny: string;
1321
+ iconMarginSmall: string;
1322
+ iconMarginMedium: string;
1323
+ iconMarginLarge: string;
1324
+ iconSizeTiny: string;
1325
+ iconSizeSmall: string;
1326
+ iconSizeMedium: string;
1327
+ iconSizeLarge: string;
1328
+ rippleDuration: string;
1329
+ }, any>>>;
1330
+ }>> & Readonly<{}>, {
1331
+ readonly type: import('naive-ui/es/button/src/interface').Type;
1332
+ readonly loading: boolean;
1333
+ readonly focusable: boolean;
1334
+ readonly text: boolean;
1335
+ readonly block: boolean;
1336
+ readonly disabled: boolean;
1337
+ readonly circle: boolean;
1338
+ readonly ghost: boolean;
1339
+ readonly round: boolean;
1340
+ readonly secondary: boolean;
1341
+ readonly tertiary: boolean;
1342
+ readonly quaternary: boolean;
1343
+ readonly strong: boolean;
1344
+ readonly keyboard: boolean;
1345
+ readonly tag: keyof HTMLElementTagNameMap;
1346
+ readonly dashed: boolean;
1347
+ readonly iconPlacement: "left" | "right";
1348
+ readonly attrType: "reset" | "submit" | "button";
1349
+ readonly bordered: boolean;
1350
+ readonly nativeFocusBehavior: boolean;
1351
+ }, SlotsType<import('naive-ui').ButtonSlots>, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1352
+ export default _default;