@comercti/vue-components-hmg 0.23.11 → 0.23.12
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.
- package/comerc-style-guide.cjs.js +4 -4
- package/comerc-style-guide.es.js +1166 -1157
- package/comerc-style-guide.umd.js +9 -9
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -317,6 +317,8 @@ file: FileItem | null;
|
|
|
317
317
|
rounded: "md" | "lg" | "xl";
|
|
318
318
|
compact: boolean;
|
|
319
319
|
clear: boolean;
|
|
320
|
+
errorLabel: string;
|
|
321
|
+
successLabel: string;
|
|
320
322
|
accept: string[];
|
|
321
323
|
multiple: boolean;
|
|
322
324
|
maxFile: number;
|
|
@@ -326,8 +328,6 @@ customMessage: string[];
|
|
|
326
328
|
simulateProgress: boolean;
|
|
327
329
|
showProgressBar: boolean;
|
|
328
330
|
sendRemovedFile: boolean;
|
|
329
|
-
errorLabel: string;
|
|
330
|
-
successLabel: string;
|
|
331
331
|
tertiaryVariantTitle: string;
|
|
332
332
|
showUploadedFile: boolean;
|
|
333
333
|
showRemoveButton: boolean;
|
|
@@ -2027,6 +2027,8 @@ declare interface FileItem {
|
|
|
2027
2027
|
progress: number;
|
|
2028
2028
|
status: 'uploading' | 'success' | 'error';
|
|
2029
2029
|
message?: string;
|
|
2030
|
+
errorLabel?: string;
|
|
2031
|
+
successLabel?: string;
|
|
2030
2032
|
}
|
|
2031
2033
|
|
|
2032
2034
|
declare type FormatDate = 'yyyy-MM-dd' | 'dd/MM/yyyy' | 'timestamp' | 'iso' | 'string';
|