@volverjs/ui-vue 0.0.10-beta.24 → 0.0.10-beta.25
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/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +87 -60
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +18 -3
- package/dist/components/VvAccordionGroup/index.d.ts +1 -0
- package/dist/components/index.es.js +87 -60
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +24 -5
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +152 -36
- package/package.json +1 -1
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvAccordionGroup/VvAccordionGroup.vue +81 -58
- package/src/components/VvAccordionGroup/index.ts +1 -0
- package/src/stories/AccordionGroup/AccordionGroup.settings.ts +2 -2
- package/src/stories/AccordionGroup/AccordionGroup.test.ts +5 -5
|
@@ -4,6 +4,7 @@ declare const _default: Meta<{
|
|
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<globalThis.ExtractPropTypes<{
|
|
5
5
|
modelValue: {
|
|
6
6
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
7
|
+
default: undefined;
|
|
7
8
|
};
|
|
8
9
|
items: {
|
|
9
10
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -22,7 +23,7 @@ declare const _default: Meta<{
|
|
|
22
23
|
default: undefined;
|
|
23
24
|
};
|
|
24
25
|
}>>, {
|
|
25
|
-
|
|
26
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
26
27
|
expand: (name?: string | string[] | undefined) => void;
|
|
27
28
|
collapse: (name?: string | string[] | undefined) => void;
|
|
28
29
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -30,6 +31,7 @@ declare const _default: Meta<{
|
|
|
30
31
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{
|
|
31
32
|
modelValue: {
|
|
32
33
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
34
|
+
default: undefined;
|
|
33
35
|
};
|
|
34
36
|
items: {
|
|
35
37
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -50,6 +52,7 @@ declare const _default: Meta<{
|
|
|
50
52
|
}>>, {
|
|
51
53
|
collapse: boolean;
|
|
52
54
|
disabled: boolean;
|
|
55
|
+
modelValue: string | string[] | undefined;
|
|
53
56
|
not: boolean;
|
|
54
57
|
modifiers: string | string[];
|
|
55
58
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -64,6 +67,7 @@ declare const _default: Meta<{
|
|
|
64
67
|
}, Readonly<globalThis.ExtractPropTypes<{
|
|
65
68
|
modelValue: {
|
|
66
69
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
70
|
+
default: undefined;
|
|
67
71
|
};
|
|
68
72
|
items: {
|
|
69
73
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -82,12 +86,13 @@ declare const _default: Meta<{
|
|
|
82
86
|
default: undefined;
|
|
83
87
|
};
|
|
84
88
|
}>>, {
|
|
85
|
-
|
|
89
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
86
90
|
expand: (name?: string | string[] | undefined) => void;
|
|
87
91
|
collapse: (name?: string | string[] | undefined) => void;
|
|
88
92
|
}, {}, {}, {}, {
|
|
89
93
|
collapse: boolean;
|
|
90
94
|
disabled: boolean;
|
|
95
|
+
modelValue: string | string[] | undefined;
|
|
91
96
|
not: boolean;
|
|
92
97
|
modifiers: string | string[];
|
|
93
98
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
@@ -99,6 +104,7 @@ declare const _default: Meta<{
|
|
|
99
104
|
} & import("vue").ComponentOptionsBase<Readonly<globalThis.ExtractPropTypes<{
|
|
100
105
|
modelValue: {
|
|
101
106
|
type: globalThis.PropType<string | string[] | undefined>;
|
|
107
|
+
default: undefined;
|
|
102
108
|
};
|
|
103
109
|
items: {
|
|
104
110
|
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
@@ -117,7 +123,7 @@ declare const _default: Meta<{
|
|
|
117
123
|
default: undefined;
|
|
118
124
|
};
|
|
119
125
|
}>>, {
|
|
120
|
-
|
|
126
|
+
expandedAccordions: globalThis.WritableComputedRef<Set<string>>;
|
|
121
127
|
expand: (name?: string | string[] | undefined) => void;
|
|
122
128
|
collapse: (name?: string | string[] | undefined) => void;
|
|
123
129
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -125,14 +131,27 @@ declare const _default: Meta<{
|
|
|
125
131
|
}, string, {
|
|
126
132
|
collapse: boolean;
|
|
127
133
|
disabled: boolean;
|
|
134
|
+
modelValue: string | string[] | undefined;
|
|
128
135
|
not: boolean;
|
|
129
136
|
modifiers: string | string[];
|
|
130
137
|
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
131
138
|
itemModifiers: string | string[];
|
|
132
139
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
133
|
-
$slots: Partial<Record<`
|
|
140
|
+
$slots: Partial<Record<`summary::${string}`, (_: {
|
|
141
|
+
isExpanded: boolean;
|
|
142
|
+
expand: () => void;
|
|
143
|
+
collapse: () => void;
|
|
144
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
145
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
146
|
+
}) => any>> & Partial<Record<`content::${string}`, (_: {
|
|
147
|
+
isExpanded: boolean;
|
|
148
|
+
expand: () => void;
|
|
149
|
+
collapse: () => void;
|
|
150
|
+
groupExpand: (name?: string | string[] | undefined) => void;
|
|
151
|
+
groupCollapse: (name?: string | string[] | undefined) => void;
|
|
152
|
+
}) => any>> & {
|
|
134
153
|
default?(_: {
|
|
135
|
-
|
|
154
|
+
expandedAccordions: Set<string>;
|
|
136
155
|
expand: (name?: string | string[] | undefined) => void;
|
|
137
156
|
collapse: (name?: string | string[] | undefined) => void;
|
|
138
157
|
}): any;
|