dydx-naive-ui-for-vue 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/README.md +75 -0
  2. package/dist/dydx-naive-ui-for-vue.css +2 -0
  3. package/dist/dydx-naive-ui-for-vue.js +1758 -0
  4. package/dist/dydx-naive-ui-for-vue.umd.cjs +1 -0
  5. package/dist/types/components/FormModal/index.d.ts +4 -0
  6. package/dist/types/components/FormModal/src/DydxFormDrawer.vue.d.ts +63 -0
  7. package/dist/types/components/FormModal/src/DydxFormModal.vue.d.ts +61 -0
  8. package/dist/types/components/FormModal/types.d.ts +27 -0
  9. package/dist/types/components/IconSelect/index.d.ts +3 -0
  10. package/dist/types/components/IconSelect/src/DydxIconSelect.vue.d.ts +20 -0
  11. package/dist/types/components/IconSelect/types.d.ts +9 -0
  12. package/dist/types/components/NaiveForm/index.d.ts +83 -0
  13. package/dist/types/components/NaiveForm/src/DydxNaiveForm.vue.d.ts +39 -0
  14. package/dist/types/components/NaiveForm/types/expose.d.ts +13 -0
  15. package/dist/types/components/NaiveForm/types/index.d.ts +3 -0
  16. package/dist/types/components/NaiveForm/types/props.d.ts +75 -0
  17. package/dist/types/components/NaiveForm/types/schema.d.ts +118 -0
  18. package/dist/types/components/NaiveForm/utils/component-map.d.ts +2 -0
  19. package/dist/types/components/NaiveForm/utils/path.d.ts +2 -0
  20. package/dist/types/components/NaiveTable/composables/index.d.ts +4 -0
  21. package/dist/types/components/NaiveTable/composables/useColumnRender.d.ts +24 -0
  22. package/dist/types/components/NaiveTable/composables/useColumns.d.ts +34 -0
  23. package/dist/types/components/NaiveTable/composables/usePagination.d.ts +23 -0
  24. package/dist/types/components/NaiveTable/composables/useTableActions.d.ts +15 -0
  25. package/dist/types/components/NaiveTable/index.d.ts +53 -0
  26. package/dist/types/components/NaiveTable/src/DydxNaiveTable.vue.d.ts +26 -0
  27. package/dist/types/components/NaiveTable/types/columns.d.ts +155 -0
  28. package/dist/types/components/NaiveTable/types/expose.d.ts +24 -0
  29. package/dist/types/components/NaiveTable/types/index.d.ts +3 -0
  30. package/dist/types/components/NaiveTable/types/props.d.ts +132 -0
  31. package/dist/types/components/NaiveUpload/index.d.ts +4 -0
  32. package/dist/types/components/NaiveUpload/src/DydxUpload.vue.d.ts +4568 -0
  33. package/dist/types/components/NaiveUpload/types.d.ts +43 -0
  34. package/dist/types/index.d.ts +16 -0
  35. package/dist/vite.svg +1 -0
  36. package/dist/volar.d.ts +13 -0
  37. package/package.json +69 -0
