@comercti/vue-components-hmg 0.23.14 → 0.23.16
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 +3 -3
- package/comerc-style-guide.umd.js +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ declare const __VLS_component_22: DefineComponent<__VLS_Props_27, {}, {}, {}, {}
|
|
|
145
145
|
"onToggle-collapse"?: (value: ICollapse[]) => any;
|
|
146
146
|
}>, {
|
|
147
147
|
variant: "accordion" | "card" | "minimal" | "compact";
|
|
148
|
-
items: Array<
|
|
148
|
+
items: Array<unknown>;
|
|
149
149
|
openTheFirst: boolean;
|
|
150
150
|
allOpen: boolean;
|
|
151
151
|
direction: "row" | "column";
|
|
@@ -620,7 +620,7 @@ declare type __VLS_Props_26 = {
|
|
|
620
620
|
};
|
|
621
621
|
|
|
622
622
|
declare type __VLS_Props_27 = {
|
|
623
|
-
items: Array<
|
|
623
|
+
items: Array<unknown>;
|
|
624
624
|
openTheFirst?: boolean;
|
|
625
625
|
allOpen?: boolean;
|
|
626
626
|
variant: 'accordion' | 'card' | 'minimal' | 'compact';
|
|
@@ -2057,6 +2057,7 @@ declare interface IBreadcrumbsProps {
|
|
|
2057
2057
|
declare interface ICollapse {
|
|
2058
2058
|
index: number;
|
|
2059
2059
|
value: boolean;
|
|
2060
|
+
item: unknown;
|
|
2060
2061
|
}
|
|
2061
2062
|
|
|
2062
2063
|
declare interface IData<T = unknown> {
|