@comercti/react-components-hmg 0.33.5 → 0.33.6
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
|
@@ -332,6 +332,7 @@ sendRemovedFile: boolean;
|
|
|
332
332
|
tertiaryVariantTitle: string;
|
|
333
333
|
showUploadedFile: boolean;
|
|
334
334
|
showRemoveButton: boolean;
|
|
335
|
+
showRemoveButtonPerFile: Record<string, boolean>;
|
|
335
336
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
336
337
|
inputFile: HTMLInputElement;
|
|
337
338
|
}, HTMLDivElement>;
|
|
@@ -2286,6 +2287,8 @@ declare interface IDropzone {
|
|
|
2286
2287
|
removableFileName?: string;
|
|
2287
2288
|
/** Exibi o botão de remover arquivo */
|
|
2288
2289
|
showRemoveButton?: boolean;
|
|
2290
|
+
/** Exibi o botão de remover arquivo para cada arquivo */
|
|
2291
|
+
showRemoveButtonPerFile?: Record<string, boolean>;
|
|
2289
2292
|
}
|
|
2290
2293
|
|
|
2291
2294
|
declare interface IFields {
|