@@ -0,0 +1,4568 @@
1
+ import { UploadFileInfo } from 'naive-ui';
2
+ import { DydxUploadProps } from '../types';
3
+ declare function __VLS_template(): {
4
+ attrs: Partial<{}>;
5
+ slots: {
6
+ default?(_: {}): any;
7
+ };
8
+ refs: {
9
+ uploadRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
10
+ readonly name: {
11
+ readonly type: StringConstructor;
12
+ readonly default: "file";
13
+ };
14
+ readonly accept: StringConstructor;
15
+ readonly action: StringConstructor;
16
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
17
+ readonly directory: BooleanConstructor;
18
+ readonly directoryDnd: {
19
+ readonly type: BooleanConstructor;
20
+ readonly default: undefined;
21
+ };
22
+ readonly method: {
23
+ readonly type: StringConstructor;
24
+ readonly default: "POST";
25
+ };
26
+ readonly multiple: BooleanConstructor;
27
+ readonly showFileList: {
28
+ readonly type: BooleanConstructor;
29
+ readonly default: true;
30
+ };
31
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
32
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
33
+ readonly withCredentials: BooleanConstructor;
34
+ readonly responseType: {
35
+ readonly type: PropType<XMLHttpRequestResponseType>;
36
+ readonly default: "";
37
+ };
38
+ readonly disabled: {
39
+ readonly type: PropType<boolean | undefined>;
40
+ readonly default: undefined;
41
+ };
42
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
43
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
44
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
45
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
46
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
47
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
48
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
49
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
50
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
51
+ readonly defaultUpload: {
52
+ readonly type: BooleanConstructor;
53
+ readonly default: true;
54
+ };
55
+ readonly fileList: PropType<UploadFileInfo[]>;
56
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
57
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
58
+ readonly fileListClass: StringConstructor;
59
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
60
+ readonly defaultFileList: {
61
+ readonly type: PropType<UploadFileInfo[]>;
62
+ readonly default: () => never[];
63
+ };
64
+ readonly showCancelButton: {
65
+ readonly type: BooleanConstructor;
66
+ readonly default: true;
67
+ };
68
+ readonly showRemoveButton: {
69
+ readonly type: BooleanConstructor;
70
+ readonly default: true;
71
+ };
72
+ readonly showDownloadButton: BooleanConstructor;
73
+ readonly showRetryButton: {
74
+ readonly type: BooleanConstructor;
75
+ readonly default: true;
76
+ };
77
+ readonly showPreviewButton: {
78
+ readonly type: BooleanConstructor;
79
+ readonly default: true;
80
+ };
81
+ readonly listType: {
82
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
83
+ readonly default: "text";
84
+ };
85
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
86
+ readonly shouldUseThumbnailUrl: {
87
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
88
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
89
+ };
90
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
91
+ readonly abstract: BooleanConstructor;
92
+ readonly max: NumberConstructor;
93
+ readonly showTrigger: {
94
+ readonly type: BooleanConstructor;
95
+ readonly default: true;
96
+ };
97
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
98
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
99
+ readonly triggerClass: StringConstructor;
100
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
101
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
102
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
103
+ fontSize: string;
104
+ lineHeight: string;
105
+ borderRadius: string;
106
+ draggerColor: string;
107
+ draggerBorder: string;
108
+ draggerBorderHover: string;
109
+ itemColorHover: string;
110
+ itemColorHoverError: string;
111
+ itemTextColor: string;
112
+ itemTextColorError: string;
113
+ itemTextColorSuccess: string;
114
+ itemIconColor: string;
115
+ itemDisabledOpacity: string;
116
+ itemBorderImageCardError: string;
117
+ itemBorderImageCard: string;
118
+ }, {
119
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
120
+ heightTiny: string;
121
+ heightSmall: string;
122
+ heightMedium: string;
123
+ heightLarge: string;
124
+ borderRadiusTiny: string;
125
+ borderRadiusSmall: string;
126
+ borderRadiusMedium: string;
127
+ borderRadiusLarge: string;
128
+ fontSizeTiny: string;
129
+ fontSizeSmall: string;
130
+ fontSizeMedium: string;
131
+ fontSizeLarge: string;
132
+ opacityDisabled: string;
133
+ colorOpacitySecondary: string;
134
+ colorOpacitySecondaryHover: string;
135
+ colorOpacitySecondaryPressed: string;
136
+ colorSecondary: string;
137
+ colorSecondaryHover: string;
138
+ colorSecondaryPressed: string;
139
+ colorTertiary: string;
140
+ colorTertiaryHover: string;
141
+ colorTertiaryPressed: string;
142
+ colorQuaternary: string;
143
+ colorQuaternaryHover: string;
144
+ colorQuaternaryPressed: string;
145
+ color: string;
146
+ colorHover: string;
147
+ colorPressed: string;
148
+ colorFocus: string;
149
+ colorDisabled: string;
150
+ textColor: string;
151
+ textColorTertiary: string;
152
+ textColorHover: string;
153
+ textColorPressed: string;
154
+ textColorFocus: string;
155
+ textColorDisabled: string;
156
+ textColorText: string;
157
+ textColorTextHover: string;
158
+ textColorTextPressed: string;
159
+ textColorTextFocus: string;
160
+ textColorTextDisabled: string;
161
+ textColorGhost: string;
162
+ textColorGhostHover: string;
163
+ textColorGhostPressed: string;
164
+ textColorGhostFocus: string;
165
+ textColorGhostDisabled: string;
166
+ border: string;
167
+ borderHover: string;
168
+ borderPressed: string;
169
+ borderFocus: string;
170
+ borderDisabled: string;
171
+ rippleColor: string;
172
+ colorPrimary: string;
173
+ colorHoverPrimary: string;
174
+ colorPressedPrimary: string;
175
+ colorFocusPrimary: string;
176
+ colorDisabledPrimary: string;
177
+ textColorPrimary: string;
178
+ textColorHoverPrimary: string;
179
+ textColorPressedPrimary: string;
180
+ textColorFocusPrimary: string;
181
+ textColorDisabledPrimary: string;
182
+ textColorTextPrimary: string;
183
+ textColorTextHoverPrimary: string;
184
+ textColorTextPressedPrimary: string;
185
+ textColorTextFocusPrimary: string;
186
+ textColorTextDisabledPrimary: string;
187
+ textColorGhostPrimary: string;
188
+ textColorGhostHoverPrimary: string;
189
+ textColorGhostPressedPrimary: string;
190
+ textColorGhostFocusPrimary: string;
191
+ textColorGhostDisabledPrimary: string;
192
+ borderPrimary: string;
193
+ borderHoverPrimary: string;
194
+ borderPressedPrimary: string;
195
+ borderFocusPrimary: string;
196
+ borderDisabledPrimary: string;
197
+ rippleColorPrimary: string;
198
+ colorInfo: string;
199
+ colorHoverInfo: string;
200
+ colorPressedInfo: string;
201
+ colorFocusInfo: string;
202
+ colorDisabledInfo: string;
203
+ textColorInfo: string;
204
+ textColorHoverInfo: string;
205
+ textColorPressedInfo: string;
206
+ textColorFocusInfo: string;
207
+ textColorDisabledInfo: string;
208
+ textColorTextInfo: string;
209
+ textColorTextHoverInfo: string;
210
+ textColorTextPressedInfo: string;
211
+ textColorTextFocusInfo: string;
212
+ textColorTextDisabledInfo: string;
213
+ textColorGhostInfo: string;
214
+ textColorGhostHoverInfo: string;
215
+ textColorGhostPressedInfo: string;
216
+ textColorGhostFocusInfo: string;
217
+ textColorGhostDisabledInfo: string;
218
+ borderInfo: string;
219
+ borderHoverInfo: string;
220
+ borderPressedInfo: string;
221
+ borderFocusInfo: string;
222
+ borderDisabledInfo: string;
223
+ rippleColorInfo: string;
224
+ colorSuccess: string;
225
+ colorHoverSuccess: string;
226
+ colorPressedSuccess: string;
227
+ colorFocusSuccess: string;
228
+ colorDisabledSuccess: string;
229
+ textColorSuccess: string;
230
+ textColorHoverSuccess: string;
231
+ textColorPressedSuccess: string;
232
+ textColorFocusSuccess: string;
233
+ textColorDisabledSuccess: string;
234
+ textColorTextSuccess: string;
235
+ textColorTextHoverSuccess: string;
236
+ textColorTextPressedSuccess: string;
237
+ textColorTextFocusSuccess: string;
238
+ textColorTextDisabledSuccess: string;
239
+ textColorGhostSuccess: string;
240
+ textColorGhostHoverSuccess: string;
241
+ textColorGhostPressedSuccess: string;
242
+ textColorGhostFocusSuccess: string;
243
+ textColorGhostDisabledSuccess: string;
244
+ borderSuccess: string;
245
+ borderHoverSuccess: string;
246
+ borderPressedSuccess: string;
247
+ borderFocusSuccess: string;
248
+ borderDisabledSuccess: string;
249
+ rippleColorSuccess: string;
250
+ colorWarning: string;
251
+ colorHoverWarning: string;
252
+ colorPressedWarning: string;
253
+ colorFocusWarning: string;
254
+ colorDisabledWarning: string;
255
+ textColorWarning: string;
256
+ textColorHoverWarning: string;
257
+ textColorPressedWarning: string;
258
+ textColorFocusWarning: string;
259
+ textColorDisabledWarning: string;
260
+ textColorTextWarning: string;
261
+ textColorTextHoverWarning: string;
262
+ textColorTextPressedWarning: string;
263
+ textColorTextFocusWarning: string;
264
+ textColorTextDisabledWarning: string;
265
+ textColorGhostWarning: string;
266
+ textColorGhostHoverWarning: string;
267
+ textColorGhostPressedWarning: string;
268
+ textColorGhostFocusWarning: string;
269
+ textColorGhostDisabledWarning: string;
270
+ borderWarning: string;
271
+ borderHoverWarning: string;
272
+ borderPressedWarning: string;
273
+ borderFocusWarning: string;
274
+ borderDisabledWarning: string;
275
+ rippleColorWarning: string;
276
+ colorError: string;
277
+ colorHoverError: string;
278
+ colorPressedError: string;
279
+ colorFocusError: string;
280
+ colorDisabledError: string;
281
+ textColorError: string;
282
+ textColorHoverError: string;
283
+ textColorPressedError: string;
284
+ textColorFocusError: string;
285
+ textColorDisabledError: string;
286
+ textColorTextError: string;
287
+ textColorTextHoverError: string;
288
+ textColorTextPressedError: string;
289
+ textColorTextFocusError: string;
290
+ textColorTextDisabledError: string;
291
+ textColorGhostError: string;
292
+ textColorGhostHoverError: string;
293
+ textColorGhostPressedError: string;
294
+ textColorGhostFocusError: string;
295
+ textColorGhostDisabledError: string;
296
+ borderError: string;
297
+ borderHoverError: string;
298
+ borderPressedError: string;
299
+ borderFocusError: string;
300
+ borderDisabledError: string;
301
+ rippleColorError: string;
302
+ waveOpacity: string;
303
+ fontWeight: string;
304
+ fontWeightStrong: string;
305
+ paddingTiny: string;
306
+ paddingSmall: string;
307
+ paddingMedium: string;
308
+ paddingLarge: string;
309
+ paddingRoundTiny: string;
310
+ paddingRoundSmall: string;
311
+ paddingRoundMedium: string;
312
+ paddingRoundLarge: string;
313
+ iconMarginTiny: string;
314
+ iconMarginSmall: string;
315
+ iconMarginMedium: string;
316
+ iconMarginLarge: string;
317
+ iconSizeTiny: string;
318
+ iconSizeSmall: string;
319
+ iconSizeMedium: string;
320
+ iconSizeLarge: string;
321
+ rippleDuration: string;
322
+ }, any>;
323
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
324
+ fontSize: string;
325
+ fontSizeCircle: string;
326
+ fontWeightCircle: string;
327
+ railColor: string;
328
+ railHeight: string;
329
+ iconSizeCircle: string;
330
+ iconSizeLine: string;
331
+ iconColor: string;
332
+ iconColorInfo: string;
333
+ iconColorSuccess: string;
334
+ iconColorWarning: string;
335
+ iconColorError: string;
336
+ textColorCircle: string;
337
+ textColorLineInner: string;
338
+ textColorLineOuter: string;
339
+ fillColor: string;
340
+ fillColorInfo: string;
341
+ fillColorSuccess: string;
342
+ fillColorWarning: string;
343
+ fillColorError: string;
344
+ lineBgProcessing: string;
345
+ }, any>;
346
+ }>>;
347
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
348
+ fontSize: string;
349
+ lineHeight: string;
350
+ borderRadius: string;
351
+ draggerColor: string;
352
+ draggerBorder: string;
353
+ draggerBorderHover: string;
354
+ itemColorHover: string;
355
+ itemColorHoverError: string;
356
+ itemTextColor: string;
357
+ itemTextColorError: string;
358
+ itemTextColorSuccess: string;
359
+ itemIconColor: string;
360
+ itemDisabledOpacity: string;
361
+ itemBorderImageCardError: string;
362
+ itemBorderImageCard: string;
363
+ }, {
364
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
365
+ heightTiny: string;
366
+ heightSmall: string;
367
+ heightMedium: string;
368
+ heightLarge: string;
369
+ borderRadiusTiny: string;
370
+ borderRadiusSmall: string;
371
+ borderRadiusMedium: string;
372
+ borderRadiusLarge: string;
373
+ fontSizeTiny: string;
374
+ fontSizeSmall: string;
375
+ fontSizeMedium: string;
376
+ fontSizeLarge: string;
377
+ opacityDisabled: string;
378
+ colorOpacitySecondary: string;
379
+ colorOpacitySecondaryHover: string;
380
+ colorOpacitySecondaryPressed: string;
381
+ colorSecondary: string;
382
+ colorSecondaryHover: string;
383
+ colorSecondaryPressed: string;
384
+ colorTertiary: string;
385
+ colorTertiaryHover: string;
386
+ colorTertiaryPressed: string;
387
+ colorQuaternary: string;
388
+ colorQuaternaryHover: string;
389
+ colorQuaternaryPressed: string;
390
+ color: string;
391
+ colorHover: string;
392
+ colorPressed: string;
393
+ colorFocus: string;
394
+ colorDisabled: string;
395
+ textColor: string;
396
+ textColorTertiary: string;
397
+ textColorHover: string;
398
+ textColorPressed: string;
399
+ textColorFocus: string;
400
+ textColorDisabled: string;
401
+ textColorText: string;
402
+ textColorTextHover: string;
403
+ textColorTextPressed: string;
404
+ textColorTextFocus: string;
405
+ textColorTextDisabled: string;
406
+ textColorGhost: string;
407
+ textColorGhostHover: string;
408
+ textColorGhostPressed: string;
409
+ textColorGhostFocus: string;
410
+ textColorGhostDisabled: string;
411
+ border: string;
412
+ borderHover: string;
413
+ borderPressed: string;
414
+ borderFocus: string;
415
+ borderDisabled: string;
416
+ rippleColor: string;
417
+ colorPrimary: string;
418
+ colorHoverPrimary: string;
419
+ colorPressedPrimary: string;
420
+ colorFocusPrimary: string;
421
+ colorDisabledPrimary: string;
422
+ textColorPrimary: string;
423
+ textColorHoverPrimary: string;
424
+ textColorPressedPrimary: string;
425
+ textColorFocusPrimary: string;
426
+ textColorDisabledPrimary: string;
427
+ textColorTextPrimary: string;
428
+ textColorTextHoverPrimary: string;
429
+ textColorTextPressedPrimary: string;
430
+ textColorTextFocusPrimary: string;
431
+ textColorTextDisabledPrimary: string;
432
+ textColorGhostPrimary: string;
433
+ textColorGhostHoverPrimary: string;
434
+ textColorGhostPressedPrimary: string;
435
+ textColorGhostFocusPrimary: string;
436
+ textColorGhostDisabledPrimary: string;
437
+ borderPrimary: string;
438
+ borderHoverPrimary: string;
439
+ borderPressedPrimary: string;
440
+ borderFocusPrimary: string;
441
+ borderDisabledPrimary: string;
442
+ rippleColorPrimary: string;
443
+ colorInfo: string;
444
+ colorHoverInfo: string;
445
+ colorPressedInfo: string;
446
+ colorFocusInfo: string;
447
+ colorDisabledInfo: string;
448
+ textColorInfo: string;
449
+ textColorHoverInfo: string;
450
+ textColorPressedInfo: string;
451
+ textColorFocusInfo: string;
452
+ textColorDisabledInfo: string;
453
+ textColorTextInfo: string;
454
+ textColorTextHoverInfo: string;
455
+ textColorTextPressedInfo: string;
456
+ textColorTextFocusInfo: string;
457
+ textColorTextDisabledInfo: string;
458
+ textColorGhostInfo: string;
459
+ textColorGhostHoverInfo: string;
460
+ textColorGhostPressedInfo: string;
461
+ textColorGhostFocusInfo: string;
462
+ textColorGhostDisabledInfo: string;
463
+ borderInfo: string;
464
+ borderHoverInfo: string;
465
+ borderPressedInfo: string;
466
+ borderFocusInfo: string;
467
+ borderDisabledInfo: string;
468
+ rippleColorInfo: string;
469
+ colorSuccess: string;
470
+ colorHoverSuccess: string;
471
+ colorPressedSuccess: string;
472
+ colorFocusSuccess: string;
473
+ colorDisabledSuccess: string;
474
+ textColorSuccess: string;
475
+ textColorHoverSuccess: string;
476
+ textColorPressedSuccess: string;
477
+ textColorFocusSuccess: string;
478
+ textColorDisabledSuccess: string;
479
+ textColorTextSuccess: string;
480
+ textColorTextHoverSuccess: string;
481
+ textColorTextPressedSuccess: string;
482
+ textColorTextFocusSuccess: string;
483
+ textColorTextDisabledSuccess: string;
484
+ textColorGhostSuccess: string;
485
+ textColorGhostHoverSuccess: string;
486
+ textColorGhostPressedSuccess: string;
487
+ textColorGhostFocusSuccess: string;
488
+ textColorGhostDisabledSuccess: string;
489
+ borderSuccess: string;
490
+ borderHoverSuccess: string;
491
+ borderPressedSuccess: string;
492
+ borderFocusSuccess: string;
493
+ borderDisabledSuccess: string;
494
+ rippleColorSuccess: string;
495
+ colorWarning: string;
496
+ colorHoverWarning: string;
497
+ colorPressedWarning: string;
498
+ colorFocusWarning: string;
499
+ colorDisabledWarning: string;
500
+ textColorWarning: string;
501
+ textColorHoverWarning: string;
502
+ textColorPressedWarning: string;
503
+ textColorFocusWarning: string;
504
+ textColorDisabledWarning: string;
505
+ textColorTextWarning: string;
506
+ textColorTextHoverWarning: string;
507
+ textColorTextPressedWarning: string;
508
+ textColorTextFocusWarning: string;
509
+ textColorTextDisabledWarning: string;
510
+ textColorGhostWarning: string;
511
+ textColorGhostHoverWarning: string;
512
+ textColorGhostPressedWarning: string;
513
+ textColorGhostFocusWarning: string;
514
+ textColorGhostDisabledWarning: string;
515
+ borderWarning: string;
516
+ borderHoverWarning: string;
517
+ borderPressedWarning: string;
518
+ borderFocusWarning: string;
519
+ borderDisabledWarning: string;
520
+ rippleColorWarning: string;
521
+ colorError: string;
522
+ colorHoverError: string;
523
+ colorPressedError: string;
524
+ colorFocusError: string;
525
+ colorDisabledError: string;
526
+ textColorError: string;
527
+ textColorHoverError: string;
528
+ textColorPressedError: string;
529
+ textColorFocusError: string;
530
+ textColorDisabledError: string;
531
+ textColorTextError: string;
532
+ textColorTextHoverError: string;
533
+ textColorTextPressedError: string;
534
+ textColorTextFocusError: string;
535
+ textColorTextDisabledError: string;
536
+ textColorGhostError: string;
537
+ textColorGhostHoverError: string;
538
+ textColorGhostPressedError: string;
539
+ textColorGhostFocusError: string;
540
+ textColorGhostDisabledError: string;
541
+ borderError: string;
542
+ borderHoverError: string;
543
+ borderPressedError: string;
544
+ borderFocusError: string;
545
+ borderDisabledError: string;
546
+ rippleColorError: string;
547
+ waveOpacity: string;
548
+ fontWeight: string;
549
+ fontWeightStrong: string;
550
+ paddingTiny: string;
551
+ paddingSmall: string;
552
+ paddingMedium: string;
553
+ paddingLarge: string;
554
+ paddingRoundTiny: string;
555
+ paddingRoundSmall: string;
556
+ paddingRoundMedium: string;
557
+ paddingRoundLarge: string;
558
+ iconMarginTiny: string;
559
+ iconMarginSmall: string;
560
+ iconMarginMedium: string;
561
+ iconMarginLarge: string;
562
+ iconSizeTiny: string;
563
+ iconSizeSmall: string;
564
+ iconSizeMedium: string;
565
+ iconSizeLarge: string;
566
+ rippleDuration: string;
567
+ }, any>;
568
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
569
+ fontSize: string;
570
+ fontSizeCircle: string;
571
+ fontWeightCircle: string;
572
+ railColor: string;
573
+ railHeight: string;
574
+ iconSizeCircle: string;
575
+ iconSizeLine: string;
576
+ iconColor: string;
577
+ iconColorInfo: string;
578
+ iconColorSuccess: string;
579
+ iconColorWarning: string;
580
+ iconColorError: string;
581
+ textColorCircle: string;
582
+ textColorLineInner: string;
583
+ textColorLineOuter: string;
584
+ fillColor: string;
585
+ fillColorInfo: string;
586
+ fillColorSuccess: string;
587
+ fillColorWarning: string;
588
+ fillColorError: string;
589
+ lineBgProcessing: string;
590
+ }, any>;
591
+ }>>>;
592
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
593
+ fontSize: string;
594
+ lineHeight: string;
595
+ borderRadius: string;
596
+ draggerColor: string;
597
+ draggerBorder: string;
598
+ draggerBorderHover: string;
599
+ itemColorHover: string;
600
+ itemColorHoverError: string;
601
+ itemTextColor: string;
602
+ itemTextColorError: string;
603
+ itemTextColorSuccess: string;
604
+ itemIconColor: string;
605
+ itemDisabledOpacity: string;
606
+ itemBorderImageCardError: string;
607
+ itemBorderImageCard: string;
608
+ }, {
609
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
610
+ heightTiny: string;
611
+ heightSmall: string;
612
+ heightMedium: string;
613
+ heightLarge: string;
614
+ borderRadiusTiny: string;
615
+ borderRadiusSmall: string;
616
+ borderRadiusMedium: string;
617
+ borderRadiusLarge: string;
618
+ fontSizeTiny: string;
619
+ fontSizeSmall: string;
620
+ fontSizeMedium: string;
621
+ fontSizeLarge: string;
622
+ opacityDisabled: string;
623
+ colorOpacitySecondary: string;
624
+ colorOpacitySecondaryHover: string;
625
+ colorOpacitySecondaryPressed: string;
626
+ colorSecondary: string;
627
+ colorSecondaryHover: string;
628
+ colorSecondaryPressed: string;
629
+ colorTertiary: string;
630
+ colorTertiaryHover: string;
631
+ colorTertiaryPressed: string;
632
+ colorQuaternary: string;
633
+ colorQuaternaryHover: string;
634
+ colorQuaternaryPressed: string;
635
+ color: string;
636
+ colorHover: string;
637
+ colorPressed: string;
638
+ colorFocus: string;
639
+ colorDisabled: string;
640
+ textColor: string;
641
+ textColorTertiary: string;
642
+ textColorHover: string;
643
+ textColorPressed: string;
644
+ textColorFocus: string;
645
+ textColorDisabled: string;
646
+ textColorText: string;
647
+ textColorTextHover: string;
648
+ textColorTextPressed: string;
649
+ textColorTextFocus: string;
650
+ textColorTextDisabled: string;
651
+ textColorGhost: string;
652
+ textColorGhostHover: string;
653
+ textColorGhostPressed: string;
654
+ textColorGhostFocus: string;
655
+ textColorGhostDisabled: string;
656
+ border: string;
657
+ borderHover: string;
658
+ borderPressed: string;
659
+ borderFocus: string;
660
+ borderDisabled: string;
661
+ rippleColor: string;
662
+ colorPrimary: string;
663
+ colorHoverPrimary: string;
664
+ colorPressedPrimary: string;
665
+ colorFocusPrimary: string;
666
+ colorDisabledPrimary: string;
667
+ textColorPrimary: string;
668
+ textColorHoverPrimary: string;
669
+ textColorPressedPrimary: string;
670
+ textColorFocusPrimary: string;
671
+ textColorDisabledPrimary: string;
672
+ textColorTextPrimary: string;
673
+ textColorTextHoverPrimary: string;
674
+ textColorTextPressedPrimary: string;
675
+ textColorTextFocusPrimary: string;
676
+ textColorTextDisabledPrimary: string;
677
+ textColorGhostPrimary: string;
678
+ textColorGhostHoverPrimary: string;
679
+ textColorGhostPressedPrimary: string;
680
+ textColorGhostFocusPrimary: string;
681
+ textColorGhostDisabledPrimary: string;
682
+ borderPrimary: string;
683
+ borderHoverPrimary: string;
684
+ borderPressedPrimary: string;
685
+ borderFocusPrimary: string;
686
+ borderDisabledPrimary: string;
687
+ rippleColorPrimary: string;
688
+ colorInfo: string;
689
+ colorHoverInfo: string;
690
+ colorPressedInfo: string;
691
+ colorFocusInfo: string;
692
+ colorDisabledInfo: string;
693
+ textColorInfo: string;
694
+ textColorHoverInfo: string;
695
+ textColorPressedInfo: string;
696
+ textColorFocusInfo: string;
697
+ textColorDisabledInfo: string;
698
+ textColorTextInfo: string;
699
+ textColorTextHoverInfo: string;
700
+ textColorTextPressedInfo: string;
701
+ textColorTextFocusInfo: string;
702
+ textColorTextDisabledInfo: string;
703
+ textColorGhostInfo: string;
704
+ textColorGhostHoverInfo: string;
705
+ textColorGhostPressedInfo: string;
706
+ textColorGhostFocusInfo: string;
707
+ textColorGhostDisabledInfo: string;
708
+ borderInfo: string;
709
+ borderHoverInfo: string;
710
+ borderPressedInfo: string;
711
+ borderFocusInfo: string;
712
+ borderDisabledInfo: string;
713
+ rippleColorInfo: string;
714
+ colorSuccess: string;
715
+ colorHoverSuccess: string;
716
+ colorPressedSuccess: string;
717
+ colorFocusSuccess: string;
718
+ colorDisabledSuccess: string;
719
+ textColorSuccess: string;
720
+ textColorHoverSuccess: string;
721
+ textColorPressedSuccess: string;
722
+ textColorFocusSuccess: string;
723
+ textColorDisabledSuccess: string;
724
+ textColorTextSuccess: string;
725
+ textColorTextHoverSuccess: string;
726
+ textColorTextPressedSuccess: string;
727
+ textColorTextFocusSuccess: string;
728
+ textColorTextDisabledSuccess: string;
729
+ textColorGhostSuccess: string;
730
+ textColorGhostHoverSuccess: string;
731
+ textColorGhostPressedSuccess: string;
732
+ textColorGhostFocusSuccess: string;
733
+ textColorGhostDisabledSuccess: string;
734
+ borderSuccess: string;
735
+ borderHoverSuccess: string;
736
+ borderPressedSuccess: string;
737
+ borderFocusSuccess: string;
738
+ borderDisabledSuccess: string;
739
+ rippleColorSuccess: string;
740
+ colorWarning: string;
741
+ colorHoverWarning: string;
742
+ colorPressedWarning: string;
743
+ colorFocusWarning: string;
744
+ colorDisabledWarning: string;
745
+ textColorWarning: string;
746
+ textColorHoverWarning: string;
747
+ textColorPressedWarning: string;
748
+ textColorFocusWarning: string;
749
+ textColorDisabledWarning: string;
750
+ textColorTextWarning: string;
751
+ textColorTextHoverWarning: string;
752
+ textColorTextPressedWarning: string;
753
+ textColorTextFocusWarning: string;
754
+ textColorTextDisabledWarning: string;
755
+ textColorGhostWarning: string;
756
+ textColorGhostHoverWarning: string;
757
+ textColorGhostPressedWarning: string;
758
+ textColorGhostFocusWarning: string;
759
+ textColorGhostDisabledWarning: string;
760
+ borderWarning: string;
761
+ borderHoverWarning: string;
762
+ borderPressedWarning: string;
763
+ borderFocusWarning: string;
764
+ borderDisabledWarning: string;
765
+ rippleColorWarning: string;
766
+ colorError: string;
767
+ colorHoverError: string;
768
+ colorPressedError: string;
769
+ colorFocusError: string;
770
+ colorDisabledError: string;
771
+ textColorError: string;
772
+ textColorHoverError: string;
773
+ textColorPressedError: string;
774
+ textColorFocusError: string;
775
+ textColorDisabledError: string;
776
+ textColorTextError: string;
777
+ textColorTextHoverError: string;
778
+ textColorTextPressedError: string;
779
+ textColorTextFocusError: string;
780
+ textColorTextDisabledError: string;
781
+ textColorGhostError: string;
782
+ textColorGhostHoverError: string;
783
+ textColorGhostPressedError: string;
784
+ textColorGhostFocusError: string;
785
+ textColorGhostDisabledError: string;
786
+ borderError: string;
787
+ borderHoverError: string;
788
+ borderPressedError: string;
789
+ borderFocusError: string;
790
+ borderDisabledError: string;
791
+ rippleColorError: string;
792
+ waveOpacity: string;
793
+ fontWeight: string;
794
+ fontWeightStrong: string;
795
+ paddingTiny: string;
796
+ paddingSmall: string;
797
+ paddingMedium: string;
798
+ paddingLarge: string;
799
+ paddingRoundTiny: string;
800
+ paddingRoundSmall: string;
801
+ paddingRoundMedium: string;
802
+ paddingRoundLarge: string;
803
+ iconMarginTiny: string;
804
+ iconMarginSmall: string;
805
+ iconMarginMedium: string;
806
+ iconMarginLarge: string;
807
+ iconSizeTiny: string;
808
+ iconSizeSmall: string;
809
+ iconSizeMedium: string;
810
+ iconSizeLarge: string;
811
+ rippleDuration: string;
812
+ }, any>;
813
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
814
+ fontSize: string;
815
+ fontSizeCircle: string;
816
+ fontWeightCircle: string;
817
+ railColor: string;
818
+ railHeight: string;
819
+ iconSizeCircle: string;
820
+ iconSizeLine: string;
821
+ iconColor: string;
822
+ iconColorInfo: string;
823
+ iconColorSuccess: string;
824
+ iconColorWarning: string;
825
+ iconColorError: string;
826
+ textColorCircle: string;
827
+ textColorLineInner: string;
828
+ textColorLineOuter: string;
829
+ fillColor: string;
830
+ fillColorInfo: string;
831
+ fillColorSuccess: string;
832
+ fillColorWarning: string;
833
+ fillColorError: string;
834
+ lineBgProcessing: string;
835
+ }, any>;
836
+ }>>>;
837
+ }>> & Readonly<{}>, {
838
+ openOpenFileDialog: () => void;
839
+ submit: (fileId?: string) => void;
840
+ clear: () => void;
841
+ mergedClsPrefix: import('vue').Ref<string, string>;
842
+ draggerInsideRef: {
843
+ value: boolean;
844
+ };
845
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
846
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
847
+ mergedTheme: import('vue').ComputedRef<{
848
+ common: import('naive-ui').ThemeCommonVars;
849
+ self: {
850
+ fontSize: string;
851
+ lineHeight: string;
852
+ borderRadius: string;
853
+ draggerColor: string;
854
+ draggerBorder: string;
855
+ draggerBorderHover: string;
856
+ itemColorHover: string;
857
+ itemColorHoverError: string;
858
+ itemTextColor: string;
859
+ itemTextColorError: string;
860
+ itemTextColorSuccess: string;
861
+ itemIconColor: string;
862
+ itemDisabledOpacity: string;
863
+ itemBorderImageCardError: string;
864
+ itemBorderImageCard: string;
865
+ };
866
+ peers: {
867
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
868
+ heightTiny: string;
869
+ heightSmall: string;
870
+ heightMedium: string;
871
+ heightLarge: string;
872
+ borderRadiusTiny: string;
873
+ borderRadiusSmall: string;
874
+ borderRadiusMedium: string;
875
+ borderRadiusLarge: string;
876
+ fontSizeTiny: string;
877
+ fontSizeSmall: string;
878
+ fontSizeMedium: string;
879
+ fontSizeLarge: string;
880
+ opacityDisabled: string;
881
+ colorOpacitySecondary: string;
882
+ colorOpacitySecondaryHover: string;
883
+ colorOpacitySecondaryPressed: string;
884
+ colorSecondary: string;
885
+ colorSecondaryHover: string;
886
+ colorSecondaryPressed: string;
887
+ colorTertiary: string;
888
+ colorTertiaryHover: string;
889
+ colorTertiaryPressed: string;
890
+ colorQuaternary: string;
891
+ colorQuaternaryHover: string;
892
+ colorQuaternaryPressed: string;
893
+ color: string;
894
+ colorHover: string;
895
+ colorPressed: string;
896
+ colorFocus: string;
897
+ colorDisabled: string;
898
+ textColor: string;
899
+ textColorTertiary: string;
900
+ textColorHover: string;
901
+ textColorPressed: string;
902
+ textColorFocus: string;
903
+ textColorDisabled: string;
904
+ textColorText: string;
905
+ textColorTextHover: string;
906
+ textColorTextPressed: string;
907
+ textColorTextFocus: string;
908
+ textColorTextDisabled: string;
909
+ textColorGhost: string;
910
+ textColorGhostHover: string;
911
+ textColorGhostPressed: string;
912
+ textColorGhostFocus: string;
913
+ textColorGhostDisabled: string;
914
+ border: string;
915
+ borderHover: string;
916
+ borderPressed: string;
917
+ borderFocus: string;
918
+ borderDisabled: string;
919
+ rippleColor: string;
920
+ colorPrimary: string;
921
+ colorHoverPrimary: string;
922
+ colorPressedPrimary: string;
923
+ colorFocusPrimary: string;
924
+ colorDisabledPrimary: string;
925
+ textColorPrimary: string;
926
+ textColorHoverPrimary: string;
927
+ textColorPressedPrimary: string;
928
+ textColorFocusPrimary: string;
929
+ textColorDisabledPrimary: string;
930
+ textColorTextPrimary: string;
931
+ textColorTextHoverPrimary: string;
932
+ textColorTextPressedPrimary: string;
933
+ textColorTextFocusPrimary: string;
934
+ textColorTextDisabledPrimary: string;
935
+ textColorGhostPrimary: string;
936
+ textColorGhostHoverPrimary: string;
937
+ textColorGhostPressedPrimary: string;
938
+ textColorGhostFocusPrimary: string;
939
+ textColorGhostDisabledPrimary: string;
940
+ borderPrimary: string;
941
+ borderHoverPrimary: string;
942
+ borderPressedPrimary: string;
943
+ borderFocusPrimary: string;
944
+ borderDisabledPrimary: string;
945
+ rippleColorPrimary: string;
946
+ colorInfo: string;
947
+ colorHoverInfo: string;
948
+ colorPressedInfo: string;
949
+ colorFocusInfo: string;
950
+ colorDisabledInfo: string;
951
+ textColorInfo: string;
952
+ textColorHoverInfo: string;
953
+ textColorPressedInfo: string;
954
+ textColorFocusInfo: string;
955
+ textColorDisabledInfo: string;
956
+ textColorTextInfo: string;
957
+ textColorTextHoverInfo: string;
958
+ textColorTextPressedInfo: string;
959
+ textColorTextFocusInfo: string;
960
+ textColorTextDisabledInfo: string;
961
+ textColorGhostInfo: string;
962
+ textColorGhostHoverInfo: string;
963
+ textColorGhostPressedInfo: string;
964
+ textColorGhostFocusInfo: string;
965
+ textColorGhostDisabledInfo: string;
966
+ borderInfo: string;
967
+ borderHoverInfo: string;
968
+ borderPressedInfo: string;
969
+ borderFocusInfo: string;
970
+ borderDisabledInfo: string;
971
+ rippleColorInfo: string;
972
+ colorSuccess: string;
973
+ colorHoverSuccess: string;
974
+ colorPressedSuccess: string;
975
+ colorFocusSuccess: string;
976
+ colorDisabledSuccess: string;
977
+ textColorSuccess: string;
978
+ textColorHoverSuccess: string;
979
+ textColorPressedSuccess: string;
980
+ textColorFocusSuccess: string;
981
+ textColorDisabledSuccess: string;
982
+ textColorTextSuccess: string;
983
+ textColorTextHoverSuccess: string;
984
+ textColorTextPressedSuccess: string;
985
+ textColorTextFocusSuccess: string;
986
+ textColorTextDisabledSuccess: string;
987
+ textColorGhostSuccess: string;
988
+ textColorGhostHoverSuccess: string;
989
+ textColorGhostPressedSuccess: string;
990
+ textColorGhostFocusSuccess: string;
991
+ textColorGhostDisabledSuccess: string;
992
+ borderSuccess: string;
993
+ borderHoverSuccess: string;
994
+ borderPressedSuccess: string;
995
+ borderFocusSuccess: string;
996
+ borderDisabledSuccess: string;
997
+ rippleColorSuccess: string;
998
+ colorWarning: string;
999
+ colorHoverWarning: string;
1000
+ colorPressedWarning: string;
1001
+ colorFocusWarning: string;
1002
+ colorDisabledWarning: string;
1003
+ textColorWarning: string;
1004
+ textColorHoverWarning: string;
1005
+ textColorPressedWarning: string;
1006
+ textColorFocusWarning: string;
1007
+ textColorDisabledWarning: string;
1008
+ textColorTextWarning: string;
1009
+ textColorTextHoverWarning: string;
1010
+ textColorTextPressedWarning: string;
1011
+ textColorTextFocusWarning: string;
1012
+ textColorTextDisabledWarning: string;
1013
+ textColorGhostWarning: string;
1014
+ textColorGhostHoverWarning: string;
1015
+ textColorGhostPressedWarning: string;
1016
+ textColorGhostFocusWarning: string;
1017
+ textColorGhostDisabledWarning: string;
1018
+ borderWarning: string;
1019
+ borderHoverWarning: string;
1020
+ borderPressedWarning: string;
1021
+ borderFocusWarning: string;
1022
+ borderDisabledWarning: string;
1023
+ rippleColorWarning: string;
1024
+ colorError: string;
1025
+ colorHoverError: string;
1026
+ colorPressedError: string;
1027
+ colorFocusError: string;
1028
+ colorDisabledError: string;
1029
+ textColorError: string;
1030
+ textColorHoverError: string;
1031
+ textColorPressedError: string;
1032
+ textColorFocusError: string;
1033
+ textColorDisabledError: string;
1034
+ textColorTextError: string;
1035
+ textColorTextHoverError: string;
1036
+ textColorTextPressedError: string;
1037
+ textColorTextFocusError: string;
1038
+ textColorTextDisabledError: string;
1039
+ textColorGhostError: string;
1040
+ textColorGhostHoverError: string;
1041
+ textColorGhostPressedError: string;
1042
+ textColorGhostFocusError: string;
1043
+ textColorGhostDisabledError: string;
1044
+ borderError: string;
1045
+ borderHoverError: string;
1046
+ borderPressedError: string;
1047
+ borderFocusError: string;
1048
+ borderDisabledError: string;
1049
+ rippleColorError: string;
1050
+ waveOpacity: string;
1051
+ fontWeight: string;
1052
+ fontWeightStrong: string;
1053
+ paddingTiny: string;
1054
+ paddingSmall: string;
1055
+ paddingMedium: string;
1056
+ paddingLarge: string;
1057
+ paddingRoundTiny: string;
1058
+ paddingRoundSmall: string;
1059
+ paddingRoundMedium: string;
1060
+ paddingRoundLarge: string;
1061
+ iconMarginTiny: string;
1062
+ iconMarginSmall: string;
1063
+ iconMarginMedium: string;
1064
+ iconMarginLarge: string;
1065
+ iconSizeTiny: string;
1066
+ iconSizeSmall: string;
1067
+ iconSizeMedium: string;
1068
+ iconSizeLarge: string;
1069
+ rippleDuration: string;
1070
+ }, any>;
1071
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1072
+ fontSize: string;
1073
+ fontSizeCircle: string;
1074
+ fontWeightCircle: string;
1075
+ railColor: string;
1076
+ railHeight: string;
1077
+ iconSizeCircle: string;
1078
+ iconSizeLine: string;
1079
+ iconColor: string;
1080
+ iconColorInfo: string;
1081
+ iconColorSuccess: string;
1082
+ iconColorWarning: string;
1083
+ iconColorError: string;
1084
+ textColorCircle: string;
1085
+ textColorLineInner: string;
1086
+ textColorLineOuter: string;
1087
+ fillColor: string;
1088
+ fillColorInfo: string;
1089
+ fillColorSuccess: string;
1090
+ fillColorWarning: string;
1091
+ fillColorError: string;
1092
+ lineBgProcessing: string;
1093
+ }, any>;
1094
+ };
1095
+ peerOverrides: {
1096
+ Button?: {
1097
+ peers?: {
1098
+ [x: string]: any;
1099
+ } | undefined;
1100
+ } | undefined;
1101
+ Progress?: {
1102
+ peers?: {
1103
+ [x: string]: any;
1104
+ } | undefined;
1105
+ } | undefined;
1106
+ };
1107
+ }>;
1108
+ dragOver: import('vue').Ref<boolean, boolean>;
1109
+ mergedMultiple: import('vue').ComputedRef<boolean>;
1110
+ cssVars: import('vue').ComputedRef<any> | undefined;
1111
+ themeClass: import('vue').Ref<string, string> | undefined;
1112
+ onRender: (() => void) | undefined;
1113
+ handleFileInputChange: (e: Event) => void;
1114
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1115
+ readonly disabled: boolean | undefined;
1116
+ readonly name: string;
1117
+ readonly multiple: boolean;
1118
+ readonly abstract: boolean;
1119
+ readonly showTrigger: boolean;
1120
+ readonly directory: boolean;
1121
+ readonly directoryDnd: boolean;
1122
+ readonly method: string;
1123
+ readonly showFileList: boolean;
1124
+ readonly withCredentials: boolean;
1125
+ readonly responseType: XMLHttpRequestResponseType;
1126
+ readonly defaultUpload: boolean;
1127
+ readonly defaultFileList: UploadFileInfo[];
1128
+ readonly showCancelButton: boolean;
1129
+ readonly showRemoveButton: boolean;
1130
+ readonly showDownloadButton: boolean;
1131
+ readonly showRetryButton: boolean;
1132
+ readonly showPreviewButton: boolean;
1133
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
1134
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
1135
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1136
+ P: {};
1137
+ B: {};
1138
+ D: {};
1139
+ C: {};
1140
+ M: {};
1141
+ Defaults: {};
1142
+ }, Readonly<globalThis.ExtractPropTypes<{
1143
+ readonly name: {
1144
+ readonly type: StringConstructor;
1145
+ readonly default: "file";
1146
+ };
1147
+ readonly accept: StringConstructor;
1148
+ readonly action: StringConstructor;
1149
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
1150
+ readonly directory: BooleanConstructor;
1151
+ readonly directoryDnd: {
1152
+ readonly type: BooleanConstructor;
1153
+ readonly default: undefined;
1154
+ };
1155
+ readonly method: {
1156
+ readonly type: StringConstructor;
1157
+ readonly default: "POST";
1158
+ };
1159
+ readonly multiple: BooleanConstructor;
1160
+ readonly showFileList: {
1161
+ readonly type: BooleanConstructor;
1162
+ readonly default: true;
1163
+ };
1164
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
1165
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
1166
+ readonly withCredentials: BooleanConstructor;
1167
+ readonly responseType: {
1168
+ readonly type: PropType<XMLHttpRequestResponseType>;
1169
+ readonly default: "";
1170
+ };
1171
+ readonly disabled: {
1172
+ readonly type: PropType<boolean | undefined>;
1173
+ readonly default: undefined;
1174
+ };
1175
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
1176
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
1177
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
1178
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
1179
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
1180
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
1181
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
1182
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
1183
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
1184
+ readonly defaultUpload: {
1185
+ readonly type: BooleanConstructor;
1186
+ readonly default: true;
1187
+ };
1188
+ readonly fileList: PropType<UploadFileInfo[]>;
1189
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1190
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1191
+ readonly fileListClass: StringConstructor;
1192
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
1193
+ readonly defaultFileList: {
1194
+ readonly type: PropType<UploadFileInfo[]>;
1195
+ readonly default: () => never[];
1196
+ };
1197
+ readonly showCancelButton: {
1198
+ readonly type: BooleanConstructor;
1199
+ readonly default: true;
1200
+ };
1201
+ readonly showRemoveButton: {
1202
+ readonly type: BooleanConstructor;
1203
+ readonly default: true;
1204
+ };
1205
+ readonly showDownloadButton: BooleanConstructor;
1206
+ readonly showRetryButton: {
1207
+ readonly type: BooleanConstructor;
1208
+ readonly default: true;
1209
+ };
1210
+ readonly showPreviewButton: {
1211
+ readonly type: BooleanConstructor;
1212
+ readonly default: true;
1213
+ };
1214
+ readonly listType: {
1215
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
1216
+ readonly default: "text";
1217
+ };
1218
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
1219
+ readonly shouldUseThumbnailUrl: {
1220
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
1221
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
1222
+ };
1223
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
1224
+ readonly abstract: BooleanConstructor;
1225
+ readonly max: NumberConstructor;
1226
+ readonly showTrigger: {
1227
+ readonly type: BooleanConstructor;
1228
+ readonly default: true;
1229
+ };
1230
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
1231
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
1232
+ readonly triggerClass: StringConstructor;
1233
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
1234
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
1235
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
1236
+ fontSize: string;
1237
+ lineHeight: string;
1238
+ borderRadius: string;
1239
+ draggerColor: string;
1240
+ draggerBorder: string;
1241
+ draggerBorderHover: string;
1242
+ itemColorHover: string;
1243
+ itemColorHoverError: string;
1244
+ itemTextColor: string;
1245
+ itemTextColorError: string;
1246
+ itemTextColorSuccess: string;
1247
+ itemIconColor: string;
1248
+ itemDisabledOpacity: string;
1249
+ itemBorderImageCardError: string;
1250
+ itemBorderImageCard: string;
1251
+ }, {
1252
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1253
+ heightTiny: string;
1254
+ heightSmall: string;
1255
+ heightMedium: string;
1256
+ heightLarge: string;
1257
+ borderRadiusTiny: string;
1258
+ borderRadiusSmall: string;
1259
+ borderRadiusMedium: string;
1260
+ borderRadiusLarge: string;
1261
+ fontSizeTiny: string;
1262
+ fontSizeSmall: string;
1263
+ fontSizeMedium: string;
1264
+ fontSizeLarge: string;
1265
+ opacityDisabled: string;
1266
+ colorOpacitySecondary: string;
1267
+ colorOpacitySecondaryHover: string;
1268
+ colorOpacitySecondaryPressed: string;
1269
+ colorSecondary: string;
1270
+ colorSecondaryHover: string;
1271
+ colorSecondaryPressed: string;
1272
+ colorTertiary: string;
1273
+ colorTertiaryHover: string;
1274
+ colorTertiaryPressed: string;
1275
+ colorQuaternary: string;
1276
+ colorQuaternaryHover: string;
1277
+ colorQuaternaryPressed: string;
1278
+ color: string;
1279
+ colorHover: string;
1280
+ colorPressed: string;
1281
+ colorFocus: string;
1282
+ colorDisabled: string;
1283
+ textColor: string;
1284
+ textColorTertiary: string;
1285
+ textColorHover: string;
1286
+ textColorPressed: string;
1287
+ textColorFocus: string;
1288
+ textColorDisabled: string;
1289
+ textColorText: string;
1290
+ textColorTextHover: string;
1291
+ textColorTextPressed: string;
1292
+ textColorTextFocus: string;
1293
+ textColorTextDisabled: string;
1294
+ textColorGhost: string;
1295
+ textColorGhostHover: string;
1296
+ textColorGhostPressed: string;
1297
+ textColorGhostFocus: string;
1298
+ textColorGhostDisabled: string;
1299
+ border: string;
1300
+ borderHover: string;
1301
+ borderPressed: string;
1302
+ borderFocus: string;
1303
+ borderDisabled: string;
1304
+ rippleColor: string;
1305
+ colorPrimary: string;
1306
+ colorHoverPrimary: string;
1307
+ colorPressedPrimary: string;
1308
+ colorFocusPrimary: string;
1309
+ colorDisabledPrimary: string;
1310
+ textColorPrimary: string;
1311
+ textColorHoverPrimary: string;
1312
+ textColorPressedPrimary: string;
1313
+ textColorFocusPrimary: string;
1314
+ textColorDisabledPrimary: string;
1315
+ textColorTextPrimary: string;
1316
+ textColorTextHoverPrimary: string;
1317
+ textColorTextPressedPrimary: string;
1318
+ textColorTextFocusPrimary: string;
1319
+ textColorTextDisabledPrimary: string;
1320
+ textColorGhostPrimary: string;
1321
+ textColorGhostHoverPrimary: string;
1322
+ textColorGhostPressedPrimary: string;
1323
+ textColorGhostFocusPrimary: string;
1324
+ textColorGhostDisabledPrimary: string;
1325
+ borderPrimary: string;
1326
+ borderHoverPrimary: string;
1327
+ borderPressedPrimary: string;
1328
+ borderFocusPrimary: string;
1329
+ borderDisabledPrimary: string;
1330
+ rippleColorPrimary: string;
1331
+ colorInfo: string;
1332
+ colorHoverInfo: string;
1333
+ colorPressedInfo: string;
1334
+ colorFocusInfo: string;
1335
+ colorDisabledInfo: string;
1336
+ textColorInfo: string;
1337
+ textColorHoverInfo: string;
1338
+ textColorPressedInfo: string;
1339
+ textColorFocusInfo: string;
1340
+ textColorDisabledInfo: string;
1341
+ textColorTextInfo: string;
1342
+ textColorTextHoverInfo: string;
1343
+ textColorTextPressedInfo: string;
1344
+ textColorTextFocusInfo: string;
1345
+ textColorTextDisabledInfo: string;
1346
+ textColorGhostInfo: string;
1347
+ textColorGhostHoverInfo: string;
1348
+ textColorGhostPressedInfo: string;
1349
+ textColorGhostFocusInfo: string;
1350
+ textColorGhostDisabledInfo: string;
1351
+ borderInfo: string;
1352
+ borderHoverInfo: string;
1353
+ borderPressedInfo: string;
1354
+ borderFocusInfo: string;
1355
+ borderDisabledInfo: string;
1356
+ rippleColorInfo: string;
1357
+ colorSuccess: string;
1358
+ colorHoverSuccess: string;
1359
+ colorPressedSuccess: string;
1360
+ colorFocusSuccess: string;
1361
+ colorDisabledSuccess: string;
1362
+ textColorSuccess: string;
1363
+ textColorHoverSuccess: string;
1364
+ textColorPressedSuccess: string;
1365
+ textColorFocusSuccess: string;
1366
+ textColorDisabledSuccess: string;
1367
+ textColorTextSuccess: string;
1368
+ textColorTextHoverSuccess: string;
1369
+ textColorTextPressedSuccess: string;
1370
+ textColorTextFocusSuccess: string;
1371
+ textColorTextDisabledSuccess: string;
1372
+ textColorGhostSuccess: string;
1373
+ textColorGhostHoverSuccess: string;
1374
+ textColorGhostPressedSuccess: string;
1375
+ textColorGhostFocusSuccess: string;
1376
+ textColorGhostDisabledSuccess: string;
1377
+ borderSuccess: string;
1378
+ borderHoverSuccess: string;
1379
+ borderPressedSuccess: string;
1380
+ borderFocusSuccess: string;
1381
+ borderDisabledSuccess: string;
1382
+ rippleColorSuccess: string;
1383
+ colorWarning: string;
1384
+ colorHoverWarning: string;
1385
+ colorPressedWarning: string;
1386
+ colorFocusWarning: string;
1387
+ colorDisabledWarning: string;
1388
+ textColorWarning: string;
1389
+ textColorHoverWarning: string;
1390
+ textColorPressedWarning: string;
1391
+ textColorFocusWarning: string;
1392
+ textColorDisabledWarning: string;
1393
+ textColorTextWarning: string;
1394
+ textColorTextHoverWarning: string;
1395
+ textColorTextPressedWarning: string;
1396
+ textColorTextFocusWarning: string;
1397
+ textColorTextDisabledWarning: string;
1398
+ textColorGhostWarning: string;
1399
+ textColorGhostHoverWarning: string;
1400
+ textColorGhostPressedWarning: string;
1401
+ textColorGhostFocusWarning: string;
1402
+ textColorGhostDisabledWarning: string;
1403
+ borderWarning: string;
1404
+ borderHoverWarning: string;
1405
+ borderPressedWarning: string;
1406
+ borderFocusWarning: string;
1407
+ borderDisabledWarning: string;
1408
+ rippleColorWarning: string;
1409
+ colorError: string;
1410
+ colorHoverError: string;
1411
+ colorPressedError: string;
1412
+ colorFocusError: string;
1413
+ colorDisabledError: string;
1414
+ textColorError: string;
1415
+ textColorHoverError: string;
1416
+ textColorPressedError: string;
1417
+ textColorFocusError: string;
1418
+ textColorDisabledError: string;
1419
+ textColorTextError: string;
1420
+ textColorTextHoverError: string;
1421
+ textColorTextPressedError: string;
1422
+ textColorTextFocusError: string;
1423
+ textColorTextDisabledError: string;
1424
+ textColorGhostError: string;
1425
+ textColorGhostHoverError: string;
1426
+ textColorGhostPressedError: string;
1427
+ textColorGhostFocusError: string;
1428
+ textColorGhostDisabledError: string;
1429
+ borderError: string;
1430
+ borderHoverError: string;
1431
+ borderPressedError: string;
1432
+ borderFocusError: string;
1433
+ borderDisabledError: string;
1434
+ rippleColorError: string;
1435
+ waveOpacity: string;
1436
+ fontWeight: string;
1437
+ fontWeightStrong: string;
1438
+ paddingTiny: string;
1439
+ paddingSmall: string;
1440
+ paddingMedium: string;
1441
+ paddingLarge: string;
1442
+ paddingRoundTiny: string;
1443
+ paddingRoundSmall: string;
1444
+ paddingRoundMedium: string;
1445
+ paddingRoundLarge: string;
1446
+ iconMarginTiny: string;
1447
+ iconMarginSmall: string;
1448
+ iconMarginMedium: string;
1449
+ iconMarginLarge: string;
1450
+ iconSizeTiny: string;
1451
+ iconSizeSmall: string;
1452
+ iconSizeMedium: string;
1453
+ iconSizeLarge: string;
1454
+ rippleDuration: string;
1455
+ }, any>;
1456
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1457
+ fontSize: string;
1458
+ fontSizeCircle: string;
1459
+ fontWeightCircle: string;
1460
+ railColor: string;
1461
+ railHeight: string;
1462
+ iconSizeCircle: string;
1463
+ iconSizeLine: string;
1464
+ iconColor: string;
1465
+ iconColorInfo: string;
1466
+ iconColorSuccess: string;
1467
+ iconColorWarning: string;
1468
+ iconColorError: string;
1469
+ textColorCircle: string;
1470
+ textColorLineInner: string;
1471
+ textColorLineOuter: string;
1472
+ fillColor: string;
1473
+ fillColorInfo: string;
1474
+ fillColorSuccess: string;
1475
+ fillColorWarning: string;
1476
+ fillColorError: string;
1477
+ lineBgProcessing: string;
1478
+ }, any>;
1479
+ }>>;
1480
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
1481
+ fontSize: string;
1482
+ lineHeight: string;
1483
+ borderRadius: string;
1484
+ draggerColor: string;
1485
+ draggerBorder: string;
1486
+ draggerBorderHover: string;
1487
+ itemColorHover: string;
1488
+ itemColorHoverError: string;
1489
+ itemTextColor: string;
1490
+ itemTextColorError: string;
1491
+ itemTextColorSuccess: string;
1492
+ itemIconColor: string;
1493
+ itemDisabledOpacity: string;
1494
+ itemBorderImageCardError: string;
1495
+ itemBorderImageCard: string;
1496
+ }, {
1497
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1498
+ heightTiny: string;
1499
+ heightSmall: string;
1500
+ heightMedium: string;
1501
+ heightLarge: string;
1502
+ borderRadiusTiny: string;
1503
+ borderRadiusSmall: string;
1504
+ borderRadiusMedium: string;
1505
+ borderRadiusLarge: string;
1506
+ fontSizeTiny: string;
1507
+ fontSizeSmall: string;
1508
+ fontSizeMedium: string;
1509
+ fontSizeLarge: string;
1510
+ opacityDisabled: string;
1511
+ colorOpacitySecondary: string;
1512
+ colorOpacitySecondaryHover: string;
1513
+ colorOpacitySecondaryPressed: string;
1514
+ colorSecondary: string;
1515
+ colorSecondaryHover: string;
1516
+ colorSecondaryPressed: string;
1517
+ colorTertiary: string;
1518
+ colorTertiaryHover: string;
1519
+ colorTertiaryPressed: string;
1520
+ colorQuaternary: string;
1521
+ colorQuaternaryHover: string;
1522
+ colorQuaternaryPressed: string;
1523
+ color: string;
1524
+ colorHover: string;
1525
+ colorPressed: string;
1526
+ colorFocus: string;
1527
+ colorDisabled: string;
1528
+ textColor: string;
1529
+ textColorTertiary: string;
1530
+ textColorHover: string;
1531
+ textColorPressed: string;
1532
+ textColorFocus: string;
1533
+ textColorDisabled: string;
1534
+ textColorText: string;
1535
+ textColorTextHover: string;
1536
+ textColorTextPressed: string;
1537
+ textColorTextFocus: string;
1538
+ textColorTextDisabled: string;
1539
+ textColorGhost: string;
1540
+ textColorGhostHover: string;
1541
+ textColorGhostPressed: string;
1542
+ textColorGhostFocus: string;
1543
+ textColorGhostDisabled: string;
1544
+ border: string;
1545
+ borderHover: string;
1546
+ borderPressed: string;
1547
+ borderFocus: string;
1548
+ borderDisabled: string;
1549
+ rippleColor: string;
1550
+ colorPrimary: string;
1551
+ colorHoverPrimary: string;
1552
+ colorPressedPrimary: string;
1553
+ colorFocusPrimary: string;
1554
+ colorDisabledPrimary: string;
1555
+ textColorPrimary: string;
1556
+ textColorHoverPrimary: string;
1557
+ textColorPressedPrimary: string;
1558
+ textColorFocusPrimary: string;
1559
+ textColorDisabledPrimary: string;
1560
+ textColorTextPrimary: string;
1561
+ textColorTextHoverPrimary: string;
1562
+ textColorTextPressedPrimary: string;
1563
+ textColorTextFocusPrimary: string;
1564
+ textColorTextDisabledPrimary: string;
1565
+ textColorGhostPrimary: string;
1566
+ textColorGhostHoverPrimary: string;
1567
+ textColorGhostPressedPrimary: string;
1568
+ textColorGhostFocusPrimary: string;
1569
+ textColorGhostDisabledPrimary: string;
1570
+ borderPrimary: string;
1571
+ borderHoverPrimary: string;
1572
+ borderPressedPrimary: string;
1573
+ borderFocusPrimary: string;
1574
+ borderDisabledPrimary: string;
1575
+ rippleColorPrimary: string;
1576
+ colorInfo: string;
1577
+ colorHoverInfo: string;
1578
+ colorPressedInfo: string;
1579
+ colorFocusInfo: string;
1580
+ colorDisabledInfo: string;
1581
+ textColorInfo: string;
1582
+ textColorHoverInfo: string;
1583
+ textColorPressedInfo: string;
1584
+ textColorFocusInfo: string;
1585
+ textColorDisabledInfo: string;
1586
+ textColorTextInfo: string;
1587
+ textColorTextHoverInfo: string;
1588
+ textColorTextPressedInfo: string;
1589
+ textColorTextFocusInfo: string;
1590
+ textColorTextDisabledInfo: string;
1591
+ textColorGhostInfo: string;
1592
+ textColorGhostHoverInfo: string;
1593
+ textColorGhostPressedInfo: string;
1594
+ textColorGhostFocusInfo: string;
1595
+ textColorGhostDisabledInfo: string;
1596
+ borderInfo: string;
1597
+ borderHoverInfo: string;
1598
+ borderPressedInfo: string;
1599
+ borderFocusInfo: string;
1600
+ borderDisabledInfo: string;
1601
+ rippleColorInfo: string;
1602
+ colorSuccess: string;
1603
+ colorHoverSuccess: string;
1604
+ colorPressedSuccess: string;
1605
+ colorFocusSuccess: string;
1606
+ colorDisabledSuccess: string;
1607
+ textColorSuccess: string;
1608
+ textColorHoverSuccess: string;
1609
+ textColorPressedSuccess: string;
1610
+ textColorFocusSuccess: string;
1611
+ textColorDisabledSuccess: string;
1612
+ textColorTextSuccess: string;
1613
+ textColorTextHoverSuccess: string;
1614
+ textColorTextPressedSuccess: string;
1615
+ textColorTextFocusSuccess: string;
1616
+ textColorTextDisabledSuccess: string;
1617
+ textColorGhostSuccess: string;
1618
+ textColorGhostHoverSuccess: string;
1619
+ textColorGhostPressedSuccess: string;
1620
+ textColorGhostFocusSuccess: string;
1621
+ textColorGhostDisabledSuccess: string;
1622
+ borderSuccess: string;
1623
+ borderHoverSuccess: string;
1624
+ borderPressedSuccess: string;
1625
+ borderFocusSuccess: string;
1626
+ borderDisabledSuccess: string;
1627
+ rippleColorSuccess: string;
1628
+ colorWarning: string;
1629
+ colorHoverWarning: string;
1630
+ colorPressedWarning: string;
1631
+ colorFocusWarning: string;
1632
+ colorDisabledWarning: string;
1633
+ textColorWarning: string;
1634
+ textColorHoverWarning: string;
1635
+ textColorPressedWarning: string;
1636
+ textColorFocusWarning: string;
1637
+ textColorDisabledWarning: string;
1638
+ textColorTextWarning: string;
1639
+ textColorTextHoverWarning: string;
1640
+ textColorTextPressedWarning: string;
1641
+ textColorTextFocusWarning: string;
1642
+ textColorTextDisabledWarning: string;
1643
+ textColorGhostWarning: string;
1644
+ textColorGhostHoverWarning: string;
1645
+ textColorGhostPressedWarning: string;
1646
+ textColorGhostFocusWarning: string;
1647
+ textColorGhostDisabledWarning: string;
1648
+ borderWarning: string;
1649
+ borderHoverWarning: string;
1650
+ borderPressedWarning: string;
1651
+ borderFocusWarning: string;
1652
+ borderDisabledWarning: string;
1653
+ rippleColorWarning: string;
1654
+ colorError: string;
1655
+ colorHoverError: string;
1656
+ colorPressedError: string;
1657
+ colorFocusError: string;
1658
+ colorDisabledError: string;
1659
+ textColorError: string;
1660
+ textColorHoverError: string;
1661
+ textColorPressedError: string;
1662
+ textColorFocusError: string;
1663
+ textColorDisabledError: string;
1664
+ textColorTextError: string;
1665
+ textColorTextHoverError: string;
1666
+ textColorTextPressedError: string;
1667
+ textColorTextFocusError: string;
1668
+ textColorTextDisabledError: string;
1669
+ textColorGhostError: string;
1670
+ textColorGhostHoverError: string;
1671
+ textColorGhostPressedError: string;
1672
+ textColorGhostFocusError: string;
1673
+ textColorGhostDisabledError: string;
1674
+ borderError: string;
1675
+ borderHoverError: string;
1676
+ borderPressedError: string;
1677
+ borderFocusError: string;
1678
+ borderDisabledError: string;
1679
+ rippleColorError: string;
1680
+ waveOpacity: string;
1681
+ fontWeight: string;
1682
+ fontWeightStrong: string;
1683
+ paddingTiny: string;
1684
+ paddingSmall: string;
1685
+ paddingMedium: string;
1686
+ paddingLarge: string;
1687
+ paddingRoundTiny: string;
1688
+ paddingRoundSmall: string;
1689
+ paddingRoundMedium: string;
1690
+ paddingRoundLarge: string;
1691
+ iconMarginTiny: string;
1692
+ iconMarginSmall: string;
1693
+ iconMarginMedium: string;
1694
+ iconMarginLarge: string;
1695
+ iconSizeTiny: string;
1696
+ iconSizeSmall: string;
1697
+ iconSizeMedium: string;
1698
+ iconSizeLarge: string;
1699
+ rippleDuration: string;
1700
+ }, any>;
1701
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1702
+ fontSize: string;
1703
+ fontSizeCircle: string;
1704
+ fontWeightCircle: string;
1705
+ railColor: string;
1706
+ railHeight: string;
1707
+ iconSizeCircle: string;
1708
+ iconSizeLine: string;
1709
+ iconColor: string;
1710
+ iconColorInfo: string;
1711
+ iconColorSuccess: string;
1712
+ iconColorWarning: string;
1713
+ iconColorError: string;
1714
+ textColorCircle: string;
1715
+ textColorLineInner: string;
1716
+ textColorLineOuter: string;
1717
+ fillColor: string;
1718
+ fillColorInfo: string;
1719
+ fillColorSuccess: string;
1720
+ fillColorWarning: string;
1721
+ fillColorError: string;
1722
+ lineBgProcessing: string;
1723
+ }, any>;
1724
+ }>>>;
1725
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
1726
+ fontSize: string;
1727
+ lineHeight: string;
1728
+ borderRadius: string;
1729
+ draggerColor: string;
1730
+ draggerBorder: string;
1731
+ draggerBorderHover: string;
1732
+ itemColorHover: string;
1733
+ itemColorHoverError: string;
1734
+ itemTextColor: string;
1735
+ itemTextColorError: string;
1736
+ itemTextColorSuccess: string;
1737
+ itemIconColor: string;
1738
+ itemDisabledOpacity: string;
1739
+ itemBorderImageCardError: string;
1740
+ itemBorderImageCard: string;
1741
+ }, {
1742
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1743
+ heightTiny: string;
1744
+ heightSmall: string;
1745
+ heightMedium: string;
1746
+ heightLarge: string;
1747
+ borderRadiusTiny: string;
1748
+ borderRadiusSmall: string;
1749
+ borderRadiusMedium: string;
1750
+ borderRadiusLarge: string;
1751
+ fontSizeTiny: string;
1752
+ fontSizeSmall: string;
1753
+ fontSizeMedium: string;
1754
+ fontSizeLarge: string;
1755
+ opacityDisabled: string;
1756
+ colorOpacitySecondary: string;
1757
+ colorOpacitySecondaryHover: string;
1758
+ colorOpacitySecondaryPressed: string;
1759
+ colorSecondary: string;
1760
+ colorSecondaryHover: string;
1761
+ colorSecondaryPressed: string;
1762
+ colorTertiary: string;
1763
+ colorTertiaryHover: string;
1764
+ colorTertiaryPressed: string;
1765
+ colorQuaternary: string;
1766
+ colorQuaternaryHover: string;
1767
+ colorQuaternaryPressed: string;
1768
+ color: string;
1769
+ colorHover: string;
1770
+ colorPressed: string;
1771
+ colorFocus: string;
1772
+ colorDisabled: string;
1773
+ textColor: string;
1774
+ textColorTertiary: string;
1775
+ textColorHover: string;
1776
+ textColorPressed: string;
1777
+ textColorFocus: string;
1778
+ textColorDisabled: string;
1779
+ textColorText: string;
1780
+ textColorTextHover: string;
1781
+ textColorTextPressed: string;
1782
+ textColorTextFocus: string;
1783
+ textColorTextDisabled: string;
1784
+ textColorGhost: string;
1785
+ textColorGhostHover: string;
1786
+ textColorGhostPressed: string;
1787
+ textColorGhostFocus: string;
1788
+ textColorGhostDisabled: string;
1789
+ border: string;
1790
+ borderHover: string;
1791
+ borderPressed: string;
1792
+ borderFocus: string;
1793
+ borderDisabled: string;
1794
+ rippleColor: string;
1795
+ colorPrimary: string;
1796
+ colorHoverPrimary: string;
1797
+ colorPressedPrimary: string;
1798
+ colorFocusPrimary: string;
1799
+ colorDisabledPrimary: string;
1800
+ textColorPrimary: string;
1801
+ textColorHoverPrimary: string;
1802
+ textColorPressedPrimary: string;
1803
+ textColorFocusPrimary: string;
1804
+ textColorDisabledPrimary: string;
1805
+ textColorTextPrimary: string;
1806
+ textColorTextHoverPrimary: string;
1807
+ textColorTextPressedPrimary: string;
1808
+ textColorTextFocusPrimary: string;
1809
+ textColorTextDisabledPrimary: string;
1810
+ textColorGhostPrimary: string;
1811
+ textColorGhostHoverPrimary: string;
1812
+ textColorGhostPressedPrimary: string;
1813
+ textColorGhostFocusPrimary: string;
1814
+ textColorGhostDisabledPrimary: string;
1815
+ borderPrimary: string;
1816
+ borderHoverPrimary: string;
1817
+ borderPressedPrimary: string;
1818
+ borderFocusPrimary: string;
1819
+ borderDisabledPrimary: string;
1820
+ rippleColorPrimary: string;
1821
+ colorInfo: string;
1822
+ colorHoverInfo: string;
1823
+ colorPressedInfo: string;
1824
+ colorFocusInfo: string;
1825
+ colorDisabledInfo: string;
1826
+ textColorInfo: string;
1827
+ textColorHoverInfo: string;
1828
+ textColorPressedInfo: string;
1829
+ textColorFocusInfo: string;
1830
+ textColorDisabledInfo: string;
1831
+ textColorTextInfo: string;
1832
+ textColorTextHoverInfo: string;
1833
+ textColorTextPressedInfo: string;
1834
+ textColorTextFocusInfo: string;
1835
+ textColorTextDisabledInfo: string;
1836
+ textColorGhostInfo: string;
1837
+ textColorGhostHoverInfo: string;
1838
+ textColorGhostPressedInfo: string;
1839
+ textColorGhostFocusInfo: string;
1840
+ textColorGhostDisabledInfo: string;
1841
+ borderInfo: string;
1842
+ borderHoverInfo: string;
1843
+ borderPressedInfo: string;
1844
+ borderFocusInfo: string;
1845
+ borderDisabledInfo: string;
1846
+ rippleColorInfo: string;
1847
+ colorSuccess: string;
1848
+ colorHoverSuccess: string;
1849
+ colorPressedSuccess: string;
1850
+ colorFocusSuccess: string;
1851
+ colorDisabledSuccess: string;
1852
+ textColorSuccess: string;
1853
+ textColorHoverSuccess: string;
1854
+ textColorPressedSuccess: string;
1855
+ textColorFocusSuccess: string;
1856
+ textColorDisabledSuccess: string;
1857
+ textColorTextSuccess: string;
1858
+ textColorTextHoverSuccess: string;
1859
+ textColorTextPressedSuccess: string;
1860
+ textColorTextFocusSuccess: string;
1861
+ textColorTextDisabledSuccess: string;
1862
+ textColorGhostSuccess: string;
1863
+ textColorGhostHoverSuccess: string;
1864
+ textColorGhostPressedSuccess: string;
1865
+ textColorGhostFocusSuccess: string;
1866
+ textColorGhostDisabledSuccess: string;
1867
+ borderSuccess: string;
1868
+ borderHoverSuccess: string;
1869
+ borderPressedSuccess: string;
1870
+ borderFocusSuccess: string;
1871
+ borderDisabledSuccess: string;
1872
+ rippleColorSuccess: string;
1873
+ colorWarning: string;
1874
+ colorHoverWarning: string;
1875
+ colorPressedWarning: string;
1876
+ colorFocusWarning: string;
1877
+ colorDisabledWarning: string;
1878
+ textColorWarning: string;
1879
+ textColorHoverWarning: string;
1880
+ textColorPressedWarning: string;
1881
+ textColorFocusWarning: string;
1882
+ textColorDisabledWarning: string;
1883
+ textColorTextWarning: string;
1884
+ textColorTextHoverWarning: string;
1885
+ textColorTextPressedWarning: string;
1886
+ textColorTextFocusWarning: string;
1887
+ textColorTextDisabledWarning: string;
1888
+ textColorGhostWarning: string;
1889
+ textColorGhostHoverWarning: string;
1890
+ textColorGhostPressedWarning: string;
1891
+ textColorGhostFocusWarning: string;
1892
+ textColorGhostDisabledWarning: string;
1893
+ borderWarning: string;
1894
+ borderHoverWarning: string;
1895
+ borderPressedWarning: string;
1896
+ borderFocusWarning: string;
1897
+ borderDisabledWarning: string;
1898
+ rippleColorWarning: string;
1899
+ colorError: string;
1900
+ colorHoverError: string;
1901
+ colorPressedError: string;
1902
+ colorFocusError: string;
1903
+ colorDisabledError: string;
1904
+ textColorError: string;
1905
+ textColorHoverError: string;
1906
+ textColorPressedError: string;
1907
+ textColorFocusError: string;
1908
+ textColorDisabledError: string;
1909
+ textColorTextError: string;
1910
+ textColorTextHoverError: string;
1911
+ textColorTextPressedError: string;
1912
+ textColorTextFocusError: string;
1913
+ textColorTextDisabledError: string;
1914
+ textColorGhostError: string;
1915
+ textColorGhostHoverError: string;
1916
+ textColorGhostPressedError: string;
1917
+ textColorGhostFocusError: string;
1918
+ textColorGhostDisabledError: string;
1919
+ borderError: string;
1920
+ borderHoverError: string;
1921
+ borderPressedError: string;
1922
+ borderFocusError: string;
1923
+ borderDisabledError: string;
1924
+ rippleColorError: string;
1925
+ waveOpacity: string;
1926
+ fontWeight: string;
1927
+ fontWeightStrong: string;
1928
+ paddingTiny: string;
1929
+ paddingSmall: string;
1930
+ paddingMedium: string;
1931
+ paddingLarge: string;
1932
+ paddingRoundTiny: string;
1933
+ paddingRoundSmall: string;
1934
+ paddingRoundMedium: string;
1935
+ paddingRoundLarge: string;
1936
+ iconMarginTiny: string;
1937
+ iconMarginSmall: string;
1938
+ iconMarginMedium: string;
1939
+ iconMarginLarge: string;
1940
+ iconSizeTiny: string;
1941
+ iconSizeSmall: string;
1942
+ iconSizeMedium: string;
1943
+ iconSizeLarge: string;
1944
+ rippleDuration: string;
1945
+ }, any>;
1946
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1947
+ fontSize: string;
1948
+ fontSizeCircle: string;
1949
+ fontWeightCircle: string;
1950
+ railColor: string;
1951
+ railHeight: string;
1952
+ iconSizeCircle: string;
1953
+ iconSizeLine: string;
1954
+ iconColor: string;
1955
+ iconColorInfo: string;
1956
+ iconColorSuccess: string;
1957
+ iconColorWarning: string;
1958
+ iconColorError: string;
1959
+ textColorCircle: string;
1960
+ textColorLineInner: string;
1961
+ textColorLineOuter: string;
1962
+ fillColor: string;
1963
+ fillColorInfo: string;
1964
+ fillColorSuccess: string;
1965
+ fillColorWarning: string;
1966
+ fillColorError: string;
1967
+ lineBgProcessing: string;
1968
+ }, any>;
1969
+ }>>>;
1970
+ }>> & Readonly<{}>, {
1971
+ openOpenFileDialog: () => void;
1972
+ submit: (fileId?: string) => void;
1973
+ clear: () => void;
1974
+ mergedClsPrefix: import('vue').Ref<string, string>;
1975
+ draggerInsideRef: {
1976
+ value: boolean;
1977
+ };
1978
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
1979
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1980
+ mergedTheme: import('vue').ComputedRef<{
1981
+ common: import('naive-ui').ThemeCommonVars;
1982
+ self: {
1983
+ fontSize: string;
1984
+ lineHeight: string;
1985
+ borderRadius: string;
1986
+ draggerColor: string;
1987
+ draggerBorder: string;
1988
+ draggerBorderHover: string;
1989
+ itemColorHover: string;
1990
+ itemColorHoverError: string;
1991
+ itemTextColor: string;
1992
+ itemTextColorError: string;
1993
+ itemTextColorSuccess: string;
1994
+ itemIconColor: string;
1995
+ itemDisabledOpacity: string;
1996
+ itemBorderImageCardError: string;
1997
+ itemBorderImageCard: string;
1998
+ };
1999
+ peers: {
2000
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2001
+ heightTiny: string;
2002
+ heightSmall: string;
2003
+ heightMedium: string;
2004
+ heightLarge: string;
2005
+ borderRadiusTiny: string;
2006
+ borderRadiusSmall: string;
2007
+ borderRadiusMedium: string;
2008
+ borderRadiusLarge: string;
2009
+ fontSizeTiny: string;
2010
+ fontSizeSmall: string;
2011
+ fontSizeMedium: string;
2012
+ fontSizeLarge: string;
2013
+ opacityDisabled: string;
2014
+ colorOpacitySecondary: string;
2015
+ colorOpacitySecondaryHover: string;
2016
+ colorOpacitySecondaryPressed: string;
2017
+ colorSecondary: string;
2018
+ colorSecondaryHover: string;
2019
+ colorSecondaryPressed: string;
2020
+ colorTertiary: string;
2021
+ colorTertiaryHover: string;
2022
+ colorTertiaryPressed: string;
2023
+ colorQuaternary: string;
2024
+ colorQuaternaryHover: string;
2025
+ colorQuaternaryPressed: string;
2026
+ color: string;
2027
+ colorHover: string;
2028
+ colorPressed: string;
2029
+ colorFocus: string;
2030
+ colorDisabled: string;
2031
+ textColor: string;
2032
+ textColorTertiary: string;
2033
+ textColorHover: string;
2034
+ textColorPressed: string;
2035
+ textColorFocus: string;
2036
+ textColorDisabled: string;
2037
+ textColorText: string;
2038
+ textColorTextHover: string;
2039
+ textColorTextPressed: string;
2040
+ textColorTextFocus: string;
2041
+ textColorTextDisabled: string;
2042
+ textColorGhost: string;
2043
+ textColorGhostHover: string;
2044
+ textColorGhostPressed: string;
2045
+ textColorGhostFocus: string;
2046
+ textColorGhostDisabled: string;
2047
+ border: string;
2048
+ borderHover: string;
2049
+ borderPressed: string;
2050
+ borderFocus: string;
2051
+ borderDisabled: string;
2052
+ rippleColor: string;
2053
+ colorPrimary: string;
2054
+ colorHoverPrimary: string;
2055
+ colorPressedPrimary: string;
2056
+ colorFocusPrimary: string;
2057
+ colorDisabledPrimary: string;
2058
+ textColorPrimary: string;
2059
+ textColorHoverPrimary: string;
2060
+ textColorPressedPrimary: string;
2061
+ textColorFocusPrimary: string;
2062
+ textColorDisabledPrimary: string;
2063
+ textColorTextPrimary: string;
2064
+ textColorTextHoverPrimary: string;
2065
+ textColorTextPressedPrimary: string;
2066
+ textColorTextFocusPrimary: string;
2067
+ textColorTextDisabledPrimary: string;
2068
+ textColorGhostPrimary: string;
2069
+ textColorGhostHoverPrimary: string;
2070
+ textColorGhostPressedPrimary: string;
2071
+ textColorGhostFocusPrimary: string;
2072
+ textColorGhostDisabledPrimary: string;
2073
+ borderPrimary: string;
2074
+ borderHoverPrimary: string;
2075
+ borderPressedPrimary: string;
2076
+ borderFocusPrimary: string;
2077
+ borderDisabledPrimary: string;
2078
+ rippleColorPrimary: string;
2079
+ colorInfo: string;
2080
+ colorHoverInfo: string;
2081
+ colorPressedInfo: string;
2082
+ colorFocusInfo: string;
2083
+ colorDisabledInfo: string;
2084
+ textColorInfo: string;
2085
+ textColorHoverInfo: string;
2086
+ textColorPressedInfo: string;
2087
+ textColorFocusInfo: string;
2088
+ textColorDisabledInfo: string;
2089
+ textColorTextInfo: string;
2090
+ textColorTextHoverInfo: string;
2091
+ textColorTextPressedInfo: string;
2092
+ textColorTextFocusInfo: string;
2093
+ textColorTextDisabledInfo: string;
2094
+ textColorGhostInfo: string;
2095
+ textColorGhostHoverInfo: string;
2096
+ textColorGhostPressedInfo: string;
2097
+ textColorGhostFocusInfo: string;
2098
+ textColorGhostDisabledInfo: string;
2099
+ borderInfo: string;
2100
+ borderHoverInfo: string;
2101
+ borderPressedInfo: string;
2102
+ borderFocusInfo: string;
2103
+ borderDisabledInfo: string;
2104
+ rippleColorInfo: string;
2105
+ colorSuccess: string;
2106
+ colorHoverSuccess: string;
2107
+ colorPressedSuccess: string;
2108
+ colorFocusSuccess: string;
2109
+ colorDisabledSuccess: string;
2110
+ textColorSuccess: string;
2111
+ textColorHoverSuccess: string;
2112
+ textColorPressedSuccess: string;
2113
+ textColorFocusSuccess: string;
2114
+ textColorDisabledSuccess: string;
2115
+ textColorTextSuccess: string;
2116
+ textColorTextHoverSuccess: string;
2117
+ textColorTextPressedSuccess: string;
2118
+ textColorTextFocusSuccess: string;
2119
+ textColorTextDisabledSuccess: string;
2120
+ textColorGhostSuccess: string;
2121
+ textColorGhostHoverSuccess: string;
2122
+ textColorGhostPressedSuccess: string;
2123
+ textColorGhostFocusSuccess: string;
2124
+ textColorGhostDisabledSuccess: string;
2125
+ borderSuccess: string;
2126
+ borderHoverSuccess: string;
2127
+ borderPressedSuccess: string;
2128
+ borderFocusSuccess: string;
2129
+ borderDisabledSuccess: string;
2130
+ rippleColorSuccess: string;
2131
+ colorWarning: string;
2132
+ colorHoverWarning: string;
2133
+ colorPressedWarning: string;
2134
+ colorFocusWarning: string;
2135
+ colorDisabledWarning: string;
2136
+ textColorWarning: string;
2137
+ textColorHoverWarning: string;
2138
+ textColorPressedWarning: string;
2139
+ textColorFocusWarning: string;
2140
+ textColorDisabledWarning: string;
2141
+ textColorTextWarning: string;
2142
+ textColorTextHoverWarning: string;
2143
+ textColorTextPressedWarning: string;
2144
+ textColorTextFocusWarning: string;
2145
+ textColorTextDisabledWarning: string;
2146
+ textColorGhostWarning: string;
2147
+ textColorGhostHoverWarning: string;
2148
+ textColorGhostPressedWarning: string;
2149
+ textColorGhostFocusWarning: string;
2150
+ textColorGhostDisabledWarning: string;
2151
+ borderWarning: string;
2152
+ borderHoverWarning: string;
2153
+ borderPressedWarning: string;
2154
+ borderFocusWarning: string;
2155
+ borderDisabledWarning: string;
2156
+ rippleColorWarning: string;
2157
+ colorError: string;
2158
+ colorHoverError: string;
2159
+ colorPressedError: string;
2160
+ colorFocusError: string;
2161
+ colorDisabledError: string;
2162
+ textColorError: string;
2163
+ textColorHoverError: string;
2164
+ textColorPressedError: string;
2165
+ textColorFocusError: string;
2166
+ textColorDisabledError: string;
2167
+ textColorTextError: string;
2168
+ textColorTextHoverError: string;
2169
+ textColorTextPressedError: string;
2170
+ textColorTextFocusError: string;
2171
+ textColorTextDisabledError: string;
2172
+ textColorGhostError: string;
2173
+ textColorGhostHoverError: string;
2174
+ textColorGhostPressedError: string;
2175
+ textColorGhostFocusError: string;
2176
+ textColorGhostDisabledError: string;
2177
+ borderError: string;
2178
+ borderHoverError: string;
2179
+ borderPressedError: string;
2180
+ borderFocusError: string;
2181
+ borderDisabledError: string;
2182
+ rippleColorError: string;
2183
+ waveOpacity: string;
2184
+ fontWeight: string;
2185
+ fontWeightStrong: string;
2186
+ paddingTiny: string;
2187
+ paddingSmall: string;
2188
+ paddingMedium: string;
2189
+ paddingLarge: string;
2190
+ paddingRoundTiny: string;
2191
+ paddingRoundSmall: string;
2192
+ paddingRoundMedium: string;
2193
+ paddingRoundLarge: string;
2194
+ iconMarginTiny: string;
2195
+ iconMarginSmall: string;
2196
+ iconMarginMedium: string;
2197
+ iconMarginLarge: string;
2198
+ iconSizeTiny: string;
2199
+ iconSizeSmall: string;
2200
+ iconSizeMedium: string;
2201
+ iconSizeLarge: string;
2202
+ rippleDuration: string;
2203
+ }, any>;
2204
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2205
+ fontSize: string;
2206
+ fontSizeCircle: string;
2207
+ fontWeightCircle: string;
2208
+ railColor: string;
2209
+ railHeight: string;
2210
+ iconSizeCircle: string;
2211
+ iconSizeLine: string;
2212
+ iconColor: string;
2213
+ iconColorInfo: string;
2214
+ iconColorSuccess: string;
2215
+ iconColorWarning: string;
2216
+ iconColorError: string;
2217
+ textColorCircle: string;
2218
+ textColorLineInner: string;
2219
+ textColorLineOuter: string;
2220
+ fillColor: string;
2221
+ fillColorInfo: string;
2222
+ fillColorSuccess: string;
2223
+ fillColorWarning: string;
2224
+ fillColorError: string;
2225
+ lineBgProcessing: string;
2226
+ }, any>;
2227
+ };
2228
+ peerOverrides: {
2229
+ Button?: {
2230
+ peers?: {
2231
+ [x: string]: any;
2232
+ } | undefined;
2233
+ } | undefined;
2234
+ Progress?: {
2235
+ peers?: {
2236
+ [x: string]: any;
2237
+ } | undefined;
2238
+ } | undefined;
2239
+ };
2240
+ }>;
2241
+ dragOver: import('vue').Ref<boolean, boolean>;
2242
+ mergedMultiple: import('vue').ComputedRef<boolean>;
2243
+ cssVars: import('vue').ComputedRef<any> | undefined;
2244
+ themeClass: import('vue').Ref<string, string> | undefined;
2245
+ onRender: (() => void) | undefined;
2246
+ handleFileInputChange: (e: Event) => void;
2247
+ }, {}, {}, {}, {
2248
+ readonly disabled: boolean | undefined;
2249
+ readonly name: string;
2250
+ readonly multiple: boolean;
2251
+ readonly abstract: boolean;
2252
+ readonly showTrigger: boolean;
2253
+ readonly directory: boolean;
2254
+ readonly directoryDnd: boolean;
2255
+ readonly method: string;
2256
+ readonly showFileList: boolean;
2257
+ readonly withCredentials: boolean;
2258
+ readonly responseType: XMLHttpRequestResponseType;
2259
+ readonly defaultUpload: boolean;
2260
+ readonly defaultFileList: UploadFileInfo[];
2261
+ readonly showCancelButton: boolean;
2262
+ readonly showRemoveButton: boolean;
2263
+ readonly showDownloadButton: boolean;
2264
+ readonly showRetryButton: boolean;
2265
+ readonly showPreviewButton: boolean;
2266
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
2267
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
2268
+ }> | null;
2269
+ };
2270
+ rootEl: HTMLDivElement;
2271
+ };
2272
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
2273
+ declare const __VLS_component: import('vue').DefineComponent<DydxUploadProps, {
2274
+ submit: () => void;
2275
+ openDialog: () => void;
2276
+ clear: () => void;
2277
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2278
+ "update:fileList": (fileList: UploadFileInfo[]) => any;
2279
+ success: (file: UploadFileInfo) => any;
2280
+ error: (file: UploadFileInfo, error: Error) => any;
2281
+ exceed: (files: File[]) => any;
2282
+ beforeUpload: (file: UploadFileInfo) => any;
2283
+ }, string, import('vue').PublicProps, Readonly<DydxUploadProps> & Readonly<{
2284
+ "onUpdate:fileList"?: ((fileList: UploadFileInfo[]) => any) | undefined;
2285
+ onSuccess?: ((file: UploadFileInfo) => any) | undefined;
2286
+ onError?: ((file: UploadFileInfo, error: Error) => any) | undefined;
2287
+ onExceed?: ((files: File[]) => any) | undefined;
2288
+ onBeforeUpload?: ((file: UploadFileInfo) => any) | undefined;
2289
+ }>, {
2290
+ multiple: boolean;
2291
+ disabled: boolean;
2292
+ fileList: UploadFileInfo[];
2293
+ uploadType: import('..').UploadType;
2294
+ maxSize: number;
2295
+ maxCount: number;
2296
+ autoUpload: boolean;
2297
+ urlPrefix: string;
2298
+ showTip: boolean;
2299
+ showDragger: boolean;
2300
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
2301
+ uploadRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
2302
+ readonly name: {
2303
+ readonly type: StringConstructor;
2304
+ readonly default: "file";
2305
+ };
2306
+ readonly accept: StringConstructor;
2307
+ readonly action: StringConstructor;
2308
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
2309
+ readonly directory: BooleanConstructor;
2310
+ readonly directoryDnd: {
2311
+ readonly type: BooleanConstructor;
2312
+ readonly default: undefined;
2313
+ };
2314
+ readonly method: {
2315
+ readonly type: StringConstructor;
2316
+ readonly default: "POST";
2317
+ };
2318
+ readonly multiple: BooleanConstructor;
2319
+ readonly showFileList: {
2320
+ readonly type: BooleanConstructor;
2321
+ readonly default: true;
2322
+ };
2323
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
2324
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
2325
+ readonly withCredentials: BooleanConstructor;
2326
+ readonly responseType: {
2327
+ readonly type: PropType<XMLHttpRequestResponseType>;
2328
+ readonly default: "";
2329
+ };
2330
+ readonly disabled: {
2331
+ readonly type: PropType<boolean | undefined>;
2332
+ readonly default: undefined;
2333
+ };
2334
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
2335
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
2336
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
2337
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
2338
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
2339
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
2340
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
2341
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
2342
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
2343
+ readonly defaultUpload: {
2344
+ readonly type: BooleanConstructor;
2345
+ readonly default: true;
2346
+ };
2347
+ readonly fileList: PropType<UploadFileInfo[]>;
2348
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
2349
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
2350
+ readonly fileListClass: StringConstructor;
2351
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
2352
+ readonly defaultFileList: {
2353
+ readonly type: PropType<UploadFileInfo[]>;
2354
+ readonly default: () => never[];
2355
+ };
2356
+ readonly showCancelButton: {
2357
+ readonly type: BooleanConstructor;
2358
+ readonly default: true;
2359
+ };
2360
+ readonly showRemoveButton: {
2361
+ readonly type: BooleanConstructor;
2362
+ readonly default: true;
2363
+ };
2364
+ readonly showDownloadButton: BooleanConstructor;
2365
+ readonly showRetryButton: {
2366
+ readonly type: BooleanConstructor;
2367
+ readonly default: true;
2368
+ };
2369
+ readonly showPreviewButton: {
2370
+ readonly type: BooleanConstructor;
2371
+ readonly default: true;
2372
+ };
2373
+ readonly listType: {
2374
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
2375
+ readonly default: "text";
2376
+ };
2377
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
2378
+ readonly shouldUseThumbnailUrl: {
2379
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
2380
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
2381
+ };
2382
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
2383
+ readonly abstract: BooleanConstructor;
2384
+ readonly max: NumberConstructor;
2385
+ readonly showTrigger: {
2386
+ readonly type: BooleanConstructor;
2387
+ readonly default: true;
2388
+ };
2389
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
2390
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
2391
+ readonly triggerClass: StringConstructor;
2392
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
2393
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
2394
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
2395
+ fontSize: string;
2396
+ lineHeight: string;
2397
+ borderRadius: string;
2398
+ draggerColor: string;
2399
+ draggerBorder: string;
2400
+ draggerBorderHover: string;
2401
+ itemColorHover: string;
2402
+ itemColorHoverError: string;
2403
+ itemTextColor: string;
2404
+ itemTextColorError: string;
2405
+ itemTextColorSuccess: string;
2406
+ itemIconColor: string;
2407
+ itemDisabledOpacity: string;
2408
+ itemBorderImageCardError: string;
2409
+ itemBorderImageCard: string;
2410
+ }, {
2411
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2412
+ heightTiny: string;
2413
+ heightSmall: string;
2414
+ heightMedium: string;
2415
+ heightLarge: string;
2416
+ borderRadiusTiny: string;
2417
+ borderRadiusSmall: string;
2418
+ borderRadiusMedium: string;
2419
+ borderRadiusLarge: string;
2420
+ fontSizeTiny: string;
2421
+ fontSizeSmall: string;
2422
+ fontSizeMedium: string;
2423
+ fontSizeLarge: string;
2424
+ opacityDisabled: string;
2425
+ colorOpacitySecondary: string;
2426
+ colorOpacitySecondaryHover: string;
2427
+ colorOpacitySecondaryPressed: string;
2428
+ colorSecondary: string;
2429
+ colorSecondaryHover: string;
2430
+ colorSecondaryPressed: string;
2431
+ colorTertiary: string;
2432
+ colorTertiaryHover: string;
2433
+ colorTertiaryPressed: string;
2434
+ colorQuaternary: string;
2435
+ colorQuaternaryHover: string;
2436
+ colorQuaternaryPressed: string;
2437
+ color: string;
2438
+ colorHover: string;
2439
+ colorPressed: string;
2440
+ colorFocus: string;
2441
+ colorDisabled: string;
2442
+ textColor: string;
2443
+ textColorTertiary: string;
2444
+ textColorHover: string;
2445
+ textColorPressed: string;
2446
+ textColorFocus: string;
2447
+ textColorDisabled: string;
2448
+ textColorText: string;
2449
+ textColorTextHover: string;
2450
+ textColorTextPressed: string;
2451
+ textColorTextFocus: string;
2452
+ textColorTextDisabled: string;
2453
+ textColorGhost: string;
2454
+ textColorGhostHover: string;
2455
+ textColorGhostPressed: string;
2456
+ textColorGhostFocus: string;
2457
+ textColorGhostDisabled: string;
2458
+ border: string;
2459
+ borderHover: string;
2460
+ borderPressed: string;
2461
+ borderFocus: string;
2462
+ borderDisabled: string;
2463
+ rippleColor: string;
2464
+ colorPrimary: string;
2465
+ colorHoverPrimary: string;
2466
+ colorPressedPrimary: string;
2467
+ colorFocusPrimary: string;
2468
+ colorDisabledPrimary: string;
2469
+ textColorPrimary: string;
2470
+ textColorHoverPrimary: string;
2471
+ textColorPressedPrimary: string;
2472
+ textColorFocusPrimary: string;
2473
+ textColorDisabledPrimary: string;
2474
+ textColorTextPrimary: string;
2475
+ textColorTextHoverPrimary: string;
2476
+ textColorTextPressedPrimary: string;
2477
+ textColorTextFocusPrimary: string;
2478
+ textColorTextDisabledPrimary: string;
2479
+ textColorGhostPrimary: string;
2480
+ textColorGhostHoverPrimary: string;
2481
+ textColorGhostPressedPrimary: string;
2482
+ textColorGhostFocusPrimary: string;
2483
+ textColorGhostDisabledPrimary: string;
2484
+ borderPrimary: string;
2485
+ borderHoverPrimary: string;
2486
+ borderPressedPrimary: string;
2487
+ borderFocusPrimary: string;
2488
+ borderDisabledPrimary: string;
2489
+ rippleColorPrimary: string;
2490
+ colorInfo: string;
2491
+ colorHoverInfo: string;
2492
+ colorPressedInfo: string;
2493
+ colorFocusInfo: string;
2494
+ colorDisabledInfo: string;
2495
+ textColorInfo: string;
2496
+ textColorHoverInfo: string;
2497
+ textColorPressedInfo: string;
2498
+ textColorFocusInfo: string;
2499
+ textColorDisabledInfo: string;
2500
+ textColorTextInfo: string;
2501
+ textColorTextHoverInfo: string;
2502
+ textColorTextPressedInfo: string;
2503
+ textColorTextFocusInfo: string;
2504
+ textColorTextDisabledInfo: string;
2505
+ textColorGhostInfo: string;
2506
+ textColorGhostHoverInfo: string;
2507
+ textColorGhostPressedInfo: string;
2508
+ textColorGhostFocusInfo: string;
2509
+ textColorGhostDisabledInfo: string;
2510
+ borderInfo: string;
2511
+ borderHoverInfo: string;
2512
+ borderPressedInfo: string;
2513
+ borderFocusInfo: string;
2514
+ borderDisabledInfo: string;
2515
+ rippleColorInfo: string;
2516
+ colorSuccess: string;
2517
+ colorHoverSuccess: string;
2518
+ colorPressedSuccess: string;
2519
+ colorFocusSuccess: string;
2520
+ colorDisabledSuccess: string;
2521
+ textColorSuccess: string;
2522
+ textColorHoverSuccess: string;
2523
+ textColorPressedSuccess: string;
2524
+ textColorFocusSuccess: string;
2525
+ textColorDisabledSuccess: string;
2526
+ textColorTextSuccess: string;
2527
+ textColorTextHoverSuccess: string;
2528
+ textColorTextPressedSuccess: string;
2529
+ textColorTextFocusSuccess: string;
2530
+ textColorTextDisabledSuccess: string;
2531
+ textColorGhostSuccess: string;
2532
+ textColorGhostHoverSuccess: string;
2533
+ textColorGhostPressedSuccess: string;
2534
+ textColorGhostFocusSuccess: string;
2535
+ textColorGhostDisabledSuccess: string;
2536
+ borderSuccess: string;
2537
+ borderHoverSuccess: string;
2538
+ borderPressedSuccess: string;
2539
+ borderFocusSuccess: string;
2540
+ borderDisabledSuccess: string;
2541
+ rippleColorSuccess: string;
2542
+ colorWarning: string;
2543
+ colorHoverWarning: string;
2544
+ colorPressedWarning: string;
2545
+ colorFocusWarning: string;
2546
+ colorDisabledWarning: string;
2547
+ textColorWarning: string;
2548
+ textColorHoverWarning: string;
2549
+ textColorPressedWarning: string;
2550
+ textColorFocusWarning: string;
2551
+ textColorDisabledWarning: string;
2552
+ textColorTextWarning: string;
2553
+ textColorTextHoverWarning: string;
2554
+ textColorTextPressedWarning: string;
2555
+ textColorTextFocusWarning: string;
2556
+ textColorTextDisabledWarning: string;
2557
+ textColorGhostWarning: string;
2558
+ textColorGhostHoverWarning: string;
2559
+ textColorGhostPressedWarning: string;
2560
+ textColorGhostFocusWarning: string;
2561
+ textColorGhostDisabledWarning: string;
2562
+ borderWarning: string;
2563
+ borderHoverWarning: string;
2564
+ borderPressedWarning: string;
2565
+ borderFocusWarning: string;
2566
+ borderDisabledWarning: string;
2567
+ rippleColorWarning: string;
2568
+ colorError: string;
2569
+ colorHoverError: string;
2570
+ colorPressedError: string;
2571
+ colorFocusError: string;
2572
+ colorDisabledError: string;
2573
+ textColorError: string;
2574
+ textColorHoverError: string;
2575
+ textColorPressedError: string;
2576
+ textColorFocusError: string;
2577
+ textColorDisabledError: string;
2578
+ textColorTextError: string;
2579
+ textColorTextHoverError: string;
2580
+ textColorTextPressedError: string;
2581
+ textColorTextFocusError: string;
2582
+ textColorTextDisabledError: string;
2583
+ textColorGhostError: string;
2584
+ textColorGhostHoverError: string;
2585
+ textColorGhostPressedError: string;
2586
+ textColorGhostFocusError: string;
2587
+ textColorGhostDisabledError: string;
2588
+ borderError: string;
2589
+ borderHoverError: string;
2590
+ borderPressedError: string;
2591
+ borderFocusError: string;
2592
+ borderDisabledError: string;
2593
+ rippleColorError: string;
2594
+ waveOpacity: string;
2595
+ fontWeight: string;
2596
+ fontWeightStrong: string;
2597
+ paddingTiny: string;
2598
+ paddingSmall: string;
2599
+ paddingMedium: string;
2600
+ paddingLarge: string;
2601
+ paddingRoundTiny: string;
2602
+ paddingRoundSmall: string;
2603
+ paddingRoundMedium: string;
2604
+ paddingRoundLarge: string;
2605
+ iconMarginTiny: string;
2606
+ iconMarginSmall: string;
2607
+ iconMarginMedium: string;
2608
+ iconMarginLarge: string;
2609
+ iconSizeTiny: string;
2610
+ iconSizeSmall: string;
2611
+ iconSizeMedium: string;
2612
+ iconSizeLarge: string;
2613
+ rippleDuration: string;
2614
+ }, any>;
2615
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2616
+ fontSize: string;
2617
+ fontSizeCircle: string;
2618
+ fontWeightCircle: string;
2619
+ railColor: string;
2620
+ railHeight: string;
2621
+ iconSizeCircle: string;
2622
+ iconSizeLine: string;
2623
+ iconColor: string;
2624
+ iconColorInfo: string;
2625
+ iconColorSuccess: string;
2626
+ iconColorWarning: string;
2627
+ iconColorError: string;
2628
+ textColorCircle: string;
2629
+ textColorLineInner: string;
2630
+ textColorLineOuter: string;
2631
+ fillColor: string;
2632
+ fillColorInfo: string;
2633
+ fillColorSuccess: string;
2634
+ fillColorWarning: string;
2635
+ fillColorError: string;
2636
+ lineBgProcessing: string;
2637
+ }, any>;
2638
+ }>>;
2639
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
2640
+ fontSize: string;
2641
+ lineHeight: string;
2642
+ borderRadius: string;
2643
+ draggerColor: string;
2644
+ draggerBorder: string;
2645
+ draggerBorderHover: string;
2646
+ itemColorHover: string;
2647
+ itemColorHoverError: string;
2648
+ itemTextColor: string;
2649
+ itemTextColorError: string;
2650
+ itemTextColorSuccess: string;
2651
+ itemIconColor: string;
2652
+ itemDisabledOpacity: string;
2653
+ itemBorderImageCardError: string;
2654
+ itemBorderImageCard: string;
2655
+ }, {
2656
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2657
+ heightTiny: string;
2658
+ heightSmall: string;
2659
+ heightMedium: string;
2660
+ heightLarge: string;
2661
+ borderRadiusTiny: string;
2662
+ borderRadiusSmall: string;
2663
+ borderRadiusMedium: string;
2664
+ borderRadiusLarge: string;
2665
+ fontSizeTiny: string;
2666
+ fontSizeSmall: string;
2667
+ fontSizeMedium: string;
2668
+ fontSizeLarge: string;
2669
+ opacityDisabled: string;
2670
+ colorOpacitySecondary: string;
2671
+ colorOpacitySecondaryHover: string;
2672
+ colorOpacitySecondaryPressed: string;
2673
+ colorSecondary: string;
2674
+ colorSecondaryHover: string;
2675
+ colorSecondaryPressed: string;
2676
+ colorTertiary: string;
2677
+ colorTertiaryHover: string;
2678
+ colorTertiaryPressed: string;
2679
+ colorQuaternary: string;
2680
+ colorQuaternaryHover: string;
2681
+ colorQuaternaryPressed: string;
2682
+ color: string;
2683
+ colorHover: string;
2684
+ colorPressed: string;
2685
+ colorFocus: string;
2686
+ colorDisabled: string;
2687
+ textColor: string;
2688
+ textColorTertiary: string;
2689
+ textColorHover: string;
2690
+ textColorPressed: string;
2691
+ textColorFocus: string;
2692
+ textColorDisabled: string;
2693
+ textColorText: string;
2694
+ textColorTextHover: string;
2695
+ textColorTextPressed: string;
2696
+ textColorTextFocus: string;
2697
+ textColorTextDisabled: string;
2698
+ textColorGhost: string;
2699
+ textColorGhostHover: string;
2700
+ textColorGhostPressed: string;
2701
+ textColorGhostFocus: string;
2702
+ textColorGhostDisabled: string;
2703
+ border: string;
2704
+ borderHover: string;
2705
+ borderPressed: string;
2706
+ borderFocus: string;
2707
+ borderDisabled: string;
2708
+ rippleColor: string;
2709
+ colorPrimary: string;
2710
+ colorHoverPrimary: string;
2711
+ colorPressedPrimary: string;
2712
+ colorFocusPrimary: string;
2713
+ colorDisabledPrimary: string;
2714
+ textColorPrimary: string;
2715
+ textColorHoverPrimary: string;
2716
+ textColorPressedPrimary: string;
2717
+ textColorFocusPrimary: string;
2718
+ textColorDisabledPrimary: string;
2719
+ textColorTextPrimary: string;
2720
+ textColorTextHoverPrimary: string;
2721
+ textColorTextPressedPrimary: string;
2722
+ textColorTextFocusPrimary: string;
2723
+ textColorTextDisabledPrimary: string;
2724
+ textColorGhostPrimary: string;
2725
+ textColorGhostHoverPrimary: string;
2726
+ textColorGhostPressedPrimary: string;
2727
+ textColorGhostFocusPrimary: string;
2728
+ textColorGhostDisabledPrimary: string;
2729
+ borderPrimary: string;
2730
+ borderHoverPrimary: string;
2731
+ borderPressedPrimary: string;
2732
+ borderFocusPrimary: string;
2733
+ borderDisabledPrimary: string;
2734
+ rippleColorPrimary: string;
2735
+ colorInfo: string;
2736
+ colorHoverInfo: string;
2737
+ colorPressedInfo: string;
2738
+ colorFocusInfo: string;
2739
+ colorDisabledInfo: string;
2740
+ textColorInfo: string;
2741
+ textColorHoverInfo: string;
2742
+ textColorPressedInfo: string;
2743
+ textColorFocusInfo: string;
2744
+ textColorDisabledInfo: string;
2745
+ textColorTextInfo: string;
2746
+ textColorTextHoverInfo: string;
2747
+ textColorTextPressedInfo: string;
2748
+ textColorTextFocusInfo: string;
2749
+ textColorTextDisabledInfo: string;
2750
+ textColorGhostInfo: string;
2751
+ textColorGhostHoverInfo: string;
2752
+ textColorGhostPressedInfo: string;
2753
+ textColorGhostFocusInfo: string;
2754
+ textColorGhostDisabledInfo: string;
2755
+ borderInfo: string;
2756
+ borderHoverInfo: string;
2757
+ borderPressedInfo: string;
2758
+ borderFocusInfo: string;
2759
+ borderDisabledInfo: string;
2760
+ rippleColorInfo: string;
2761
+ colorSuccess: string;
2762
+ colorHoverSuccess: string;
2763
+ colorPressedSuccess: string;
2764
+ colorFocusSuccess: string;
2765
+ colorDisabledSuccess: string;
2766
+ textColorSuccess: string;
2767
+ textColorHoverSuccess: string;
2768
+ textColorPressedSuccess: string;
2769
+ textColorFocusSuccess: string;
2770
+ textColorDisabledSuccess: string;
2771
+ textColorTextSuccess: string;
2772
+ textColorTextHoverSuccess: string;
2773
+ textColorTextPressedSuccess: string;
2774
+ textColorTextFocusSuccess: string;
2775
+ textColorTextDisabledSuccess: string;
2776
+ textColorGhostSuccess: string;
2777
+ textColorGhostHoverSuccess: string;
2778
+ textColorGhostPressedSuccess: string;
2779
+ textColorGhostFocusSuccess: string;
2780
+ textColorGhostDisabledSuccess: string;
2781
+ borderSuccess: string;
2782
+ borderHoverSuccess: string;
2783
+ borderPressedSuccess: string;
2784
+ borderFocusSuccess: string;
2785
+ borderDisabledSuccess: string;
2786
+ rippleColorSuccess: string;
2787
+ colorWarning: string;
2788
+ colorHoverWarning: string;
2789
+ colorPressedWarning: string;
2790
+ colorFocusWarning: string;
2791
+ colorDisabledWarning: string;
2792
+ textColorWarning: string;
2793
+ textColorHoverWarning: string;
2794
+ textColorPressedWarning: string;
2795
+ textColorFocusWarning: string;
2796
+ textColorDisabledWarning: string;
2797
+ textColorTextWarning: string;
2798
+ textColorTextHoverWarning: string;
2799
+ textColorTextPressedWarning: string;
2800
+ textColorTextFocusWarning: string;
2801
+ textColorTextDisabledWarning: string;
2802
+ textColorGhostWarning: string;
2803
+ textColorGhostHoverWarning: string;
2804
+ textColorGhostPressedWarning: string;
2805
+ textColorGhostFocusWarning: string;
2806
+ textColorGhostDisabledWarning: string;
2807
+ borderWarning: string;
2808
+ borderHoverWarning: string;
2809
+ borderPressedWarning: string;
2810
+ borderFocusWarning: string;
2811
+ borderDisabledWarning: string;
2812
+ rippleColorWarning: string;
2813
+ colorError: string;
2814
+ colorHoverError: string;
2815
+ colorPressedError: string;
2816
+ colorFocusError: string;
2817
+ colorDisabledError: string;
2818
+ textColorError: string;
2819
+ textColorHoverError: string;
2820
+ textColorPressedError: string;
2821
+ textColorFocusError: string;
2822
+ textColorDisabledError: string;
2823
+ textColorTextError: string;
2824
+ textColorTextHoverError: string;
2825
+ textColorTextPressedError: string;
2826
+ textColorTextFocusError: string;
2827
+ textColorTextDisabledError: string;
2828
+ textColorGhostError: string;
2829
+ textColorGhostHoverError: string;
2830
+ textColorGhostPressedError: string;
2831
+ textColorGhostFocusError: string;
2832
+ textColorGhostDisabledError: string;
2833
+ borderError: string;
2834
+ borderHoverError: string;
2835
+ borderPressedError: string;
2836
+ borderFocusError: string;
2837
+ borderDisabledError: string;
2838
+ rippleColorError: string;
2839
+ waveOpacity: string;
2840
+ fontWeight: string;
2841
+ fontWeightStrong: string;
2842
+ paddingTiny: string;
2843
+ paddingSmall: string;
2844
+ paddingMedium: string;
2845
+ paddingLarge: string;
2846
+ paddingRoundTiny: string;
2847
+ paddingRoundSmall: string;
2848
+ paddingRoundMedium: string;
2849
+ paddingRoundLarge: string;
2850
+ iconMarginTiny: string;
2851
+ iconMarginSmall: string;
2852
+ iconMarginMedium: string;
2853
+ iconMarginLarge: string;
2854
+ iconSizeTiny: string;
2855
+ iconSizeSmall: string;
2856
+ iconSizeMedium: string;
2857
+ iconSizeLarge: string;
2858
+ rippleDuration: string;
2859
+ }, any>;
2860
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2861
+ fontSize: string;
2862
+ fontSizeCircle: string;
2863
+ fontWeightCircle: string;
2864
+ railColor: string;
2865
+ railHeight: string;
2866
+ iconSizeCircle: string;
2867
+ iconSizeLine: string;
2868
+ iconColor: string;
2869
+ iconColorInfo: string;
2870
+ iconColorSuccess: string;
2871
+ iconColorWarning: string;
2872
+ iconColorError: string;
2873
+ textColorCircle: string;
2874
+ textColorLineInner: string;
2875
+ textColorLineOuter: string;
2876
+ fillColor: string;
2877
+ fillColorInfo: string;
2878
+ fillColorSuccess: string;
2879
+ fillColorWarning: string;
2880
+ fillColorError: string;
2881
+ lineBgProcessing: string;
2882
+ }, any>;
2883
+ }>>>;
2884
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
2885
+ fontSize: string;
2886
+ lineHeight: string;
2887
+ borderRadius: string;
2888
+ draggerColor: string;
2889
+ draggerBorder: string;
2890
+ draggerBorderHover: string;
2891
+ itemColorHover: string;
2892
+ itemColorHoverError: string;
2893
+ itemTextColor: string;
2894
+ itemTextColorError: string;
2895
+ itemTextColorSuccess: string;
2896
+ itemIconColor: string;
2897
+ itemDisabledOpacity: string;
2898
+ itemBorderImageCardError: string;
2899
+ itemBorderImageCard: string;
2900
+ }, {
2901
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2902
+ heightTiny: string;
2903
+ heightSmall: string;
2904
+ heightMedium: string;
2905
+ heightLarge: string;
2906
+ borderRadiusTiny: string;
2907
+ borderRadiusSmall: string;
2908
+ borderRadiusMedium: string;
2909
+ borderRadiusLarge: string;
2910
+ fontSizeTiny: string;
2911
+ fontSizeSmall: string;
2912
+ fontSizeMedium: string;
2913
+ fontSizeLarge: string;
2914
+ opacityDisabled: string;
2915
+ colorOpacitySecondary: string;
2916
+ colorOpacitySecondaryHover: string;
2917
+ colorOpacitySecondaryPressed: string;
2918
+ colorSecondary: string;
2919
+ colorSecondaryHover: string;
2920
+ colorSecondaryPressed: string;
2921
+ colorTertiary: string;
2922
+ colorTertiaryHover: string;
2923
+ colorTertiaryPressed: string;
2924
+ colorQuaternary: string;
2925
+ colorQuaternaryHover: string;
2926
+ colorQuaternaryPressed: string;
2927
+ color: string;
2928
+ colorHover: string;
2929
+ colorPressed: string;
2930
+ colorFocus: string;
2931
+ colorDisabled: string;
2932
+ textColor: string;
2933
+ textColorTertiary: string;
2934
+ textColorHover: string;
2935
+ textColorPressed: string;
2936
+ textColorFocus: string;
2937
+ textColorDisabled: string;
2938
+ textColorText: string;
2939
+ textColorTextHover: string;
2940
+ textColorTextPressed: string;
2941
+ textColorTextFocus: string;
2942
+ textColorTextDisabled: string;
2943
+ textColorGhost: string;
2944
+ textColorGhostHover: string;
2945
+ textColorGhostPressed: string;
2946
+ textColorGhostFocus: string;
2947
+ textColorGhostDisabled: string;
2948
+ border: string;
2949
+ borderHover: string;
2950
+ borderPressed: string;
2951
+ borderFocus: string;
2952
+ borderDisabled: string;
2953
+ rippleColor: string;
2954
+ colorPrimary: string;
2955
+ colorHoverPrimary: string;
2956
+ colorPressedPrimary: string;
2957
+ colorFocusPrimary: string;
2958
+ colorDisabledPrimary: string;
2959
+ textColorPrimary: string;
2960
+ textColorHoverPrimary: string;
2961
+ textColorPressedPrimary: string;
2962
+ textColorFocusPrimary: string;
2963
+ textColorDisabledPrimary: string;
2964
+ textColorTextPrimary: string;
2965
+ textColorTextHoverPrimary: string;
2966
+ textColorTextPressedPrimary: string;
2967
+ textColorTextFocusPrimary: string;
2968
+ textColorTextDisabledPrimary: string;
2969
+ textColorGhostPrimary: string;
2970
+ textColorGhostHoverPrimary: string;
2971
+ textColorGhostPressedPrimary: string;
2972
+ textColorGhostFocusPrimary: string;
2973
+ textColorGhostDisabledPrimary: string;
2974
+ borderPrimary: string;
2975
+ borderHoverPrimary: string;
2976
+ borderPressedPrimary: string;
2977
+ borderFocusPrimary: string;
2978
+ borderDisabledPrimary: string;
2979
+ rippleColorPrimary: string;
2980
+ colorInfo: string;
2981
+ colorHoverInfo: string;
2982
+ colorPressedInfo: string;
2983
+ colorFocusInfo: string;
2984
+ colorDisabledInfo: string;
2985
+ textColorInfo: string;
2986
+ textColorHoverInfo: string;
2987
+ textColorPressedInfo: string;
2988
+ textColorFocusInfo: string;
2989
+ textColorDisabledInfo: string;
2990
+ textColorTextInfo: string;
2991
+ textColorTextHoverInfo: string;
2992
+ textColorTextPressedInfo: string;
2993
+ textColorTextFocusInfo: string;
2994
+ textColorTextDisabledInfo: string;
2995
+ textColorGhostInfo: string;
2996
+ textColorGhostHoverInfo: string;
2997
+ textColorGhostPressedInfo: string;
2998
+ textColorGhostFocusInfo: string;
2999
+ textColorGhostDisabledInfo: string;
3000
+ borderInfo: string;
3001
+ borderHoverInfo: string;
3002
+ borderPressedInfo: string;
3003
+ borderFocusInfo: string;
3004
+ borderDisabledInfo: string;
3005
+ rippleColorInfo: string;
3006
+ colorSuccess: string;
3007
+ colorHoverSuccess: string;
3008
+ colorPressedSuccess: string;
3009
+ colorFocusSuccess: string;
3010
+ colorDisabledSuccess: string;
3011
+ textColorSuccess: string;
3012
+ textColorHoverSuccess: string;
3013
+ textColorPressedSuccess: string;
3014
+ textColorFocusSuccess: string;
3015
+ textColorDisabledSuccess: string;
3016
+ textColorTextSuccess: string;
3017
+ textColorTextHoverSuccess: string;
3018
+ textColorTextPressedSuccess: string;
3019
+ textColorTextFocusSuccess: string;
3020
+ textColorTextDisabledSuccess: string;
3021
+ textColorGhostSuccess: string;
3022
+ textColorGhostHoverSuccess: string;
3023
+ textColorGhostPressedSuccess: string;
3024
+ textColorGhostFocusSuccess: string;
3025
+ textColorGhostDisabledSuccess: string;
3026
+ borderSuccess: string;
3027
+ borderHoverSuccess: string;
3028
+ borderPressedSuccess: string;
3029
+ borderFocusSuccess: string;
3030
+ borderDisabledSuccess: string;
3031
+ rippleColorSuccess: string;
3032
+ colorWarning: string;
3033
+ colorHoverWarning: string;
3034
+ colorPressedWarning: string;
3035
+ colorFocusWarning: string;
3036
+ colorDisabledWarning: string;
3037
+ textColorWarning: string;
3038
+ textColorHoverWarning: string;
3039
+ textColorPressedWarning: string;
3040
+ textColorFocusWarning: string;
3041
+ textColorDisabledWarning: string;
3042
+ textColorTextWarning: string;
3043
+ textColorTextHoverWarning: string;
3044
+ textColorTextPressedWarning: string;
3045
+ textColorTextFocusWarning: string;
3046
+ textColorTextDisabledWarning: string;
3047
+ textColorGhostWarning: string;
3048
+ textColorGhostHoverWarning: string;
3049
+ textColorGhostPressedWarning: string;
3050
+ textColorGhostFocusWarning: string;
3051
+ textColorGhostDisabledWarning: string;
3052
+ borderWarning: string;
3053
+ borderHoverWarning: string;
3054
+ borderPressedWarning: string;
3055
+ borderFocusWarning: string;
3056
+ borderDisabledWarning: string;
3057
+ rippleColorWarning: string;
3058
+ colorError: string;
3059
+ colorHoverError: string;
3060
+ colorPressedError: string;
3061
+ colorFocusError: string;
3062
+ colorDisabledError: string;
3063
+ textColorError: string;
3064
+ textColorHoverError: string;
3065
+ textColorPressedError: string;
3066
+ textColorFocusError: string;
3067
+ textColorDisabledError: string;
3068
+ textColorTextError: string;
3069
+ textColorTextHoverError: string;
3070
+ textColorTextPressedError: string;
3071
+ textColorTextFocusError: string;
3072
+ textColorTextDisabledError: string;
3073
+ textColorGhostError: string;
3074
+ textColorGhostHoverError: string;
3075
+ textColorGhostPressedError: string;
3076
+ textColorGhostFocusError: string;
3077
+ textColorGhostDisabledError: string;
3078
+ borderError: string;
3079
+ borderHoverError: string;
3080
+ borderPressedError: string;
3081
+ borderFocusError: string;
3082
+ borderDisabledError: string;
3083
+ rippleColorError: string;
3084
+ waveOpacity: string;
3085
+ fontWeight: string;
3086
+ fontWeightStrong: string;
3087
+ paddingTiny: string;
3088
+ paddingSmall: string;
3089
+ paddingMedium: string;
3090
+ paddingLarge: string;
3091
+ paddingRoundTiny: string;
3092
+ paddingRoundSmall: string;
3093
+ paddingRoundMedium: string;
3094
+ paddingRoundLarge: string;
3095
+ iconMarginTiny: string;
3096
+ iconMarginSmall: string;
3097
+ iconMarginMedium: string;
3098
+ iconMarginLarge: string;
3099
+ iconSizeTiny: string;
3100
+ iconSizeSmall: string;
3101
+ iconSizeMedium: string;
3102
+ iconSizeLarge: string;
3103
+ rippleDuration: string;
3104
+ }, any>;
3105
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
3106
+ fontSize: string;
3107
+ fontSizeCircle: string;
3108
+ fontWeightCircle: string;
3109
+ railColor: string;
3110
+ railHeight: string;
3111
+ iconSizeCircle: string;
3112
+ iconSizeLine: string;
3113
+ iconColor: string;
3114
+ iconColorInfo: string;
3115
+ iconColorSuccess: string;
3116
+ iconColorWarning: string;
3117
+ iconColorError: string;
3118
+ textColorCircle: string;
3119
+ textColorLineInner: string;
3120
+ textColorLineOuter: string;
3121
+ fillColor: string;
3122
+ fillColorInfo: string;
3123
+ fillColorSuccess: string;
3124
+ fillColorWarning: string;
3125
+ fillColorError: string;
3126
+ lineBgProcessing: string;
3127
+ }, any>;
3128
+ }>>>;
3129
+ }>> & Readonly<{}>, {
3130
+ openOpenFileDialog: () => void;
3131
+ submit: (fileId?: string) => void;
3132
+ clear: () => void;
3133
+ mergedClsPrefix: import('vue').Ref<string, string>;
3134
+ draggerInsideRef: {
3135
+ value: boolean;
3136
+ };
3137
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
3138
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
3139
+ mergedTheme: import('vue').ComputedRef<{
3140
+ common: import('naive-ui').ThemeCommonVars;
3141
+ self: {
3142
+ fontSize: string;
3143
+ lineHeight: string;
3144
+ borderRadius: string;
3145
+ draggerColor: string;
3146
+ draggerBorder: string;
3147
+ draggerBorderHover: string;
3148
+ itemColorHover: string;
3149
+ itemColorHoverError: string;
3150
+ itemTextColor: string;
3151
+ itemTextColorError: string;
3152
+ itemTextColorSuccess: string;
3153
+ itemIconColor: string;
3154
+ itemDisabledOpacity: string;
3155
+ itemBorderImageCardError: string;
3156
+ itemBorderImageCard: string;
3157
+ };
3158
+ peers: {
3159
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
3160
+ heightTiny: string;
3161
+ heightSmall: string;
3162
+ heightMedium: string;
3163
+ heightLarge: string;
3164
+ borderRadiusTiny: string;
3165
+ borderRadiusSmall: string;
3166
+ borderRadiusMedium: string;
3167
+ borderRadiusLarge: string;
3168
+ fontSizeTiny: string;
3169
+ fontSizeSmall: string;
3170
+ fontSizeMedium: string;
3171
+ fontSizeLarge: string;
3172
+ opacityDisabled: string;
3173
+ colorOpacitySecondary: string;
3174
+ colorOpacitySecondaryHover: string;
3175
+ colorOpacitySecondaryPressed: string;
3176
+ colorSecondary: string;
3177
+ colorSecondaryHover: string;
3178
+ colorSecondaryPressed: string;
3179
+ colorTertiary: string;
3180
+ colorTertiaryHover: string;
3181
+ colorTertiaryPressed: string;
3182
+ colorQuaternary: string;
3183
+ colorQuaternaryHover: string;
3184
+ colorQuaternaryPressed: string;
3185
+ color: string;
3186
+ colorHover: string;
3187
+ colorPressed: string;
3188
+ colorFocus: string;
3189
+ colorDisabled: string;
3190
+ textColor: string;
3191
+ textColorTertiary: string;
3192
+ textColorHover: string;
3193
+ textColorPressed: string;
3194
+ textColorFocus: string;
3195
+ textColorDisabled: string;
3196
+ textColorText: string;
3197
+ textColorTextHover: string;
3198
+ textColorTextPressed: string;
3199
+ textColorTextFocus: string;
3200
+ textColorTextDisabled: string;
3201
+ textColorGhost: string;
3202
+ textColorGhostHover: string;
3203
+ textColorGhostPressed: string;
3204
+ textColorGhostFocus: string;
3205
+ textColorGhostDisabled: string;
3206
+ border: string;
3207
+ borderHover: string;
3208
+ borderPressed: string;
3209
+ borderFocus: string;
3210
+ borderDisabled: string;
3211
+ rippleColor: string;
3212
+ colorPrimary: string;
3213
+ colorHoverPrimary: string;
3214
+ colorPressedPrimary: string;
3215
+ colorFocusPrimary: string;
3216
+ colorDisabledPrimary: string;
3217
+ textColorPrimary: string;
3218
+ textColorHoverPrimary: string;
3219
+ textColorPressedPrimary: string;
3220
+ textColorFocusPrimary: string;
3221
+ textColorDisabledPrimary: string;
3222
+ textColorTextPrimary: string;
3223
+ textColorTextHoverPrimary: string;
3224
+ textColorTextPressedPrimary: string;
3225
+ textColorTextFocusPrimary: string;
3226
+ textColorTextDisabledPrimary: string;
3227
+ textColorGhostPrimary: string;
3228
+ textColorGhostHoverPrimary: string;
3229
+ textColorGhostPressedPrimary: string;
3230
+ textColorGhostFocusPrimary: string;
3231
+ textColorGhostDisabledPrimary: string;
3232
+ borderPrimary: string;
3233
+ borderHoverPrimary: string;
3234
+ borderPressedPrimary: string;
3235
+ borderFocusPrimary: string;
3236
+ borderDisabledPrimary: string;
3237
+ rippleColorPrimary: string;
3238
+ colorInfo: string;
3239
+ colorHoverInfo: string;
3240
+ colorPressedInfo: string;
3241
+ colorFocusInfo: string;
3242
+ colorDisabledInfo: string;
3243
+ textColorInfo: string;
3244
+ textColorHoverInfo: string;
3245
+ textColorPressedInfo: string;
3246
+ textColorFocusInfo: string;
3247
+ textColorDisabledInfo: string;
3248
+ textColorTextInfo: string;
3249
+ textColorTextHoverInfo: string;
3250
+ textColorTextPressedInfo: string;
3251
+ textColorTextFocusInfo: string;
3252
+ textColorTextDisabledInfo: string;
3253
+ textColorGhostInfo: string;
3254
+ textColorGhostHoverInfo: string;
3255
+ textColorGhostPressedInfo: string;
3256
+ textColorGhostFocusInfo: string;
3257
+ textColorGhostDisabledInfo: string;
3258
+ borderInfo: string;
3259
+ borderHoverInfo: string;
3260
+ borderPressedInfo: string;
3261
+ borderFocusInfo: string;
3262
+ borderDisabledInfo: string;
3263
+ rippleColorInfo: string;
3264
+ colorSuccess: string;
3265
+ colorHoverSuccess: string;
3266
+ colorPressedSuccess: string;
3267
+ colorFocusSuccess: string;
3268
+ colorDisabledSuccess: string;
3269
+ textColorSuccess: string;
3270
+ textColorHoverSuccess: string;
3271
+ textColorPressedSuccess: string;
3272
+ textColorFocusSuccess: string;
3273
+ textColorDisabledSuccess: string;
3274
+ textColorTextSuccess: string;
3275
+ textColorTextHoverSuccess: string;
3276
+ textColorTextPressedSuccess: string;
3277
+ textColorTextFocusSuccess: string;
3278
+ textColorTextDisabledSuccess: string;
3279
+ textColorGhostSuccess: string;
3280
+ textColorGhostHoverSuccess: string;
3281
+ textColorGhostPressedSuccess: string;
3282
+ textColorGhostFocusSuccess: string;
3283
+ textColorGhostDisabledSuccess: string;
3284
+ borderSuccess: string;
3285
+ borderHoverSuccess: string;
3286
+ borderPressedSuccess: string;
3287
+ borderFocusSuccess: string;
3288
+ borderDisabledSuccess: string;
3289
+ rippleColorSuccess: string;
3290
+ colorWarning: string;
3291
+ colorHoverWarning: string;
3292
+ colorPressedWarning: string;
3293
+ colorFocusWarning: string;
3294
+ colorDisabledWarning: string;
3295
+ textColorWarning: string;
3296
+ textColorHoverWarning: string;
3297
+ textColorPressedWarning: string;
3298
+ textColorFocusWarning: string;
3299
+ textColorDisabledWarning: string;
3300
+ textColorTextWarning: string;
3301
+ textColorTextHoverWarning: string;
3302
+ textColorTextPressedWarning: string;
3303
+ textColorTextFocusWarning: string;
3304
+ textColorTextDisabledWarning: string;
3305
+ textColorGhostWarning: string;
3306
+ textColorGhostHoverWarning: string;
3307
+ textColorGhostPressedWarning: string;
3308
+ textColorGhostFocusWarning: string;
3309
+ textColorGhostDisabledWarning: string;
3310
+ borderWarning: string;
3311
+ borderHoverWarning: string;
3312
+ borderPressedWarning: string;
3313
+ borderFocusWarning: string;
3314
+ borderDisabledWarning: string;
3315
+ rippleColorWarning: string;
3316
+ colorError: string;
3317
+ colorHoverError: string;
3318
+ colorPressedError: string;
3319
+ colorFocusError: string;
3320
+ colorDisabledError: string;
3321
+ textColorError: string;
3322
+ textColorHoverError: string;
3323
+ textColorPressedError: string;
3324
+ textColorFocusError: string;
3325
+ textColorDisabledError: string;
3326
+ textColorTextError: string;
3327
+ textColorTextHoverError: string;
3328
+ textColorTextPressedError: string;
3329
+ textColorTextFocusError: string;
3330
+ textColorTextDisabledError: string;
3331
+ textColorGhostError: string;
3332
+ textColorGhostHoverError: string;
3333
+ textColorGhostPressedError: string;
3334
+ textColorGhostFocusError: string;
3335
+ textColorGhostDisabledError: string;
3336
+ borderError: string;
3337
+ borderHoverError: string;
3338
+ borderPressedError: string;
3339
+ borderFocusError: string;
3340
+ borderDisabledError: string;
3341
+ rippleColorError: string;
3342
+ waveOpacity: string;
3343
+ fontWeight: string;
3344
+ fontWeightStrong: string;
3345
+ paddingTiny: string;
3346
+ paddingSmall: string;
3347
+ paddingMedium: string;
3348
+ paddingLarge: string;
3349
+ paddingRoundTiny: string;
3350
+ paddingRoundSmall: string;
3351
+ paddingRoundMedium: string;
3352
+ paddingRoundLarge: string;
3353
+ iconMarginTiny: string;
3354
+ iconMarginSmall: string;
3355
+ iconMarginMedium: string;
3356
+ iconMarginLarge: string;
3357
+ iconSizeTiny: string;
3358
+ iconSizeSmall: string;
3359
+ iconSizeMedium: string;
3360
+ iconSizeLarge: string;
3361
+ rippleDuration: string;
3362
+ }, any>;
3363
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
3364
+ fontSize: string;
3365
+ fontSizeCircle: string;
3366
+ fontWeightCircle: string;
3367
+ railColor: string;
3368
+ railHeight: string;
3369
+ iconSizeCircle: string;
3370
+ iconSizeLine: string;
3371
+ iconColor: string;
3372
+ iconColorInfo: string;
3373
+ iconColorSuccess: string;
3374
+ iconColorWarning: string;
3375
+ iconColorError: string;
3376
+ textColorCircle: string;
3377
+ textColorLineInner: string;
3378
+ textColorLineOuter: string;
3379
+ fillColor: string;
3380
+ fillColorInfo: string;
3381
+ fillColorSuccess: string;
3382
+ fillColorWarning: string;
3383
+ fillColorError: string;
3384
+ lineBgProcessing: string;
3385
+ }, any>;
3386
+ };
3387
+ peerOverrides: {
3388
+ Button?: {
3389
+ peers?: {
3390
+ [x: string]: any;
3391
+ } | undefined;
3392
+ } | undefined;
3393
+ Progress?: {
3394
+ peers?: {
3395
+ [x: string]: any;
3396
+ } | undefined;
3397
+ } | undefined;
3398
+ };
3399
+ }>;
3400
+ dragOver: import('vue').Ref<boolean, boolean>;
3401
+ mergedMultiple: import('vue').ComputedRef<boolean>;
3402
+ cssVars: import('vue').ComputedRef<any> | undefined;
3403
+ themeClass: import('vue').Ref<string, string> | undefined;
3404
+ onRender: (() => void) | undefined;
3405
+ handleFileInputChange: (e: Event) => void;
3406
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
3407
+ readonly disabled: boolean | undefined;
3408
+ readonly name: string;
3409
+ readonly multiple: boolean;
3410
+ readonly abstract: boolean;
3411
+ readonly showTrigger: boolean;
3412
+ readonly directory: boolean;
3413
+ readonly directoryDnd: boolean;
3414
+ readonly method: string;
3415
+ readonly showFileList: boolean;
3416
+ readonly withCredentials: boolean;
3417
+ readonly responseType: XMLHttpRequestResponseType;
3418
+ readonly defaultUpload: boolean;
3419
+ readonly defaultFileList: UploadFileInfo[];
3420
+ readonly showCancelButton: boolean;
3421
+ readonly showRemoveButton: boolean;
3422
+ readonly showDownloadButton: boolean;
3423
+ readonly showRetryButton: boolean;
3424
+ readonly showPreviewButton: boolean;
3425
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
3426
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
3427
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
3428
+ P: {};
3429
+ B: {};
3430
+ D: {};
3431
+ C: {};
3432
+ M: {};
3433
+ Defaults: {};
3434
+ }, Readonly<globalThis.ExtractPropTypes<{
3435
+ readonly name: {
3436
+ readonly type: StringConstructor;
3437
+ readonly default: "file";
3438
+ };
3439
+ readonly accept: StringConstructor;
3440
+ readonly action: StringConstructor;
3441
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
3442
+ readonly directory: BooleanConstructor;
3443
+ readonly directoryDnd: {
3444
+ readonly type: BooleanConstructor;
3445
+ readonly default: undefined;
3446
+ };
3447
+ readonly method: {
3448
+ readonly type: StringConstructor;
3449
+ readonly default: "POST";
3450
+ };
3451
+ readonly multiple: BooleanConstructor;
3452
+ readonly showFileList: {
3453
+ readonly type: BooleanConstructor;
3454
+ readonly default: true;
3455
+ };
3456
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
3457
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
3458
+ readonly withCredentials: BooleanConstructor;
3459
+ readonly responseType: {
3460
+ readonly type: PropType<XMLHttpRequestResponseType>;
3461
+ readonly default: "";
3462
+ };
3463
+ readonly disabled: {
3464
+ readonly type: PropType<boolean | undefined>;
3465
+ readonly default: undefined;
3466
+ };
3467
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
3468
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
3469
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
3470
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
3471
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
3472
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
3473
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
3474
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
3475
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
3476
+ readonly defaultUpload: {
3477
+ readonly type: BooleanConstructor;
3478
+ readonly default: true;
3479
+ };
3480
+ readonly fileList: PropType<UploadFileInfo[]>;
3481
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
3482
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
3483
+ readonly fileListClass: StringConstructor;
3484
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
3485
+ readonly defaultFileList: {
3486
+ readonly type: PropType<UploadFileInfo[]>;
3487
+ readonly default: () => never[];
3488
+ };
3489
+ readonly showCancelButton: {
3490
+ readonly type: BooleanConstructor;
3491
+ readonly default: true;
3492
+ };
3493
+ readonly showRemoveButton: {
3494
+ readonly type: BooleanConstructor;
3495
+ readonly default: true;
3496
+ };
3497
+ readonly showDownloadButton: BooleanConstructor;
3498
+ readonly showRetryButton: {
3499
+ readonly type: BooleanConstructor;
3500
+ readonly default: true;
3501
+ };
3502
+ readonly showPreviewButton: {
3503
+ readonly type: BooleanConstructor;
3504
+ readonly default: true;
3505
+ };
3506
+ readonly listType: {
3507
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
3508
+ readonly default: "text";
3509
+ };
3510
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
3511
+ readonly shouldUseThumbnailUrl: {
3512
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
3513
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
3514
+ };
3515
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
3516
+ readonly abstract: BooleanConstructor;
3517
+ readonly max: NumberConstructor;
3518
+ readonly showTrigger: {
3519
+ readonly type: BooleanConstructor;
3520
+ readonly default: true;
3521
+ };
3522
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
3523
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
3524
+ readonly triggerClass: StringConstructor;
3525
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
3526
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
3527
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
3528
+ fontSize: string;
3529
+ lineHeight: string;
3530
+ borderRadius: string;
3531
+ draggerColor: string;
3532
+ draggerBorder: string;
3533
+ draggerBorderHover: string;
3534
+ itemColorHover: string;
3535
+ itemColorHoverError: string;
3536
+ itemTextColor: string;
3537
+ itemTextColorError: string;
3538
+ itemTextColorSuccess: string;
3539
+ itemIconColor: string;
3540
+ itemDisabledOpacity: string;
3541
+ itemBorderImageCardError: string;
3542
+ itemBorderImageCard: string;
3543
+ }, {
3544
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
3545
+ heightTiny: string;
3546
+ heightSmall: string;
3547
+ heightMedium: string;
3548
+ heightLarge: string;
3549
+ borderRadiusTiny: string;
3550
+ borderRadiusSmall: string;
3551
+ borderRadiusMedium: string;
3552
+ borderRadiusLarge: string;
3553
+ fontSizeTiny: string;
3554
+ fontSizeSmall: string;
3555
+ fontSizeMedium: string;
3556
+ fontSizeLarge: string;
3557
+ opacityDisabled: string;
3558
+ colorOpacitySecondary: string;
3559
+ colorOpacitySecondaryHover: string;
3560
+ colorOpacitySecondaryPressed: string;
3561
+ colorSecondary: string;
3562
+ colorSecondaryHover: string;
3563
+ colorSecondaryPressed: string;
3564
+ colorTertiary: string;
3565
+ colorTertiaryHover: string;
3566
+ colorTertiaryPressed: string;
3567
+ colorQuaternary: string;
3568
+ colorQuaternaryHover: string;
3569
+ colorQuaternaryPressed: string;
3570
+ color: string;
3571
+ colorHover: string;
3572
+ colorPressed: string;
3573
+ colorFocus: string;
3574
+ colorDisabled: string;
3575
+ textColor: string;
3576
+ textColorTertiary: string;
3577
+ textColorHover: string;
3578
+ textColorPressed: string;
3579
+ textColorFocus: string;
3580
+ textColorDisabled: string;
3581
+ textColorText: string;
3582
+ textColorTextHover: string;
3583
+ textColorTextPressed: string;
3584
+ textColorTextFocus: string;
3585
+ textColorTextDisabled: string;
3586
+ textColorGhost: string;
3587
+ textColorGhostHover: string;
3588
+ textColorGhostPressed: string;
3589
+ textColorGhostFocus: string;
3590
+ textColorGhostDisabled: string;
3591
+ border: string;
3592
+ borderHover: string;
3593
+ borderPressed: string;
3594
+ borderFocus: string;
3595
+ borderDisabled: string;
3596
+ rippleColor: string;
3597
+ colorPrimary: string;
3598
+ colorHoverPrimary: string;
3599
+ colorPressedPrimary: string;
3600
+ colorFocusPrimary: string;
3601
+ colorDisabledPrimary: string;
3602
+ textColorPrimary: string;
3603
+ textColorHoverPrimary: string;
3604
+ textColorPressedPrimary: string;
3605
+ textColorFocusPrimary: string;
3606
+ textColorDisabledPrimary: string;
3607
+ textColorTextPrimary: string;
3608
+ textColorTextHoverPrimary: string;
3609
+ textColorTextPressedPrimary: string;
3610
+ textColorTextFocusPrimary: string;
3611
+ textColorTextDisabledPrimary: string;
3612
+ textColorGhostPrimary: string;
3613
+ textColorGhostHoverPrimary: string;
3614
+ textColorGhostPressedPrimary: string;
3615
+ textColorGhostFocusPrimary: string;
3616
+ textColorGhostDisabledPrimary: string;
3617
+ borderPrimary: string;
3618
+ borderHoverPrimary: string;
3619
+ borderPressedPrimary: string;
3620
+ borderFocusPrimary: string;
3621
+ borderDisabledPrimary: string;
3622
+ rippleColorPrimary: string;
3623
+ colorInfo: string;
3624
+ colorHoverInfo: string;
3625
+ colorPressedInfo: string;
3626
+ colorFocusInfo: string;
3627
+ colorDisabledInfo: string;
3628
+ textColorInfo: string;
3629
+ textColorHoverInfo: string;
3630
+ textColorPressedInfo: string;
3631
+ textColorFocusInfo: string;
3632
+ textColorDisabledInfo: string;
3633
+ textColorTextInfo: string;
3634
+ textColorTextHoverInfo: string;
3635
+ textColorTextPressedInfo: string;
3636
+ textColorTextFocusInfo: string;
3637
+ textColorTextDisabledInfo: string;
3638
+ textColorGhostInfo: string;
3639
+ textColorGhostHoverInfo: string;
3640
+ textColorGhostPressedInfo: string;
3641
+ textColorGhostFocusInfo: string;
3642
+ textColorGhostDisabledInfo: string;
3643
+ borderInfo: string;
3644
+ borderHoverInfo: string;
3645
+ borderPressedInfo: string;
3646
+ borderFocusInfo: string;
3647
+ borderDisabledInfo: string;
3648
+ rippleColorInfo: string;
3649
+ colorSuccess: string;
3650
+ colorHoverSuccess: string;
3651
+ colorPressedSuccess: string;
3652
+ colorFocusSuccess: string;
3653
+ colorDisabledSuccess: string;
3654
+ textColorSuccess: string;
3655
+ textColorHoverSuccess: string;
3656
+ textColorPressedSuccess: string;
3657
+ textColorFocusSuccess: string;
3658
+ textColorDisabledSuccess: string;
3659
+ textColorTextSuccess: string;
3660
+ textColorTextHoverSuccess: string;
3661
+ textColorTextPressedSuccess: string;
3662
+ textColorTextFocusSuccess: string;
3663
+ textColorTextDisabledSuccess: string;
3664
+ textColorGhostSuccess: string;
3665
+ textColorGhostHoverSuccess: string;
3666
+ textColorGhostPressedSuccess: string;
3667
+ textColorGhostFocusSuccess: string;
3668
+ textColorGhostDisabledSuccess: string;
3669
+ borderSuccess: string;
3670
+ borderHoverSuccess: string;
3671
+ borderPressedSuccess: string;
3672
+ borderFocusSuccess: string;
3673
+ borderDisabledSuccess: string;
3674
+ rippleColorSuccess: string;
3675
+ colorWarning: string;
3676
+ colorHoverWarning: string;
3677
+ colorPressedWarning: string;
3678
+ colorFocusWarning: string;
3679
+ colorDisabledWarning: string;
3680
+ textColorWarning: string;
3681
+ textColorHoverWarning: string;
3682
+ textColorPressedWarning: string;
3683
+ textColorFocusWarning: string;
3684
+ textColorDisabledWarning: string;
3685
+ textColorTextWarning: string;
3686
+ textColorTextHoverWarning: string;
3687
+ textColorTextPressedWarning: string;
3688
+ textColorTextFocusWarning: string;
3689
+ textColorTextDisabledWarning: string;
3690
+ textColorGhostWarning: string;
3691
+ textColorGhostHoverWarning: string;
3692
+ textColorGhostPressedWarning: string;
3693
+ textColorGhostFocusWarning: string;
3694
+ textColorGhostDisabledWarning: string;
3695
+ borderWarning: string;
3696
+ borderHoverWarning: string;
3697
+ borderPressedWarning: string;
3698
+ borderFocusWarning: string;
3699
+ borderDisabledWarning: string;
3700
+ rippleColorWarning: string;
3701
+ colorError: string;
3702
+ colorHoverError: string;
3703
+ colorPressedError: string;
3704
+ colorFocusError: string;
3705
+ colorDisabledError: string;
3706
+ textColorError: string;
3707
+ textColorHoverError: string;
3708
+ textColorPressedError: string;
3709
+ textColorFocusError: string;
3710
+ textColorDisabledError: string;
3711
+ textColorTextError: string;
3712
+ textColorTextHoverError: string;
3713
+ textColorTextPressedError: string;
3714
+ textColorTextFocusError: string;
3715
+ textColorTextDisabledError: string;
3716
+ textColorGhostError: string;
3717
+ textColorGhostHoverError: string;
3718
+ textColorGhostPressedError: string;
3719
+ textColorGhostFocusError: string;
3720
+ textColorGhostDisabledError: string;
3721
+ borderError: string;
3722
+ borderHoverError: string;
3723
+ borderPressedError: string;
3724
+ borderFocusError: string;
3725
+ borderDisabledError: string;
3726
+ rippleColorError: string;
3727
+ waveOpacity: string;
3728
+ fontWeight: string;
3729
+ fontWeightStrong: string;
3730
+ paddingTiny: string;
3731
+ paddingSmall: string;
3732
+ paddingMedium: string;
3733
+ paddingLarge: string;
3734
+ paddingRoundTiny: string;
3735
+ paddingRoundSmall: string;
3736
+ paddingRoundMedium: string;
3737
+ paddingRoundLarge: string;
3738
+ iconMarginTiny: string;
3739
+ iconMarginSmall: string;
3740
+ iconMarginMedium: string;
3741
+ iconMarginLarge: string;
3742
+ iconSizeTiny: string;
3743
+ iconSizeSmall: string;
3744
+ iconSizeMedium: string;
3745
+ iconSizeLarge: string;
3746
+ rippleDuration: string;
3747
+ }, any>;
3748
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
3749
+ fontSize: string;
3750
+ fontSizeCircle: string;
3751
+ fontWeightCircle: string;
3752
+ railColor: string;
3753
+ railHeight: string;
3754
+ iconSizeCircle: string;
3755
+ iconSizeLine: string;
3756
+ iconColor: string;
3757
+ iconColorInfo: string;
3758
+ iconColorSuccess: string;
3759
+ iconColorWarning: string;
3760
+ iconColorError: string;
3761
+ textColorCircle: string;
3762
+ textColorLineInner: string;
3763
+ textColorLineOuter: string;
3764
+ fillColor: string;
3765
+ fillColorInfo: string;
3766
+ fillColorSuccess: string;
3767
+ fillColorWarning: string;
3768
+ fillColorError: string;
3769
+ lineBgProcessing: string;
3770
+ }, any>;
3771
+ }>>;
3772
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
3773
+ fontSize: string;
3774
+ lineHeight: string;
3775
+ borderRadius: string;
3776
+ draggerColor: string;
3777
+ draggerBorder: string;
3778
+ draggerBorderHover: string;
3779
+ itemColorHover: string;
3780
+ itemColorHoverError: string;
3781
+ itemTextColor: string;
3782
+ itemTextColorError: string;
3783
+ itemTextColorSuccess: string;
3784
+ itemIconColor: string;
3785
+ itemDisabledOpacity: string;
3786
+ itemBorderImageCardError: string;
3787
+ itemBorderImageCard: string;
3788
+ }, {
3789
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
3790
+ heightTiny: string;
3791
+ heightSmall: string;
3792
+ heightMedium: string;
3793
+ heightLarge: string;
3794
+ borderRadiusTiny: string;
3795
+ borderRadiusSmall: string;
3796
+ borderRadiusMedium: string;
3797
+ borderRadiusLarge: string;
3798
+ fontSizeTiny: string;
3799
+ fontSizeSmall: string;
3800
+ fontSizeMedium: string;
3801
+ fontSizeLarge: string;
3802
+ opacityDisabled: string;
3803
+ colorOpacitySecondary: string;
3804
+ colorOpacitySecondaryHover: string;
3805
+ colorOpacitySecondaryPressed: string;
3806
+ colorSecondary: string;
3807
+ colorSecondaryHover: string;
3808
+ colorSecondaryPressed: string;
3809
+ colorTertiary: string;
3810
+ colorTertiaryHover: string;
3811
+ colorTertiaryPressed: string;
3812
+ colorQuaternary: string;
3813
+ colorQuaternaryHover: string;
3814
+ colorQuaternaryPressed: string;
3815
+ color: string;
3816
+ colorHover: string;
3817
+ colorPressed: string;
3818
+ colorFocus: string;
3819
+ colorDisabled: string;
3820
+ textColor: string;
3821
+ textColorTertiary: string;
3822
+ textColorHover: string;
3823
+ textColorPressed: string;
3824
+ textColorFocus: string;
3825
+ textColorDisabled: string;
3826
+ textColorText: string;
3827
+ textColorTextHover: string;
3828
+ textColorTextPressed: string;
3829
+ textColorTextFocus: string;
3830
+ textColorTextDisabled: string;
3831
+ textColorGhost: string;
3832
+ textColorGhostHover: string;
3833
+ textColorGhostPressed: string;
3834
+ textColorGhostFocus: string;
3835
+ textColorGhostDisabled: string;
3836
+ border: string;
3837
+ borderHover: string;
3838
+ borderPressed: string;
3839
+ borderFocus: string;
3840
+ borderDisabled: string;
3841
+ rippleColor: string;
3842
+ colorPrimary: string;
3843
+ colorHoverPrimary: string;
3844
+ colorPressedPrimary: string;
3845
+ colorFocusPrimary: string;
3846
+ colorDisabledPrimary: string;
3847
+ textColorPrimary: string;
3848
+ textColorHoverPrimary: string;
3849
+ textColorPressedPrimary: string;
3850
+ textColorFocusPrimary: string;
3851
+ textColorDisabledPrimary: string;
3852
+ textColorTextPrimary: string;
3853
+ textColorTextHoverPrimary: string;
3854
+ textColorTextPressedPrimary: string;
3855
+ textColorTextFocusPrimary: string;
3856
+ textColorTextDisabledPrimary: string;
3857
+ textColorGhostPrimary: string;
3858
+ textColorGhostHoverPrimary: string;
3859
+ textColorGhostPressedPrimary: string;
3860
+ textColorGhostFocusPrimary: string;
3861
+ textColorGhostDisabledPrimary: string;
3862
+ borderPrimary: string;
3863
+ borderHoverPrimary: string;
3864
+ borderPressedPrimary: string;
3865
+ borderFocusPrimary: string;
3866
+ borderDisabledPrimary: string;
3867
+ rippleColorPrimary: string;
3868
+ colorInfo: string;
3869
+ colorHoverInfo: string;
3870
+ colorPressedInfo: string;
3871
+ colorFocusInfo: string;
3872
+ colorDisabledInfo: string;
3873
+ textColorInfo: string;
3874
+ textColorHoverInfo: string;
3875
+ textColorPressedInfo: string;
3876
+ textColorFocusInfo: string;
3877
+ textColorDisabledInfo: string;
3878
+ textColorTextInfo: string;
3879
+ textColorTextHoverInfo: string;
3880
+ textColorTextPressedInfo: string;
3881
+ textColorTextFocusInfo: string;
3882
+ textColorTextDisabledInfo: string;
3883
+ textColorGhostInfo: string;
3884
+ textColorGhostHoverInfo: string;
3885
+ textColorGhostPressedInfo: string;
3886
+ textColorGhostFocusInfo: string;
3887
+ textColorGhostDisabledInfo: string;
3888
+ borderInfo: string;
3889
+ borderHoverInfo: string;
3890
+ borderPressedInfo: string;
3891
+ borderFocusInfo: string;
3892
+ borderDisabledInfo: string;
3893
+ rippleColorInfo: string;
3894
+ colorSuccess: string;
3895
+ colorHoverSuccess: string;
3896
+ colorPressedSuccess: string;
3897
+ colorFocusSuccess: string;
3898
+ colorDisabledSuccess: string;
3899
+ textColorSuccess: string;
3900
+ textColorHoverSuccess: string;
3901
+ textColorPressedSuccess: string;
3902
+ textColorFocusSuccess: string;
3903
+ textColorDisabledSuccess: string;
3904
+ textColorTextSuccess: string;
3905
+ textColorTextHoverSuccess: string;
3906
+ textColorTextPressedSuccess: string;
3907
+ textColorTextFocusSuccess: string;
3908
+ textColorTextDisabledSuccess: string;
3909
+ textColorGhostSuccess: string;
3910
+ textColorGhostHoverSuccess: string;
3911
+ textColorGhostPressedSuccess: string;
3912
+ textColorGhostFocusSuccess: string;
3913
+ textColorGhostDisabledSuccess: string;
3914
+ borderSuccess: string;
3915
+ borderHoverSuccess: string;
3916
+ borderPressedSuccess: string;
3917
+ borderFocusSuccess: string;
3918
+ borderDisabledSuccess: string;
3919
+ rippleColorSuccess: string;
3920
+ colorWarning: string;
3921
+ colorHoverWarning: string;
3922
+ colorPressedWarning: string;
3923
+ colorFocusWarning: string;
3924
+ colorDisabledWarning: string;
3925
+ textColorWarning: string;
3926
+ textColorHoverWarning: string;
3927
+ textColorPressedWarning: string;
3928
+ textColorFocusWarning: string;
3929
+ textColorDisabledWarning: string;
3930
+ textColorTextWarning: string;
3931
+ textColorTextHoverWarning: string;
3932
+ textColorTextPressedWarning: string;
3933
+ textColorTextFocusWarning: string;
3934
+ textColorTextDisabledWarning: string;
3935
+ textColorGhostWarning: string;
3936
+ textColorGhostHoverWarning: string;
3937
+ textColorGhostPressedWarning: string;
3938
+ textColorGhostFocusWarning: string;
3939
+ textColorGhostDisabledWarning: string;
3940
+ borderWarning: string;
3941
+ borderHoverWarning: string;
3942
+ borderPressedWarning: string;
3943
+ borderFocusWarning: string;
3944
+ borderDisabledWarning: string;
3945
+ rippleColorWarning: string;
3946
+ colorError: string;
3947
+ colorHoverError: string;
3948
+ colorPressedError: string;
3949
+ colorFocusError: string;
3950
+ colorDisabledError: string;
3951
+ textColorError: string;
3952
+ textColorHoverError: string;
3953
+ textColorPressedError: string;
3954
+ textColorFocusError: string;
3955
+ textColorDisabledError: string;
3956
+ textColorTextError: string;
3957
+ textColorTextHoverError: string;
3958
+ textColorTextPressedError: string;
3959
+ textColorTextFocusError: string;
3960
+ textColorTextDisabledError: string;
3961
+ textColorGhostError: string;
3962
+ textColorGhostHoverError: string;
3963
+ textColorGhostPressedError: string;
3964
+ textColorGhostFocusError: string;
3965
+ textColorGhostDisabledError: string;
3966
+ borderError: string;
3967
+ borderHoverError: string;
3968
+ borderPressedError: string;
3969
+ borderFocusError: string;
3970
+ borderDisabledError: string;
3971
+ rippleColorError: string;
3972
+ waveOpacity: string;
3973
+ fontWeight: string;
3974
+ fontWeightStrong: string;
3975
+ paddingTiny: string;
3976
+ paddingSmall: string;
3977
+ paddingMedium: string;
3978
+ paddingLarge: string;
3979
+ paddingRoundTiny: string;
3980
+ paddingRoundSmall: string;
3981
+ paddingRoundMedium: string;
3982
+ paddingRoundLarge: string;
3983
+ iconMarginTiny: string;
3984
+ iconMarginSmall: string;
3985
+ iconMarginMedium: string;
3986
+ iconMarginLarge: string;
3987
+ iconSizeTiny: string;
3988
+ iconSizeSmall: string;
3989
+ iconSizeMedium: string;
3990
+ iconSizeLarge: string;
3991
+ rippleDuration: string;
3992
+ }, any>;
3993
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
3994
+ fontSize: string;
3995
+ fontSizeCircle: string;
3996
+ fontWeightCircle: string;
3997
+ railColor: string;
3998
+ railHeight: string;
3999
+ iconSizeCircle: string;
4000
+ iconSizeLine: string;
4001
+ iconColor: string;
4002
+ iconColorInfo: string;
4003
+ iconColorSuccess: string;
4004
+ iconColorWarning: string;
4005
+ iconColorError: string;
4006
+ textColorCircle: string;
4007
+ textColorLineInner: string;
4008
+ textColorLineOuter: string;
4009
+ fillColor: string;
4010
+ fillColorInfo: string;
4011
+ fillColorSuccess: string;
4012
+ fillColorWarning: string;
4013
+ fillColorError: string;
4014
+ lineBgProcessing: string;
4015
+ }, any>;
4016
+ }>>>;
4017
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
4018
+ fontSize: string;
4019
+ lineHeight: string;
4020
+ borderRadius: string;
4021
+ draggerColor: string;
4022
+ draggerBorder: string;
4023
+ draggerBorderHover: string;
4024
+ itemColorHover: string;
4025
+ itemColorHoverError: string;
4026
+ itemTextColor: string;
4027
+ itemTextColorError: string;
4028
+ itemTextColorSuccess: string;
4029
+ itemIconColor: string;
4030
+ itemDisabledOpacity: string;
4031
+ itemBorderImageCardError: string;
4032
+ itemBorderImageCard: string;
4033
+ }, {
4034
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
4035
+ heightTiny: string;
4036
+ heightSmall: string;
4037
+ heightMedium: string;
4038
+ heightLarge: string;
4039
+ borderRadiusTiny: string;
4040
+ borderRadiusSmall: string;
4041
+ borderRadiusMedium: string;
4042
+ borderRadiusLarge: string;
4043
+ fontSizeTiny: string;
4044
+ fontSizeSmall: string;
4045
+ fontSizeMedium: string;
4046
+ fontSizeLarge: string;
4047
+ opacityDisabled: string;
4048
+ colorOpacitySecondary: string;
4049
+ colorOpacitySecondaryHover: string;
4050
+ colorOpacitySecondaryPressed: string;
4051
+ colorSecondary: string;
4052
+ colorSecondaryHover: string;
4053
+ colorSecondaryPressed: string;
4054
+ colorTertiary: string;
4055
+ colorTertiaryHover: string;
4056
+ colorTertiaryPressed: string;
4057
+ colorQuaternary: string;
4058
+ colorQuaternaryHover: string;
4059
+ colorQuaternaryPressed: string;
4060
+ color: string;
4061
+ colorHover: string;
4062
+ colorPressed: string;
4063
+ colorFocus: string;
4064
+ colorDisabled: string;
4065
+ textColor: string;
4066
+ textColorTertiary: string;
4067
+ textColorHover: string;
4068
+ textColorPressed: string;
4069
+ textColorFocus: string;
4070
+ textColorDisabled: string;
4071
+ textColorText: string;
4072
+ textColorTextHover: string;
4073
+ textColorTextPressed: string;
4074
+ textColorTextFocus: string;
4075
+ textColorTextDisabled: string;
4076
+ textColorGhost: string;
4077
+ textColorGhostHover: string;
4078
+ textColorGhostPressed: string;
4079
+ textColorGhostFocus: string;
4080
+ textColorGhostDisabled: string;
4081
+ border: string;
4082
+ borderHover: string;
4083
+ borderPressed: string;
4084
+ borderFocus: string;
4085
+ borderDisabled: string;
4086
+ rippleColor: string;
4087
+ colorPrimary: string;
4088
+ colorHoverPrimary: string;
4089
+ colorPressedPrimary: string;
4090
+ colorFocusPrimary: string;
4091
+ colorDisabledPrimary: string;
4092
+ textColorPrimary: string;
4093
+ textColorHoverPrimary: string;
4094
+ textColorPressedPrimary: string;
4095
+ textColorFocusPrimary: string;
4096
+ textColorDisabledPrimary: string;
4097
+ textColorTextPrimary: string;
4098
+ textColorTextHoverPrimary: string;
4099
+ textColorTextPressedPrimary: string;
4100
+ textColorTextFocusPrimary: string;
4101
+ textColorTextDisabledPrimary: string;
4102
+ textColorGhostPrimary: string;
4103
+ textColorGhostHoverPrimary: string;
4104
+ textColorGhostPressedPrimary: string;
4105
+ textColorGhostFocusPrimary: string;
4106
+ textColorGhostDisabledPrimary: string;
4107
+ borderPrimary: string;
4108
+ borderHoverPrimary: string;
4109
+ borderPressedPrimary: string;
4110
+ borderFocusPrimary: string;
4111
+ borderDisabledPrimary: string;
4112
+ rippleColorPrimary: string;
4113
+ colorInfo: string;
4114
+ colorHoverInfo: string;
4115
+ colorPressedInfo: string;
4116
+ colorFocusInfo: string;
4117
+ colorDisabledInfo: string;
4118
+ textColorInfo: string;
4119
+ textColorHoverInfo: string;
4120
+ textColorPressedInfo: string;
4121
+ textColorFocusInfo: string;
4122
+ textColorDisabledInfo: string;
4123
+ textColorTextInfo: string;
4124
+ textColorTextHoverInfo: string;
4125
+ textColorTextPressedInfo: string;
4126
+ textColorTextFocusInfo: string;
4127
+ textColorTextDisabledInfo: string;
4128
+ textColorGhostInfo: string;
4129
+ textColorGhostHoverInfo: string;
4130
+ textColorGhostPressedInfo: string;
4131
+ textColorGhostFocusInfo: string;
4132
+ textColorGhostDisabledInfo: string;
4133
+ borderInfo: string;
4134
+ borderHoverInfo: string;
4135
+ borderPressedInfo: string;
4136
+ borderFocusInfo: string;
4137
+ borderDisabledInfo: string;
4138
+ rippleColorInfo: string;
4139
+ colorSuccess: string;
4140
+ colorHoverSuccess: string;
4141
+ colorPressedSuccess: string;
4142
+ colorFocusSuccess: string;
4143
+ colorDisabledSuccess: string;
4144
+ textColorSuccess: string;
4145
+ textColorHoverSuccess: string;
4146
+ textColorPressedSuccess: string;
4147
+ textColorFocusSuccess: string;
4148
+ textColorDisabledSuccess: string;
4149
+ textColorTextSuccess: string;
4150
+ textColorTextHoverSuccess: string;
4151
+ textColorTextPressedSuccess: string;
4152
+ textColorTextFocusSuccess: string;
4153
+ textColorTextDisabledSuccess: string;
4154
+ textColorGhostSuccess: string;
4155
+ textColorGhostHoverSuccess: string;
4156
+ textColorGhostPressedSuccess: string;
4157
+ textColorGhostFocusSuccess: string;
4158
+ textColorGhostDisabledSuccess: string;
4159
+ borderSuccess: string;
4160
+ borderHoverSuccess: string;
4161
+ borderPressedSuccess: string;
4162
+ borderFocusSuccess: string;
4163
+ borderDisabledSuccess: string;
4164
+ rippleColorSuccess: string;
4165
+ colorWarning: string;
4166
+ colorHoverWarning: string;
4167
+ colorPressedWarning: string;
4168
+ colorFocusWarning: string;
4169
+ colorDisabledWarning: string;
4170
+ textColorWarning: string;
4171
+ textColorHoverWarning: string;
4172
+ textColorPressedWarning: string;
4173
+ textColorFocusWarning: string;
4174
+ textColorDisabledWarning: string;
4175
+ textColorTextWarning: string;
4176
+ textColorTextHoverWarning: string;
4177
+ textColorTextPressedWarning: string;
4178
+ textColorTextFocusWarning: string;
4179
+ textColorTextDisabledWarning: string;
4180
+ textColorGhostWarning: string;
4181
+ textColorGhostHoverWarning: string;
4182
+ textColorGhostPressedWarning: string;
4183
+ textColorGhostFocusWarning: string;
4184
+ textColorGhostDisabledWarning: string;
4185
+ borderWarning: string;
4186
+ borderHoverWarning: string;
4187
+ borderPressedWarning: string;
4188
+ borderFocusWarning: string;
4189
+ borderDisabledWarning: string;
4190
+ rippleColorWarning: string;
4191
+ colorError: string;
4192
+ colorHoverError: string;
4193
+ colorPressedError: string;
4194
+ colorFocusError: string;
4195
+ colorDisabledError: string;
4196
+ textColorError: string;
4197
+ textColorHoverError: string;
4198
+ textColorPressedError: string;
4199
+ textColorFocusError: string;
4200
+ textColorDisabledError: string;
4201
+ textColorTextError: string;
4202
+ textColorTextHoverError: string;
4203
+ textColorTextPressedError: string;
4204
+ textColorTextFocusError: string;
4205
+ textColorTextDisabledError: string;
4206
+ textColorGhostError: string;
4207
+ textColorGhostHoverError: string;
4208
+ textColorGhostPressedError: string;
4209
+ textColorGhostFocusError: string;
4210
+ textColorGhostDisabledError: string;
4211
+ borderError: string;
4212
+ borderHoverError: string;
4213
+ borderPressedError: string;
4214
+ borderFocusError: string;
4215
+ borderDisabledError: string;
4216
+ rippleColorError: string;
4217
+ waveOpacity: string;
4218
+ fontWeight: string;
4219
+ fontWeightStrong: string;
4220
+ paddingTiny: string;
4221
+ paddingSmall: string;
4222
+ paddingMedium: string;
4223
+ paddingLarge: string;
4224
+ paddingRoundTiny: string;
4225
+ paddingRoundSmall: string;
4226
+ paddingRoundMedium: string;
4227
+ paddingRoundLarge: string;
4228
+ iconMarginTiny: string;
4229
+ iconMarginSmall: string;
4230
+ iconMarginMedium: string;
4231
+ iconMarginLarge: string;
4232
+ iconSizeTiny: string;
4233
+ iconSizeSmall: string;
4234
+ iconSizeMedium: string;
4235
+ iconSizeLarge: string;
4236
+ rippleDuration: string;
4237
+ }, any>;
4238
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
4239
+ fontSize: string;
4240
+ fontSizeCircle: string;
4241
+ fontWeightCircle: string;
4242
+ railColor: string;
4243
+ railHeight: string;
4244
+ iconSizeCircle: string;
4245
+ iconSizeLine: string;
4246
+ iconColor: string;
4247
+ iconColorInfo: string;
4248
+ iconColorSuccess: string;
4249
+ iconColorWarning: string;
4250
+ iconColorError: string;
4251
+ textColorCircle: string;
4252
+ textColorLineInner: string;
4253
+ textColorLineOuter: string;
4254
+ fillColor: string;
4255
+ fillColorInfo: string;
4256
+ fillColorSuccess: string;
4257
+ fillColorWarning: string;
4258
+ fillColorError: string;
4259
+ lineBgProcessing: string;
4260
+ }, any>;
4261
+ }>>>;
4262
+ }>> & Readonly<{}>, {
4263
+ openOpenFileDialog: () => void;
4264
+ submit: (fileId?: string) => void;
4265
+ clear: () => void;
4266
+ mergedClsPrefix: import('vue').Ref<string, string>;
4267
+ draggerInsideRef: {
4268
+ value: boolean;
4269
+ };
4270
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
4271
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
4272
+ mergedTheme: import('vue').ComputedRef<{
4273
+ common: import('naive-ui').ThemeCommonVars;
4274
+ self: {
4275
+ fontSize: string;
4276
+ lineHeight: string;
4277
+ borderRadius: string;
4278
+ draggerColor: string;
4279
+ draggerBorder: string;
4280
+ draggerBorderHover: string;
4281
+ itemColorHover: string;
4282
+ itemColorHoverError: string;
4283
+ itemTextColor: string;
4284
+ itemTextColorError: string;
4285
+ itemTextColorSuccess: string;
4286
+ itemIconColor: string;
4287
+ itemDisabledOpacity: string;
4288
+ itemBorderImageCardError: string;
4289
+ itemBorderImageCard: string;
4290
+ };
4291
+ peers: {
4292
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
4293
+ heightTiny: string;
4294
+ heightSmall: string;
4295
+ heightMedium: string;
4296
+ heightLarge: string;
4297
+ borderRadiusTiny: string;
4298
+ borderRadiusSmall: string;
4299
+ borderRadiusMedium: string;
4300
+ borderRadiusLarge: string;
4301
+ fontSizeTiny: string;
4302
+ fontSizeSmall: string;
4303
+ fontSizeMedium: string;
4304
+ fontSizeLarge: string;
4305
+ opacityDisabled: string;
4306
+ colorOpacitySecondary: string;
4307
+ colorOpacitySecondaryHover: string;
4308
+ colorOpacitySecondaryPressed: string;
4309
+ colorSecondary: string;
4310
+ colorSecondaryHover: string;
4311
+ colorSecondaryPressed: string;
4312
+ colorTertiary: string;
4313
+ colorTertiaryHover: string;
4314
+ colorTertiaryPressed: string;
4315
+ colorQuaternary: string;
4316
+ colorQuaternaryHover: string;
4317
+ colorQuaternaryPressed: string;
4318
+ color: string;
4319
+ colorHover: string;
4320
+ colorPressed: string;
4321
+ colorFocus: string;
4322
+ colorDisabled: string;
4323
+ textColor: string;
4324
+ textColorTertiary: string;
4325
+ textColorHover: string;
4326
+ textColorPressed: string;
4327
+ textColorFocus: string;
4328
+ textColorDisabled: string;
4329
+ textColorText: string;
4330
+ textColorTextHover: string;
4331
+ textColorTextPressed: string;
4332
+ textColorTextFocus: string;
4333
+ textColorTextDisabled: string;
4334
+ textColorGhost: string;
4335
+ textColorGhostHover: string;
4336
+ textColorGhostPressed: string;
4337
+ textColorGhostFocus: string;
4338
+ textColorGhostDisabled: string;
4339
+ border: string;
4340
+ borderHover: string;
4341
+ borderPressed: string;
4342
+ borderFocus: string;
4343
+ borderDisabled: string;
4344
+ rippleColor: string;
4345
+ colorPrimary: string;
4346
+ colorHoverPrimary: string;
4347
+ colorPressedPrimary: string;
4348
+ colorFocusPrimary: string;
4349
+ colorDisabledPrimary: string;
4350
+ textColorPrimary: string;
4351
+ textColorHoverPrimary: string;
4352
+ textColorPressedPrimary: string;
4353
+ textColorFocusPrimary: string;
4354
+ textColorDisabledPrimary: string;
4355
+ textColorTextPrimary: string;
4356
+ textColorTextHoverPrimary: string;
4357
+ textColorTextPressedPrimary: string;
4358
+ textColorTextFocusPrimary: string;
4359
+ textColorTextDisabledPrimary: string;
4360
+ textColorGhostPrimary: string;
4361
+ textColorGhostHoverPrimary: string;
4362
+ textColorGhostPressedPrimary: string;
4363
+ textColorGhostFocusPrimary: string;
4364
+ textColorGhostDisabledPrimary: string;
4365
+ borderPrimary: string;
4366
+ borderHoverPrimary: string;
4367
+ borderPressedPrimary: string;
4368
+ borderFocusPrimary: string;
4369
+ borderDisabledPrimary: string;
4370
+ rippleColorPrimary: string;
4371
+ colorInfo: string;
4372
+ colorHoverInfo: string;
4373
+ colorPressedInfo: string;
4374
+ colorFocusInfo: string;
4375
+ colorDisabledInfo: string;
4376
+ textColorInfo: string;
4377
+ textColorHoverInfo: string;
4378
+ textColorPressedInfo: string;
4379
+ textColorFocusInfo: string;
4380
+ textColorDisabledInfo: string;
4381
+ textColorTextInfo: string;
4382
+ textColorTextHoverInfo: string;
4383
+ textColorTextPressedInfo: string;
4384
+ textColorTextFocusInfo: string;
4385
+ textColorTextDisabledInfo: string;
4386
+ textColorGhostInfo: string;
4387
+ textColorGhostHoverInfo: string;
4388
+ textColorGhostPressedInfo: string;
4389
+ textColorGhostFocusInfo: string;
4390
+ textColorGhostDisabledInfo: string;
4391
+ borderInfo: string;
4392
+ borderHoverInfo: string;
4393
+ borderPressedInfo: string;
4394
+ borderFocusInfo: string;
4395
+ borderDisabledInfo: string;
4396
+ rippleColorInfo: string;
4397
+ colorSuccess: string;
4398
+ colorHoverSuccess: string;
4399
+ colorPressedSuccess: string;
4400
+ colorFocusSuccess: string;
4401
+ colorDisabledSuccess: string;
4402
+ textColorSuccess: string;
4403
+ textColorHoverSuccess: string;
4404
+ textColorPressedSuccess: string;
4405
+ textColorFocusSuccess: string;
4406
+ textColorDisabledSuccess: string;
4407
+ textColorTextSuccess: string;
4408
+ textColorTextHoverSuccess: string;
4409
+ textColorTextPressedSuccess: string;
4410
+ textColorTextFocusSuccess: string;
4411
+ textColorTextDisabledSuccess: string;
4412
+ textColorGhostSuccess: string;
4413
+ textColorGhostHoverSuccess: string;
4414
+ textColorGhostPressedSuccess: string;
4415
+ textColorGhostFocusSuccess: string;
4416
+ textColorGhostDisabledSuccess: string;
4417
+ borderSuccess: string;
4418
+ borderHoverSuccess: string;
4419
+ borderPressedSuccess: string;
4420
+ borderFocusSuccess: string;
4421
+ borderDisabledSuccess: string;
4422
+ rippleColorSuccess: string;
4423
+ colorWarning: string;
4424
+ colorHoverWarning: string;
4425
+ colorPressedWarning: string;
4426
+ colorFocusWarning: string;
4427
+ colorDisabledWarning: string;
4428
+ textColorWarning: string;
4429
+ textColorHoverWarning: string;
4430
+ textColorPressedWarning: string;
4431
+ textColorFocusWarning: string;
4432
+ textColorDisabledWarning: string;
4433
+ textColorTextWarning: string;
4434
+ textColorTextHoverWarning: string;
4435
+ textColorTextPressedWarning: string;
4436
+ textColorTextFocusWarning: string;
4437
+ textColorTextDisabledWarning: string;
4438
+ textColorGhostWarning: string;
4439
+ textColorGhostHoverWarning: string;
4440
+ textColorGhostPressedWarning: string;
4441
+ textColorGhostFocusWarning: string;
4442
+ textColorGhostDisabledWarning: string;
4443
+ borderWarning: string;
4444
+ borderHoverWarning: string;
4445
+ borderPressedWarning: string;
4446
+ borderFocusWarning: string;
4447
+ borderDisabledWarning: string;
4448
+ rippleColorWarning: string;
4449
+ colorError: string;
4450
+ colorHoverError: string;
4451
+ colorPressedError: string;
4452
+ colorFocusError: string;
4453
+ colorDisabledError: string;
4454
+ textColorError: string;
4455
+ textColorHoverError: string;
4456
+ textColorPressedError: string;
4457
+ textColorFocusError: string;
4458
+ textColorDisabledError: string;
4459
+ textColorTextError: string;
4460
+ textColorTextHoverError: string;
4461
+ textColorTextPressedError: string;
4462
+ textColorTextFocusError: string;
4463
+ textColorTextDisabledError: string;
4464
+ textColorGhostError: string;
4465
+ textColorGhostHoverError: string;
4466
+ textColorGhostPressedError: string;
4467
+ textColorGhostFocusError: string;
4468
+ textColorGhostDisabledError: string;
4469
+ borderError: string;
4470
+ borderHoverError: string;
4471
+ borderPressedError: string;
4472
+ borderFocusError: string;
4473
+ borderDisabledError: string;
4474
+ rippleColorError: string;
4475
+ waveOpacity: string;
4476
+ fontWeight: string;
4477
+ fontWeightStrong: string;
4478
+ paddingTiny: string;
4479
+ paddingSmall: string;
4480
+ paddingMedium: string;
4481
+ paddingLarge: string;
4482
+ paddingRoundTiny: string;
4483
+ paddingRoundSmall: string;
4484
+ paddingRoundMedium: string;
4485
+ paddingRoundLarge: string;
4486
+ iconMarginTiny: string;
4487
+ iconMarginSmall: string;
4488
+ iconMarginMedium: string;
4489
+ iconMarginLarge: string;
4490
+ iconSizeTiny: string;
4491
+ iconSizeSmall: string;
4492
+ iconSizeMedium: string;
4493
+ iconSizeLarge: string;
4494
+ rippleDuration: string;
4495
+ }, any>;
4496
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
4497
+ fontSize: string;
4498
+ fontSizeCircle: string;
4499
+ fontWeightCircle: string;
4500
+ railColor: string;
4501
+ railHeight: string;
4502
+ iconSizeCircle: string;
4503
+ iconSizeLine: string;
4504
+ iconColor: string;
4505
+ iconColorInfo: string;
4506
+ iconColorSuccess: string;
4507
+ iconColorWarning: string;
4508
+ iconColorError: string;
4509
+ textColorCircle: string;
4510
+ textColorLineInner: string;
4511
+ textColorLineOuter: string;
4512
+ fillColor: string;
4513
+ fillColorInfo: string;
4514
+ fillColorSuccess: string;
4515
+ fillColorWarning: string;
4516
+ fillColorError: string;
4517
+ lineBgProcessing: string;
4518
+ }, any>;
4519
+ };
4520
+ peerOverrides: {
4521
+ Button?: {
4522
+ peers?: {
4523
+ [x: string]: any;
4524
+ } | undefined;
4525
+ } | undefined;
4526
+ Progress?: {
4527
+ peers?: {
4528
+ [x: string]: any;
4529
+ } | undefined;
4530
+ } | undefined;
4531
+ };
4532
+ }>;
4533
+ dragOver: import('vue').Ref<boolean, boolean>;
4534
+ mergedMultiple: import('vue').ComputedRef<boolean>;
4535
+ cssVars: import('vue').ComputedRef<any> | undefined;
4536
+ themeClass: import('vue').Ref<string, string> | undefined;
4537
+ onRender: (() => void) | undefined;
4538
+ handleFileInputChange: (e: Event) => void;
4539
+ }, {}, {}, {}, {
4540
+ readonly disabled: boolean | undefined;
4541
+ readonly name: string;
4542
+ readonly multiple: boolean;
4543
+ readonly abstract: boolean;
4544
+ readonly showTrigger: boolean;
4545
+ readonly directory: boolean;
4546
+ readonly directoryDnd: boolean;
4547
+ readonly method: string;
4548
+ readonly showFileList: boolean;
4549
+ readonly withCredentials: boolean;
4550
+ readonly responseType: XMLHttpRequestResponseType;
4551
+ readonly defaultUpload: boolean;
4552
+ readonly defaultFileList: UploadFileInfo[];
4553
+ readonly showCancelButton: boolean;
4554
+ readonly showRemoveButton: boolean;
4555
+ readonly showDownloadButton: boolean;
4556
+ readonly showRetryButton: boolean;
4557
+ readonly showPreviewButton: boolean;
4558
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
4559
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
4560
+ }> | null;
4561
+ }, HTMLDivElement>;
4562
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
4563
+ export default _default;
4564
+ type __VLS_WithTemplateSlots<T, S> = T & {
4565
+ new (): {
4566
+ $slots: S;
4567
+ };
4568
+ };