@comercti/vue-components-hmg 0.43.5 → 0.43.6
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 +3 -3
- package/comerc-style-guide.es.js +14 -2
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -156,9 +156,9 @@ layout: "default" | "base" | "minimal";
|
|
|
156
156
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
157
157
|
|
|
158
158
|
declare const __VLS_component_22: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
159
|
-
"toggle-collapse": (value: ICollapse[]) => any;
|
|
159
|
+
"toggle-collapse": (value: ICollapse | ICollapse[]) => any;
|
|
160
160
|
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
161
|
-
"onToggle-collapse"?: (value: ICollapse[]) => any;
|
|
161
|
+
"onToggle-collapse"?: (value: ICollapse | ICollapse[]) => any;
|
|
162
162
|
}>, {
|
|
163
163
|
invalid: number[];
|
|
164
164
|
disabled: IFields;
|
|
@@ -169,6 +169,7 @@ allOpen: boolean;
|
|
|
169
169
|
direction: "row" | "column";
|
|
170
170
|
closeCollapse: number | null;
|
|
171
171
|
openCollapse: number[] | null;
|
|
172
|
+
onlyOneOpen: boolean;
|
|
172
173
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
173
174
|
|
|
174
175
|
declare const __VLS_component_23: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -656,6 +657,7 @@ declare type __VLS_Props_27 = {
|
|
|
656
657
|
disabled?: IFields;
|
|
657
658
|
invalid?: number[];
|
|
658
659
|
openCollapse?: number[] | null;
|
|
660
|
+
onlyOneOpen?: boolean;
|
|
659
661
|
};
|
|
660
662
|
|
|
661
663
|
declare type __VLS_Props_28 = {
|