@comercti/react-components-hmg 0.23.13 → 0.23.15
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 +5 -5
- package/comerc-style-guide.es.js +1582 -1583
- package/comerc-style-guide.umd.js +7 -7
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -217,7 +217,7 @@ declare const __VLS_component_28: DefineComponent<__VLS_Props_35, {}, {}, {}, {}
|
|
|
217
217
|
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
218
218
|
"onToggle-collapse"?: (value: ICollapse[]) => any;
|
|
219
219
|
}>, {
|
|
220
|
-
items: Array<
|
|
220
|
+
items: Array<unknown>;
|
|
221
221
|
variant: "accordion" | "card" | "minimal" | "compact";
|
|
222
222
|
openTheFirst: boolean;
|
|
223
223
|
allOpen: boolean;
|
|
@@ -773,7 +773,7 @@ declare type __VLS_Props_34 = {
|
|
|
773
773
|
};
|
|
774
774
|
|
|
775
775
|
declare type __VLS_Props_35 = {
|
|
776
|
-
items: Array<
|
|
776
|
+
items: Array<unknown>;
|
|
777
777
|
openTheFirst?: boolean;
|
|
778
778
|
allOpen?: boolean;
|
|
779
779
|
variant: 'accordion' | 'card' | 'minimal' | 'compact';
|
|
@@ -2211,8 +2211,8 @@ declare interface IDropzone {
|
|
|
2211
2211
|
reserveSpaceFeedback?: boolean;
|
|
2212
2212
|
/** Se deve mostrar o arquivo enviado */
|
|
2213
2213
|
showUploadedFile?: boolean;
|
|
2214
|
-
/**
|
|
2215
|
-
|
|
2214
|
+
/** Nome do arquivo para ser removido */
|
|
2215
|
+
removableFileName?: string;
|
|
2216
2216
|
/** Exibi o botão de remover arquivo */
|
|
2217
2217
|
showRemoveButton?: boolean;
|
|
2218
2218
|
}
|