@comercti/react-components-hmg 0.23.15 → 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 +7 -5
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +8 -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 = {
|
|
@@ -2156,6 +2158,7 @@ declare interface IBreadcrumbsProps {
|
|
|
2156
2158
|
declare interface ICollapse {
|
|
2157
2159
|
index: number;
|
|
2158
2160
|
value: boolean;
|
|
2161
|
+
item: unknown;
|
|
2159
2162
|
}
|
|
2160
2163
|
|
|
2161
2164
|
declare interface IData<T = unknown> {
|
|
@@ -2217,6 +2220,11 @@ declare interface IDropzone {
|
|
|
2217
2220
|
showRemoveButton?: boolean;
|
|
2218
2221
|
}
|
|
2219
2222
|
|
|
2223
|
+
declare interface IFields {
|
|
2224
|
+
field: string;
|
|
2225
|
+
value: string | number | boolean;
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2220
2228
|
declare interface IItems {
|
|
2221
2229
|
id: number;
|
|
2222
2230
|
title: string;
|