@comercti/vue-components-hmg 0.23.9 → 0.23.11
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 +1 -1
- package/comerc-style-guide.es.js +697 -691
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -330,6 +330,7 @@ errorLabel: string;
|
|
|
330
330
|
successLabel: string;
|
|
331
331
|
tertiaryVariantTitle: string;
|
|
332
332
|
showUploadedFile: boolean;
|
|
333
|
+
showRemoveButton: boolean;
|
|
333
334
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
334
335
|
inputFile: HTMLInputElement;
|
|
335
336
|
}, HTMLDivElement>;
|
|
@@ -2025,6 +2026,7 @@ declare interface FileItem {
|
|
|
2025
2026
|
file: File;
|
|
2026
2027
|
progress: number;
|
|
2027
2028
|
status: 'uploading' | 'success' | 'error';
|
|
2029
|
+
message?: string;
|
|
2028
2030
|
}
|
|
2029
2031
|
|
|
2030
2032
|
declare type FormatDate = 'yyyy-MM-dd' | 'dd/MM/yyyy' | 'timestamp' | 'iso' | 'string';
|
|
@@ -2110,6 +2112,8 @@ declare interface IDropzone {
|
|
|
2110
2112
|
showUploadedFile?: boolean;
|
|
2111
2113
|
/** Sinaliza que pode remover o arquivo */
|
|
2112
2114
|
canRemoveFile?: boolean;
|
|
2115
|
+
/** Exibi o botão de remover arquivo */
|
|
2116
|
+
showRemoveButton?: boolean;
|
|
2113
2117
|
}
|
|
2114
2118
|
|
|
2115
2119
|
declare interface IItems {
|