@comercti/vue-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
|
@@ -144,6 +144,7 @@ declare const __VLS_component_22: DefineComponent<__VLS_Props_27, {}, {}, {}, {}
|
|
|
144
144
|
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
145
145
|
"onToggle-collapse"?: (value: ICollapse[]) => any;
|
|
146
146
|
}>, {
|
|
147
|
+
disabled: IFields;
|
|
147
148
|
variant: "accordion" | "card" | "minimal" | "compact";
|
|
148
149
|
items: Array<unknown>;
|
|
149
150
|
openTheFirst: boolean;
|
|
@@ -626,6 +627,7 @@ declare type __VLS_Props_27 = {
|
|
|
626
627
|
variant: 'accordion' | 'card' | 'minimal' | 'compact';
|
|
627
628
|
direction?: 'row' | 'column';
|
|
628
629
|
closeCollapse?: number | null;
|
|
630
|
+
disabled?: IFields;
|
|
629
631
|
};
|
|
630
632
|
|
|
631
633
|
declare type __VLS_Props_28 = {
|
|
@@ -2119,6 +2121,11 @@ declare interface IDropzone {
|
|
|
2119
2121
|
showRemoveButton?: boolean;
|
|
2120
2122
|
}
|
|
2121
2123
|
|
|
2124
|
+
declare interface IFields {
|
|
2125
|
+
field: string;
|
|
2126
|
+
value: string | number | boolean;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2122
2129
|
declare interface IItems {
|
|
2123
2130
|
id: number;
|
|
2124
2131
|
title: string;
|