@comercti/vue-components-hmg 0.23.7 → 0.23.9
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 +1207 -1182
- package/comerc-style-guide.umd.js +9 -9
- package/index.d.ts +6 -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;
|
|
@@ -1738,8 +1740,10 @@ export declare const CeCheckboxGroup: __VLS_WithTemplateSlots_3<typeof __VLS_com
|
|
|
1738
1740
|
|
|
1739
1741
|
export declare const CeCodeInput: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1740
1742
|
"update:modelValue": (valor: string) => any;
|
|
1743
|
+
change: (valor: string) => any;
|
|
1741
1744
|
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
1742
1745
|
"onUpdate:modelValue"?: (valor: string) => any;
|
|
1746
|
+
onChange?: (valor: string) => any;
|
|
1743
1747
|
}>, {
|
|
1744
1748
|
length: number;
|
|
1745
1749
|
size: "small" | "medium" | "large";
|
|
@@ -2104,6 +2108,8 @@ declare interface IDropzone {
|
|
|
2104
2108
|
reserveSpaceFeedback?: boolean;
|
|
2105
2109
|
/** Se deve mostrar o arquivo enviado */
|
|
2106
2110
|
showUploadedFile?: boolean;
|
|
2111
|
+
/** Sinaliza que pode remover o arquivo */
|
|
2112
|
+
canRemoveFile?: boolean;
|
|
2107
2113
|
}
|
|
2108
2114
|
|
|
2109
2115
|
declare interface IItems {
|