@comercti/vue-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
|
@@ -144,6 +144,8 @@ 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
|
+
invalid: number[];
|
|
148
|
+
disabled: IFields;
|
|
147
149
|
variant: "accordion" | "card" | "minimal" | "compact";
|
|
148
150
|
items: Array<unknown>;
|
|
149
151
|
openTheFirst: boolean;
|
|
@@ -626,6 +628,8 @@ declare type __VLS_Props_27 = {
|
|
|
626
628
|
variant: 'accordion' | 'card' | 'minimal' | 'compact';
|
|
627
629
|
direction?: 'row' | 'column';
|
|
628
630
|
closeCollapse?: number | null;
|
|
631
|
+
disabled?: IFields;
|
|
632
|
+
invalid?: number[];
|
|
629
633
|
};
|
|
630
634
|
|
|
631
635
|
declare type __VLS_Props_28 = {
|
|
@@ -2119,6 +2123,11 @@ declare interface IDropzone {
|
|
|
2119
2123
|
showRemoveButton?: boolean;
|
|
2120
2124
|
}
|
|
2121
2125
|
|
|
2126
|
+
declare interface IFields {
|
|
2127
|
+
field: string;
|
|
2128
|
+
value: string | number | boolean;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2122
2131
|
declare interface IItems {
|
|
2123
2132
|
id: number;
|
|
2124
2133
|
title: string;
|