@uzum-tech/ui 2.3.1 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/index.js +373 -340
  2. package/dist/index.mjs +373 -340
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/components.d.ts +10 -7
  6. package/es/image/src/ImagePreview.d.ts +1 -0
  7. package/es/image/src/ImagePreview.mjs +7 -35
  8. package/es/image/src/public-types.d.ts +4 -4
  9. package/es/message-bubble/src/MessageBubble.mjs +10 -3
  10. package/es/upload/index.d.ts +2 -1
  11. package/es/upload/index.mjs +2 -1
  12. package/es/upload/src/Upload.d.ts +73 -1007
  13. package/es/upload/src/Upload.mjs +43 -124
  14. package/es/upload/src/UploadFile.d.ts +1 -1
  15. package/es/upload/src/UploadFile.mjs +8 -2
  16. package/es/upload/src/UploadFileList.mjs +17 -2
  17. package/es/upload/src/UploadProgress.d.ts +3 -2
  18. package/es/upload/src/interface.d.ts +1086 -92
  19. package/es/upload/src/interface.mjs +117 -1
  20. package/es/upload/src/public-types.d.ts +17 -2
  21. package/es/upload/src/useUploadActionsRender.d.ts +2 -27
  22. package/es/upload/src/useUploadActionsRender.mjs +2 -2
  23. package/es/upload/src/useUploadInternals.d.ts +2 -25
  24. package/es/upload/src/utils.d.ts +2 -0
  25. package/es/upload/src/utils.mjs +7 -0
  26. package/es/version.d.ts +1 -1
  27. package/es/version.mjs +1 -1
  28. package/lib/components.d.ts +10 -7
  29. package/lib/image/src/ImagePreview.d.ts +1 -0
  30. package/lib/image/src/ImagePreview.js +3 -19
  31. package/lib/image/src/public-types.d.ts +4 -4
  32. package/lib/message-bubble/src/MessageBubble.js +10 -4
  33. package/lib/upload/index.d.ts +2 -1
  34. package/lib/upload/index.js +2 -1
  35. package/lib/upload/src/Upload.d.ts +73 -1007
  36. package/lib/upload/src/Upload.js +40 -68
  37. package/lib/upload/src/UploadFile.d.ts +1 -1
  38. package/lib/upload/src/UploadFile.js +12 -4
  39. package/lib/upload/src/UploadFileList.js +8 -1
  40. package/lib/upload/src/UploadProgress.d.ts +3 -2
  41. package/lib/upload/src/interface.d.ts +1086 -92
  42. package/lib/upload/src/interface.js +59 -1
  43. package/lib/upload/src/public-types.d.ts +17 -2
  44. package/lib/upload/src/useUploadActionsRender.d.ts +2 -27
  45. package/lib/upload/src/useUploadActionsRender.js +2 -2
  46. package/lib/upload/src/useUploadInternals.d.ts +2 -25
  47. package/lib/upload/src/utils.d.ts +2 -0
  48. package/lib/upload/src/utils.js +10 -0
  49. package/lib/version.d.ts +1 -1
  50. package/lib/version.js +1 -1
  51. package/package.json +1 -1
  52. package/web-types.json +104 -23
@@ -1,7 +1,41 @@
1
- import type { CSSProperties, Ref, VNodeChild } from 'vue';
1
+ import type { CSSProperties, InputHTMLAttributes, PropType, Ref, Slots, VNode, VNodeChild } from 'vue';
2
2
  import type { MergedTheme } from '../../_mixins';
3
+ import type { ExtractThemeOverrides } from '../../_mixins/use-theme';
4
+ import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
5
+ import type { ButtonTheme } from '../../button/styles';
3
6
  import type { ImageGroupProps } from '../../image';
7
+ import type { ULocale } from '../../locales';
4
8
  import type { UploadTheme } from '../styles';
