dydx-naive-ui-for-vue 0.1.18 → 0.1.20

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.
@@ -6,12 +6,2615 @@ export { DydxUpload } from './components/NaiveUpload';
6
6
  export { DydxIconSelect } from './components/IconSelect';
7
7
  export * from './resolver';
8
8
  export { useColumns, usePagination, useTableActions, useColumnRender, } from './components/NaiveTable';
9
- export type { FormSchema, DydxNaiveFormExpose, NativeFieldType, } from './components/NaiveForm';
10
- export type { DydxTableColumns, DydxTableColumn, ActionColumnConfig, ActionButton, ToolbarButton, TablePagination, PageChangeData, ActionEventParams, DydxNaiveTableProps, DydxNaiveTableExpose, PaginationFieldNames, } from './components/NaiveTable';
9
+ export type { DeepKeys, StringKeys, } from './types/utils';
10
+ export type { FormSchema, DydxNaiveFormExpose, NativeFieldType, ComponentPropsMap, ResponsiveSpan, BaseSchema, NativeSchema, InputSchema, SelectSchema, RadioGroupSchema, CheckboxGroupSchema, DatePickerSchema, InputNumberSchema, CustomSchema, SlotSchema, } from './components/NaiveForm';
11
+ export type { DydxTableColumns, DydxTableColumn, ActionColumnConfig, ActionButton, ToolbarButton, TablePagination, PageChangeData, ActionEventParams, DydxNaiveTableProps, DydxNaiveTableExpose, PaginationFieldNames, ColumnType, TagOption, IconColumnConfig, ImageColumnConfig, LinkColumnConfig, FileColumnConfig, BuiltinButtonConfig, } from './components/NaiveTable';
11
12
  export type { FormModalProps, FormDrawerProps, FormModalExpose, } from './components/FormModal';
12
- export type { DydxUploadProps, } from './components/NaiveUpload';
13
+ export type { DydxUploadProps, UploadType, DydxUploadEmits, DydxUploadExpose, } from './components/NaiveUpload';
13
14
  export type { DydxIconSelectProps, } from './components/IconSelect';
