@comercti/vue-components-hmg 0.33.5 → 0.33.8
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 +3 -2
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -355,6 +355,7 @@ sendRemovedFile: boolean;
|
|
|
355
355
|
tertiaryVariantTitle: string;
|
|
356
356
|
showUploadedFile: boolean;
|
|
357
357
|
showRemoveButton: boolean;
|
|
358
|
+
showRemoveButtonPerFile: Record<string, boolean>;
|
|
358
359
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
359
360
|
inputFile: HTMLInputElement;
|
|
360
361
|
}, HTMLDivElement>;
|
|
@@ -2185,6 +2186,8 @@ declare interface IDropzone {
|
|
|
2185
2186
|
removableFileName?: string;
|
|
2186
2187
|
/** Exibi o botão de remover arquivo */
|
|
2187
2188
|
showRemoveButton?: boolean;
|
|
2189
|
+
/** Exibi o botão de remover arquivo para cada arquivo */
|
|
2190
|
+
showRemoveButtonPerFile?: Record<string, boolean>;
|
|
2188
2191
|
}
|
|
2189
2192
|
|
|
2190
2193
|
declare interface IFields {
|