9
+ export interface CustomRequestOptions {
10
+ file: SettledFileInfo;
11
+ action?: string;
12
+ withCredentials?: boolean;
13
+ data?: FuncOrRecordOrUndef<string | Blob>;
14
+ headers?: FuncOrRecordOrUndef;
15
+ onProgress: (e: {
16
+ percent: number;
17
+ }) => void;
18
+ onFinish: () => void;
19
+ onError: () => void;
20
+ }
21
+ export interface CustomSubmitImplOptions {
22
+ inst: Omit<UploadInternalInst, 'isErrorState'>;
23
+ data?: FuncOrRecordOrUndef<string | Blob>;
24
+ headers?: FuncOrRecordOrUndef;
25
+ action?: string;
26
+ withCredentials?: boolean;
27
+ file: SettledFileInfo;
28
+ customRequest: CustomRequest;
29
+ }
30
+ export interface DoChangeOptions {
31
+ append?: boolean;
32
+ remove?: boolean;
33
+ }
34
+ export interface FileAndEntry {
35
+ file: File;
36
+ entry: FileSystemFileEntry | null;
37
+ source: 'dnd' | 'input';
38
+ }
5
39
  export interface FileInfo {
6
40
  id: string;
7
41
  name: string;
@@ -14,42 +48,66 @@ export interface FileInfo {
14
48
  type?: string | null;
15
49
  fullPath?: string | null;
16
50
  }
17
- export type SettledFileInfo = Required<FileInfo>;
18
- export type ShouldUseThumbnailUrl = (file: SettledFileInfo) => boolean;
19
- export type FuncOrRecordOrUndef<T = string> = Record<string, T> | (({ file }: {
51
+ export interface OnBeforeUploadPayload {
20
52
  file: SettledFileInfo;
21
- }) => Record<string, T>) | undefined;
53
+ fileList: SettledFileInfo[];
54
+ }
22
55
  export interface OnChangePayload {
23
56
  file: SettledFileInfo;
24
57
  fileList: SettledFileInfo[];
25
58
  event: ProgressEvent | Event | undefined;
26
59
  }
27
- export type OnChange = (data: OnChangePayload) => void;
28
- export type OnFinish = ({ file, event }: {
60
+ export interface OnErrorPayload {
29
61
  file: SettledFileInfo;
30
62
  event?: ProgressEvent;
31
- }) => FileInfo | undefined | void;
32
- export type OnRemove = (data: {
63
+ }
64
+ export interface OnFinishPayload {
65
+ file: SettledFileInfo;
66
+ event?: ProgressEvent;
67
+ }
68
+ export interface OnRemovePayload {
33
69
  file: SettledFileInfo;
34
70
  fileList: SettledFileInfo[];
35
- }) => Promise<boolean> | boolean | any;
36
- export type OnDownload = (file: SettledFileInfo) => Promise<boolean> | boolean | any;
37
- export type OnRetry = ({ file }: {
71
+ }
72
+ export interface OnRetryPayload {
38
73
  file: SettledFileInfo;
39
- }) => Promise<boolean | void> | boolean | void;
40
- export interface UploadInternalInst {
41
- doChange: DoChange;
42
- xhrMap: Map<string, XMLHttpRequest>;
43
- isErrorState: ((xhr: XMLHttpRequest) => boolean) | undefined;
44
- onError: OnError | undefined;
45
- onFinish: OnFinish | undefined;
46
74
  }
47
- export type DoChange = (fileAfterChange: SettledFileInfo, event?: ProgressEvent | Event, options?: {
48
- append?: boolean;
49
- remove?: boolean;
50
- }) => void;
51
- export type OnUpdateFileList = (fileList: SettledFileInfo[]) => void;
52
- export type RenderIcon = (file: SettledFileInfo) => VNodeChild;
75
+ export interface SubmitImplOptions {
76
+ method: string;
77
+ action?: string;
78
+ withCredentials: boolean;
79
+ responseType: XMLHttpRequestResponseType;
80
+ headers: FuncOrRecordOrUndef;
81
+ data: FuncOrRecordOrUndef<string | Blob>;
82
+ }
83
+ export interface SubmitOptions {
84
+ fileId?: string;
85
+ retry?: boolean;
86
+ }
87
+ export interface UploadActionsRenderOptions {
88
+ clsPrefix: string;
89
+ listType: ListType;
90
+ file: SettledFileInfo;
91
+ renderIcon?: RenderIcon;
92
+ showPreviewButton: boolean;
93
+ showRemoveButton: boolean;
94
+ showCancelButton: boolean;
95
+ showRetryButton: boolean;
96
+ showDownloadButton: boolean;
97
+ disabled: boolean;
98
+ buttonType: string | undefined;
99
+ mergedTheme: MergedTheme<UploadTheme>;
100
+ buttonThemeOverrides: ExtractThemeOverrides<ButtonTheme>;
101
+ handlePreviewClick: () => void;
102
+ handleRemoveOrCancelClick: (e: MouseEvent) => void;
103
+ handleRetryClick: () => void;
104
+ handleDownloadClick: (e: MouseEvent) => void;
105
+ capitalizeFirstLetter: (text: string) => string;
106
+ }
107
+ export interface UploadActionsRenderReturn {
108
+ actionsNode: VNode;
109
+ icon: VNode;
110
+ }
53
111
  export interface UploadInjection {
54
112
  mergedClsPrefixRef: Ref<string>;
55
113
  mergedThemeRef: Ref<MergedTheme<UploadTheme>>;
@@ -80,11 +138,7 @@ export interface UploadInjection {
80
138
  titleRef: Ref<string | undefined>;
81
139
  subtitleRef: Ref<string | undefined>;
82
140
  verticalRef: Ref<boolean>;
83
- localeRef: Ref<{
84
- title: string;
85
- subtitle: string;
86
- uploading: string;
87
- }>;
141
+ localeRef: Ref<UploadLocale>;
88
142
  imageGroupPropsRef: Ref<ImageGroupProps | undefined>;
89
143
  cssVarsRef: undefined | Ref<CSSProperties>;
90
144
  themeClassRef: undefined | Ref<string>;
@@ -94,57 +148,30 @@ export interface UploadInjection {
94
148
  triggerStyleRef: Ref<CSSProperties | string | undefined>;
95
149
  doChange: DoChange;
96
150
  onRender: undefined | (() => void);
97
- submit: (options?: {
98
- fileId?: string;
99
- retry?: boolean;
100
- } | string) => void;
151
+ submit: Submit;
101
152
  onRetryRef: Ref<undefined | OnRetry>;
102
153
  shouldUseThumbnailUrlRef: Ref<ShouldUseThumbnailUrl>;
103
154
  getFileThumbnailUrlResolver: (file: SettledFileInfo) => Promise<string> | string;
104
155
  renderIconRef: Ref<RenderIcon | undefined>;
105
156
  handleFileAddition: (files: FileAndEntry[] | null, e?: Event) => void;
106
157
  openFileDialog: () => void;
107
- }
108
- export declare const uploadInjectionKey: import("vue").InjectionKey<UploadInjection>;
109
- export interface XhrHandlers {
110
- handleXHRLoad: (e: ProgressEvent) => void;
111
- handleXHRAbort: (e: ProgressEvent) => void;
112
- handleXHRProgress: (e: ProgressEvent) => void;
113
- handleXHRError: (e: ProgressEvent) => void;
158
+ previewSrcListRef: Ref<string[]>;
159
+ previewShowRef: Ref<boolean>;
160
+ previewCurrentRef: Ref<number>;
161
+ isFilePreviewable: (file: SettledFileInfo) => boolean;
162
+ openFilePreview: (file: SettledFileInfo) => void;
114
163
  }
115
164
  export interface UploadInst {
116
165
  openFileDialog: () => void;
117
- submit: () => void;
166
+ submit: Submit;
118
167
  clear: () => void;
119
168
  }
120
- export type OnBeforeUpload = (data: {
121
- file: SettledFileInfo;
122
- fileList: SettledFileInfo[];
123
- }) => Promise<boolean | void> | boolean | void;
124
- export type ListType = 'text' | 'image' | 'image-card';
125
- export type OnPreview = (file: SettledFileInfo) => void;
126
- export type CreateThumbnailUrl = (file: File | null, fileInfo: SettledFileInfo) => Promise<string> | string | undefined;
127
- export interface CustomRequestOptions {
128
- file: SettledFileInfo;
129
- action?: string;
130
- withCredentials?: boolean;
131
- data?: FuncOrRecordOrUndef<string | Blob>;
132
- headers?: FuncOrRecordOrUndef;
133
- onProgress: (e: {
134
- percent: number;
135
- }) => void;
136
- onFinish: () => void;
137
- onError: () => void;
138
- }
139
- export type CustomRequest = (options: CustomRequestOptions) => void;
140
- export type OnError = ({ file, event }: {
141
- file: SettledFileInfo;
142
- event?: ProgressEvent;
143
- }) => FileInfo | undefined | void;
144
- export interface FileAndEntry {
145
- file: File;
146
- entry: FileSystemFileEntry | null;
147
- source: 'dnd' | 'input';
169
+ export interface UploadInternalInst {
170
+ doChange: DoChange;
171
+ xhrMap: Map<string, XMLHttpRequest>;
172
+ isErrorState: IsErrorState | undefined;
173
+ onError: OnError | undefined;
174
+ onFinish: OnFinish | undefined;
148
175
  }
149
176
  export interface UploadTriggerDefaultSlotOptions {
150
177
  handleClick: () => void;
@@ -153,28 +180,26 @@ export interface UploadTriggerDefaultSlotOptions {
153
180
  handleDragLeave: (e: DragEvent) => void;
154
181
  handleDrop: (e: DragEvent) => void;
155
182
  }
156
- type CreateXhrHandlersType = (inst: UploadInternalInst, file: SettledFileInfo, xhr: XMLHttpRequest) => XhrHandlers;
157
- type CustomSubmitImplType = (options: {
158
- inst: Omit<UploadInternalInst, 'isErrorState'>;
159
- data?: FuncOrRecordOrUndef<string | Blob>;
160
- headers?: FuncOrRecordOrUndef;
161
- action?: string;
162
- withCredentials?: boolean;
163
- file: SettledFileInfo;
164
- customRequest: CustomRequest;
165
- }) => void;
166
- type RegisterHandlerType = (inst: UploadInternalInst, file: SettledFileInfo, request: XMLHttpRequest) => void;
167
- type UnwrapFunctionValueType = <T>(data: FuncOrRecordOrUndef<T>, file: SettledFileInfo) => Record<string, T>;
168
- type SetHeadersType = (request: XMLHttpRequest, headers: FuncOrRecordOrUndef, file: SettledFileInfo) => void;
169
- type AppendDataType = (formData: FormData, data: FuncOrRecordOrUndef<string | Blob>, file: SettledFileInfo) => void;
170
- type SubmitImplType = (inst: UploadInternalInst, fieldName: string, file: SettledFileInfo, options: {
171
- method: string;
172
- action?: string;
173
- withCredentials: boolean;
174
- responseType: XMLHttpRequestResponseType;
175
- headers: FuncOrRecordOrUndef;
176
- data: FuncOrRecordOrUndef<string | Blob>;
177
- }) => void;
183
+ export interface UseUploadInternalsOptions {
184
+ mergedClsPrefix: string;
185
+ accept?: string;
186
+ multiple?: boolean;
187
+ inputProps?: InputHTMLAttributes;
188
+ directory?: boolean;
189
+ onChange?: (e: Event) => void;
190
+ label?: string;
191
+ title?: string;
192
+ subtitle?: string;
193
+ vertical?: boolean;
194
+ noIcon?: boolean;
195
+ icon?: VNodeChild;
196
+ localeRef: UploadLocale;
197
+ slots: Slots;
198
+ }
199
+ export interface UseUploadInternalsReturn {
200
+ inputNode: VNode;
201
+ renderDefaultTrigger: () => VNode[];
202
+ }
178
203
  export interface UseUploadReturn {
179
204
  createXhrHandlers: CreateXhrHandlersType;
180
205
  customSubmitImpl: CustomSubmitImplType;
@@ -184,4 +209,973 @@ export interface UseUploadReturn {
184
209
  appendData: AppendDataType;
185
210
  submitImpl: SubmitImplType;
186
211
  }
212
+ export interface XhrHandlers {
213
+ handleXHRLoad: (e: ProgressEvent) => void;
214
+ handleXHRAbort: (e: ProgressEvent) => void;
215
+ handleXHRProgress: (e: ProgressEvent) => void;
216
+ handleXHRError: (e: ProgressEvent) => void;
217
+ }
218
+ type AppendDataType = (formData: FormData, data: FuncOrRecordOrUndef<string | Blob>, file: SettledFileInfo) => void;
219
+ export type CreateThumbnailUrl = (file: File | null, fileInfo: SettledFileInfo) => Promise<string> | string | undefined;
220
+ type CreateXhrHandlersType = (inst: UploadInternalInst, file: SettledFileInfo, xhr: XMLHttpRequest) => XhrHandlers;
221
+ export type CustomRequest = (options: CustomRequestOptions) => void;
222
+ type CustomSubmitImplType = (options: CustomSubmitImplOptions) => void;
223
+ export type DoChange = (fileAfterChange: SettledFileInfo, event?: ProgressEvent | Event, options?: DoChangeOptions) => void;
224
+ export type FuncOrRecordOrUndef<T = string> = Record<string, T> | (({ file }: {
225
+ file: SettledFileInfo;
226
+ }) => Record<string, T>) | undefined;
227
+ export type IsErrorState = (xhr: XMLHttpRequest) => boolean;
228
+ export type ListType = 'text' | 'image' | 'image-card' | 'preview-list';
229
+ export type OnBeforeUpload = (data: OnBeforeUploadPayload) => Promise<boolean | void> | boolean | void;
230
+ export type OnChange = (data: OnChangePayload) => void;
231
+ export type OnDownload = (file: SettledFileInfo) => Promise<boolean> | boolean | any;
232
+ export type OnError = (data: OnErrorPayload) => FileInfo | undefined | void;
233
+ export type OnFinish = (data: OnFinishPayload) => FileInfo | undefined | void;
234
+ export type OnPreview = (file: SettledFileInfo) => void;
235
+ export type OnRemove = (data: OnRemovePayload) => Promise<boolean> | boolean | any;
236
+ export type OnRetry = (data: OnRetryPayload) => Promise<boolean | void> | boolean | void;
237
+ export type OnUpdateFileList = (fileList: SettledFileInfo[]) => void;
238
+ export type ProgressStatus = 'info' | 'error' | 'success';
239
+ type RegisterHandlerType = (inst: UploadInternalInst, file: SettledFileInfo, request: XMLHttpRequest) => void;
240
+ export type RenderIcon = (file: SettledFileInfo) => VNodeChild;
241
+ type SetHeadersType = (request: XMLHttpRequest, headers: FuncOrRecordOrUndef, file: SettledFileInfo) => void;
242
+ export type SettledFileInfo = Required<FileInfo>;
243
+ export type ShouldUseThumbnailUrl = (file: SettledFileInfo) => boolean;
244
+ export type Submit = (options?: SubmitOptions | string) => void;
245
+ type SubmitImplType = (inst: UploadInternalInst, fieldName: string, file: SettledFileInfo, options: SubmitImplOptions) => void;
246
+ type UnwrapFunctionValueType = <T>(data: FuncOrRecordOrUndef<T>, file: SettledFileInfo) => Record<string, T>;
247
+ export type UploadLocale = ULocale['Upload'];
248
+ export type UploadProps = ExtractPublicPropTypes<typeof uploadProps>;
249
+ export type UploadSize = 'small' | 'medium' | 'large';
250
+ export declare const uploadInjectionKey: import("vue").InjectionKey<UploadInjection>;
251
+ export declare const uploadProps: {
252
+ readonly name: {
253
+ readonly type: StringConstructor;
254
+ readonly default: "file";
255
+ };
256
+ readonly accept: StringConstructor;
257
+ readonly action: StringConstructor;
258
+ readonly customRequest: PropType<CustomRequest>;
259
+ readonly directory: BooleanConstructor;
260
+ readonly directoryDnd: {
261
+ readonly type: BooleanConstructor;
262
+ readonly default: undefined;
263
+ };
264
+ readonly method: {
265
+ readonly type: StringConstructor;
266
+ readonly default: "POST";
267
+ };
268
+ readonly multiple: BooleanConstructor;
269
+ readonly showFileList: {
270
+ readonly type: BooleanConstructor;
271
+ readonly default: true;
272
+ };
273
+ readonly data: PropType<FuncOrRecordOrUndef<string | Blob>>;
274
+ readonly headers: PropType<FuncOrRecordOrUndef>;
275
+ readonly withCredentials: BooleanConstructor;
276
+ readonly responseType: {
277
+ readonly type: PropType<XMLHttpRequestResponseType>;
278
+ readonly default: "";
279
+ };
280
+ readonly disabled: {
281
+ readonly type: PropType<boolean | undefined>;
282
+ readonly default: undefined;
283
+ };
284
+ readonly vertical: {
285
+ readonly type: BooleanConstructor;
286
+ readonly default: false;
287
+ };
288
+ readonly icon: PropType<VNodeChild | undefined>;
289
+ readonly onChange: PropType<OnChange>;
290
+ readonly onRemove: PropType<OnRemove>;
291
+ readonly onFinish: PropType<OnFinish>;
292
+ readonly onError: PropType<OnError>;
293
+ readonly onRetry: PropType<OnRetry>;
294
+ readonly onBeforeUpload: PropType<OnBeforeUpload>;
295
+ readonly isErrorState: PropType<IsErrorState>;
296
+ readonly onDownload: PropType<OnDownload>;
297
+ readonly defaultUpload: {
298
+ readonly type: BooleanConstructor;
299
+ readonly default: true;
300
+ };
301
+ readonly fileList: PropType<FileInfo[]>;
302
+ readonly 'onUpdate:fileList': PropType<MaybeArray<OnUpdateFileList>>;
303
+ readonly onUpdateFileList: PropType<MaybeArray<OnUpdateFileList>>;
304
+ readonly fileListClass: StringConstructor;
305
+ readonly fileListStyle: PropType<string | CSSProperties>;
306
+ readonly defaultFileList: {
307
+ readonly type: PropType<FileInfo[]>;
308
+ readonly default: () => never[];
309
+ };
310
+ readonly showCancelButton: {
311
+ readonly type: BooleanConstructor;
312
+ readonly default: true;
313
+ };
314
+ readonly showRemoveButton: {
315
+ readonly type: BooleanConstructor;
316
+ readonly default: true;
317
+ };
318
+ readonly showDownloadButton: BooleanConstructor;
319
+ readonly showRetryButton: {
320
+ readonly type: BooleanConstructor;
321
+ readonly default: true;
322
+ };
323
+ readonly customDownload: PropType<OnDownload>;
324
+ readonly showPreviewButton: {
325
+ readonly type: BooleanConstructor;
326
+ readonly default: true;
327
+ };
328
+ readonly listType: {
329
+ readonly type: PropType<ListType>;
330
+ readonly default: "text";
331
+ };
332
+ readonly onPreview: PropType<OnPreview>;
333
+ readonly shouldUseThumbnailUrl: {
334
+ readonly type: PropType<ShouldUseThumbnailUrl>;
335
+ readonly default: (file: SettledFileInfo) => boolean;
336
+ };
337
+ readonly createThumbnailUrl: PropType<CreateThumbnailUrl>;
338
+ readonly abstract: BooleanConstructor;
339
+ readonly max: NumberConstructor;
340
+ readonly maxSize: NumberConstructor;
341
+ readonly showTrigger: {
342
+ readonly type: BooleanConstructor;
343
+ readonly default: true;
344
+ };
345
+ readonly imageGroupProps: PropType<ImageGroupProps>;
346
+ readonly inputProps: PropType<InputHTMLAttributes>;
347
+ readonly triggerClass: StringConstructor;
348
+ readonly triggerStyle: PropType<CSSProperties | string>;
349
+ readonly renderIcon: PropType<RenderIcon>;
350
+ readonly label: StringConstructor;
351
+ readonly size: {
352
+ readonly type: PropType<UploadSize>;
353
+ readonly default: "medium";
354
+ };
355
+ readonly title: StringConstructor;
356
+ readonly subtitle: StringConstructor;
357
+ readonly noIcon: {
358
+ readonly type: BooleanConstructor;
359
+ readonly default: false;
360
+ };
361
+ readonly theme: PropType<import("../../_mixins").Theme<"Upload", {
362
+ baseColor: string;
363
+ fontSize: string;
364
+ lineHeight: string;
365
+ borderRadius: string;
366
+ draggerColor: string;
367
+ draggerBorder: string;
368
+ draggerBorderHover: string;
369
+ draggerShadowFocus: string;
370
+ itemColorHover: string;
371
+ itemColorHoverError: string;
372
+ itemTextColor: string;
373
+ itemTextColorError: string;
374
+ itemTextColorSuccess: string;
375
+ itemIconColor: string;
376
+ itemDisabledOpacity: string;
377
+ itemBorderImageCardError: string;
378
+ itemBorderImageCard: string;
379
+ draggerIconBgColor: string;
380
+ draggerIconColor: string;
381
+ draggerTitleColor: string;
382
+ draggerTextColor: string;
383
+ labelColor: string;
384
+ widthSmall: string;
385
+ widthMedium: string;
386
+ widthLarge: string;
387
+ containerSecondary: string;
388
+ brandPrimary300: string;
389
+ elementsQuaternary: string;
390
+ }, {
391
+ Button: import("../../_mixins").Theme<"Button", {
392
+ heightTiny: string;
393
+ heightSmall: string;
394
+ heightMedium: string;
395
+ heightLarge: string;
396
+ borderRadiusTiny: string;
397
+ borderRadiusSmall: string;
398
+ borderRadiusMedium: string;
399
+ borderRadiusLarge: string;
400
+ fontSizeTiny: string;
401
+ fontSizeSmall: string;
402
+ fontSizeMedium: string;
403
+ fontSizeLarge: string;
404
+ opacityDisabled: string;
405
+ colorOpacitySecondary: string;
406
+ colorOpacitySecondaryHover: string;
407
+ colorOpacitySecondaryPressed: string;
408
+ colorOpacitySecondaryFocus: string;
409
+ colorSecondary: string;
410
+ colorSecondaryHover: string;
411
+ colorSecondaryPressed: string;
412
+ colorSecondaryFocus: string;
413
+ colorSecondaryDisabled: string;
414
+ textColorSecondaryDisabled: string;
415
+ waveColorSecondary: string;
416
+ colorTertiary: string;
417
+ colorTertiaryHover: string;
418
+ colorTertiaryPressed: string;
419
+ colorTertiaryFocus: string;
420
+ colorTertiaryDisalbed: string;
421
+ waveColorTertiary: string;
422
+ textColorTextTertiary: string;
423
+ rippleColorTertiary: string;
424
+ colorQuaternary: string;
425
+ colorQuaternaryHover: string;
426
+ colorQuaternaryPressed: string;
427
+ colorQuaternaryFocus: string;
428
+ rippleColorQuaternary: string;
429
+ waveColorQuaternary: string;
430
+ color: string;
431
+ colorHover: string;
432
+ colorPressed: string;
433
+ colorFocus: string;
434
+ colorDisabled: string;
435
+ textColor: string;
436
+ textTertiary: string;
437
+ textColorTertiary: string;
438
+ textColorHover: string;
439
+ textColorPressed: string;
440
+ textColorFocus: string;
441
+ textColorDisabled: string;
442
+ textColorText: string;
443
+ textColorTextHover: string;
444
+ textColorTextPressed: string;
445
+ textColorTextFocus: string;
446
+ textColorTextDisabled: string;
447
+ textColorGhost: string;
448
+ textColorGhostHover: string;
449
+ textColorGhostPressed: string;
450
+ textColorGhostFocus: string;
451
+ textColorGhostDisabled: string;
452
+ border: string;
453
+ borderHover: string;
454
+ borderPressed: string;
455
+ borderFocus: string;
456
+ borderDisabled: string;
457
+ rippleColor: string;
458
+ colorPrimary: string;
459
+ colorHoverPrimary: string;
460
+ colorPressedPrimary: string;
461
+ colorFocusPrimary: string;
462
+ colorDisabledPrimary: string;
463
+ waveColorPrimary: string;
464
+ textColorPrimary: string;
465
+ textColorHoverPrimary: string;
466
+ textColorPressedPrimary: string;
467
+ textColorFocusPrimary: string;
468
+ textColorDisabledPrimary: string;
469
+ textColorTextPrimary: string;
470
+ textColorTextHoverPrimary: string;
471
+ textColorTextPressedPrimary: string;
472
+ textColorTextFocusPrimary: string;
473
+ textColorTextDisabledPrimary: string;
474
+ textColorGhostPrimary: string;
475
+ textColorGhostHoverPrimary: string;
476
+ textColorGhostPressedPrimary: string;
477
+ textColorGhostFocusPrimary: string;
478
+ textColorGhostDisabledPrimary: string;
479
+ borderPrimary: string;
480
+ borderHoverPrimary: string;
481
+ borderPressedPrimary: string;
482
+ borderFocusPrimary: string;
483
+ borderDisabledPrimary: string;
484
+ rippleColorPrimary: string;
485
+ colorInfo: string;
486
+ colorHoverInfo: string;
487
+ colorPressedInfo: string;
488
+ colorFocusInfo: string;
489
+ colorDisabledInfo: string;
490
+ textColorInfo: string;
491
+ textColorHoverInfo: string;
492
+ textColorPressedInfo: string;
493
+ textColorFocusInfo: string;
494
+ textColorDisabledInfo: string;
495
+ textColorTextInfo: string;
496
+ textColorTextHoverInfo: string;
497
+ textColorTextPressedInfo: string;
498
+ textColorTextFocusInfo: string;
499
+ textColorTextDisabledInfo: string;
500
+ textColorGhostInfo: string;
501
+ textColorGhostHoverInfo: string;
502
+ textColorGhostPressedInfo: string;
503
+ textColorGhostFocusInfo: string;
504
+ textColorGhostDisabledInfo: string;
505
+ borderInfo: string;
506
+ borderHoverInfo: string;
507
+ borderPressedInfo: string;
508
+ borderFocusInfo: string;
509
+ borderDisabledInfo: string;
510
+ rippleColorInfo: string;
511
+ colorSuccess: string;
512
+ colorHoverSuccess: string;
513
+ colorPressedSuccess: string;
514
+ colorFocusSuccess: string;
515
+ colorDisabledSuccess: string;
516
+ textColorSuccess: string;
517
+ textColorHoverSuccess: string;
518
+ textColorPressedSuccess: string;
519
+ textColorFocusSuccess: string;
520
+ textColorDisabledSuccess: string;
521
+ textColorTextSuccess: string;
522
+ textColorTextHoverSuccess: string;
523
+ textColorTextPressedSuccess: string;
524
+ textColorTextFocusSuccess: string;
525
+ textColorTextDisabledSuccess: string;
526
+ textColorGhostSuccess: string;
527
+ textColorGhostHoverSuccess: string;
528
+ textColorGhostPressedSuccess: string;
529
+ textColorGhostFocusSuccess: string;
530
+ textColorGhostDisabledSuccess: string;
531
+ borderSuccess: string;
532
+ borderHoverSuccess: string;
533
+ borderPressedSuccess: string;
534
+ borderFocusSuccess: string;
535
+ borderDisabledSuccess: string;
536
+ rippleColorSuccess: string;
537
+ colorWarning: string;
538
+ colorHoverWarning: string;
539
+ colorPressedWarning: string;
540
+ colorFocusWarning: string;
541
+ colorDisabledWarning: string;
542
+ textColorWarning: string;
543
+ textColorHoverWarning: string;
544
+ textColorPressedWarning: string;
545
+ textColorFocusWarning: string;
546
+ textColorDisabledWarning: string;
547
+ textColorTextWarning: string;
548
+ textColorTextHoverWarning: string;
549
+ textColorTextPressedWarning: string;
550
+ textColorTextFocusWarning: string;
551
+ textColorTextDisabledWarning: string;
552
+ textColorGhostWarning: string;
553
+ textColorGhostHoverWarning: string;
554
+ textColorGhostPressedWarning: string;
555
+ textColorGhostFocusWarning: string;
556
+ textColorGhostDisabledWarning: string;
557
+ borderWarning: string;
558
+ borderHoverWarning: string;
559
+ borderPressedWarning: string;
560
+ borderFocusWarning: string;
561
+ borderDisabledWarning: string;
562
+ rippleColorWarning: string;
563
+ colorError: string;
564
+ colorHoverError: string;
565
+ colorPressedError: string;
566
+ colorFocusError: string;
567
+ colorDisabledError: string;
568
+ textColorError: string;
569
+ textColorHoverError: string;
570
+ textColorPressedError: string;
571
+ textColorFocusError: string;
572
+ textColorDisabledError: string;
573
+ textColorTextError: string;
574
+ textColorTextHoverError: string;
575
+ textColorTextPressedError: string;
576
+ textColorTextFocusError: string;
577
+ textColorTextDisabledError: string;
578
+ textColorGhostError: string;
579
+ textColorGhostHoverError: string;
580
+ textColorGhostPressedError: string;
581
+ textColorGhostFocusError: string;
582
+ textColorGhostDisabledError: string;
583
+ borderError: string;
584
+ borderHoverError: string;
585
+ borderPressedError: string;
586
+ borderFocusError: string;
587
+ borderDisabledError: string;
588
+ rippleColorError: string;
589
+ waveOpacity: string;
590
+ fontWeight: string;
591
+ fontWeightStrong: string;
592
+ paddingTiny: string;
593
+ paddingSmall: string;
594
+ paddingMedium: string;
595
+ paddingLarge: string;
596
+ paddingRoundTiny: string;
597
+ paddingRoundSmall: string;
598
+ paddingRoundMedium: string;
599
+ paddingRoundLarge: string;
600
+ iconMarginTiny: string;
601
+ iconMarginSmall: string;
602
+ iconMarginMedium: string;
603
+ iconMarginLarge: string;
604
+ iconSizeTiny: string;
605
+ iconSizeSmall: string;
606
+ iconSizeMedium: string;
607
+ iconSizeLarge: string;
608
+ rippleDuration: string;
609
+ }, any>;
610
+ Progress: import("../../_mixins").Theme<"Progress", {
611
+ fontSize: string;
612
+ fontSizeCircle: string;
613
+ fontWeightCircle: string;
614
+ railColor: string;
615
+ railHeight: string;
616
+ iconSizeCircle: string;
617
+ iconSizeLine: string;
618
+ iconColor: string;
619
+ iconColorInfo: string;
620
+ iconColorSuccess: string;
621
+ iconColorWarning: string;
622
+ iconColorError: string;
623
+ textColorCircle: string;
624
+ textColorLineInner: string;
625
+ textColorLineOuter: string;
626
+ fillColor: string;
627
+ fillColorInfo: string;
628
+ fillColorSuccess: string;
629
+ fillColorWarning: string;
630
+ fillColorError: string;
631
+ lineBgProcessing: string;
632
+ }, any>;
633
+ }>>;
634
+ readonly themeOverrides: PropType<ExtractThemeOverrides<import("../../_mixins").Theme<"Upload", {
635
+ baseColor: string;
636
+ fontSize: string;
637
+ lineHeight: string;
638
+ borderRadius: string;
639
+ draggerColor: string;
640
+ draggerBorder: string;
641
+ draggerBorderHover: string;
642
+ draggerShadowFocus: string;
643
+ itemColorHover: string;
644
+ itemColorHoverError: string;
645
+ itemTextColor: string;
646
+ itemTextColorError: string;
647
+ itemTextColorSuccess: string;
648
+ itemIconColor: string;
649
+ itemDisabledOpacity: string;
650
+ itemBorderImageCardError: string;
651
+ itemBorderImageCard: string;
652
+ draggerIconBgColor: string;
653
+ draggerIconColor: string;
654
+ draggerTitleColor: string;
655
+ draggerTextColor: string;
656
+ labelColor: string;
657
+ widthSmall: string;
658
+ widthMedium: string;
659
+ widthLarge: string;
660
+ containerSecondary: string;
661
+ brandPrimary300: string;
662
+ elementsQuaternary: string;
663
+ }, {
664
+ Button: import("../../_mixins").Theme<"Button", {
665
+ heightTiny: string;
666
+ heightSmall: string;
667
+ heightMedium: string;
668
+ heightLarge: string;
669
+ borderRadiusTiny: string;
670
+ borderRadiusSmall: string;
671
+ borderRadiusMedium: string;
672
+ borderRadiusLarge: string;
673
+ fontSizeTiny: string;
674
+ fontSizeSmall: string;
675
+ fontSizeMedium: string;
676
+ fontSizeLarge: string;
677
+ opacityDisabled: string;
678
+ colorOpacitySecondary: string;
679
+ colorOpacitySecondaryHover: string;
680
+ colorOpacitySecondaryPressed: string;
681
+ colorOpacitySecondaryFocus: string;
682
+ colorSecondary: string;
683
+ colorSecondaryHover: string;
684
+ colorSecondaryPressed: string;
685
+ colorSecondaryFocus: string;
686
+ colorSecondaryDisabled: string;
687
+ textColorSecondaryDisabled: string;
688
+ waveColorSecondary: string;
689
+ colorTertiary: string;
690
+ colorTertiaryHover: string;
691
+ colorTertiaryPressed: string;
692
+ colorTertiaryFocus: string;
693
+ colorTertiaryDisalbed: string;
694
+ waveColorTertiary: string;
695
+ textColorTextTertiary: string;
696
+ rippleColorTertiary: string;
697
+ colorQuaternary: string;
698
+ colorQuaternaryHover: string;
699
+ colorQuaternaryPressed: string;
700
+ colorQuaternaryFocus: string;
701
+ rippleColorQuaternary: string;
702
+ waveColorQuaternary: string;
703
+ color: string;
704
+ colorHover: string;
705
+ colorPressed: string;
706
+ colorFocus: string;
707
+ colorDisabled: string;
708
+ textColor: string;
709
+ textTertiary: string;
710
+ textColorTertiary: string;
711
+ textColorHover: string;
712
+ textColorPressed: string;
713
+ textColorFocus: string;
714
+ textColorDisabled: string;
715
+ textColorText: string;
716
+ textColorTextHover: string;
717
+ textColorTextPressed: string;
718
+ textColorTextFocus: string;
719
+ textColorTextDisabled: string;
720
+ textColorGhost: string;
721
+ textColorGhostHover: string;
722
+ textColorGhostPressed: string;
723
+ textColorGhostFocus: string;
724
+ textColorGhostDisabled: string;
725
+ border: string;
726
+ borderHover: string;
727
+ borderPressed: string;
728
+ borderFocus: string;
729
+ borderDisabled: string;
730
+ rippleColor: string;
731
+ colorPrimary: string;
732
+ colorHoverPrimary: string;
733
+ colorPressedPrimary: string;
734
+ colorFocusPrimary: string;
735
+ colorDisabledPrimary: string;
736
+ waveColorPrimary: string;
737
+ textColorPrimary: string;
738
+ textColorHoverPrimary: string;
739
+ textColorPressedPrimary: string;
740
+ textColorFocusPrimary: string;
741
+ textColorDisabledPrimary: string;
742
+ textColorTextPrimary: string;
743
+ textColorTextHoverPrimary: string;
744
+ textColorTextPressedPrimary: string;
745
+ textColorTextFocusPrimary: string;
746
+ textColorTextDisabledPrimary: string;
747
+ textColorGhostPrimary: string;
748
+ textColorGhostHoverPrimary: string;
749
+ textColorGhostPressedPrimary: string;
750
+ textColorGhostFocusPrimary: string;
751
+ textColorGhostDisabledPrimary: string;
752
+ borderPrimary: string;
753
+ borderHoverPrimary: string;
754
+ borderPressedPrimary: string;
755
+ borderFocusPrimary: string;
756
+ borderDisabledPrimary: string;
757
+ rippleColorPrimary: string;
758
+ colorInfo: string;
759
+ colorHoverInfo: string;
760
+ colorPressedInfo: string;
761
+ colorFocusInfo: string;
762
+ colorDisabledInfo: string;
763
+ textColorInfo: string;
764
+ textColorHoverInfo: string;
765
+ textColorPressedInfo: string;
766
+ textColorFocusInfo: string;
767
+ textColorDisabledInfo: string;
768
+ textColorTextInfo: string;
769
+ textColorTextHoverInfo: string;
770
+ textColorTextPressedInfo: string;
771
+ textColorTextFocusInfo: string;
772
+ textColorTextDisabledInfo: string;
773
+ textColorGhostInfo: string;
774
+ textColorGhostHoverInfo: string;
775
+ textColorGhostPressedInfo: string;
776
+ textColorGhostFocusInfo: string;
777
+ textColorGhostDisabledInfo: string;
778
+ borderInfo: string;
779
+ borderHoverInfo: string;
780
+ borderPressedInfo: string;
781
+ borderFocusInfo: string;
782
+ borderDisabledInfo: string;
783
+ rippleColorInfo: string;
784
+ colorSuccess: string;
785
+ colorHoverSuccess: string;
786
+ colorPressedSuccess: string;
787
+ colorFocusSuccess: string;
788
+ colorDisabledSuccess: string;
789
+ textColorSuccess: string;
790
+ textColorHoverSuccess: string;
791
+ textColorPressedSuccess: string;
792
+ textColorFocusSuccess: string;
793
+ textColorDisabledSuccess: string;
794
+ textColorTextSuccess: string;
795
+ textColorTextHoverSuccess: string;
796
+ textColorTextPressedSuccess: string;
797
+ textColorTextFocusSuccess: string;
798
+ textColorTextDisabledSuccess: string;
799
+ textColorGhostSuccess: string;
800
+ textColorGhostHoverSuccess: string;
801
+ textColorGhostPressedSuccess: string;
802
+ textColorGhostFocusSuccess: string;
803
+ textColorGhostDisabledSuccess: string;
804
+ borderSuccess: string;
805
+ borderHoverSuccess: string;
806
+ borderPressedSuccess: string;
807
+ borderFocusSuccess: string;
808
+ borderDisabledSuccess: string;
809
+ rippleColorSuccess: string;
810
+ colorWarning: string;
811
+ colorHoverWarning: string;
812
+ colorPressedWarning: string;
813
+ colorFocusWarning: string;
814
+ colorDisabledWarning: string;
815
+ textColorWarning: string;
816
+ textColorHoverWarning: string;
817
+ textColorPressedWarning: string;
818
+ textColorFocusWarning: string;
819
+ textColorDisabledWarning: string;
820
+ textColorTextWarning: string;
821
+ textColorTextHoverWarning: string;
822
+ textColorTextPressedWarning: string;
823
+ textColorTextFocusWarning: string;
824
+ textColorTextDisabledWarning: string;
825
+ textColorGhostWarning: string;
826
+ textColorGhostHoverWarning: string;
827
+ textColorGhostPressedWarning: string;
828
+ textColorGhostFocusWarning: string;
829
+ textColorGhostDisabledWarning: string;
830
+ borderWarning: string;
831
+ borderHoverWarning: string;
832
+ borderPressedWarning: string;
833
+ borderFocusWarning: string;
834
+ borderDisabledWarning: string;
835
+ rippleColorWarning: string;
836
+ colorError: string;
837
+ colorHoverError: string;
838
+ colorPressedError: string;
839
+ colorFocusError: string;
840
+ colorDisabledError: string;
841
+ textColorError: string;
842
+ textColorHoverError: string;
843
+ textColorPressedError: string;
844
+ textColorFocusError: string;
845
+ textColorDisabledError: string;
846
+ textColorTextError: string;
847
+ textColorTextHoverError: string;
848
+ textColorTextPressedError: string;
849
+ textColorTextFocusError: string;
850
+ textColorTextDisabledError: string;
851
+ textColorGhostError: string;
852
+ textColorGhostHoverError: string;
853
+ textColorGhostPressedError: string;
854
+ textColorGhostFocusError: string;
855
+ textColorGhostDisabledError: string;
856
+ borderError: string;
857
+ borderHoverError: string;
858
+ borderPressedError: string;
859
+ borderFocusError: string;
860
+ borderDisabledError: string;
861
+ rippleColorError: string;
862
+ waveOpacity: string;
863
+ fontWeight: string;
864
+ fontWeightStrong: string;
865
+ paddingTiny: string;
866
+ paddingSmall: string;
867
+ paddingMedium: string;
868
+ paddingLarge: string;
869
+ paddingRoundTiny: string;
870
+ paddingRoundSmall: string;
871
+ paddingRoundMedium: string;
872
+ paddingRoundLarge: string;
873
+ iconMarginTiny: string;
874
+ iconMarginSmall: string;
875
+ iconMarginMedium: string;
876
+ iconMarginLarge: string;
877
+ iconSizeTiny: string;
878
+ iconSizeSmall: string;
879
+ iconSizeMedium: string;
880
+ iconSizeLarge: string;
881
+ rippleDuration: string;
882
+ }, any>;
883
+ Progress: import("../../_mixins").Theme<"Progress", {
884
+ fontSize: string;
885
+ fontSizeCircle: string;
886
+ fontWeightCircle: string;
887
+ railColor: string;
888
+ railHeight: string;
889
+ iconSizeCircle: string;
890
+ iconSizeLine: string;
891
+ iconColor: string;
892
+ iconColorInfo: string;
893
+ iconColorSuccess: string;
894
+ iconColorWarning: string;
895
+ iconColorError: string;
896
+ textColorCircle: string;
897
+ textColorLineInner: string;
898
+ textColorLineOuter: string;
899
+ fillColor: string;
900
+ fillColorInfo: string;
901
+ fillColorSuccess: string;
902
+ fillColorWarning: string;
903
+ fillColorError: string;
904
+ lineBgProcessing: string;
905
+ }, any>;
906
+ }>>>;
907
+ readonly builtinThemeOverrides: PropType<ExtractThemeOverrides<import("../../_mixins").Theme<"Upload", {
908
+ baseColor: string;
909
+ fontSize: string;
910
+ lineHeight: string;
911
+ borderRadius: string;
912
+ draggerColor: string;
913
+ draggerBorder: string;
914
+ draggerBorderHover: string;
915
+ draggerShadowFocus: string;
916
+ itemColorHover: string;
917
+ itemColorHoverError: string;
918
+ itemTextColor: string;
919
+ itemTextColorError: string;
920
+ itemTextColorSuccess: string;
921
+ itemIconColor: string;
922
+ itemDisabledOpacity: string;
923
+ itemBorderImageCardError: string;
924
+ itemBorderImageCard: string;
925
+ draggerIconBgColor: string;
926
+ draggerIconColor: string;
927
+ draggerTitleColor: string;
928
+ draggerTextColor: string;
929
+ labelColor: string;
930
+ widthSmall: string;
931
+ widthMedium: string;
932
+ widthLarge: string;
933
+ containerSecondary: string;
934
+ brandPrimary300: string;
935
+ elementsQuaternary: string;
936
+ }, {
937
+ Button: import("../../_mixins").Theme<"Button", {
938
+ heightTiny: string;
939
+ heightSmall: string;
940
+ heightMedium: string;
941
+ heightLarge: string;
942
+ borderRadiusTiny: string;
943
+ borderRadiusSmall: string;
944
+ borderRadiusMedium: string;
945
+ borderRadiusLarge: string;
946
+ fontSizeTiny: string;
947
+ fontSizeSmall: string;
948
+ fontSizeMedium: string;
949
+ fontSizeLarge: string;
950
+ opacityDisabled: string;
951
+ colorOpacitySecondary: string;
952
+ colorOpacitySecondaryHover: string;
953
+ colorOpacitySecondaryPressed: string;
954
+ colorOpacitySecondaryFocus: string;
955
+ colorSecondary: string;
956
+ colorSecondaryHover: string;
957
+ colorSecondaryPressed: string;
958
+ colorSecondaryFocus: string;
959
+ colorSecondaryDisabled: string;
960
+ textColorSecondaryDisabled: string;
961
+ waveColorSecondary: string;
962
+ colorTertiary: string;
963
+ colorTertiaryHover: string;
964
+ colorTertiaryPressed: string;
965
+ colorTertiaryFocus: string;
966
+ colorTertiaryDisalbed: string;
967
+ waveColorTertiary: string;
968
+ textColorTextTertiary: string;
969
+ rippleColorTertiary: string;
970
+ colorQuaternary: string;
971
+ colorQuaternaryHover: string;
972
+ colorQuaternaryPressed: string;
973
+ colorQuaternaryFocus: string;
974
+ rippleColorQuaternary: string;
975
+ waveColorQuaternary: string;
976
+ color: string;
977
+ colorHover: string;
978
+ colorPressed: string;
979
+ colorFocus: string;
980
+ colorDisabled: string;
981
+ textColor: string;
982
+ textTertiary: string;
983
+ textColorTertiary: string;
984
+ textColorHover: string;
985
+ textColorPressed: string;
986
+ textColorFocus: string;
987
+ textColorDisabled: string;
988
+ textColorText: string;
989
+ textColorTextHover: string;
990
+ textColorTextPressed: string;
991
+ textColorTextFocus: string;
992
+ textColorTextDisabled: string;
993
+ textColorGhost: string;
994
+ textColorGhostHover: string;
995
+ textColorGhostPressed: string;
996
+ textColorGhostFocus: string;
997
+ textColorGhostDisabled: string;
998
+ border: string;
999
+ borderHover: string;
1000
+ borderPressed: string;
1001
+ borderFocus: string;
1002
+ borderDisabled: string;
1003
+ rippleColor: string;
1004
+ colorPrimary: string;
1005
+ colorHoverPrimary: string;
1006
+ colorPressedPrimary: string;
1007
+ colorFocusPrimary: string;
1008
+ colorDisabledPrimary: string;
1009
+ waveColorPrimary: string;
1010
+ textColorPrimary: string;
1011
+ textColorHoverPrimary: string;
1012
+ textColorPressedPrimary: string;
1013
+ textColorFocusPrimary: string;
1014
+ textColorDisabledPrimary: string;
1015
+ textColorTextPrimary: string;
1016
+ textColorTextHoverPrimary: string;
1017
+ textColorTextPressedPrimary: string;
1018
+ textColorTextFocusPrimary: string;
1019
+ textColorTextDisabledPrimary: string;
1020
+ textColorGhostPrimary: string;
1021
+ textColorGhostHoverPrimary: string;
1022
+ textColorGhostPressedPrimary: string;
1023
+ textColorGhostFocusPrimary: string;
1024
+ textColorGhostDisabledPrimary: string;
1025
+ borderPrimary: string;
1026
+ borderHoverPrimary: string;
1027
+ borderPressedPrimary: string;
1028
+ borderFocusPrimary: string;
1029
+ borderDisabledPrimary: string;
1030
+ rippleColorPrimary: string;
1031
+ colorInfo: string;
1032
+ colorHoverInfo: string;
1033
+ colorPressedInfo: string;
1034
+ colorFocusInfo: string;
1035
+ colorDisabledInfo: string;
1036
+ textColorInfo: string;
1037
+ textColorHoverInfo: string;
1038
+ textColorPressedInfo: string;
1039
+ textColorFocusInfo: string;
1040
+ textColorDisabledInfo: string;
1041
+ textColorTextInfo: string;
1042
+ textColorTextHoverInfo: string;
1043
+ textColorTextPressedInfo: string;
1044
+ textColorTextFocusInfo: string;
1045
+ textColorTextDisabledInfo: string;
1046
+ textColorGhostInfo: string;
1047
+ textColorGhostHoverInfo: string;
1048
+ textColorGhostPressedInfo: string;
1049
+ textColorGhostFocusInfo: string;
1050
+ textColorGhostDisabledInfo: string;
1051
+ borderInfo: string;
1052
+ borderHoverInfo: string;
1053
+ borderPressedInfo: string;
1054
+ borderFocusInfo: string;
1055
+ borderDisabledInfo: string;
1056
+ rippleColorInfo: string;
1057
+ colorSuccess: string;
1058
+ colorHoverSuccess: string;
1059
+ colorPressedSuccess: string;
1060
+ colorFocusSuccess: string;
1061
+ colorDisabledSuccess: string;
1062
+ textColorSuccess: string;
1063
+ textColorHoverSuccess: string;
1064
+ textColorPressedSuccess: string;
1065
+ textColorFocusSuccess: string;
1066
+ textColorDisabledSuccess: string;
1067
+ textColorTextSuccess: string;
1068
+ textColorTextHoverSuccess: string;
1069
+ textColorTextPressedSuccess: string;
1070
+ textColorTextFocusSuccess: string;
1071
+ textColorTextDisabledSuccess: string;
1072
+ textColorGhostSuccess: string;
1073
+ textColorGhostHoverSuccess: string;
1074
+ textColorGhostPressedSuccess: string;
1075
+ textColorGhostFocusSuccess: string;
1076
+ textColorGhostDisabledSuccess: string;
1077
+ borderSuccess: string;
1078
+ borderHoverSuccess: string;
1079
+ borderPressedSuccess: string;
1080
+ borderFocusSuccess: string;
1081
+ borderDisabledSuccess: string;
1082
+ rippleColorSuccess: string;
1083
+ colorWarning: string;
1084
+ colorHoverWarning: string;
1085
+ colorPressedWarning: string;
1086
+ colorFocusWarning: string;
1087
+ colorDisabledWarning: string;
1088
+ textColorWarning: string;
1089
+ textColorHoverWarning: string;
1090
+ textColorPressedWarning: string;
1091
+ textColorFocusWarning: string;
1092
+ textColorDisabledWarning: string;
1093
+ textColorTextWarning: string;
1094
+ textColorTextHoverWarning: string;
1095
+ textColorTextPressedWarning: string;
1096
+ textColorTextFocusWarning: string;
1097
+ textColorTextDisabledWarning: string;
1098
+ textColorGhostWarning: string;
1099
+ textColorGhostHoverWarning: string;
1100
+ textColorGhostPressedWarning: string;
1101
+ textColorGhostFocusWarning: string;
1102
+ textColorGhostDisabledWarning: string;
1103
+ borderWarning: string;
1104
+ borderHoverWarning: string;
1105
+ borderPressedWarning: string;
1106
+ borderFocusWarning: string;
1107
+ borderDisabledWarning: string;
1108
+ rippleColorWarning: string;
1109
+ colorError: string;
1110
+ colorHoverError: string;
1111
+ colorPressedError: string;
1112
+ colorFocusError: string;
1113
+ colorDisabledError: string;
1114
+ textColorError: string;
1115
+ textColorHoverError: string;
1116
+ textColorPressedError: string;
1117
+ textColorFocusError: string;
1118
+ textColorDisabledError: string;
1119
+ textColorTextError: string;
1120
+ textColorTextHoverError: string;
1121
+ textColorTextPressedError: string;
1122
+ textColorTextFocusError: string;
1123
+ textColorTextDisabledError: string;
1124
+ textColorGhostError: string;
1125
+ textColorGhostHoverError: string;
1126
+ textColorGhostPressedError: string;
1127
+ textColorGhostFocusError: string;
1128
+ textColorGhostDisabledError: string;
1129
+ borderError: string;
1130
+ borderHoverError: string;
1131
+ borderPressedError: string;
1132
+ borderFocusError: string;
1133
+ borderDisabledError: string;
1134
+ rippleColorError: string;
1135
+ waveOpacity: string;
1136
+ fontWeight: string;
1137
+ fontWeightStrong: string;
1138
+ paddingTiny: string;
1139
+ paddingSmall: string;
1140
+ paddingMedium: string;
1141
+ paddingLarge: string;
1142
+ paddingRoundTiny: string;
1143
+ paddingRoundSmall: string;
1144
+ paddingRoundMedium: string;
1145
+ paddingRoundLarge: string;
1146
+ iconMarginTiny: string;
1147
+ iconMarginSmall: string;
1148
+ iconMarginMedium: string;
1149
+ iconMarginLarge: string;
1150
+ iconSizeTiny: string;
1151
+ iconSizeSmall: string;
1152
+ iconSizeMedium: string;
1153
+ iconSizeLarge: string;
1154
+ rippleDuration: string;
1155
+ }, any>;
1156
+ Progress: import("../../_mixins").Theme<"Progress", {
1157
+ fontSize: string;
1158
+ fontSizeCircle: string;
1159
+ fontWeightCircle: string;
1160
+ railColor: string;
1161
+ railHeight: string;
1162
+ iconSizeCircle: string;
1163
+ iconSizeLine: string;
1164
+ iconColor: string;
1165
+ iconColorInfo: string;
1166
+ iconColorSuccess: string;
1167
+ iconColorWarning: string;
1168
+ iconColorError: string;
1169
+ textColorCircle: string;
1170
+ textColorLineInner: string;
1171
+ textColorLineOuter: string;
1172
+ fillColor: string;
1173
+ fillColorInfo: string;
1174
+ fillColorSuccess: string;
1175
+ fillColorWarning: string;
1176
+ fillColorError: string;
1177
+ lineBgProcessing: string;
1178
+ }, any>;
1179
+ }>>>;
1180
+ };
187
1181
  export {};