@volverjs/ui-vue 0.0.9-beta.2 → 0.0.9-beta.3
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/VvAccordion/VvAccordion.es.js +7 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +7 -0
- package/dist/components/VvAction/VvAction.es.js +9 -1
- package/dist/components/VvAction/VvAction.umd.js +1 -1
- package/dist/components/VvAction/VvAction.vue.d.ts +9 -0
- package/dist/components/VvAction/index.d.ts +4 -0
- package/dist/components/VvAlert/VvAlert.es.js +7 -0
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +7 -0
- package/dist/components/VvAvatar/VvAvatar.es.js +7 -0
- package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +7 -0
- package/dist/components/VvBadge/VvBadge.es.js +7 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +7 -0
- package/dist/components/VvButton/VvButton.es.js +11 -2
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +9 -0
- package/dist/components/VvButton/index.d.ts +4 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +7 -0
- package/dist/components/VvCard/VvCard.es.js +7 -0
- package/dist/components/VvCheckbox/VvCheckbox.es.js +7 -0
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +7 -0
- package/dist/components/VvCombobox/VvCombobox.es.js +16 -3
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.es.js +7 -0
- package/dist/components/VvDropdown/VvDropdown.es.js +12 -1
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +9 -0
- package/dist/components/VvDropdownAction/VvDropdownAction.es.js +9 -1
- package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
- package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +7 -0
- package/dist/components/VvDropdownOption/VvDropdownOption.es.js +7 -0
- package/dist/components/VvInputText/VvInputText.es.js +7 -0
- package/dist/components/VvNav/VvNav.es.js +10 -2
- package/dist/components/VvNav/VvNav.umd.js +1 -1
- package/dist/components/VvNav/index.d.ts +1 -1
- package/dist/components/VvProgress/VvProgress.es.js +7 -0
- package/dist/components/VvRadio/VvRadio.es.js +7 -0
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +7 -0
- package/dist/components/VvSelect/VvSelect.es.js +7 -0
- package/dist/components/VvTab/VvTab.es.js +10 -2
- package/dist/components/VvTab/VvTab.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +7 -0
- package/dist/components/VvTooltip/VvTooltip.es.js +7 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.es.js +713 -307
- package/dist/components/index.umd.js +1 -1
- package/dist/directives/index.es.js +7 -0
- package/dist/directives/v-tooltip.es.js +7 -0
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +7 -0
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +43 -258
- package/dist/stories/Alert/Alert.settings.d.ts +3 -7
- package/dist/stories/Button/Button.settings.d.ts +3 -13
- package/dist/stories/Combobox/Combobox.settings.d.ts +3 -7
- package/dist/stories/Nav/Nav.settings.d.ts +3 -21
- package/package.json +28 -28
- 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/VvAction/VvAction.vue +2 -1
- package/src/components/VvButton/VvButton.vue +1 -0
- package/src/components/VvDropdown/VvDropdown.vue +5 -1
- package/src/components/VvNav/VvNav.vue +1 -1
- package/src/components/VvNav/index.ts +1 -1
- package/src/components/index.ts +5 -0
- package/src/props/index.ts +7 -0
- package/src/stories/Alert/Alert.settings.ts +3 -1
- package/src/stories/Button/Button.settings.ts +5 -3
- package/src/stories/Combobox/Combobox.settings.ts +4 -1
- package/src/stories/Nav/Nav.settings.ts +3 -1
- package/src/stories/Tab/Tab.stories.ts +3 -3
- package/src/stories/Textarea/TextareaLength.stories.ts +1 -1
- /package/dist/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue.d.ts +0 -0
- /package/dist/components/{VvNavSeparator → VvNav}/VvNavSeparator.d.ts +0 -0
- /package/src/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue +0 -0
- /package/src/components/{VvNavSeparator → VvNav}/VvNavSeparator.ts +0 -0
package/dist/props/index.d.ts
CHANGED
|
@@ -694,6 +694,13 @@ export declare const ActionProps: {
|
|
|
694
694
|
default: ButtonType;
|
|
695
695
|
validator: (value: ButtonType) => boolean;
|
|
696
696
|
};
|
|
697
|
+
/**
|
|
698
|
+
* Button aria-label
|
|
699
|
+
*/
|
|
700
|
+
ariaLabel: {
|
|
701
|
+
type: StringConstructor;
|
|
702
|
+
default: undefined;
|
|
703
|
+
};
|
|
697
704
|
/**
|
|
698
705
|
* The router-link/nuxt-link property, if it is defined the button is rendered as a ruouter-link or nuxt-link.
|
|
699
706
|
* @see Documentation of [router-link](https://router.vuejs.org/api/#router-link) and [nuxt-link](https://nuxtjs.org/api/components-nuxt-link/)
|
|
@@ -5,133 +5,26 @@ declare const _default: {
|
|
|
5
5
|
includeStories?: (RegExp | string[]) | undefined;
|
|
6
6
|
excludeStories?: (RegExp | string[]) | undefined;
|
|
7
7
|
component?: Omit<import("vue").ConcreteComponent<{
|
|
8
|
-
new (...args: any[]): {
|
|
9
|
-
$: import("vue").ComponentInternalInstance;
|
|
10
|
-
$data: {};
|
|
11
|
-
$props: {
|
|
12
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
13
|
-
disabled?: boolean | undefined;
|
|
14
|
-
not?: boolean | undefined;
|
|
15
|
-
collapse?: boolean | undefined;
|
|
16
|
-
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
17
|
-
itemModifiers?: string | string[] | undefined;
|
|
18
|
-
ref?: import("vue").VNodeRef | undefined;
|
|
19
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
20
|
-
readonly modifiers?: string | string[] | undefined;
|
|
21
|
-
key?: string | number | symbol | undefined;
|
|
22
|
-
ref_for?: boolean | undefined;
|
|
23
|
-
ref_key?: string | undefined;
|
|
24
|
-
class?: unknown;
|
|
25
|
-
style?: unknown;
|
|
26
|
-
readonly storeKey?: string | undefined;
|
|
27
|
-
};
|
|
28
|
-
$attrs: {
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
$refs: {
|
|
32
|
-
[x: string]: unknown;
|
|
33
|
-
};
|
|
34
|
-
$slots: Readonly<{
|
|
35
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
36
|
-
}>;
|
|
37
|
-
$root: globalThis.ComponentPublicInstance | null;
|
|
38
|
-
$parent: globalThis.ComponentPublicInstance | null;
|
|
39
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
40
|
-
$el: any;
|
|
41
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
42
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
43
|
-
items: {
|
|
44
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
45
|
-
default: () => never[];
|
|
46
|
-
};
|
|
47
|
-
collapse: BooleanConstructor;
|
|
48
|
-
itemModifiers: {
|
|
49
|
-
type: globalThis.PropType<string | string[]>;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
|
-
disabled: BooleanConstructor;
|
|
53
|
-
not: BooleanConstructor;
|
|
54
|
-
storeKey: StringConstructor;
|
|
55
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
56
|
-
}>> & {
|
|
57
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
58
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
|
|
59
|
-
disabled: boolean;
|
|
60
|
-
not: boolean;
|
|
61
|
-
collapse: boolean;
|
|
62
|
-
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
63
|
-
itemModifiers: string | string[];
|
|
64
|
-
}, {}, string, {}> & {
|
|
65
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
78
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
79
|
-
errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
|
|
80
|
-
};
|
|
81
|
-
$forceUpdate: () => void;
|
|
82
|
-
$nextTick: typeof import("vue").nextTick;
|
|
83
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
84
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
85
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
86
|
-
items: {
|
|
87
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
88
|
-
default: () => never[];
|
|
89
|
-
};
|
|
90
|
-
collapse: BooleanConstructor;
|
|
91
|
-
itemModifiers: {
|
|
92
|
-
type: globalThis.PropType<string | string[]>;
|
|
93
|
-
default: string;
|
|
94
|
-
};
|
|
95
|
-
disabled: BooleanConstructor;
|
|
96
|
-
not: BooleanConstructor;
|
|
97
|
-
storeKey: StringConstructor;
|
|
98
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
99
|
-
}>> & {
|
|
100
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
101
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
102
|
-
__isFragment?: undefined;
|
|
103
|
-
__isTeleport?: undefined;
|
|
104
|
-
__isSuspense?: undefined;
|
|
105
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
106
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
107
|
-
items: {
|
|
108
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
109
|
-
default: () => never[];
|
|
110
|
-
};
|
|
111
|
-
collapse: BooleanConstructor;
|
|
112
|
-
itemModifiers: {
|
|
113
|
-
type: globalThis.PropType<string | string[]>;
|
|
114
|
-
default: string;
|
|
115
|
-
};
|
|
116
|
-
disabled: BooleanConstructor;
|
|
117
|
-
not: BooleanConstructor;
|
|
118
|
-
storeKey: StringConstructor;
|
|
119
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
120
|
-
}>> & {
|
|
121
8
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
9
|
+
disabled?: boolean | undefined;
|
|
10
|
+
not?: boolean | undefined;
|
|
11
|
+
collapse?: boolean | undefined;
|
|
12
|
+
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
13
|
+
itemModifiers?: string | string[] | undefined;
|
|
14
|
+
ref?: import("vue").VNodeRef | undefined;
|
|
15
|
+
readonly modelValue?: string | unknown[] | undefined;
|
|
16
|
+
readonly modifiers?: string | string[] | undefined;
|
|
17
|
+
key?: string | number | symbol | undefined;
|
|
18
|
+
ref_for?: boolean | undefined;
|
|
19
|
+
ref_key?: string | undefined;
|
|
20
|
+
class?: unknown;
|
|
21
|
+
style?: unknown;
|
|
22
|
+
readonly storeKey?: string | undefined;
|
|
23
|
+
} & {
|
|
24
|
+
default?: import("vue").VNodeChild | ((_: {}) => any);
|
|
25
|
+
}>, "props"> | undefined;
|
|
133
26
|
subcomponents?: Record<string, Omit<import("vue").ConcreteComponent<unknown>, "props">> | undefined;
|
|
134
|
-
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
|
|
27
|
+
play?: import("@storybook/types").PlayFunction<import("@storybook/vue3/dist/render-c842c5d5").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
135
28
|
new (...args: any[]): {
|
|
136
29
|
$: import("vue").ComponentInternalInstance;
|
|
137
30
|
$data: {};
|
|
@@ -256,136 +149,28 @@ declare const _default: {
|
|
|
256
149
|
$slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
257
150
|
default?(_: {}): any;
|
|
258
151
|
};
|
|
259
|
-
})
|
|
152
|
+
})>> | undefined;
|
|
260
153
|
tags?: string[] | undefined;
|
|
261
154
|
decorators?: import("@storybook/types").DecoratorFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
|
|
262
|
-
new (...args: any[]): {
|
|
263
|
-
$: import("vue").ComponentInternalInstance;
|
|
264
|
-
$data: {};
|
|
265
|
-
$props: {
|
|
266
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
267
|
-
disabled?: boolean | undefined;
|
|
268
|
-
not?: boolean | undefined;
|
|
269
|
-
collapse?: boolean | undefined;
|
|
270
|
-
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
271
|
-
itemModifiers?: string | string[] | undefined;
|
|
272
|
-
ref?: import("vue").VNodeRef | undefined;
|
|
273
|
-
readonly modelValue?: string | unknown[] | undefined;
|
|
274
|
-
readonly modifiers?: string | string[] | undefined;
|
|
275
|
-
key?: string | number | symbol | undefined;
|
|
276
|
-
ref_for?: boolean | undefined;
|
|
277
|
-
ref_key?: string | undefined;
|
|
278
|
-
class?: unknown;
|
|
279
|
-
style?: unknown;
|
|
280
|
-
readonly storeKey?: string | undefined;
|
|
281
|
-
};
|
|
282
|
-
$attrs: {
|
|
283
|
-
[x: string]: unknown;
|
|
284
|
-
};
|
|
285
|
-
$refs: {
|
|
286
|
-
[x: string]: unknown;
|
|
287
|
-
};
|
|
288
|
-
$slots: Readonly<{
|
|
289
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
290
|
-
}>;
|
|
291
|
-
$root: globalThis.ComponentPublicInstance | null;
|
|
292
|
-
$parent: globalThis.ComponentPublicInstance | null;
|
|
293
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
294
|
-
$el: any;
|
|
295
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
296
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
297
|
-
items: {
|
|
298
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
299
|
-
default: () => never[];
|
|
300
|
-
};
|
|
301
|
-
collapse: BooleanConstructor;
|
|
302
|
-
itemModifiers: {
|
|
303
|
-
type: globalThis.PropType<string | string[]>;
|
|
304
|
-
default: string;
|
|
305
|
-
};
|
|
306
|
-
disabled: BooleanConstructor;
|
|
307
|
-
not: BooleanConstructor;
|
|
308
|
-
storeKey: StringConstructor;
|
|
309
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
310
|
-
}>> & {
|
|
311
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
312
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, {
|
|
313
|
-
disabled: boolean;
|
|
314
|
-
not: boolean;
|
|
315
|
-
collapse: boolean;
|
|
316
|
-
items: import("../../components/VvAccordionGroup").VvAccordionGroupItem[];
|
|
317
|
-
itemModifiers: string | string[];
|
|
318
|
-
}, {}, string, {}> & {
|
|
319
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
320
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
321
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
322
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
323
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
324
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
325
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
326
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
327
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
328
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
329
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
330
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
331
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
332
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
333
|
-
errorCaptured?: (((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: globalThis.ComponentPublicInstance | null, info: string) => boolean | void)[]) | undefined;
|
|
334
|
-
};
|
|
335
|
-
$forceUpdate: () => void;
|
|
336
|
-
$nextTick: typeof import("vue").nextTick;
|
|
337
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
338
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
339
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
340
|
-
items: {
|
|
341
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
342
|
-
default: () => never[];
|
|
343
|
-
};
|
|
344
|
-
collapse: BooleanConstructor;
|
|
345
|
-
itemModifiers: {
|
|
346
|
-
type: globalThis.PropType<string | string[]>;
|
|
347
|
-
default: string;
|
|
348
|
-
};
|
|
349
|
-
disabled: BooleanConstructor;
|
|
350
|
-
not: BooleanConstructor;
|
|
351
|
-
storeKey: StringConstructor;
|
|
352
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
353
|
-
}>> & {
|
|
354
|
-
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
355
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
356
|
-
__isFragment?: undefined;
|
|
357
|
-
__isTeleport?: undefined;
|
|
358
|
-
__isSuspense?: undefined;
|
|
359
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
360
|
-
modelValue: (ArrayConstructor | StringConstructor)[];
|
|
361
|
-
items: {
|
|
362
|
-
type: globalThis.PropType<import("../../components/VvAccordionGroup").VvAccordionGroupItem[]>;
|
|
363
|
-
default: () => never[];
|
|
364
|
-
};
|
|
365
|
-
collapse: BooleanConstructor;
|
|
366
|
-
itemModifiers: {
|
|
367
|
-
type: globalThis.PropType<string | string[]>;
|
|
368
|
-
default: string;
|
|
369
|
-
};
|
|
370
|
-
disabled: BooleanConstructor;
|
|
371
|
-
not: BooleanConstructor;
|
|
372
|
-
storeKey: StringConstructor;
|
|
373
|
-
modifiers: globalThis.PropType<string | string[]>;
|
|
374
|
-
}>> & {
|
|
375
155
|
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
156
|
+
disabled?: boolean | undefined;
|
|
157
|
+
not?: boolean | undefined;
|
|
158
|
+
collapse?: boolean | undefined;
|
|
159
|
+
items?: import("../../components/VvAccordionGroup").VvAccordionGroupItem[] | undefined;
|
|
160
|
+
itemModifiers?: string | string[] | undefined;
|
|
161
|
+
ref?: import("vue").VNodeRef | undefined;
|
|
162
|
+
readonly modelValue?: string | unknown[] | undefined;
|
|
163
|
+
readonly modifiers?: string | string[] | undefined;
|
|
164
|
+
key?: string | number | symbol | undefined;
|
|
165
|
+
ref_for?: boolean | undefined;
|
|
166
|
+
ref_key?: string | undefined;
|
|
167
|
+
class?: unknown;
|
|
168
|
+
style?: unknown;
|
|
169
|
+
readonly storeKey?: string | undefined;
|
|
170
|
+
default?: import("vue").VNodeChild | ((_: {}) => any);
|
|
171
|
+
}>[] | undefined;
|
|
387
172
|
parameters?: import("@storybook/types").Parameters | undefined;
|
|
388
|
-
args?: Partial<{
|
|
173
|
+
args?: Partial<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
389
174
|
new (...args: any[]): {
|
|
390
175
|
$: import("vue").ComponentInternalInstance;
|
|
391
176
|
$data: {};
|
|
@@ -510,8 +295,8 @@ declare const _default: {
|
|
|
510
295
|
$slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
511
296
|
default?(_: {}): any;
|
|
512
297
|
};
|
|
513
|
-
})
|
|
514
|
-
argTypes?: Partial<import("@storybook/types").ArgTypes<{
|
|
298
|
+
})>> | undefined;
|
|
299
|
+
argTypes?: Partial<import("@storybook/types").ArgTypes<import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
515
300
|
new (...args: any[]): {
|
|
516
301
|
$: import("vue").ComponentInternalInstance;
|
|
517
302
|
$data: {};
|
|
@@ -636,8 +421,8 @@ declare const _default: {
|
|
|
636
421
|
$slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
637
422
|
default?(_: {}): any;
|
|
638
423
|
};
|
|
639
|
-
})
|
|
640
|
-
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-c842c5d5").V, {
|
|
424
|
+
})>>> | undefined;
|
|
425
|
+
loaders?: import("@storybook/types").LoaderFunction<import("@storybook/vue3/dist/render-c842c5d5").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
641
426
|
new (...args: any[]): {
|
|
642
427
|
$: import("vue").ComponentInternalInstance;
|
|
643
428
|
$data: {};
|
|
@@ -762,8 +547,8 @@ declare const _default: {
|
|
|
762
547
|
$slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
763
548
|
default?(_: {}): any;
|
|
764
549
|
};
|
|
765
|
-
})
|
|
766
|
-
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-c842c5d5").V, {
|
|
550
|
+
})>>[] | undefined;
|
|
551
|
+
render?: import("@storybook/types").ArgsStoryFn<import("@storybook/vue3/dist/render-c842c5d5").V, import("@storybook/vue3").ComponentPropsAndSlots<{
|
|
767
552
|
new (...args: any[]): {
|
|
768
553
|
$: import("vue").ComponentInternalInstance;
|
|
769
554
|
$data: {};
|
|
@@ -888,7 +673,7 @@ declare const _default: {
|
|
|
888
673
|
$slots: Partial<Record<string, (_: any) => any>> & Partial<Record<string, (_: any) => any>> & {
|
|
889
674
|
default?(_: {}): any;
|
|
890
675
|
};
|
|
891
|
-
})
|
|
676
|
+
})>> | undefined;
|
|
892
677
|
};
|
|
893
678
|
export default _default;
|
|
894
679
|
export declare const Default: Story;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
dismissable: boolean;
|
|
5
|
-
autoClose: number;
|
|
6
|
-
role: string;
|
|
7
|
-
};
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import type { VvAlert } from '@/components';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvAlert>['args'];
|
|
8
4
|
export declare const argTypes: {
|
|
9
5
|
title: {
|
|
10
6
|
description: string;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
toggle: boolean;
|
|
5
|
-
unselectable: boolean;
|
|
6
|
-
loading: boolean;
|
|
7
|
-
pressed: boolean;
|
|
8
|
-
active: boolean;
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
rel: string;
|
|
11
|
-
iconPosition: string;
|
|
12
|
-
icon: undefined;
|
|
13
|
-
};
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import type { VvButton } from '@/components';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvButton>['args'];
|
|
14
4
|
export declare const argTypes: {
|
|
15
5
|
before: {
|
|
16
6
|
description: string;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
options: string[];
|
|
5
|
-
placeholder: string;
|
|
6
|
-
label: string;
|
|
7
|
-
};
|
|
1
|
+
import type { VvCombobox } from '@/components';
|
|
2
|
+
import type { Meta } from '@storybook/vue3';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvCombobox>['args'];
|
|
8
4
|
export declare const argTypes: {
|
|
9
5
|
triggerWidth: {
|
|
10
6
|
table: {
|
|
@@ -1,24 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
href: string;
|
|
5
|
-
to?: undefined;
|
|
6
|
-
on?: undefined;
|
|
7
|
-
} | {
|
|
8
|
-
title: string;
|
|
9
|
-
to: string;
|
|
10
|
-
href?: undefined;
|
|
11
|
-
on?: undefined;
|
|
12
|
-
} | {
|
|
13
|
-
title: string;
|
|
14
|
-
to: string;
|
|
15
|
-
on: {
|
|
16
|
-
click: () => void;
|
|
17
|
-
};
|
|
18
|
-
href?: undefined;
|
|
19
|
-
})[];
|
|
20
|
-
modifiers: string;
|
|
21
|
-
};
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import type { VvNav } from '@/components';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvNav>['args'];
|
|
22
4
|
export declare const argTypes: {
|
|
23
5
|
modifiers: {
|
|
24
6
|
options: string[];
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/volverjs/ui-vue/issues"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.0.9-beta.
|
|
22
|
+
"version": "0.0.9-beta.3",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"*.d.ts"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@floating-ui/vue": "^1.0.
|
|
42
|
-
"@iconify/tools": "^3.0.
|
|
41
|
+
"@floating-ui/vue": "^1.0.1",
|
|
42
|
+
"@iconify/tools": "^3.0.2",
|
|
43
43
|
"@iconify/vue": "4.1.1",
|
|
44
44
|
"@vueuse/core": "^10.1.2",
|
|
45
|
-
"jsdom": "^22.
|
|
45
|
+
"jsdom": "^22.1.0",
|
|
46
46
|
"maska": "^2.1.9",
|
|
47
47
|
"mitt": "^3.0.0",
|
|
48
48
|
"nanoid": "^4.0.2",
|
|
@@ -53,40 +53,40 @@
|
|
|
53
53
|
"@volverjs/style": "0.*"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.
|
|
57
|
-
"@babel/preset-env": "^7.
|
|
56
|
+
"@babel/core": "^7.22.1",
|
|
57
|
+
"@babel/preset-env": "^7.22.4",
|
|
58
58
|
"@babel/preset-typescript": "^7.21.5",
|
|
59
59
|
"@iconify/types": "^2.0.0",
|
|
60
60
|
"@iconify/utils": "^2.1.5",
|
|
61
61
|
"@mdx-js/react": "^2.3.0",
|
|
62
62
|
"@rushstack/eslint-patch": "^1.3.0",
|
|
63
|
-
"@storybook/addon-a11y": "^7.0.
|
|
64
|
-
"@storybook/addon-actions": "^7.0.
|
|
65
|
-
"@storybook/addon-docs": "^7.0.
|
|
66
|
-
"@storybook/addon-essentials": "^7.0.
|
|
67
|
-
"@storybook/addon-interactions": "^7.0.
|
|
68
|
-
"@storybook/addon-links": "^7.0.
|
|
69
|
-
"@storybook/channel-postmessage": "^7.0.
|
|
70
|
-
"@storybook/channel-websocket": "^7.0.
|
|
71
|
-
"@storybook/cli": "^7.0.
|
|
72
|
-
"@storybook/client-api": "^7.0.
|
|
73
|
-
"@storybook/client-logger": "^7.0.
|
|
74
|
-
"@storybook/core-common": "^7.0.
|
|
63
|
+
"@storybook/addon-a11y": "^7.0.18",
|
|
64
|
+
"@storybook/addon-actions": "^7.0.18",
|
|
65
|
+
"@storybook/addon-docs": "^7.0.18",
|
|
66
|
+
"@storybook/addon-essentials": "^7.0.18",
|
|
67
|
+
"@storybook/addon-interactions": "^7.0.18",
|
|
68
|
+
"@storybook/addon-links": "^7.0.18",
|
|
69
|
+
"@storybook/channel-postmessage": "^7.0.18",
|
|
70
|
+
"@storybook/channel-websocket": "^7.0.18",
|
|
71
|
+
"@storybook/cli": "^7.0.18",
|
|
72
|
+
"@storybook/client-api": "^7.0.18",
|
|
73
|
+
"@storybook/client-logger": "^7.0.18",
|
|
74
|
+
"@storybook/core-common": "^7.0.18",
|
|
75
75
|
"@storybook/jest": "^0.1.0",
|
|
76
|
-
"@storybook/preview-api": "^7.0.
|
|
77
|
-
"@storybook/preview-web": "^7.0.
|
|
76
|
+
"@storybook/preview-api": "^7.0.18",
|
|
77
|
+
"@storybook/preview-web": "^7.0.18",
|
|
78
78
|
"@storybook/test-runner": "^0.10.0",
|
|
79
79
|
"@storybook/testing-library": "^0.1.0",
|
|
80
|
-
"@storybook/vue3": "^7.0.
|
|
81
|
-
"@storybook/vue3-vite": "^7.0.
|
|
80
|
+
"@storybook/vue3": "^7.0.18",
|
|
81
|
+
"@storybook/vue3-vite": "^7.0.18",
|
|
82
82
|
"@tsconfig/node18": "^2.0.1",
|
|
83
83
|
"@types/jest-axe": "^3.5.5",
|
|
84
84
|
"@types/jsdom": "^21.1.1",
|
|
85
|
-
"@types/node": "^20.2.
|
|
85
|
+
"@types/node": "^20.2.5",
|
|
86
86
|
"@types/react": "^18.2.7",
|
|
87
87
|
"@types/yargs": "^17.0.24",
|
|
88
88
|
"@vitejs/plugin-vue": "^4.2.3",
|
|
89
|
-
"@volverjs/style": "
|
|
89
|
+
"@volverjs/style": "0.1.12-beta.3",
|
|
90
90
|
"@vue/compiler-sfc": "^3.3.4",
|
|
91
91
|
"@vue/eslint-config-prettier": "^7.1.0",
|
|
92
92
|
"@vue/eslint-config-typescript": "^11.0.3",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"jest-axe": "^7.0.1",
|
|
104
104
|
"jest-diff": "^29.5.0",
|
|
105
105
|
"jest-get-type": "^29.4.3",
|
|
106
|
-
"jsdom": "^22.
|
|
106
|
+
"jsdom": "^22.1.0",
|
|
107
107
|
"npm-run-all": "^4.1.5",
|
|
108
108
|
"prettier": "^2.8.8",
|
|
109
109
|
"pretty-format": "^29.5.0",
|
|
@@ -111,15 +111,15 @@
|
|
|
111
111
|
"react-dom": "^18.2.0",
|
|
112
112
|
"remark": "^14.0.3",
|
|
113
113
|
"sass": "^1.62.1",
|
|
114
|
-
"storybook": "7.0.
|
|
114
|
+
"storybook": "7.0.18",
|
|
115
115
|
"storybook-addon-markdown-docs": "^1.0.5",
|
|
116
116
|
"storybook-dark-mode": "^3.0.0",
|
|
117
117
|
"storybook-version": "^0.1.1",
|
|
118
118
|
"terser": "^5.17.6",
|
|
119
119
|
"ts-node": "^10.9.1",
|
|
120
120
|
"typescript": "~5.0.4",
|
|
121
|
-
"unplugin-auto-import": "^0.16.
|
|
122
|
-
"unplugin-vue-components": "^0.
|
|
121
|
+
"unplugin-auto-import": "^0.16.4",
|
|
122
|
+
"unplugin-vue-components": "^0.25.0",
|
|
123
123
|
"vite": "^4.3.9",
|
|
124
124
|
"vite-plugin-eslint": "^1.8.1",
|
|
125
125
|
"vite-plugin-externalize-deps": "^0.6.0",
|