14
15
  declare const _default: {
15
16
  install: (app: App) => void;
17
+ DydxNaiveForm: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
18
+ attrs: any;
19
+ slots: Partial<Record<string, (_: {
20
+ model: T;
21
+ schema: import('.').SlotSchema<T>;
22
+ }) => any>> & Partial<Record<`field-${import('.').DeepKeys<T>}`, (_: {
23
+ model: T;
24
+ schema: import('.').InputSchema<T> | import('.').SelectSchema<T> | import('.').RadioGroupSchema<T> | import('.').CheckboxGroupSchema<T> | import('.').DatePickerSchema<T> | import('.').InputNumberSchema<T> | import('.').NativeSchema<T> | import('.').CustomSchema<T>;
25
+ value: any;
26
+ setValue: (v: any) => void;
27
+ }) => any>> & {
28
+ header?(_: {
29
+ model: T;
30
+ }): any;
31
+ footer?(_: {
32
+ model: T;
33
+ validate: (callback?: (errors?: Array<import('naive-ui').FormValidationError>) => void, shouldRuleBeApplied?: (rule: any) => boolean) => Promise<void>;
34
+ reset: () => void;
35
+ }): any;
36
+ append?(_: {
37
+ model: T;
38
+ }): any;
39
+ };
40
+ emit: ((evt: "submit", value: T) => void) & ((evt: "reset") => void) & ((evt: "update:model", value: T) => void) & ((evt: "validate", errors: any) => void);
41
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
42
+ props: {
43
+ readonly onReset?: (() => any) | undefined;
44
+ readonly onSubmit?: ((value: T) => any) | undefined;
45
+ readonly "onUpdate:model"?: ((value: T) => any) | undefined;
46
+ readonly onValidate?: ((errors: any) => any) | undefined;
47
+ schemas: import('.').FormSchema<T>[];
48
+ model: T;
49
+ formProps?: Partial<import('naive-ui').FormProps> | undefined;
50
+ labelWidth?: number | string | "auto" | undefined;
51
+ labelAlign?: "left" | "right" | undefined;
52
+ labelPlacement?: "left" | "top" | undefined;
53
+ showFeedback?: boolean | undefined;
54
+ showLabel?: boolean | undefined;
55
+ showRequireMark?: boolean | undefined;
56
+ requireMarkPlacement?: "left" | "right" | "right-hanging" | undefined;
57
+ gridProps?: Partial<import('naive-ui').GridProps> | undefined;
58
+ cols?: string | number | import('.').ResponsiveSpan | undefined;
59
+ xGap?: number | string | undefined;
60
+ yGap?: number | string | undefined;
61
+ responsive?: "self" | "screen" | undefined;
62
+ showFooter?: boolean | undefined;
63
+ footerAlign?: "left" | "center" | "right" | undefined;
64
+ footerSpan?: number | undefined;
65
+ submitButton?: import('./components/NaiveForm').FormButtonProps | undefined;
66
+ resetButton?: import('./components/NaiveForm').FormButtonProps | undefined;
67
+ extraButtons?: import('./components/NaiveForm').ExtraButtonProps[] | undefined;
68
+ loading?: boolean | undefined;
69
+ } & import('vue').PublicProps;
70
+ expose(exposed: import('vue').ShallowUnwrapRef<import('.').DydxNaiveFormExpose<T>>): void;
71
+ attrs: any;
72
+ slots: Partial<Record<string, (_: {
73
+ model: T;
74
+ schema: import('.').SlotSchema<T>;
75
+ }) => any>> & Partial<Record<`field-${import('.').DeepKeys<T>}`, (_: {
76
+ model: T;
77
+ schema: import('.').InputSchema<T> | import('.').SelectSchema<T> | import('.').RadioGroupSchema<T> | import('.').CheckboxGroupSchema<T> | import('.').DatePickerSchema<T> | import('.').InputNumberSchema<T> | import('.').NativeSchema<T> | import('.').CustomSchema<T>;
78
+ value: any;
79
+ setValue: (v: any) => void;
80
+ }) => any>> & {
81
+ header?(_: {
82
+ model: T;
83
+ }): any;
84
+ footer?(_: {
85
+ model: T;
86
+ validate: (callback?: (errors?: Array<import('naive-ui').FormValidationError>) => void, shouldRuleBeApplied?: (rule: any) => boolean) => Promise<void>;
87
+ reset: () => void;
88
+ }): any;
89
+ append?(_: {
90
+ model: T;
91
+ }): any;
92
+ };
93
+ emit: ((evt: "submit", value: T) => void) & ((evt: "reset") => void) & ((evt: "update:model", value: T) => void) & ((evt: "validate", errors: any) => void);
94
+ }>) => import('vue').VNode & {
95
+ __ctx?: Awaited<typeof __VLS_setup>;
96
+ };
97
+ DydxNaiveTable: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
98
+ attrs: any;
99
+ slots: {
100
+ 'add-icon'?(_: {}): any;
101
+ 'toolbar-left'?(_: {}): any;
102
+ 'toolbar-right'?(_: {}): any;
103
+ };
104
+ emit: ((evt: "view", params: import('.').ActionEventParams<T>) => void) & ((evt: "delete", params: import('.').ActionEventParams<T>) => void) & ((evt: "update:pagination", pagination: import('.').TablePagination) => void) & ((evt: "pageChange", pagination: import('.').PageChangeData) => void) & ((evt: "update:checkedRowKeys", keys: (string | number)[], rows: T[]) => void) & ((evt: "update:visibleColumns", keys: string[]) => void) & ((evt: "edit", params: import('.').ActionEventParams<T>) => void);
105
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
106
+ props: {
107
+ readonly onView?: ((params: import('.').ActionEventParams<T>) => any) | undefined;
108
+ readonly onEdit?: ((params: import('.').ActionEventParams<T>) => any) | undefined;
109
+ readonly onDelete?: ((params: import('.').ActionEventParams<T>) => any) | undefined;
110
+ readonly onPageChange?: ((pagination: import('.').PageChangeData) => any) | undefined;
111
+ readonly "onUpdate:pagination"?: ((pagination: import('.').TablePagination) => any) | undefined;
112
+ readonly "onUpdate:checkedRowKeys"?: ((keys: (string | number)[], rows: T[]) => any) | undefined;
113
+ readonly "onUpdate:visibleColumns"?: ((keys: string[]) => any) | undefined;
114
+ loading?: boolean | undefined;
115
+ checkedRowKeys?: (string | number)[] | undefined;
116
+ remote?: boolean | undefined;
117
+ data: T[];
118
+ columns: import('.').DydxTableColumns<T>;
119
+ rowKey: keyof T | ((row: T) => string | number);
120
+ actionColumn?: import('.').ActionColumnConfig<T> | undefined;
121
+ showAdd?: boolean | undefined;
122
+ addButtonText?: string | undefined;
123
+ onAdd?: (() => void) | undefined;
124
+ leftButtons?: import('.').ToolbarButton[] | undefined;
125
+ showRefresh?: boolean | undefined;
126
+ onRefresh?: (() => void) | undefined;
127
+ showColumnSetting?: boolean | undefined;
128
+ rightButtons?: import('.').ToolbarButton[] | undefined;
129
+ pagination?: (false | import('.').TablePagination) | undefined;
130
+ paginationFieldNames?: import('.').PaginationFieldNames | undefined;
131
+ } & import('vue').PublicProps;
132
+ expose(exposed: import('vue').ShallowUnwrapRef<import('.').DydxNaiveTableExpose>): void;
133
+ attrs: any;
134
+ slots: {
135
+ 'add-icon'?(_: {}): any;
136
+ 'toolbar-left'?(_: {}): any;
137
+ 'toolbar-right'?(_: {}): any;
138
+ };
139
+ emit: ((evt: "view", params: import('.').ActionEventParams<T>) => void) & ((evt: "delete", params: import('.').ActionEventParams<T>) => void) & ((evt: "update:pagination", pagination: import('.').TablePagination) => void) & ((evt: "pageChange", pagination: import('.').PageChangeData) => void) & ((evt: "update:checkedRowKeys", keys: (string | number)[], rows: T[]) => void) & ((evt: "update:visibleColumns", keys: string[]) => void) & ((evt: "edit", params: import('.').ActionEventParams<T>) => void);
140
+ }>) => import('vue').VNode & {
141
+ __ctx?: Awaited<typeof __VLS_setup>;
142
+ };
143
+ DydxFormModal: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
144
+ attrs: any;
145
+ slots: {
146
+ header?(_: {}): any;
147
+ 'header-extra'?(_: {}): any;
148
+ default?(_: {}): any;
149
+ footer?(_: {}): any;
150
+ action?(_: {}): any;
151
+ };
152
+ emit: ((evt: "cancel") => void) & ((evt: "confirm", data: T) => void) & ((evt: "update:show", value: boolean) => void);
153
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
154
+ props: {
155
+ readonly "onUpdate:show"?: ((value: boolean) => any) | undefined;
156
+ readonly onCancel?: (() => any) | undefined;
157
+ readonly onConfirm?: ((data: T) => any) | undefined;
158
+ show: boolean;
159
+ title?: string | undefined;
160
+ schemas: import('.').FormSchema<T>[];
161
+ model: T;
162
+ width?: string | number | undefined;
163
+ confirmText?: string | undefined;
164
+ cancelText?: string | undefined;
165
+ showCancel?: boolean | undefined;
166
+ loading?: boolean | undefined;
167
+ cols?: number | undefined;
168
+ xGap?: number | undefined;
169
+ yGap?: number | undefined;
170
+ labelPlacement?: "left" | "top" | undefined;
171
+ labelWidth?: number | string | undefined;
172
+ rowKey?: string | undefined;
173
+ subtitle?: string | undefined;
174
+ } & import('vue').PublicProps;
175
+ expose(exposed: import('vue').ShallowUnwrapRef<{
176
+ getFormRef: () => import('.').DydxNaiveFormExpose<T> | undefined;
177
+ validate: () => Promise<void> | undefined;
178
+ resetFields: () => void | undefined;
179
+ }>): void;
180
+ attrs: any;
181
+ slots: {
182
+ header?(_: {}): any;
183
+ 'header-extra'?(_: {}): any;
184
+ default?(_: {}): any;
185
+ footer?(_: {}): any;
186
+ action?(_: {}): any;
187
+ };
188
+ emit: ((evt: "cancel") => void) & ((evt: "confirm", data: T) => void) & ((evt: "update:show", value: boolean) => void);
189
+ }>) => import('vue').VNode & {
190
+ __ctx?: Awaited<typeof __VLS_setup>;
191
+ };
192
+ DydxFormDrawer: <T extends Record<string, any>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: {
193
+ attrs: any;
194
+ slots: Readonly<{
195
+ default?: () => unknown;
196
+ footer?: () => unknown;
197
+ }> & {
198
+ default?: () => unknown;
199
+ footer?: () => unknown;
200
+ };
201
+ emit: ((evt: "cancel") => void) & ((evt: "confirm", data: T) => void) & ((evt: "update:show", value: boolean) => void);
202
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
203
+ props: {
204
+ readonly "onUpdate:show"?: ((value: boolean) => any) | undefined;
205
+ readonly onCancel?: (() => any) | undefined;
206
+ readonly onConfirm?: ((data: T) => any) | undefined;
207
+ show: boolean;
208
+ title?: string | undefined;
209
+ schemas: import('.').FormSchema<T>[];
210
+ model: T;
211
+ width?: string | number | undefined;
212
+ placement?: "left" | "right" | "top" | "bottom" | undefined;
213
+ confirmText?: string | undefined;
214
+ cancelText?: string | undefined;
215
+ showCancel?: boolean | undefined;
216
+ loading?: boolean | undefined;
217
+ cols?: number | undefined;
218
+ xGap?: number | undefined;
219
+ yGap?: number | undefined;
220
+ labelPlacement?: "left" | "top" | undefined;
221
+ labelWidth?: number | string | undefined;
222
+ rowKey?: string | undefined;
223
+ subtitle?: string | undefined;
224
+ } & import('vue').PublicProps;
225
+ expose(exposed: import('vue').ShallowUnwrapRef<{
226
+ getFormRef: () => import('.').DydxNaiveFormExpose<T> | undefined;
227
+ validate: () => Promise<void> | undefined;
228
+ resetFields: () => void | undefined;
229
+ }>): void;
230
+ attrs: any;
231
+ slots: Readonly<{
232
+ default?: () => unknown;
233
+ footer?: () => unknown;
234
+ }> & {
235
+ default?: () => unknown;
236
+ footer?: () => unknown;
237
+ };
238
+ emit: ((evt: "cancel") => void) & ((evt: "confirm", data: T) => void) & ((evt: "update:show", value: boolean) => void);
239
+ }>) => import('vue').VNode & {
240
+ __ctx?: Awaited<typeof __VLS_setup>;
241
+ };
242
+ DydxUpload: {
243
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('.').DydxUploadProps> & Readonly<{
244
+ "onUpdate:fileList"?: ((fileList: import('naive-ui').UploadFileInfo[]) => any) | undefined;
245
+ onSuccess?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
246
+ onError?: ((file: import('naive-ui').UploadFileInfo, error: Error) => any) | undefined;
247
+ onExceed?: ((files: File[]) => any) | undefined;
248
+ onBeforeUpload?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
249
+ }>, {
250
+ submit: () => void;
251
+ openDialog: () => void;
252
+ clear: () => void;
253
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
254
+ "update:fileList": (fileList: import('naive-ui').UploadFileInfo[]) => any;
255
+ success: (file: import('naive-ui').UploadFileInfo) => any;
256
+ error: (file: import('naive-ui').UploadFileInfo, error: Error) => any;
257
+ exceed: (files: File[]) => any;
258
+ beforeUpload: (file: import('naive-ui').UploadFileInfo) => any;
259
+ }, import('vue').PublicProps, {
260
+ multiple: boolean;
261
+ disabled: boolean;
262
+ fileList: import('naive-ui').UploadFileInfo[];
263
+ uploadType: import('.').UploadType;
264
+ maxSize: number;
265
+ maxCount: number;
266
+ autoUpload: boolean;
267
+ urlPrefix: string;
268
+ showTip: boolean;
269
+ showDragger: boolean;
270
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
271
+ uploadRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
272
+ readonly name: {
273
+ readonly type: StringConstructor;
274
+ readonly default: "file";
275
+ };
276
+ readonly accept: StringConstructor;
277
+ readonly action: StringConstructor;
278
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
279
+ readonly directory: BooleanConstructor;
280
+ readonly directoryDnd: {
281
+ readonly type: BooleanConstructor;
282
+ readonly default: undefined;
283
+ };
284
+ readonly method: {
285
+ readonly type: StringConstructor;
286
+ readonly default: "POST";
287
+ };
288
+ readonly multiple: BooleanConstructor;
289
+ readonly showFileList: {
290
+ readonly type: BooleanConstructor;
291
+ readonly default: true;
292
+ };
293
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
294
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
295
+ readonly withCredentials: BooleanConstructor;
296
+ readonly responseType: {
297
+ readonly type: PropType<XMLHttpRequestResponseType>;
298
+ readonly default: "";
299
+ };
300
+ readonly disabled: {
301
+ readonly type: PropType<boolean | undefined>;
302
+ readonly default: undefined;
303
+ };
304
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
305
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
306
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
307
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
308
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
309
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
310
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
311
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
312
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
313
+ readonly defaultUpload: {
314
+ readonly type: BooleanConstructor;
315
+ readonly default: true;
316
+ };
317
+ readonly fileList: PropType<import('naive-ui').UploadFileInfo[]>;
318
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
319
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
320
+ readonly fileListClass: StringConstructor;
321
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
322
+ readonly defaultFileList: {
323
+ readonly type: PropType<import('naive-ui').UploadFileInfo[]>;
324
+ readonly default: () => never[];
325
+ };
326
+ readonly showCancelButton: {
327
+ readonly type: BooleanConstructor;
328
+ readonly default: true;
329
+ };
330
+ readonly showRemoveButton: {
331
+ readonly type: BooleanConstructor;
332
+ readonly default: true;
333
+ };
334
+ readonly showDownloadButton: BooleanConstructor;
335
+ readonly showRetryButton: {
336
+ readonly type: BooleanConstructor;
337
+ readonly default: true;
338
+ };
339
+ readonly showPreviewButton: {
340
+ readonly type: BooleanConstructor;
341
+ readonly default: true;
342
+ };
343
+ readonly listType: {
344
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
345
+ readonly default: "text";
346
+ };
347
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
348
+ readonly shouldUseThumbnailUrl: {
349
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
350
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
351
+ };
352
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
353
+ readonly abstract: BooleanConstructor;
354
+ readonly max: NumberConstructor;
355
+ readonly showTrigger: {
356
+ readonly type: BooleanConstructor;
357
+ readonly default: true;
358
+ };
359
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
360
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
361
+ readonly triggerClass: StringConstructor;
362
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
363
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
364
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
365
+ fontSize: string;
366
+ lineHeight: string;
367
+ borderRadius: string;
368
+ draggerColor: string;
369
+ draggerBorder: string;
370
+ draggerBorderHover: string;
371
+ itemColorHover: string;
372
+ itemColorHoverError: string;
373
+ itemTextColor: string;
374
+ itemTextColorError: string;
375
+ itemTextColorSuccess: string;
376
+ itemIconColor: string;
377
+ itemDisabledOpacity: string;
378
+ itemBorderImageCardError: string;
379
+ itemBorderImageCard: string;
380
+ }, {
381
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
382
+ heightTiny: string;
383
+ heightSmall: string;
384
+ heightMedium: string;
385
+ heightLarge: string;
386
+ borderRadiusTiny: string;
387
+ borderRadiusSmall: string;
388
+ borderRadiusMedium: string;
389
+ borderRadiusLarge: string;
390
+ fontSizeTiny: string;
391
+ fontSizeSmall: string;
392
+ fontSizeMedium: string;
393
+ fontSizeLarge: string;
394
+ opacityDisabled: string;
395
+ colorOpacitySecondary: string;
396
+ colorOpacitySecondaryHover: string;
397
+ colorOpacitySecondaryPressed: string;
398
+ colorSecondary: string;
399
+ colorSecondaryHover: string;
400
+ colorSecondaryPressed: string;
401
+ colorTertiary: string;
402
+ colorTertiaryHover: string;
403
+ colorTertiaryPressed: string;
404
+ colorQuaternary: string;
405
+ colorQuaternaryHover: string;
406
+ colorQuaternaryPressed: string;
407
+ color: string;
408
+ colorHover: string;
409
+ colorPressed: string;
410
+ colorFocus: string;
411
+ colorDisabled: string;
412
+ textColor: string;
413
+ textColorTertiary: string;
414
+ textColorHover: string;
415
+ textColorPressed: string;
416
+ textColorFocus: string;
417
+ textColorDisabled: string;
418
+ textColorText: string;
419
+ textColorTextHover: string;
420
+ textColorTextPressed: string;
421
+ textColorTextFocus: string;
422
+ textColorTextDisabled: string;
423
+ textColorGhost: string;
424
+ textColorGhostHover: string;
425
+ textColorGhostPressed: string;
426
+ textColorGhostFocus: string;
427
+ textColorGhostDisabled: string;
428
+ border: string;
429
+ borderHover: string;
430
+ borderPressed: string;
431
+ borderFocus: string;
432
+ borderDisabled: string;
433
+ rippleColor: string;
434
+ colorPrimary: string;
435
+ colorHoverPrimary: string;
436
+ colorPressedPrimary: string;
437
+ colorFocusPrimary: string;
438
+ colorDisabledPrimary: string;
439
+ textColorPrimary: string;
440
+ textColorHoverPrimary: string;
441
+ textColorPressedPrimary: string;
442
+ textColorFocusPrimary: string;
443
+ textColorDisabledPrimary: string;
444
+ textColorTextPrimary: string;
445
+ textColorTextHoverPrimary: string;
446
+ textColorTextPressedPrimary: string;
447
+ textColorTextFocusPrimary: string;
448
+ textColorTextDisabledPrimary: string;
449
+ textColorGhostPrimary: string;
450
+ textColorGhostHoverPrimary: string;
451
+ textColorGhostPressedPrimary: string;
452
+ textColorGhostFocusPrimary: string;
453
+ textColorGhostDisabledPrimary: string;
454
+ borderPrimary: string;
455
+ borderHoverPrimary: string;
456
+ borderPressedPrimary: string;
457
+ borderFocusPrimary: string;
458
+ borderDisabledPrimary: string;
459
+ rippleColorPrimary: string;
460
+ colorInfo: string;
461
+ colorHoverInfo: string;
462
+ colorPressedInfo: string;
463
+ colorFocusInfo: string;
464
+ colorDisabledInfo: string;
465
+ textColorInfo: string;
466
+ textColorHoverInfo: string;
467
+ textColorPressedInfo: string;
468
+ textColorFocusInfo: string;
469
+ textColorDisabledInfo: string;
470
+ textColorTextInfo: string;
471
+ textColorTextHoverInfo: string;
472
+ textColorTextPressedInfo: string;
473
+ textColorTextFocusInfo: string;
474
+ textColorTextDisabledInfo: string;
475
+ textColorGhostInfo: string;
476
+ textColorGhostHoverInfo: string;
477
+ textColorGhostPressedInfo: string;
478
+ textColorGhostFocusInfo: string;
479
+ textColorGhostDisabledInfo: string;
480
+ borderInfo: string;
481
+ borderHoverInfo: string;
482
+ borderPressedInfo: string;
483
+ borderFocusInfo: string;
484
+ borderDisabledInfo: string;
485
+ rippleColorInfo: string;
486
+ colorSuccess: string;
487
+ colorHoverSuccess: string;
488
+ colorPressedSuccess: string;
489
+ colorFocusSuccess: string;
490
+ colorDisabledSuccess: string;
491
+ textColorSuccess: string;
492
+ textColorHoverSuccess: string;
493
+ textColorPressedSuccess: string;
494
+ textColorFocusSuccess: string;
495
+ textColorDisabledSuccess: string;
496
+ textColorTextSuccess: string;
497
+ textColorTextHoverSuccess: string;
498
+ textColorTextPressedSuccess: string;
499
+ textColorTextFocusSuccess: string;
500
+ textColorTextDisabledSuccess: string;
501
+ textColorGhostSuccess: string;
502
+ textColorGhostHoverSuccess: string;
503
+ textColorGhostPressedSuccess: string;
504
+ textColorGhostFocusSuccess: string;
505
+ textColorGhostDisabledSuccess: string;
506
+ borderSuccess: string;
507
+ borderHoverSuccess: string;
508
+ borderPressedSuccess: string;
509
+ borderFocusSuccess: string;
510
+ borderDisabledSuccess: string;
511
+ rippleColorSuccess: string;
512
+ colorWarning: string;
513
+ colorHoverWarning: string;
514
+ colorPressedWarning: string;
515
+ colorFocusWarning: string;
516
+ colorDisabledWarning: string;
517
+ textColorWarning: string;
518
+ textColorHoverWarning: string;
519
+ textColorPressedWarning: string;
520
+ textColorFocusWarning: string;
521
+ textColorDisabledWarning: string;
522
+ textColorTextWarning: string;
523
+ textColorTextHoverWarning: string;
524
+ textColorTextPressedWarning: string;
525
+ textColorTextFocusWarning: string;
526
+ textColorTextDisabledWarning: string;
527
+ textColorGhostWarning: string;
528
+ textColorGhostHoverWarning: string;
529
+ textColorGhostPressedWarning: string;
530
+ textColorGhostFocusWarning: string;
531
+ textColorGhostDisabledWarning: string;
532
+ borderWarning: string;
533
+ borderHoverWarning: string;
534
+ borderPressedWarning: string;
535
+ borderFocusWarning: string;
536
+ borderDisabledWarning: string;
537
+ rippleColorWarning: string;
538
+ colorError: string;
539
+ colorHoverError: string;
540
+ colorPressedError: string;
541
+ colorFocusError: string;
542
+ colorDisabledError: string;
543
+ textColorError: string;
544
+ textColorHoverError: string;
545
+ textColorPressedError: string;
546
+ textColorFocusError: string;
547
+ textColorDisabledError: string;
548
+ textColorTextError: string;
549
+ textColorTextHoverError: string;
550
+ textColorTextPressedError: string;
551
+ textColorTextFocusError: string;
552
+ textColorTextDisabledError: string;
553
+ textColorGhostError: string;
554
+ textColorGhostHoverError: string;
555
+ textColorGhostPressedError: string;
556
+ textColorGhostFocusError: string;
557
+ textColorGhostDisabledError: string;
558
+ borderError: string;
559
+ borderHoverError: string;
560
+ borderPressedError: string;
561
+ borderFocusError: string;
562
+ borderDisabledError: string;
563
+ rippleColorError: string;
564
+ waveOpacity: string;
565
+ fontWeight: string;
566
+ fontWeightStrong: string;
567
+ paddingTiny: string;
568
+ paddingSmall: string;
569
+ paddingMedium: string;
570
+ paddingLarge: string;
571
+ paddingRoundTiny: string;
572
+ paddingRoundSmall: string;
573
+ paddingRoundMedium: string;
574
+ paddingRoundLarge: string;
575
+ iconMarginTiny: string;
576
+ iconMarginSmall: string;
577
+ iconMarginMedium: string;
578
+ iconMarginLarge: string;
579
+ iconSizeTiny: string;
580
+ iconSizeSmall: string;
581
+ iconSizeMedium: string;
582
+ iconSizeLarge: string;
583
+ rippleDuration: string;
584
+ }, any>;
585
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
586
+ fontSize: string;
587
+ fontSizeCircle: string;
588
+ fontWeightCircle: string;
589
+ railColor: string;
590
+ railHeight: string;
591
+ iconSizeCircle: string;
592
+ iconSizeLine: string;
593
+ iconColor: string;
594
+ iconColorInfo: string;
595
+ iconColorSuccess: string;
596
+ iconColorWarning: string;
597
+ iconColorError: string;
598
+ textColorCircle: string;
599
+ textColorLineInner: string;
600
+ textColorLineOuter: string;
601
+ fillColor: string;
602
+ fillColorInfo: string;
603
+ fillColorSuccess: string;
604
+ fillColorWarning: string;
605
+ fillColorError: string;
606
+ lineBgProcessing: string;
607
+ }, any>;
608
+ }>>;
609
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
610
+ fontSize: string;
611
+ lineHeight: string;
612
+ borderRadius: string;
613
+ draggerColor: string;
614
+ draggerBorder: string;
615
+ draggerBorderHover: string;
616
+ itemColorHover: string;
617
+ itemColorHoverError: string;
618
+ itemTextColor: string;
619
+ itemTextColorError: string;
620
+ itemTextColorSuccess: string;
621
+ itemIconColor: string;
622
+ itemDisabledOpacity: string;
623
+ itemBorderImageCardError: string;
624
+ itemBorderImageCard: string;
625
+ }, {
626
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
627
+ heightTiny: string;
628
+ heightSmall: string;
629
+ heightMedium: string;
630
+ heightLarge: string;
631
+ borderRadiusTiny: string;
632
+ borderRadiusSmall: string;
633
+ borderRadiusMedium: string;
634
+ borderRadiusLarge: string;
635
+ fontSizeTiny: string;
636
+ fontSizeSmall: string;
637
+ fontSizeMedium: string;
638
+ fontSizeLarge: string;
639
+ opacityDisabled: string;
640
+ colorOpacitySecondary: string;
641
+ colorOpacitySecondaryHover: string;
642
+ colorOpacitySecondaryPressed: string;
643
+ colorSecondary: string;
644
+ colorSecondaryHover: string;
645
+ colorSecondaryPressed: string;
646
+ colorTertiary: string;
647
+ colorTertiaryHover: string;
648
+ colorTertiaryPressed: string;
649
+ colorQuaternary: string;
650
+ colorQuaternaryHover: string;
651
+ colorQuaternaryPressed: string;
652
+ color: string;
653
+ colorHover: string;
654
+ colorPressed: string;
655
+ colorFocus: string;
656
+ colorDisabled: string;
657
+ textColor: string;
658
+ textColorTertiary: string;
659
+ textColorHover: string;
660
+ textColorPressed: string;
661
+ textColorFocus: string;
662
+ textColorDisabled: string;
663
+ textColorText: string;
664
+ textColorTextHover: string;
665
+ textColorTextPressed: string;
666
+ textColorTextFocus: string;
667
+ textColorTextDisabled: string;
668
+ textColorGhost: string;
669
+ textColorGhostHover: string;
670
+ textColorGhostPressed: string;
671
+ textColorGhostFocus: string;
672
+ textColorGhostDisabled: string;
673
+ border: string;
674
+ borderHover: string;
675
+ borderPressed: string;
676
+ borderFocus: string;
677
+ borderDisabled: string;
678
+ rippleColor: string;
679
+ colorPrimary: string;
680
+ colorHoverPrimary: string;
681
+ colorPressedPrimary: string;
682
+ colorFocusPrimary: string;
683
+ colorDisabledPrimary: string;
684
+ textColorPrimary: string;
685
+ textColorHoverPrimary: string;
686
+ textColorPressedPrimary: string;
687
+ textColorFocusPrimary: string;
688
+ textColorDisabledPrimary: string;
689
+ textColorTextPrimary: string;
690
+ textColorTextHoverPrimary: string;
691
+ textColorTextPressedPrimary: string;
692
+ textColorTextFocusPrimary: string;
693
+ textColorTextDisabledPrimary: string;
694
+ textColorGhostPrimary: string;
695
+ textColorGhostHoverPrimary: string;
696
+ textColorGhostPressedPrimary: string;
697
+ textColorGhostFocusPrimary: string;
698
+ textColorGhostDisabledPrimary: string;
699
+ borderPrimary: string;
700
+ borderHoverPrimary: string;
701
+ borderPressedPrimary: string;
702
+ borderFocusPrimary: string;
703
+ borderDisabledPrimary: string;
704
+ rippleColorPrimary: string;
705
+ colorInfo: string;
706
+ colorHoverInfo: string;
707
+ colorPressedInfo: string;
708
+ colorFocusInfo: string;
709
+ colorDisabledInfo: string;
710
+ textColorInfo: string;
711
+ textColorHoverInfo: string;
712
+ textColorPressedInfo: string;
713
+ textColorFocusInfo: string;
714
+ textColorDisabledInfo: string;
715
+ textColorTextInfo: string;
716
+ textColorTextHoverInfo: string;
717
+ textColorTextPressedInfo: string;
718
+ textColorTextFocusInfo: string;
719
+ textColorTextDisabledInfo: string;
720
+ textColorGhostInfo: string;
721
+ textColorGhostHoverInfo: string;
722
+ textColorGhostPressedInfo: string;
723
+ textColorGhostFocusInfo: string;
724
+ textColorGhostDisabledInfo: string;
725
+ borderInfo: string;
726
+ borderHoverInfo: string;
727
+ borderPressedInfo: string;
728
+ borderFocusInfo: string;
729
+ borderDisabledInfo: string;
730
+ rippleColorInfo: string;
731
+ colorSuccess: string;
732
+ colorHoverSuccess: string;
733
+ colorPressedSuccess: string;
734
+ colorFocusSuccess: string;
735
+ colorDisabledSuccess: string;
736
+ textColorSuccess: string;
737
+ textColorHoverSuccess: string;
738
+ textColorPressedSuccess: string;
739
+ textColorFocusSuccess: string;
740
+ textColorDisabledSuccess: string;
741
+ textColorTextSuccess: string;
742
+ textColorTextHoverSuccess: string;
743
+ textColorTextPressedSuccess: string;
744
+ textColorTextFocusSuccess: string;
745
+ textColorTextDisabledSuccess: string;
746
+ textColorGhostSuccess: string;
747
+ textColorGhostHoverSuccess: string;
748
+ textColorGhostPressedSuccess: string;
749
+ textColorGhostFocusSuccess: string;
750
+ textColorGhostDisabledSuccess: string;
751
+ borderSuccess: string;
752
+ borderHoverSuccess: string;
753
+ borderPressedSuccess: string;
754
+ borderFocusSuccess: string;
755
+ borderDisabledSuccess: string;
756
+ rippleColorSuccess: string;
757
+ colorWarning: string;
758
+ colorHoverWarning: string;
759
+ colorPressedWarning: string;
760
+ colorFocusWarning: string;
761
+ colorDisabledWarning: string;
762
+ textColorWarning: string;
763
+ textColorHoverWarning: string;
764
+ textColorPressedWarning: string;
765
+ textColorFocusWarning: string;
766
+ textColorDisabledWarning: string;
767
+ textColorTextWarning: string;
768
+ textColorTextHoverWarning: string;
769
+ textColorTextPressedWarning: string;
770
+ textColorTextFocusWarning: string;
771
+ textColorTextDisabledWarning: string;
772
+ textColorGhostWarning: string;
773
+ textColorGhostHoverWarning: string;
774
+ textColorGhostPressedWarning: string;
775
+ textColorGhostFocusWarning: string;
776
+ textColorGhostDisabledWarning: string;
777
+ borderWarning: string;
778
+ borderHoverWarning: string;
779
+ borderPressedWarning: string;
780
+ borderFocusWarning: string;
781
+ borderDisabledWarning: string;
782
+ rippleColorWarning: string;
783
+ colorError: string;
784
+ colorHoverError: string;
785
+ colorPressedError: string;
786
+ colorFocusError: string;
787
+ colorDisabledError: string;
788
+ textColorError: string;
789
+ textColorHoverError: string;
790
+ textColorPressedError: string;
791
+ textColorFocusError: string;
792
+ textColorDisabledError: string;
793
+ textColorTextError: string;
794
+ textColorTextHoverError: string;
795
+ textColorTextPressedError: string;
796
+ textColorTextFocusError: string;
797
+ textColorTextDisabledError: string;
798
+ textColorGhostError: string;
799
+ textColorGhostHoverError: string;
800
+ textColorGhostPressedError: string;
801
+ textColorGhostFocusError: string;
802
+ textColorGhostDisabledError: string;
803
+ borderError: string;
804
+ borderHoverError: string;
805
+ borderPressedError: string;
806
+ borderFocusError: string;
807
+ borderDisabledError: string;
808
+ rippleColorError: string;
809
+ waveOpacity: string;
810
+ fontWeight: string;
811
+ fontWeightStrong: string;
812
+ paddingTiny: string;
813
+ paddingSmall: string;
814
+ paddingMedium: string;
815
+ paddingLarge: string;
816
+ paddingRoundTiny: string;
817
+ paddingRoundSmall: string;
818
+ paddingRoundMedium: string;
819
+ paddingRoundLarge: string;
820
+ iconMarginTiny: string;
821
+ iconMarginSmall: string;
822
+ iconMarginMedium: string;
823
+ iconMarginLarge: string;
824
+ iconSizeTiny: string;
825
+ iconSizeSmall: string;
826
+ iconSizeMedium: string;
827
+ iconSizeLarge: string;
828
+ rippleDuration: string;
829
+ }, any>;
830
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
831
+ fontSize: string;
832
+ fontSizeCircle: string;
833
+ fontWeightCircle: string;
834
+ railColor: string;
835
+ railHeight: string;
836
+ iconSizeCircle: string;
837
+ iconSizeLine: string;
838
+ iconColor: string;
839
+ iconColorInfo: string;
840
+ iconColorSuccess: string;
841
+ iconColorWarning: string;
842
+ iconColorError: string;
843
+ textColorCircle: string;
844
+ textColorLineInner: string;
845
+ textColorLineOuter: string;
846
+ fillColor: string;
847
+ fillColorInfo: string;
848
+ fillColorSuccess: string;
849
+ fillColorWarning: string;
850
+ fillColorError: string;
851
+ lineBgProcessing: string;
852
+ }, any>;
853
+ }>>>;
854
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
855
+ fontSize: string;
856
+ lineHeight: string;
857
+ borderRadius: string;
858
+ draggerColor: string;
859
+ draggerBorder: string;
860
+ draggerBorderHover: string;
861
+ itemColorHover: string;
862
+ itemColorHoverError: string;
863
+ itemTextColor: string;
864
+ itemTextColorError: string;
865
+ itemTextColorSuccess: string;
866
+ itemIconColor: string;
867
+ itemDisabledOpacity: string;
868
+ itemBorderImageCardError: string;
869
+ itemBorderImageCard: string;
870
+ }, {
871
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
872
+ heightTiny: string;
873
+ heightSmall: string;
874
+ heightMedium: string;
875
+ heightLarge: string;
876
+ borderRadiusTiny: string;
877
+ borderRadiusSmall: string;
878
+ borderRadiusMedium: string;
879
+ borderRadiusLarge: string;
880
+ fontSizeTiny: string;
881
+ fontSizeSmall: string;
882
+ fontSizeMedium: string;
883
+ fontSizeLarge: string;
884
+ opacityDisabled: string;
885
+ colorOpacitySecondary: string;
886
+ colorOpacitySecondaryHover: string;
887
+ colorOpacitySecondaryPressed: string;
888
+ colorSecondary: string;
889
+ colorSecondaryHover: string;
890
+ colorSecondaryPressed: string;
891
+ colorTertiary: string;
892
+ colorTertiaryHover: string;
893
+ colorTertiaryPressed: string;
894
+ colorQuaternary: string;
895
+ colorQuaternaryHover: string;
896
+ colorQuaternaryPressed: string;
897
+ color: string;
898
+ colorHover: string;
899
+ colorPressed: string;
900
+ colorFocus: string;
901
+ colorDisabled: string;
902
+ textColor: string;
903
+ textColorTertiary: string;
904
+ textColorHover: string;
905
+ textColorPressed: string;
906
+ textColorFocus: string;
907
+ textColorDisabled: string;
908
+ textColorText: string;
909
+ textColorTextHover: string;
910
+ textColorTextPressed: string;
911
+ textColorTextFocus: string;
912
+ textColorTextDisabled: string;
913
+ textColorGhost: string;
914
+ textColorGhostHover: string;
915
+ textColorGhostPressed: string;
916
+ textColorGhostFocus: string;
917
+ textColorGhostDisabled: string;
918
+ border: string;
919
+ borderHover: string;
920
+ borderPressed: string;
921
+ borderFocus: string;
922
+ borderDisabled: string;
923
+ rippleColor: string;
924
+ colorPrimary: string;
925
+ colorHoverPrimary: string;
926
+ colorPressedPrimary: string;
927
+ colorFocusPrimary: string;
928
+ colorDisabledPrimary: string;
929
+ textColorPrimary: string;
930
+ textColorHoverPrimary: string;
931
+ textColorPressedPrimary: string;
932
+ textColorFocusPrimary: string;
933
+ textColorDisabledPrimary: string;
934
+ textColorTextPrimary: string;
935
+ textColorTextHoverPrimary: string;
936
+ textColorTextPressedPrimary: string;
937
+ textColorTextFocusPrimary: string;
938
+ textColorTextDisabledPrimary: string;
939
+ textColorGhostPrimary: string;
940
+ textColorGhostHoverPrimary: string;
941
+ textColorGhostPressedPrimary: string;
942
+ textColorGhostFocusPrimary: string;
943
+ textColorGhostDisabledPrimary: string;
944
+ borderPrimary: string;
945
+ borderHoverPrimary: string;
946
+ borderPressedPrimary: string;
947
+ borderFocusPrimary: string;
948
+ borderDisabledPrimary: string;
949
+ rippleColorPrimary: string;
950
+ colorInfo: string;
951
+ colorHoverInfo: string;
952
+ colorPressedInfo: string;
953
+ colorFocusInfo: string;
954
+ colorDisabledInfo: string;
955
+ textColorInfo: string;
956
+ textColorHoverInfo: string;
957
+ textColorPressedInfo: string;
958
+ textColorFocusInfo: string;
959
+ textColorDisabledInfo: string;
960
+ textColorTextInfo: string;
961
+ textColorTextHoverInfo: string;
962
+ textColorTextPressedInfo: string;
963
+ textColorTextFocusInfo: string;
964
+ textColorTextDisabledInfo: string;
965
+ textColorGhostInfo: string;
966
+ textColorGhostHoverInfo: string;
967
+ textColorGhostPressedInfo: string;
968
+ textColorGhostFocusInfo: string;
969
+ textColorGhostDisabledInfo: string;
970
+ borderInfo: string;
971
+ borderHoverInfo: string;
972
+ borderPressedInfo: string;
973
+ borderFocusInfo: string;
974
+ borderDisabledInfo: string;
975
+ rippleColorInfo: string;
976
+ colorSuccess: string;
977
+ colorHoverSuccess: string;
978
+ colorPressedSuccess: string;
979
+ colorFocusSuccess: string;
980
+ colorDisabledSuccess: string;
981
+ textColorSuccess: string;
982
+ textColorHoverSuccess: string;
983
+ textColorPressedSuccess: string;
984
+ textColorFocusSuccess: string;
985
+ textColorDisabledSuccess: string;
986
+ textColorTextSuccess: string;
987
+ textColorTextHoverSuccess: string;
988
+ textColorTextPressedSuccess: string;
989
+ textColorTextFocusSuccess: string;
990
+ textColorTextDisabledSuccess: string;
991
+ textColorGhostSuccess: string;
992
+ textColorGhostHoverSuccess: string;
993
+ textColorGhostPressedSuccess: string;
994
+ textColorGhostFocusSuccess: string;
995
+ textColorGhostDisabledSuccess: string;
996
+ borderSuccess: string;
997
+ borderHoverSuccess: string;
998
+ borderPressedSuccess: string;
999
+ borderFocusSuccess: string;
1000
+ borderDisabledSuccess: string;
1001
+ rippleColorSuccess: string;
1002
+ colorWarning: string;
1003
+ colorHoverWarning: string;
1004
+ colorPressedWarning: string;
1005
+ colorFocusWarning: string;
1006
+ colorDisabledWarning: string;
1007
+ textColorWarning: string;
1008
+ textColorHoverWarning: string;
1009
+ textColorPressedWarning: string;
1010
+ textColorFocusWarning: string;
1011
+ textColorDisabledWarning: string;
1012
+ textColorTextWarning: string;
1013
+ textColorTextHoverWarning: string;
1014
+ textColorTextPressedWarning: string;
1015
+ textColorTextFocusWarning: string;
1016
+ textColorTextDisabledWarning: string;
1017
+ textColorGhostWarning: string;
1018
+ textColorGhostHoverWarning: string;
1019
+ textColorGhostPressedWarning: string;
1020
+ textColorGhostFocusWarning: string;
1021
+ textColorGhostDisabledWarning: string;
1022
+ borderWarning: string;
1023
+ borderHoverWarning: string;
1024
+ borderPressedWarning: string;
1025
+ borderFocusWarning: string;
1026
+ borderDisabledWarning: string;
1027
+ rippleColorWarning: string;
1028
+ colorError: string;
1029
+ colorHoverError: string;
1030
+ colorPressedError: string;
1031
+ colorFocusError: string;
1032
+ colorDisabledError: string;
1033
+ textColorError: string;
1034
+ textColorHoverError: string;
1035
+ textColorPressedError: string;
1036
+ textColorFocusError: string;
1037
+ textColorDisabledError: string;
1038
+ textColorTextError: string;
1039
+ textColorTextHoverError: string;
1040
+ textColorTextPressedError: string;
1041
+ textColorTextFocusError: string;
1042
+ textColorTextDisabledError: string;
1043
+ textColorGhostError: string;
1044
+ textColorGhostHoverError: string;
1045
+ textColorGhostPressedError: string;
1046
+ textColorGhostFocusError: string;
1047
+ textColorGhostDisabledError: string;
1048
+ borderError: string;
1049
+ borderHoverError: string;
1050
+ borderPressedError: string;
1051
+ borderFocusError: string;
1052
+ borderDisabledError: string;
1053
+ rippleColorError: string;
1054
+ waveOpacity: string;
1055
+ fontWeight: string;
1056
+ fontWeightStrong: string;
1057
+ paddingTiny: string;
1058
+ paddingSmall: string;
1059
+ paddingMedium: string;
1060
+ paddingLarge: string;
1061
+ paddingRoundTiny: string;
1062
+ paddingRoundSmall: string;
1063
+ paddingRoundMedium: string;
1064
+ paddingRoundLarge: string;
1065
+ iconMarginTiny: string;
1066
+ iconMarginSmall: string;
1067
+ iconMarginMedium: string;
1068
+ iconMarginLarge: string;
1069
+ iconSizeTiny: string;
1070
+ iconSizeSmall: string;
1071
+ iconSizeMedium: string;
1072
+ iconSizeLarge: string;
1073
+ rippleDuration: string;
1074
+ }, any>;
1075
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1076
+ fontSize: string;
1077
+ fontSizeCircle: string;
1078
+ fontWeightCircle: string;
1079
+ railColor: string;
1080
+ railHeight: string;
1081
+ iconSizeCircle: string;
1082
+ iconSizeLine: string;
1083
+ iconColor: string;
1084
+ iconColorInfo: string;
1085
+ iconColorSuccess: string;
1086
+ iconColorWarning: string;
1087
+ iconColorError: string;
1088
+ textColorCircle: string;
1089
+ textColorLineInner: string;
1090
+ textColorLineOuter: string;
1091
+ fillColor: string;
1092
+ fillColorInfo: string;
1093
+ fillColorSuccess: string;
1094
+ fillColorWarning: string;
1095
+ fillColorError: string;
1096
+ lineBgProcessing: string;
1097
+ }, any>;
1098
+ }>>>;
1099
+ }>> & Readonly<{}>, {
1100
+ openOpenFileDialog: () => void;
1101
+ submit: (fileId?: string) => void;
1102
+ clear: () => void;
1103
+ mergedClsPrefix: import('vue').Ref<string, string>;
1104
+ draggerInsideRef: {
1105
+ value: boolean;
1106
+ };
1107
+ 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;
1108
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
1109
+ mergedTheme: import('vue').ComputedRef<{
1110
+ common: import('naive-ui').ThemeCommonVars;
1111
+ self: {
1112
+ fontSize: string;
1113
+ lineHeight: string;
1114
+ borderRadius: string;
1115
+ draggerColor: string;
1116
+ draggerBorder: string;
1117
+ draggerBorderHover: string;
1118
+ itemColorHover: string;
1119
+ itemColorHoverError: string;
1120
+ itemTextColor: string;
1121
+ itemTextColorError: string;
1122
+ itemTextColorSuccess: string;
1123
+ itemIconColor: string;
1124
+ itemDisabledOpacity: string;
1125
+ itemBorderImageCardError: string;
1126
+ itemBorderImageCard: string;
1127
+ };
1128
+ peers: {
1129
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1130
+ heightTiny: string;
1131
+ heightSmall: string;
1132
+ heightMedium: string;
1133
+ heightLarge: string;
1134
+ borderRadiusTiny: string;
1135
+ borderRadiusSmall: string;
1136
+ borderRadiusMedium: string;
1137
+ borderRadiusLarge: string;
1138
+ fontSizeTiny: string;
1139
+ fontSizeSmall: string;
1140
+ fontSizeMedium: string;
1141
+ fontSizeLarge: string;
1142
+ opacityDisabled: string;
1143
+ colorOpacitySecondary: string;
1144
+ colorOpacitySecondaryHover: string;
1145
+ colorOpacitySecondaryPressed: string;
1146
+ colorSecondary: string;
1147
+ colorSecondaryHover: string;
1148
+ colorSecondaryPressed: string;
1149
+ colorTertiary: string;
1150
+ colorTertiaryHover: string;
1151
+ colorTertiaryPressed: string;
1152
+ colorQuaternary: string;
1153
+ colorQuaternaryHover: string;
1154
+ colorQuaternaryPressed: string;
1155
+ color: string;
1156
+ colorHover: string;
1157
+ colorPressed: string;
1158
+ colorFocus: string;
1159
+ colorDisabled: string;
1160
+ textColor: string;
1161
+ textColorTertiary: string;
1162
+ textColorHover: string;
1163
+ textColorPressed: string;
1164
+ textColorFocus: string;
1165
+ textColorDisabled: string;
1166
+ textColorText: string;
1167
+ textColorTextHover: string;
1168
+ textColorTextPressed: string;
1169
+ textColorTextFocus: string;
1170
+ textColorTextDisabled: string;
1171
+ textColorGhost: string;
1172
+ textColorGhostHover: string;
1173
+ textColorGhostPressed: string;
1174
+ textColorGhostFocus: string;
1175
+ textColorGhostDisabled: string;
1176
+ border: string;
1177
+ borderHover: string;
1178
+ borderPressed: string;
1179
+ borderFocus: string;
1180
+ borderDisabled: string;
1181
+ rippleColor: string;
1182
+ colorPrimary: string;
1183
+ colorHoverPrimary: string;
1184
+ colorPressedPrimary: string;
1185
+ colorFocusPrimary: string;
1186
+ colorDisabledPrimary: string;
1187
+ textColorPrimary: string;
1188
+ textColorHoverPrimary: string;
1189
+ textColorPressedPrimary: string;
1190
+ textColorFocusPrimary: string;
1191
+ textColorDisabledPrimary: string;
1192
+ textColorTextPrimary: string;
1193
+ textColorTextHoverPrimary: string;
1194
+ textColorTextPressedPrimary: string;
1195
+ textColorTextFocusPrimary: string;
1196
+ textColorTextDisabledPrimary: string;
1197
+ textColorGhostPrimary: string;
1198
+ textColorGhostHoverPrimary: string;
1199
+ textColorGhostPressedPrimary: string;
1200
+ textColorGhostFocusPrimary: string;
1201
+ textColorGhostDisabledPrimary: string;
1202
+ borderPrimary: string;
1203
+ borderHoverPrimary: string;
1204
+ borderPressedPrimary: string;
1205
+ borderFocusPrimary: string;
1206
+ borderDisabledPrimary: string;
1207
+ rippleColorPrimary: string;
1208
+ colorInfo: string;
1209
+ colorHoverInfo: string;
1210
+ colorPressedInfo: string;
1211
+ colorFocusInfo: string;
1212
+ colorDisabledInfo: string;
1213
+ textColorInfo: string;
1214
+ textColorHoverInfo: string;
1215
+ textColorPressedInfo: string;
1216
+ textColorFocusInfo: string;
1217
+ textColorDisabledInfo: string;
1218
+ textColorTextInfo: string;
1219
+ textColorTextHoverInfo: string;
1220
+ textColorTextPressedInfo: string;
1221
+ textColorTextFocusInfo: string;
1222
+ textColorTextDisabledInfo: string;
1223
+ textColorGhostInfo: string;
1224
+ textColorGhostHoverInfo: string;
1225
+ textColorGhostPressedInfo: string;
1226
+ textColorGhostFocusInfo: string;
1227
+ textColorGhostDisabledInfo: string;
1228
+ borderInfo: string;
1229
+ borderHoverInfo: string;
1230
+ borderPressedInfo: string;
1231
+ borderFocusInfo: string;
1232
+ borderDisabledInfo: string;
1233
+ rippleColorInfo: string;
1234
+ colorSuccess: string;
1235
+ colorHoverSuccess: string;
1236
+ colorPressedSuccess: string;
1237
+ colorFocusSuccess: string;
1238
+ colorDisabledSuccess: string;
1239
+ textColorSuccess: string;
1240
+ textColorHoverSuccess: string;
1241
+ textColorPressedSuccess: string;
1242
+ textColorFocusSuccess: string;
1243
+ textColorDisabledSuccess: string;
1244
+ textColorTextSuccess: string;
1245
+ textColorTextHoverSuccess: string;
1246
+ textColorTextPressedSuccess: string;
1247
+ textColorTextFocusSuccess: string;
1248
+ textColorTextDisabledSuccess: string;
1249
+ textColorGhostSuccess: string;
1250
+ textColorGhostHoverSuccess: string;
1251
+ textColorGhostPressedSuccess: string;
1252
+ textColorGhostFocusSuccess: string;
1253
+ textColorGhostDisabledSuccess: string;
1254
+ borderSuccess: string;
1255
+ borderHoverSuccess: string;
1256
+ borderPressedSuccess: string;
1257
+ borderFocusSuccess: string;
1258
+ borderDisabledSuccess: string;
1259
+ rippleColorSuccess: string;
1260
+ colorWarning: string;
1261
+ colorHoverWarning: string;
1262
+ colorPressedWarning: string;
1263
+ colorFocusWarning: string;
1264
+ colorDisabledWarning: string;
1265
+ textColorWarning: string;
1266
+ textColorHoverWarning: string;
1267
+ textColorPressedWarning: string;
1268
+ textColorFocusWarning: string;
1269
+ textColorDisabledWarning: string;
1270
+ textColorTextWarning: string;
1271
+ textColorTextHoverWarning: string;
1272
+ textColorTextPressedWarning: string;
1273
+ textColorTextFocusWarning: string;
1274
+ textColorTextDisabledWarning: string;
1275
+ textColorGhostWarning: string;
1276
+ textColorGhostHoverWarning: string;
1277
+ textColorGhostPressedWarning: string;
1278
+ textColorGhostFocusWarning: string;
1279
+ textColorGhostDisabledWarning: string;
1280
+ borderWarning: string;
1281
+ borderHoverWarning: string;
1282
+ borderPressedWarning: string;
1283
+ borderFocusWarning: string;
1284
+ borderDisabledWarning: string;
1285
+ rippleColorWarning: string;
1286
+ colorError: string;
1287
+ colorHoverError: string;
1288
+ colorPressedError: string;
1289
+ colorFocusError: string;
1290
+ colorDisabledError: string;
1291
+ textColorError: string;
1292
+ textColorHoverError: string;
1293
+ textColorPressedError: string;
1294
+ textColorFocusError: string;
1295
+ textColorDisabledError: string;
1296
+ textColorTextError: string;
1297
+ textColorTextHoverError: string;
1298
+ textColorTextPressedError: string;
1299
+ textColorTextFocusError: string;
1300
+ textColorTextDisabledError: string;
1301
+ textColorGhostError: string;
1302
+ textColorGhostHoverError: string;
1303
+ textColorGhostPressedError: string;
1304
+ textColorGhostFocusError: string;
1305
+ textColorGhostDisabledError: string;
1306
+ borderError: string;
1307
+ borderHoverError: string;
1308
+ borderPressedError: string;
1309
+ borderFocusError: string;
1310
+ borderDisabledError: string;
1311
+ rippleColorError: string;
1312
+ waveOpacity: string;
1313
+ fontWeight: string;
1314
+ fontWeightStrong: string;
1315
+ paddingTiny: string;
1316
+ paddingSmall: string;
1317
+ paddingMedium: string;
1318
+ paddingLarge: string;
1319
+ paddingRoundTiny: string;
1320
+ paddingRoundSmall: string;
1321
+ paddingRoundMedium: string;
1322
+ paddingRoundLarge: string;
1323
+ iconMarginTiny: string;
1324
+ iconMarginSmall: string;
1325
+ iconMarginMedium: string;
1326
+ iconMarginLarge: string;
1327
+ iconSizeTiny: string;
1328
+ iconSizeSmall: string;
1329
+ iconSizeMedium: string;
1330
+ iconSizeLarge: string;
1331
+ rippleDuration: string;
1332
+ }, any>;
1333
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1334
+ fontSize: string;
1335
+ fontSizeCircle: string;
1336
+ fontWeightCircle: string;
1337
+ railColor: string;
1338
+ railHeight: string;
1339
+ iconSizeCircle: string;
1340
+ iconSizeLine: string;
1341
+ iconColor: string;
1342
+ iconColorInfo: string;
1343
+ iconColorSuccess: string;
1344
+ iconColorWarning: string;
1345
+ iconColorError: string;
1346
+ textColorCircle: string;
1347
+ textColorLineInner: string;
1348
+ textColorLineOuter: string;
1349
+ fillColor: string;
1350
+ fillColorInfo: string;
1351
+ fillColorSuccess: string;
1352
+ fillColorWarning: string;
1353
+ fillColorError: string;
1354
+ lineBgProcessing: string;
1355
+ }, any>;
1356
+ };
1357
+ peerOverrides: {
1358
+ Button?: {
1359
+ peers?: {
1360
+ [x: string]: any;
1361
+ } | undefined;
1362
+ } | undefined;
1363
+ Progress?: {
1364
+ peers?: {
1365
+ [x: string]: any;
1366
+ } | undefined;
1367
+ } | undefined;
1368
+ };
1369
+ }>;
1370
+ dragOver: import('vue').Ref<boolean, boolean>;
1371
+ mergedMultiple: import('vue').ComputedRef<boolean>;
1372
+ cssVars: import('vue').ComputedRef<any> | undefined;
1373
+ themeClass: import('vue').Ref<string, string> | undefined;
1374
+ onRender: (() => void) | undefined;
1375
+ handleFileInputChange: (e: Event) => void;
1376
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
1377
+ readonly disabled: boolean | undefined;
1378
+ readonly name: string;
1379
+ readonly multiple: boolean;
1380
+ readonly abstract: boolean;
1381
+ readonly showTrigger: boolean;
1382
+ readonly directory: boolean;
1383
+ readonly directoryDnd: boolean;
1384
+ readonly method: string;
1385
+ readonly showFileList: boolean;
1386
+ readonly withCredentials: boolean;
1387
+ readonly responseType: XMLHttpRequestResponseType;
1388
+ readonly defaultUpload: boolean;
1389
+ readonly defaultFileList: import('naive-ui').UploadFileInfo[];
1390
+ readonly showCancelButton: boolean;
1391
+ readonly showRemoveButton: boolean;
1392
+ readonly showDownloadButton: boolean;
1393
+ readonly showRetryButton: boolean;
1394
+ readonly showPreviewButton: boolean;
1395
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
1396
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
1397
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
1398
+ P: {};
1399
+ B: {};
1400
+ D: {};
1401
+ C: {};
1402
+ M: {};
1403
+ Defaults: {};
1404
+ }, Readonly<globalThis.ExtractPropTypes<{
1405
+ readonly name: {
1406
+ readonly type: StringConstructor;
1407
+ readonly default: "file";
1408
+ };
1409
+ readonly accept: StringConstructor;
1410
+ readonly action: StringConstructor;
1411
+ readonly customRequest: PropType<import('naive-ui/es/upload/src/interface').CustomRequest>;
1412
+ readonly directory: BooleanConstructor;
1413
+ readonly directoryDnd: {
1414
+ readonly type: BooleanConstructor;
1415
+ readonly default: undefined;
1416
+ };
1417
+ readonly method: {
1418
+ readonly type: StringConstructor;
1419
+ readonly default: "POST";
1420
+ };
1421
+ readonly multiple: BooleanConstructor;
1422
+ readonly showFileList: {
1423
+ readonly type: BooleanConstructor;
1424
+ readonly default: true;
1425
+ };
1426
+ readonly data: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef<string | Blob>>;
1427
+ readonly headers: PropType<import('naive-ui/es/upload/src/interface').FuncOrRecordOrUndef>;
1428
+ readonly withCredentials: BooleanConstructor;
1429
+ readonly responseType: {
1430
+ readonly type: PropType<XMLHttpRequestResponseType>;
1431
+ readonly default: "";
1432
+ };
1433
+ readonly disabled: {
1434
+ readonly type: PropType<boolean | undefined>;
1435
+ readonly default: undefined;
1436
+ };
1437
+ readonly onChange: PropType<import('naive-ui').UploadOnChange>;
1438
+ readonly onRemove: PropType<import('naive-ui').UploadOnRemove>;
1439
+ readonly onFinish: PropType<import('naive-ui').UploadOnFinish>;
1440
+ readonly onError: PropType<import('naive-ui/es/upload/src/interface').OnError>;
1441
+ readonly onRetry: PropType<import('naive-ui/es/upload/src/interface').OnRetry>;
1442
+ readonly onBeforeUpload: PropType<import('naive-ui/es/upload/src/interface').OnBeforeUpload>;
1443
+ readonly isErrorState: PropType<(xhr: XMLHttpRequest) => boolean>;
1444
+ readonly onDownload: PropType<import('naive-ui').UploadOnDownload>;
1445
+ readonly customDownload: PropType<import('naive-ui').UploadOnDownload>;
1446
+ readonly defaultUpload: {
1447
+ readonly type: BooleanConstructor;
1448
+ readonly default: true;
1449
+ };
1450
+ readonly fileList: PropType<import('naive-ui').UploadFileInfo[]>;
1451
+ readonly 'onUpdate:fileList': PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1452
+ readonly onUpdateFileList: PropType<import('naive-ui/es/_utils').MaybeArray<import('naive-ui/es/upload/src/interface').OnUpdateFileList>>;
1453
+ readonly fileListClass: StringConstructor;
1454
+ readonly fileListStyle: PropType<string | import('vue').CSSProperties>;
1455
+ readonly defaultFileList: {
1456
+ readonly type: PropType<import('naive-ui').UploadFileInfo[]>;
1457
+ readonly default: () => never[];
1458
+ };
1459
+ readonly showCancelButton: {
1460
+ readonly type: BooleanConstructor;
1461
+ readonly default: true;
1462
+ };
1463
+ readonly showRemoveButton: {
1464
+ readonly type: BooleanConstructor;
1465
+ readonly default: true;
1466
+ };
1467
+ readonly showDownloadButton: BooleanConstructor;
1468
+ readonly showRetryButton: {
1469
+ readonly type: BooleanConstructor;
1470
+ readonly default: true;
1471
+ };
1472
+ readonly showPreviewButton: {
1473
+ readonly type: BooleanConstructor;
1474
+ readonly default: true;
1475
+ };
1476
+ readonly listType: {
1477
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ListType>;
1478
+ readonly default: "text";
1479
+ };
1480
+ readonly onPreview: PropType<import('naive-ui/es/upload/src/interface').OnPreview>;
1481
+ readonly shouldUseThumbnailUrl: {
1482
+ readonly type: PropType<import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl>;
1483
+ readonly default: (file: import('naive-ui').UploadSettledFileInfo) => boolean;
1484
+ };
1485
+ readonly createThumbnailUrl: PropType<import('naive-ui/es/upload/src/interface').CreateThumbnailUrl>;
1486
+ readonly abstract: BooleanConstructor;
1487
+ readonly max: NumberConstructor;
1488
+ readonly showTrigger: {
1489
+ readonly type: BooleanConstructor;
1490
+ readonly default: true;
1491
+ };
1492
+ readonly imageGroupProps: PropType<import('naive-ui').ImageGroupProps>;
1493
+ readonly inputProps: PropType<import('vue').InputHTMLAttributes>;
1494
+ readonly triggerClass: StringConstructor;
1495
+ readonly triggerStyle: PropType<import('vue').CSSProperties | string>;
1496
+ readonly renderIcon: PropType<import('naive-ui/es/upload/src/interface').RenderIcon>;
1497
+ readonly theme: PropType<import('naive-ui/es/_mixins').Theme<"Upload", {
1498
+ fontSize: string;
1499
+ lineHeight: string;
1500
+ borderRadius: string;
1501
+ draggerColor: string;
1502
+ draggerBorder: string;
1503
+ draggerBorderHover: string;
1504
+ itemColorHover: string;
1505
+ itemColorHoverError: string;
1506
+ itemTextColor: string;
1507
+ itemTextColorError: string;
1508
+ itemTextColorSuccess: string;
1509
+ itemIconColor: string;
1510
+ itemDisabledOpacity: string;
1511
+ itemBorderImageCardError: string;
1512
+ itemBorderImageCard: string;
1513
+ }, {
1514
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1515
+ heightTiny: string;
1516
+ heightSmall: string;
1517
+ heightMedium: string;
1518
+ heightLarge: string;
1519
+ borderRadiusTiny: string;
1520
+ borderRadiusSmall: string;
1521
+ borderRadiusMedium: string;
1522
+ borderRadiusLarge: string;
1523
+ fontSizeTiny: string;
1524
+ fontSizeSmall: string;
1525
+ fontSizeMedium: string;
1526
+ fontSizeLarge: string;
1527
+ opacityDisabled: string;
1528
+ colorOpacitySecondary: string;
1529
+ colorOpacitySecondaryHover: string;
1530
+ colorOpacitySecondaryPressed: string;
1531
+ colorSecondary: string;
1532
+ colorSecondaryHover: string;
1533
+ colorSecondaryPressed: string;
1534
+ colorTertiary: string;
1535
+ colorTertiaryHover: string;
1536
+ colorTertiaryPressed: string;
1537
+ colorQuaternary: string;
1538
+ colorQuaternaryHover: string;
1539
+ colorQuaternaryPressed: string;
1540
+ color: string;
1541
+ colorHover: string;
1542
+ colorPressed: string;
1543
+ colorFocus: string;
1544
+ colorDisabled: string;
1545
+ textColor: string;
1546
+ textColorTertiary: string;
1547
+ textColorHover: string;
1548
+ textColorPressed: string;
1549
+ textColorFocus: string;
1550
+ textColorDisabled: string;
1551
+ textColorText: string;
1552
+ textColorTextHover: string;
1553
+ textColorTextPressed: string;
1554
+ textColorTextFocus: string;
1555
+ textColorTextDisabled: string;
1556
+ textColorGhost: string;
1557
+ textColorGhostHover: string;
1558
+ textColorGhostPressed: string;
1559
+ textColorGhostFocus: string;
1560
+ textColorGhostDisabled: string;
1561
+ border: string;
1562
+ borderHover: string;
1563
+ borderPressed: string;
1564
+ borderFocus: string;
1565
+ borderDisabled: string;
1566
+ rippleColor: string;
1567
+ colorPrimary: string;
1568
+ colorHoverPrimary: string;
1569
+ colorPressedPrimary: string;
1570
+ colorFocusPrimary: string;
1571
+ colorDisabledPrimary: string;
1572
+ textColorPrimary: string;
1573
+ textColorHoverPrimary: string;
1574
+ textColorPressedPrimary: string;
1575
+ textColorFocusPrimary: string;
1576
+ textColorDisabledPrimary: string;
1577
+ textColorTextPrimary: string;
1578
+ textColorTextHoverPrimary: string;
1579
+ textColorTextPressedPrimary: string;
1580
+ textColorTextFocusPrimary: string;
1581
+ textColorTextDisabledPrimary: string;
1582
+ textColorGhostPrimary: string;
1583
+ textColorGhostHoverPrimary: string;
1584
+ textColorGhostPressedPrimary: string;
1585
+ textColorGhostFocusPrimary: string;
1586
+ textColorGhostDisabledPrimary: string;
1587
+ borderPrimary: string;
1588
+ borderHoverPrimary: string;
1589
+ borderPressedPrimary: string;
1590
+ borderFocusPrimary: string;
1591
+ borderDisabledPrimary: string;
1592
+ rippleColorPrimary: string;
1593
+ colorInfo: string;
1594
+ colorHoverInfo: string;
1595
+ colorPressedInfo: string;
1596
+ colorFocusInfo: string;
1597
+ colorDisabledInfo: string;
1598
+ textColorInfo: string;
1599
+ textColorHoverInfo: string;
1600
+ textColorPressedInfo: string;
1601
+ textColorFocusInfo: string;
1602
+ textColorDisabledInfo: string;
1603
+ textColorTextInfo: string;
1604
+ textColorTextHoverInfo: string;
1605
+ textColorTextPressedInfo: string;
1606
+ textColorTextFocusInfo: string;
1607
+ textColorTextDisabledInfo: string;
1608
+ textColorGhostInfo: string;
1609
+ textColorGhostHoverInfo: string;
1610
+ textColorGhostPressedInfo: string;
1611
+ textColorGhostFocusInfo: string;
1612
+ textColorGhostDisabledInfo: string;
1613
+ borderInfo: string;
1614
+ borderHoverInfo: string;
1615
+ borderPressedInfo: string;
1616
+ borderFocusInfo: string;
1617
+ borderDisabledInfo: string;
1618
+ rippleColorInfo: string;
1619
+ colorSuccess: string;
1620
+ colorHoverSuccess: string;
1621
+ colorPressedSuccess: string;
1622
+ colorFocusSuccess: string;
1623
+ colorDisabledSuccess: string;
1624
+ textColorSuccess: string;
1625
+ textColorHoverSuccess: string;
1626
+ textColorPressedSuccess: string;
1627
+ textColorFocusSuccess: string;
1628
+ textColorDisabledSuccess: string;
1629
+ textColorTextSuccess: string;
1630
+ textColorTextHoverSuccess: string;
1631
+ textColorTextPressedSuccess: string;
1632
+ textColorTextFocusSuccess: string;
1633
+ textColorTextDisabledSuccess: string;
1634
+ textColorGhostSuccess: string;
1635
+ textColorGhostHoverSuccess: string;
1636
+ textColorGhostPressedSuccess: string;
1637
+ textColorGhostFocusSuccess: string;
1638
+ textColorGhostDisabledSuccess: string;
1639
+ borderSuccess: string;
1640
+ borderHoverSuccess: string;
1641
+ borderPressedSuccess: string;
1642
+ borderFocusSuccess: string;
1643
+ borderDisabledSuccess: string;
1644
+ rippleColorSuccess: string;
1645
+ colorWarning: string;
1646
+ colorHoverWarning: string;
1647
+ colorPressedWarning: string;
1648
+ colorFocusWarning: string;
1649
+ colorDisabledWarning: string;
1650
+ textColorWarning: string;
1651
+ textColorHoverWarning: string;
1652
+ textColorPressedWarning: string;
1653
+ textColorFocusWarning: string;
1654
+ textColorDisabledWarning: string;
1655
+ textColorTextWarning: string;
1656
+ textColorTextHoverWarning: string;
1657
+ textColorTextPressedWarning: string;
1658
+ textColorTextFocusWarning: string;
1659
+ textColorTextDisabledWarning: string;
1660
+ textColorGhostWarning: string;
1661
+ textColorGhostHoverWarning: string;
1662
+ textColorGhostPressedWarning: string;
1663
+ textColorGhostFocusWarning: string;
1664
+ textColorGhostDisabledWarning: string;
1665
+ borderWarning: string;
1666
+ borderHoverWarning: string;
1667
+ borderPressedWarning: string;
1668
+ borderFocusWarning: string;
1669
+ borderDisabledWarning: string;
1670
+ rippleColorWarning: string;
1671
+ colorError: string;
1672
+ colorHoverError: string;
1673
+ colorPressedError: string;
1674
+ colorFocusError: string;
1675
+ colorDisabledError: string;
1676
+ textColorError: string;
1677
+ textColorHoverError: string;
1678
+ textColorPressedError: string;
1679
+ textColorFocusError: string;
1680
+ textColorDisabledError: string;
1681
+ textColorTextError: string;
1682
+ textColorTextHoverError: string;
1683
+ textColorTextPressedError: string;
1684
+ textColorTextFocusError: string;
1685
+ textColorTextDisabledError: string;
1686
+ textColorGhostError: string;
1687
+ textColorGhostHoverError: string;
1688
+ textColorGhostPressedError: string;
1689
+ textColorGhostFocusError: string;
1690
+ textColorGhostDisabledError: string;
1691
+ borderError: string;
1692
+ borderHoverError: string;
1693
+ borderPressedError: string;
1694
+ borderFocusError: string;
1695
+ borderDisabledError: string;
1696
+ rippleColorError: string;
1697
+ waveOpacity: string;
1698
+ fontWeight: string;
1699
+ fontWeightStrong: string;
1700
+ paddingTiny: string;
1701
+ paddingSmall: string;
1702
+ paddingMedium: string;
1703
+ paddingLarge: string;
1704
+ paddingRoundTiny: string;
1705
+ paddingRoundSmall: string;
1706
+ paddingRoundMedium: string;
1707
+ paddingRoundLarge: string;
1708
+ iconMarginTiny: string;
1709
+ iconMarginSmall: string;
1710
+ iconMarginMedium: string;
1711
+ iconMarginLarge: string;
1712
+ iconSizeTiny: string;
1713
+ iconSizeSmall: string;
1714
+ iconSizeMedium: string;
1715
+ iconSizeLarge: string;
1716
+ rippleDuration: string;
1717
+ }, any>;
1718
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1719
+ fontSize: string;
1720
+ fontSizeCircle: string;
1721
+ fontWeightCircle: string;
1722
+ railColor: string;
1723
+ railHeight: string;
1724
+ iconSizeCircle: string;
1725
+ iconSizeLine: string;
1726
+ iconColor: string;
1727
+ iconColorInfo: string;
1728
+ iconColorSuccess: string;
1729
+ iconColorWarning: string;
1730
+ iconColorError: string;
1731
+ textColorCircle: string;
1732
+ textColorLineInner: string;
1733
+ textColorLineOuter: string;
1734
+ fillColor: string;
1735
+ fillColorInfo: string;
1736
+ fillColorSuccess: string;
1737
+ fillColorWarning: string;
1738
+ fillColorError: string;
1739
+ lineBgProcessing: string;
1740
+ }, any>;
1741
+ }>>;
1742
+ readonly themeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
1743
+ fontSize: string;
1744
+ lineHeight: string;
1745
+ borderRadius: string;
1746
+ draggerColor: string;
1747
+ draggerBorder: string;
1748
+ draggerBorderHover: string;
1749
+ itemColorHover: string;
1750
+ itemColorHoverError: string;
1751
+ itemTextColor: string;
1752
+ itemTextColorError: string;
1753
+ itemTextColorSuccess: string;
1754
+ itemIconColor: string;
1755
+ itemDisabledOpacity: string;
1756
+ itemBorderImageCardError: string;
1757
+ itemBorderImageCard: string;
1758
+ }, {
1759
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
1760
+ heightTiny: string;
1761
+ heightSmall: string;
1762
+ heightMedium: string;
1763
+ heightLarge: string;
1764
+ borderRadiusTiny: string;
1765
+ borderRadiusSmall: string;
1766
+ borderRadiusMedium: string;
1767
+ borderRadiusLarge: string;
1768
+ fontSizeTiny: string;
1769
+ fontSizeSmall: string;
1770
+ fontSizeMedium: string;
1771
+ fontSizeLarge: string;
1772
+ opacityDisabled: string;
1773
+ colorOpacitySecondary: string;
1774
+ colorOpacitySecondaryHover: string;
1775
+ colorOpacitySecondaryPressed: string;
1776
+ colorSecondary: string;
1777
+ colorSecondaryHover: string;
1778
+ colorSecondaryPressed: string;
1779
+ colorTertiary: string;
1780
+ colorTertiaryHover: string;
1781
+ colorTertiaryPressed: string;
1782
+ colorQuaternary: string;
1783
+ colorQuaternaryHover: string;
1784
+ colorQuaternaryPressed: string;
1785
+ color: string;
1786
+ colorHover: string;
1787
+ colorPressed: string;
1788
+ colorFocus: string;
1789
+ colorDisabled: string;
1790
+ textColor: string;
1791
+ textColorTertiary: string;
1792
+ textColorHover: string;
1793
+ textColorPressed: string;
1794
+ textColorFocus: string;
1795
+ textColorDisabled: string;
1796
+ textColorText: string;
1797
+ textColorTextHover: string;
1798
+ textColorTextPressed: string;
1799
+ textColorTextFocus: string;
1800
+ textColorTextDisabled: string;
1801
+ textColorGhost: string;
1802
+ textColorGhostHover: string;
1803
+ textColorGhostPressed: string;
1804
+ textColorGhostFocus: string;
1805
+ textColorGhostDisabled: string;
1806
+ border: string;
1807
+ borderHover: string;
1808
+ borderPressed: string;
1809
+ borderFocus: string;
1810
+ borderDisabled: string;
1811
+ rippleColor: string;
1812
+ colorPrimary: string;
1813
+ colorHoverPrimary: string;
1814
+ colorPressedPrimary: string;
1815
+ colorFocusPrimary: string;
1816
+ colorDisabledPrimary: string;
1817
+ textColorPrimary: string;
1818
+ textColorHoverPrimary: string;
1819
+ textColorPressedPrimary: string;
1820
+ textColorFocusPrimary: string;
1821
+ textColorDisabledPrimary: string;
1822
+ textColorTextPrimary: string;
1823
+ textColorTextHoverPrimary: string;
1824
+ textColorTextPressedPrimary: string;
1825
+ textColorTextFocusPrimary: string;
1826
+ textColorTextDisabledPrimary: string;
1827
+ textColorGhostPrimary: string;
1828
+ textColorGhostHoverPrimary: string;
1829
+ textColorGhostPressedPrimary: string;
1830
+ textColorGhostFocusPrimary: string;
1831
+ textColorGhostDisabledPrimary: string;
1832
+ borderPrimary: string;
1833
+ borderHoverPrimary: string;
1834
+ borderPressedPrimary: string;
1835
+ borderFocusPrimary: string;
1836
+ borderDisabledPrimary: string;
1837
+ rippleColorPrimary: string;
1838
+ colorInfo: string;
1839
+ colorHoverInfo: string;
1840
+ colorPressedInfo: string;
1841
+ colorFocusInfo: string;
1842
+ colorDisabledInfo: string;
1843
+ textColorInfo: string;
1844
+ textColorHoverInfo: string;
1845
+ textColorPressedInfo: string;
1846
+ textColorFocusInfo: string;
1847
+ textColorDisabledInfo: string;
1848
+ textColorTextInfo: string;
1849
+ textColorTextHoverInfo: string;
1850
+ textColorTextPressedInfo: string;
1851
+ textColorTextFocusInfo: string;
1852
+ textColorTextDisabledInfo: string;
1853
+ textColorGhostInfo: string;
1854
+ textColorGhostHoverInfo: string;
1855
+ textColorGhostPressedInfo: string;
1856
+ textColorGhostFocusInfo: string;
1857
+ textColorGhostDisabledInfo: string;
1858
+ borderInfo: string;
1859
+ borderHoverInfo: string;
1860
+ borderPressedInfo: string;
1861
+ borderFocusInfo: string;
1862
+ borderDisabledInfo: string;
1863
+ rippleColorInfo: string;
1864
+ colorSuccess: string;
1865
+ colorHoverSuccess: string;
1866
+ colorPressedSuccess: string;
1867
+ colorFocusSuccess: string;
1868
+ colorDisabledSuccess: string;
1869
+ textColorSuccess: string;
1870
+ textColorHoverSuccess: string;
1871
+ textColorPressedSuccess: string;
1872
+ textColorFocusSuccess: string;
1873
+ textColorDisabledSuccess: string;
1874
+ textColorTextSuccess: string;
1875
+ textColorTextHoverSuccess: string;
1876
+ textColorTextPressedSuccess: string;
1877
+ textColorTextFocusSuccess: string;
1878
+ textColorTextDisabledSuccess: string;
1879
+ textColorGhostSuccess: string;
1880
+ textColorGhostHoverSuccess: string;
1881
+ textColorGhostPressedSuccess: string;
1882
+ textColorGhostFocusSuccess: string;
1883
+ textColorGhostDisabledSuccess: string;
1884
+ borderSuccess: string;
1885
+ borderHoverSuccess: string;
1886
+ borderPressedSuccess: string;
1887
+ borderFocusSuccess: string;
1888
+ borderDisabledSuccess: string;
1889
+ rippleColorSuccess: string;
1890
+ colorWarning: string;
1891
+ colorHoverWarning: string;
1892
+ colorPressedWarning: string;
1893
+ colorFocusWarning: string;
1894
+ colorDisabledWarning: string;
1895
+ textColorWarning: string;
1896
+ textColorHoverWarning: string;
1897
+ textColorPressedWarning: string;
1898
+ textColorFocusWarning: string;
1899
+ textColorDisabledWarning: string;
1900
+ textColorTextWarning: string;
1901
+ textColorTextHoverWarning: string;
1902
+ textColorTextPressedWarning: string;
1903
+ textColorTextFocusWarning: string;
1904
+ textColorTextDisabledWarning: string;
1905
+ textColorGhostWarning: string;
1906
+ textColorGhostHoverWarning: string;
1907
+ textColorGhostPressedWarning: string;
1908
+ textColorGhostFocusWarning: string;
1909
+ textColorGhostDisabledWarning: string;
1910
+ borderWarning: string;
1911
+ borderHoverWarning: string;
1912
+ borderPressedWarning: string;
1913
+ borderFocusWarning: string;
1914
+ borderDisabledWarning: string;
1915
+ rippleColorWarning: string;
1916
+ colorError: string;
1917
+ colorHoverError: string;
1918
+ colorPressedError: string;
1919
+ colorFocusError: string;
1920
+ colorDisabledError: string;
1921
+ textColorError: string;
1922
+ textColorHoverError: string;
1923
+ textColorPressedError: string;
1924
+ textColorFocusError: string;
1925
+ textColorDisabledError: string;
1926
+ textColorTextError: string;
1927
+ textColorTextHoverError: string;
1928
+ textColorTextPressedError: string;
1929
+ textColorTextFocusError: string;
1930
+ textColorTextDisabledError: string;
1931
+ textColorGhostError: string;
1932
+ textColorGhostHoverError: string;
1933
+ textColorGhostPressedError: string;
1934
+ textColorGhostFocusError: string;
1935
+ textColorGhostDisabledError: string;
1936
+ borderError: string;
1937
+ borderHoverError: string;
1938
+ borderPressedError: string;
1939
+ borderFocusError: string;
1940
+ borderDisabledError: string;
1941
+ rippleColorError: string;
1942
+ waveOpacity: string;
1943
+ fontWeight: string;
1944
+ fontWeightStrong: string;
1945
+ paddingTiny: string;
1946
+ paddingSmall: string;
1947
+ paddingMedium: string;
1948
+ paddingLarge: string;
1949
+ paddingRoundTiny: string;
1950
+ paddingRoundSmall: string;
1951
+ paddingRoundMedium: string;
1952
+ paddingRoundLarge: string;
1953
+ iconMarginTiny: string;
1954
+ iconMarginSmall: string;
1955
+ iconMarginMedium: string;
1956
+ iconMarginLarge: string;
1957
+ iconSizeTiny: string;
1958
+ iconSizeSmall: string;
1959
+ iconSizeMedium: string;
1960
+ iconSizeLarge: string;
1961
+ rippleDuration: string;
1962
+ }, any>;
1963
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
1964
+ fontSize: string;
1965
+ fontSizeCircle: string;
1966
+ fontWeightCircle: string;
1967
+ railColor: string;
1968
+ railHeight: string;
1969
+ iconSizeCircle: string;
1970
+ iconSizeLine: string;
1971
+ iconColor: string;
1972
+ iconColorInfo: string;
1973
+ iconColorSuccess: string;
1974
+ iconColorWarning: string;
1975
+ iconColorError: string;
1976
+ textColorCircle: string;
1977
+ textColorLineInner: string;
1978
+ textColorLineOuter: string;
1979
+ fillColor: string;
1980
+ fillColorInfo: string;
1981
+ fillColorSuccess: string;
1982
+ fillColorWarning: string;
1983
+ fillColorError: string;
1984
+ lineBgProcessing: string;
1985
+ }, any>;
1986
+ }>>>;
1987
+ readonly builtinThemeOverrides: PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Upload", {
1988
+ fontSize: string;
1989
+ lineHeight: string;
1990
+ borderRadius: string;
1991
+ draggerColor: string;
1992
+ draggerBorder: string;
1993
+ draggerBorderHover: string;
1994
+ itemColorHover: string;
1995
+ itemColorHoverError: string;
1996
+ itemTextColor: string;
1997
+ itemTextColorError: string;
1998
+ itemTextColorSuccess: string;
1999
+ itemIconColor: string;
2000
+ itemDisabledOpacity: string;
2001
+ itemBorderImageCardError: string;
2002
+ itemBorderImageCard: string;
2003
+ }, {
2004
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2005
+ heightTiny: string;
2006
+ heightSmall: string;
2007
+ heightMedium: string;
2008
+ heightLarge: string;
2009
+ borderRadiusTiny: string;
2010
+ borderRadiusSmall: string;
2011
+ borderRadiusMedium: string;
2012
+ borderRadiusLarge: string;
2013
+ fontSizeTiny: string;
2014
+ fontSizeSmall: string;
2015
+ fontSizeMedium: string;
2016
+ fontSizeLarge: string;
2017
+ opacityDisabled: string;
2018
+ colorOpacitySecondary: string;
2019
+ colorOpacitySecondaryHover: string;
2020
+ colorOpacitySecondaryPressed: string;
2021
+ colorSecondary: string;
2022
+ colorSecondaryHover: string;
2023
+ colorSecondaryPressed: string;
2024
+ colorTertiary: string;
2025
+ colorTertiaryHover: string;
2026
+ colorTertiaryPressed: string;
2027
+ colorQuaternary: string;
2028
+ colorQuaternaryHover: string;
2029
+ colorQuaternaryPressed: string;
2030
+ color: string;
2031
+ colorHover: string;
2032
+ colorPressed: string;
2033
+ colorFocus: string;
2034
+ colorDisabled: string;
2035
+ textColor: string;
2036
+ textColorTertiary: string;
2037
+ textColorHover: string;
2038
+ textColorPressed: string;
2039
+ textColorFocus: string;
2040
+ textColorDisabled: string;
2041
+ textColorText: string;
2042
+ textColorTextHover: string;
2043
+ textColorTextPressed: string;
2044
+ textColorTextFocus: string;
2045
+ textColorTextDisabled: string;
2046
+ textColorGhost: string;
2047
+ textColorGhostHover: string;
2048
+ textColorGhostPressed: string;
2049
+ textColorGhostFocus: string;
2050
+ textColorGhostDisabled: string;
2051
+ border: string;
2052
+ borderHover: string;
2053
+ borderPressed: string;
2054
+ borderFocus: string;
2055
+ borderDisabled: string;
2056
+ rippleColor: string;
2057
+ colorPrimary: string;
2058
+ colorHoverPrimary: string;
2059
+ colorPressedPrimary: string;
2060
+ colorFocusPrimary: string;
2061
+ colorDisabledPrimary: string;
2062
+ textColorPrimary: string;
2063
+ textColorHoverPrimary: string;
2064
+ textColorPressedPrimary: string;
2065
+ textColorFocusPrimary: string;
2066
+ textColorDisabledPrimary: string;
2067
+ textColorTextPrimary: string;
2068
+ textColorTextHoverPrimary: string;
2069
+ textColorTextPressedPrimary: string;
2070
+ textColorTextFocusPrimary: string;
2071
+ textColorTextDisabledPrimary: string;
2072
+ textColorGhostPrimary: string;
2073
+ textColorGhostHoverPrimary: string;
2074
+ textColorGhostPressedPrimary: string;
2075
+ textColorGhostFocusPrimary: string;
2076
+ textColorGhostDisabledPrimary: string;
2077
+ borderPrimary: string;
2078
+ borderHoverPrimary: string;
2079
+ borderPressedPrimary: string;
2080
+ borderFocusPrimary: string;
2081
+ borderDisabledPrimary: string;
2082
+ rippleColorPrimary: string;
2083
+ colorInfo: string;
2084
+ colorHoverInfo: string;
2085
+ colorPressedInfo: string;
2086
+ colorFocusInfo: string;
2087
+ colorDisabledInfo: string;
2088
+ textColorInfo: string;
2089
+ textColorHoverInfo: string;
2090
+ textColorPressedInfo: string;
2091
+ textColorFocusInfo: string;
2092
+ textColorDisabledInfo: string;
2093
+ textColorTextInfo: string;
2094
+ textColorTextHoverInfo: string;
2095
+ textColorTextPressedInfo: string;
2096
+ textColorTextFocusInfo: string;
2097
+ textColorTextDisabledInfo: string;
2098
+ textColorGhostInfo: string;
2099
+ textColorGhostHoverInfo: string;
2100
+ textColorGhostPressedInfo: string;
2101
+ textColorGhostFocusInfo: string;
2102
+ textColorGhostDisabledInfo: string;
2103
+ borderInfo: string;
2104
+ borderHoverInfo: string;
2105
+ borderPressedInfo: string;
2106
+ borderFocusInfo: string;
2107
+ borderDisabledInfo: string;
2108
+ rippleColorInfo: string;
2109
+ colorSuccess: string;
2110
+ colorHoverSuccess: string;
2111
+ colorPressedSuccess: string;
2112
+ colorFocusSuccess: string;
2113
+ colorDisabledSuccess: string;
2114
+ textColorSuccess: string;
2115
+ textColorHoverSuccess: string;
2116
+ textColorPressedSuccess: string;
2117
+ textColorFocusSuccess: string;
2118
+ textColorDisabledSuccess: string;
2119
+ textColorTextSuccess: string;
2120
+ textColorTextHoverSuccess: string;
2121
+ textColorTextPressedSuccess: string;
2122
+ textColorTextFocusSuccess: string;
2123
+ textColorTextDisabledSuccess: string;
2124
+ textColorGhostSuccess: string;
2125
+ textColorGhostHoverSuccess: string;
2126
+ textColorGhostPressedSuccess: string;
2127
+ textColorGhostFocusSuccess: string;
2128
+ textColorGhostDisabledSuccess: string;
2129
+ borderSuccess: string;
2130
+ borderHoverSuccess: string;
2131
+ borderPressedSuccess: string;
2132
+ borderFocusSuccess: string;
2133
+ borderDisabledSuccess: string;
2134
+ rippleColorSuccess: string;
2135
+ colorWarning: string;
2136
+ colorHoverWarning: string;
2137
+ colorPressedWarning: string;
2138
+ colorFocusWarning: string;
2139
+ colorDisabledWarning: string;
2140
+ textColorWarning: string;
2141
+ textColorHoverWarning: string;
2142
+ textColorPressedWarning: string;
2143
+ textColorFocusWarning: string;
2144
+ textColorDisabledWarning: string;
2145
+ textColorTextWarning: string;
2146
+ textColorTextHoverWarning: string;
2147
+ textColorTextPressedWarning: string;
2148
+ textColorTextFocusWarning: string;
2149
+ textColorTextDisabledWarning: string;
2150
+ textColorGhostWarning: string;
2151
+ textColorGhostHoverWarning: string;
2152
+ textColorGhostPressedWarning: string;
2153
+ textColorGhostFocusWarning: string;
2154
+ textColorGhostDisabledWarning: string;
2155
+ borderWarning: string;
2156
+ borderHoverWarning: string;
2157
+ borderPressedWarning: string;
2158
+ borderFocusWarning: string;
2159
+ borderDisabledWarning: string;
2160
+ rippleColorWarning: string;
2161
+ colorError: string;
2162
+ colorHoverError: string;
2163
+ colorPressedError: string;
2164
+ colorFocusError: string;
2165
+ colorDisabledError: string;
2166
+ textColorError: string;
2167
+ textColorHoverError: string;
2168
+ textColorPressedError: string;
2169
+ textColorFocusError: string;
2170
+ textColorDisabledError: string;
2171
+ textColorTextError: string;
2172
+ textColorTextHoverError: string;
2173
+ textColorTextPressedError: string;
2174
+ textColorTextFocusError: string;
2175
+ textColorTextDisabledError: string;
2176
+ textColorGhostError: string;
2177
+ textColorGhostHoverError: string;
2178
+ textColorGhostPressedError: string;
2179
+ textColorGhostFocusError: string;
2180
+ textColorGhostDisabledError: string;
2181
+ borderError: string;
2182
+ borderHoverError: string;
2183
+ borderPressedError: string;
2184
+ borderFocusError: string;
2185
+ borderDisabledError: string;
2186
+ rippleColorError: string;
2187
+ waveOpacity: string;
2188
+ fontWeight: string;
2189
+ fontWeightStrong: string;
2190
+ paddingTiny: string;
2191
+ paddingSmall: string;
2192
+ paddingMedium: string;
2193
+ paddingLarge: string;
2194
+ paddingRoundTiny: string;
2195
+ paddingRoundSmall: string;
2196
+ paddingRoundMedium: string;
2197
+ paddingRoundLarge: string;
2198
+ iconMarginTiny: string;
2199
+ iconMarginSmall: string;
2200
+ iconMarginMedium: string;
2201
+ iconMarginLarge: string;
2202
+ iconSizeTiny: string;
2203
+ iconSizeSmall: string;
2204
+ iconSizeMedium: string;
2205
+ iconSizeLarge: string;
2206
+ rippleDuration: string;
2207
+ }, any>;
2208
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2209
+ fontSize: string;
2210
+ fontSizeCircle: string;
2211
+ fontWeightCircle: string;
2212
+ railColor: string;
2213
+ railHeight: string;
2214
+ iconSizeCircle: string;
2215
+ iconSizeLine: string;
2216
+ iconColor: string;
2217
+ iconColorInfo: string;
2218
+ iconColorSuccess: string;
2219
+ iconColorWarning: string;
2220
+ iconColorError: string;
2221
+ textColorCircle: string;
2222
+ textColorLineInner: string;
2223
+ textColorLineOuter: string;
2224
+ fillColor: string;
2225
+ fillColorInfo: string;
2226
+ fillColorSuccess: string;
2227
+ fillColorWarning: string;
2228
+ fillColorError: string;
2229
+ lineBgProcessing: string;
2230
+ }, any>;
2231
+ }>>>;
2232
+ }>> & Readonly<{}>, {
2233
+ openOpenFileDialog: () => void;
2234
+ submit: (fileId?: string) => void;
2235
+ clear: () => void;
2236
+ mergedClsPrefix: import('vue').Ref<string, string>;
2237
+ draggerInsideRef: {
2238
+ value: boolean;
2239
+ };
2240
+ 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;
2241
+ inputElRef: import('vue').Ref<HTMLInputElement | null, HTMLInputElement | null>;
2242
+ mergedTheme: import('vue').ComputedRef<{
2243
+ common: import('naive-ui').ThemeCommonVars;
2244
+ self: {
2245
+ fontSize: string;
2246
+ lineHeight: string;
2247
+ borderRadius: string;
2248
+ draggerColor: string;
2249
+ draggerBorder: string;
2250
+ draggerBorderHover: string;
2251
+ itemColorHover: string;
2252
+ itemColorHoverError: string;
2253
+ itemTextColor: string;
2254
+ itemTextColorError: string;
2255
+ itemTextColorSuccess: string;
2256
+ itemIconColor: string;
2257
+ itemDisabledOpacity: string;
2258
+ itemBorderImageCardError: string;
2259
+ itemBorderImageCard: string;
2260
+ };
2261
+ peers: {
2262
+ Button: import('naive-ui/es/_mixins').Theme<"Button", {
2263
+ heightTiny: string;
2264
+ heightSmall: string;
2265
+ heightMedium: string;
2266
+ heightLarge: string;
2267
+ borderRadiusTiny: string;
2268
+ borderRadiusSmall: string;
2269
+ borderRadiusMedium: string;
2270
+ borderRadiusLarge: string;
2271
+ fontSizeTiny: string;
2272
+ fontSizeSmall: string;
2273
+ fontSizeMedium: string;
2274
+ fontSizeLarge: string;
2275
+ opacityDisabled: string;
2276
+ colorOpacitySecondary: string;
2277
+ colorOpacitySecondaryHover: string;
2278
+ colorOpacitySecondaryPressed: string;
2279
+ colorSecondary: string;
2280
+ colorSecondaryHover: string;
2281
+ colorSecondaryPressed: string;
2282
+ colorTertiary: string;
2283
+ colorTertiaryHover: string;
2284
+ colorTertiaryPressed: string;
2285
+ colorQuaternary: string;
2286
+ colorQuaternaryHover: string;
2287
+ colorQuaternaryPressed: string;
2288
+ color: string;
2289
+ colorHover: string;
2290
+ colorPressed: string;
2291
+ colorFocus: string;
2292
+ colorDisabled: string;
2293
+ textColor: string;
2294
+ textColorTertiary: string;
2295
+ textColorHover: string;
2296
+ textColorPressed: string;
2297
+ textColorFocus: string;
2298
+ textColorDisabled: string;
2299
+ textColorText: string;
2300
+ textColorTextHover: string;
2301
+ textColorTextPressed: string;
2302
+ textColorTextFocus: string;
2303
+ textColorTextDisabled: string;
2304
+ textColorGhost: string;
2305
+ textColorGhostHover: string;
2306
+ textColorGhostPressed: string;
2307
+ textColorGhostFocus: string;
2308
+ textColorGhostDisabled: string;
2309
+ border: string;
2310
+ borderHover: string;
2311
+ borderPressed: string;
2312
+ borderFocus: string;
2313
+ borderDisabled: string;
2314
+ rippleColor: string;
2315
+ colorPrimary: string;
2316
+ colorHoverPrimary: string;
2317
+ colorPressedPrimary: string;
2318
+ colorFocusPrimary: string;
2319
+ colorDisabledPrimary: string;
2320
+ textColorPrimary: string;
2321
+ textColorHoverPrimary: string;
2322
+ textColorPressedPrimary: string;
2323
+ textColorFocusPrimary: string;
2324
+ textColorDisabledPrimary: string;
2325
+ textColorTextPrimary: string;
2326
+ textColorTextHoverPrimary: string;
2327
+ textColorTextPressedPrimary: string;
2328
+ textColorTextFocusPrimary: string;
2329
+ textColorTextDisabledPrimary: string;
2330
+ textColorGhostPrimary: string;
2331
+ textColorGhostHoverPrimary: string;
2332
+ textColorGhostPressedPrimary: string;
2333
+ textColorGhostFocusPrimary: string;
2334
+ textColorGhostDisabledPrimary: string;
2335
+ borderPrimary: string;
2336
+ borderHoverPrimary: string;
2337
+ borderPressedPrimary: string;
2338
+ borderFocusPrimary: string;
2339
+ borderDisabledPrimary: string;
2340
+ rippleColorPrimary: string;
2341
+ colorInfo: string;
2342
+ colorHoverInfo: string;
2343
+ colorPressedInfo: string;
2344
+ colorFocusInfo: string;
2345
+ colorDisabledInfo: string;
2346
+ textColorInfo: string;
2347
+ textColorHoverInfo: string;
2348
+ textColorPressedInfo: string;
2349
+ textColorFocusInfo: string;
2350
+ textColorDisabledInfo: string;
2351
+ textColorTextInfo: string;
2352
+ textColorTextHoverInfo: string;
2353
+ textColorTextPressedInfo: string;
2354
+ textColorTextFocusInfo: string;
2355
+ textColorTextDisabledInfo: string;
2356
+ textColorGhostInfo: string;
2357
+ textColorGhostHoverInfo: string;
2358
+ textColorGhostPressedInfo: string;
2359
+ textColorGhostFocusInfo: string;
2360
+ textColorGhostDisabledInfo: string;
2361
+ borderInfo: string;
2362
+ borderHoverInfo: string;
2363
+ borderPressedInfo: string;
2364
+ borderFocusInfo: string;
2365
+ borderDisabledInfo: string;
2366
+ rippleColorInfo: string;
2367
+ colorSuccess: string;
2368
+ colorHoverSuccess: string;
2369
+ colorPressedSuccess: string;
2370
+ colorFocusSuccess: string;
2371
+ colorDisabledSuccess: string;
2372
+ textColorSuccess: string;
2373
+ textColorHoverSuccess: string;
2374
+ textColorPressedSuccess: string;
2375
+ textColorFocusSuccess: string;
2376
+ textColorDisabledSuccess: string;
2377
+ textColorTextSuccess: string;
2378
+ textColorTextHoverSuccess: string;
2379
+ textColorTextPressedSuccess: string;
2380
+ textColorTextFocusSuccess: string;
2381
+ textColorTextDisabledSuccess: string;
2382
+ textColorGhostSuccess: string;
2383
+ textColorGhostHoverSuccess: string;
2384
+ textColorGhostPressedSuccess: string;
2385
+ textColorGhostFocusSuccess: string;
2386
+ textColorGhostDisabledSuccess: string;
2387
+ borderSuccess: string;
2388
+ borderHoverSuccess: string;
2389
+ borderPressedSuccess: string;
2390
+ borderFocusSuccess: string;
2391
+ borderDisabledSuccess: string;
2392
+ rippleColorSuccess: string;
2393
+ colorWarning: string;
2394
+ colorHoverWarning: string;
2395
+ colorPressedWarning: string;
2396
+ colorFocusWarning: string;
2397
+ colorDisabledWarning: string;
2398
+ textColorWarning: string;
2399
+ textColorHoverWarning: string;
2400
+ textColorPressedWarning: string;
2401
+ textColorFocusWarning: string;
2402
+ textColorDisabledWarning: string;
2403
+ textColorTextWarning: string;
2404
+ textColorTextHoverWarning: string;
2405
+ textColorTextPressedWarning: string;
2406
+ textColorTextFocusWarning: string;
2407
+ textColorTextDisabledWarning: string;
2408
+ textColorGhostWarning: string;
2409
+ textColorGhostHoverWarning: string;
2410
+ textColorGhostPressedWarning: string;
2411
+ textColorGhostFocusWarning: string;
2412
+ textColorGhostDisabledWarning: string;
2413
+ borderWarning: string;
2414
+ borderHoverWarning: string;
2415
+ borderPressedWarning: string;
2416
+ borderFocusWarning: string;
2417
+ borderDisabledWarning: string;
2418
+ rippleColorWarning: string;
2419
+ colorError: string;
2420
+ colorHoverError: string;
2421
+ colorPressedError: string;
2422
+ colorFocusError: string;
2423
+ colorDisabledError: string;
2424
+ textColorError: string;
2425
+ textColorHoverError: string;
2426
+ textColorPressedError: string;
2427
+ textColorFocusError: string;
2428
+ textColorDisabledError: string;
2429
+ textColorTextError: string;
2430
+ textColorTextHoverError: string;
2431
+ textColorTextPressedError: string;
2432
+ textColorTextFocusError: string;
2433
+ textColorTextDisabledError: string;
2434
+ textColorGhostError: string;
2435
+ textColorGhostHoverError: string;
2436
+ textColorGhostPressedError: string;
2437
+ textColorGhostFocusError: string;
2438
+ textColorGhostDisabledError: string;
2439
+ borderError: string;
2440
+ borderHoverError: string;
2441
+ borderPressedError: string;
2442
+ borderFocusError: string;
2443
+ borderDisabledError: string;
2444
+ rippleColorError: string;
2445
+ waveOpacity: string;
2446
+ fontWeight: string;
2447
+ fontWeightStrong: string;
2448
+ paddingTiny: string;
2449
+ paddingSmall: string;
2450
+ paddingMedium: string;
2451
+ paddingLarge: string;
2452
+ paddingRoundTiny: string;
2453
+ paddingRoundSmall: string;
2454
+ paddingRoundMedium: string;
2455
+ paddingRoundLarge: string;
2456
+ iconMarginTiny: string;
2457
+ iconMarginSmall: string;
2458
+ iconMarginMedium: string;
2459
+ iconMarginLarge: string;
2460
+ iconSizeTiny: string;
2461
+ iconSizeSmall: string;
2462
+ iconSizeMedium: string;
2463
+ iconSizeLarge: string;
2464
+ rippleDuration: string;
2465
+ }, any>;
2466
+ Progress: import('naive-ui/es/_mixins').Theme<"Progress", {
2467
+ fontSize: string;
2468
+ fontSizeCircle: string;
2469
+ fontWeightCircle: string;
2470
+ railColor: string;
2471
+ railHeight: string;
2472
+ iconSizeCircle: string;
2473
+ iconSizeLine: string;
2474
+ iconColor: string;
2475
+ iconColorInfo: string;
2476
+ iconColorSuccess: string;
2477
+ iconColorWarning: string;
2478
+ iconColorError: string;
2479
+ textColorCircle: string;
2480
+ textColorLineInner: string;
2481
+ textColorLineOuter: string;
2482
+ fillColor: string;
2483
+ fillColorInfo: string;
2484
+ fillColorSuccess: string;
2485
+ fillColorWarning: string;
2486
+ fillColorError: string;
2487
+ lineBgProcessing: string;
2488
+ }, any>;
2489
+ };
2490
+ peerOverrides: {
2491
+ Button?: {
2492
+ peers?: {
2493
+ [x: string]: any;
2494
+ } | undefined;
2495
+ } | undefined;
2496
+ Progress?: {
2497
+ peers?: {
2498
+ [x: string]: any;
2499
+ } | undefined;
2500
+ } | undefined;
2501
+ };
2502
+ }>;
2503
+ dragOver: import('vue').Ref<boolean, boolean>;
2504
+ mergedMultiple: import('vue').ComputedRef<boolean>;
2505
+ cssVars: import('vue').ComputedRef<any> | undefined;
2506
+ themeClass: import('vue').Ref<string, string> | undefined;
2507
+ onRender: (() => void) | undefined;
2508
+ handleFileInputChange: (e: Event) => void;
2509
+ }, {}, {}, {}, {
2510
+ readonly disabled: boolean | undefined;
2511
+ readonly name: string;
2512
+ readonly multiple: boolean;
2513
+ readonly abstract: boolean;
2514
+ readonly showTrigger: boolean;
2515
+ readonly directory: boolean;
2516
+ readonly directoryDnd: boolean;
2517
+ readonly method: string;
2518
+ readonly showFileList: boolean;
2519
+ readonly withCredentials: boolean;
2520
+ readonly responseType: XMLHttpRequestResponseType;
2521
+ readonly defaultUpload: boolean;
2522
+ readonly defaultFileList: import('naive-ui').UploadFileInfo[];
2523
+ readonly showCancelButton: boolean;
2524
+ readonly showRemoveButton: boolean;
2525
+ readonly showDownloadButton: boolean;
2526
+ readonly showRetryButton: boolean;
2527
+ readonly showPreviewButton: boolean;
2528
+ readonly listType: import('naive-ui/es/upload/src/interface').ListType;
2529
+ readonly shouldUseThumbnailUrl: import('naive-ui/es/upload/src/interface').ShouldUseThumbnailUrl;
2530
+ }> | null;
2531
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
2532
+ P: {};
2533
+ B: {};
2534
+ D: {};
2535
+ C: {};
2536
+ M: {};
2537
+ Defaults: {};
2538
+ }, Readonly<import('.').DydxUploadProps> & Readonly<{
2539
+ "onUpdate:fileList"?: ((fileList: import('naive-ui').UploadFileInfo[]) => any) | undefined;
2540
+ onSuccess?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
2541
+ onError?: ((file: import('naive-ui').UploadFileInfo, error: Error) => any) | undefined;
2542
+ onExceed?: ((files: File[]) => any) | undefined;
2543
+ onBeforeUpload?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
2544
+ }>, {
2545
+ submit: () => void;
2546
+ openDialog: () => void;
2547
+ clear: () => void;
2548
+ }, {}, {}, {}, {
2549
+ multiple: boolean;
2550
+ disabled: boolean;
2551
+ fileList: import('naive-ui').UploadFileInfo[];
2552
+ uploadType: import('.').UploadType;
2553
+ maxSize: number;
2554
+ maxCount: number;
2555
+ autoUpload: boolean;
2556
+ urlPrefix: string;
2557
+ showTip: boolean;
2558
+ showDragger: boolean;
2559
+ }>;
2560
+ __isFragment?: never;
2561
+ __isTeleport?: never;
2562
+ __isSuspense?: never;
2563
+ } & import('vue').ComponentOptionsBase<Readonly<import('.').DydxUploadProps> & Readonly<{
2564
+ "onUpdate:fileList"?: ((fileList: import('naive-ui').UploadFileInfo[]) => any) | undefined;
2565
+ onSuccess?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
2566
+ onError?: ((file: import('naive-ui').UploadFileInfo, error: Error) => any) | undefined;
2567
+ onExceed?: ((files: File[]) => any) | undefined;
2568
+ onBeforeUpload?: ((file: import('naive-ui').UploadFileInfo) => any) | undefined;
2569
+ }>, {
2570
+ submit: () => void;
2571
+ openDialog: () => void;
2572
+ clear: () => void;
2573
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2574
+ "update:fileList": (fileList: import('naive-ui').UploadFileInfo[]) => any;
2575
+ success: (file: import('naive-ui').UploadFileInfo) => any;
2576
+ error: (file: import('naive-ui').UploadFileInfo, error: Error) => any;
2577
+ exceed: (files: File[]) => any;
2578
+ beforeUpload: (file: import('naive-ui').UploadFileInfo) => any;
2579
+ }, string, {
2580
+ multiple: boolean;
2581
+ disabled: boolean;
2582
+ fileList: import('naive-ui').UploadFileInfo[];
2583
+ uploadType: import('.').UploadType;
2584
+ maxSize: number;
2585
+ maxCount: number;
2586
+ autoUpload: boolean;
2587
+ urlPrefix: string;
2588
+ showTip: boolean;
2589
+ showDragger: boolean;
2590
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
2591
+ $slots: {
2592
+ default?(_: {}): any;
2593
+ };
2594
+ });
2595
+ DydxIconSelect: import('vue').DefineComponent<{
2596
+ value?: string | null;
2597
+ placeholder?: string;
2598
+ disabled?: boolean;
2599
+ clearable?: boolean;
2600
+ filterable?: boolean;
2601
+ iconStyle?: "outline" | "sharp" | "filled" | "all";
2602
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2603
+ "update:value": (value: string | null) => any;
2604
+ }, string, import('vue').PublicProps, Readonly<{
2605
+ value?: string | null;
2606
+ placeholder?: string;
2607
+ disabled?: boolean;
2608
+ clearable?: boolean;
2609
+ filterable?: boolean;
2610
+ iconStyle?: "outline" | "sharp" | "filled" | "all";
2611
+ }> & Readonly<{
2612
+ "onUpdate:value"?: ((value: string | null) => any) | undefined;
2613
+ }>, {
2614
+ placeholder: string;
2615
+ clearable: boolean;
2616
+ filterable: boolean;
2617
+ iconStyle: "outline" | "sharp" | "filled" | "all";
2618
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
2619
  };
17
2620
  export default _default;