@comercti/react-components-hmg 0.23.16 → 0.23.17
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 +4 -2
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -217,6 +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
|
+
disabled: IFields;
|
|
220
221
|
items: Array<unknown>;
|
|
221
222
|
variant: "accordion" | "card" | "minimal" | "compact";
|
|
222
223
|
openTheFirst: boolean;
|
|
@@ -779,6 +780,7 @@ declare type __VLS_Props_35 = {
|
|
|
779
780
|
variant: 'accordion' | 'card' | 'minimal' | 'compact';
|
|
780
781
|
direction?: 'row' | 'column';
|
|
781
782
|
closeCollapse?: number | null;
|
|
783
|
+
disabled?: IFields;
|
|
782
784
|
};
|
|
783
785
|
|
|
784
786
|
declare type __VLS_Props_4 = {
|
|
@@ -2218,6 +2220,11 @@ declare interface IDropzone {
|
|
|
2218
2220
|
showRemoveButton?: boolean;
|
|
2219
2221
|
}
|
|
2220
2222
|
|
|
2223
|
+
declare interface IFields {
|
|
2224
|
+
field: string;
|
|
2225
|
+
value: string | number | boolean;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2221
2228
|
declare interface IItems {
|
|
2222
2229
|
id: number;
|
|
2223
2230
|
title: string;
|