@comercti/vue-components-hmg 0.23.8 → 0.23.10
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 +8 -8
- package/comerc-style-guide.es.js +1208 -1182
- package/comerc-style-guide.umd.js +11 -11
- package/index.d.ts +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -302,9 +302,11 @@ dropdownRef: HTMLDivElement[];
|
|
|
302
302
|
|
|
303
303
|
declare const __VLS_component_7: DefineComponent<IDropzone, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
304
304
|
"update:modelValue": (file: FileItem | File | FileItem[]) => any;
|
|
305
|
+
delete: (files: FileItem | File | FileItem[]) => any;
|
|
305
306
|
updateFiles: (file: FileItem[]) => any;
|
|
306
307
|
}, string, PublicProps, Readonly<IDropzone> & Readonly<{
|
|
307
308
|
"onUpdate:modelValue"?: (file: FileItem | File | FileItem[]) => any;
|
|
309
|
+
onDelete?: (files: FileItem | File | FileItem[]) => any;
|
|
308
310
|
onUpdateFiles?: (file: FileItem[]) => any;
|
|
309
311
|
}>, {
|
|
310
312
|
invalid: boolean;
|
|
@@ -328,6 +330,7 @@ errorLabel: string;
|
|
|
328
330
|
successLabel: string;
|
|
329
331
|
tertiaryVariantTitle: string;
|
|
330
332
|
showUploadedFile: boolean;
|
|
333
|
+
showRemoveButton: boolean;
|
|
331
334
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
332
335
|
inputFile: HTMLInputElement;
|
|
333
336
|
}, HTMLDivElement>;
|
|
@@ -1738,8 +1741,10 @@ export declare const CeCheckboxGroup: __VLS_WithTemplateSlots_3<typeof __VLS_com
|
|
|
1738
1741
|
|
|
1739
1742
|
export declare const CeCodeInput: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1740
1743
|
"update:modelValue": (valor: string) => any;
|
|
1744
|
+
change: (valor: string) => any;
|
|
1741
1745
|
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
1742
1746
|
"onUpdate:modelValue"?: (valor: string) => any;
|
|
1747
|
+
onChange?: (valor: string) => any;
|
|
1743
1748
|
}>, {
|
|
1744
1749
|
length: number;
|
|
1745
1750
|
size: "small" | "medium" | "large";
|
|
@@ -2104,6 +2109,10 @@ declare interface IDropzone {
|
|
|
2104
2109
|
reserveSpaceFeedback?: boolean;
|
|
2105
2110
|
/** Se deve mostrar o arquivo enviado */
|
|
2106
2111
|
showUploadedFile?: boolean;
|
|
2112
|
+
/** Sinaliza que pode remover o arquivo */
|
|
2113
|
+
canRemoveFile?: boolean;
|
|
2114
|
+
/** Exibi o botão de remover arquivo */
|
|
2115
|
+
showRemoveButton?: boolean;
|
|
2107
2116
|
}
|
|
2108
2117
|
|
|
2109
2118
|
declare interface IItems {
|