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