@unizhen/ui 0.0.62 → 0.0.70

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