@volverjs/ui-vue 0.0.6-beta.2 → 0.0.6-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/README.md +1 -1
- package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +4 -2
- package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -1
- package/dist/components/VvNav/VvNav.es.js +442 -0
- package/dist/components/VvNav/VvNav.umd.js +1 -0
- package/dist/components/VvNav/VvNav.vue.d.ts +47 -0
- package/dist/components/VvNav/index.d.ts +31 -0
- package/dist/components/VvNavItemTitle/VvNavItemTitle.es.js +19 -0
- package/dist/components/VvNavItemTitle/VvNavItemTitle.umd.js +1 -0
- package/dist/components/VvNavItemTitle/VvNavItemTitle.vue.d.ts +6 -0
- package/dist/components/VvNavSeparator/VvNavSeparator.d.ts +2 -0
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/Nav/Nav.settings.d.ts +33 -0
- package/dist/stories/Nav/Nav.test.d.ts +2 -0
- package/package.json +17 -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/VvAvatarGroup/VvAvatarGroup.vue +2 -2
- package/src/components/VvNav/VvNav.vue +56 -0
- package/src/components/VvNav/index.ts +20 -0
- package/src/components/VvNavItemTitle/VvNavItemTitle.vue +11 -0
- package/src/components/VvNavSeparator/VvNavSeparator.ts +8 -0
- package/src/stories/Nav/Nav.settings.ts +34 -0
- package/src/stories/Nav/Nav.stories.mdx +28 -0
- package/src/stories/Nav/Nav.test.ts +32 -0
- package/src/stories/Nav/NavModifiers.stories.mdx +48 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare const defaultArgs: {
|
|
2
|
+
items: ({
|
|
3
|
+
title: string;
|
|
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
|
+
};
|
|
22
|
+
export declare const argTypes: {
|
|
23
|
+
modifiers: {
|
|
24
|
+
options: string[];
|
|
25
|
+
type: {
|
|
26
|
+
summary: string[];
|
|
27
|
+
};
|
|
28
|
+
description: string;
|
|
29
|
+
control: {
|
|
30
|
+
type: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
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.6-beta.
|
|
22
|
+
"version": "0.0.6-beta.3",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -208,6 +208,12 @@
|
|
|
208
208
|
"vv-input-text": [
|
|
209
209
|
"dist/components/VvInputText/VvInputText.vue.d.ts"
|
|
210
210
|
],
|
|
211
|
+
"vv-nav": [
|
|
212
|
+
"dist/components/VvNav/VvNav.vue.d.ts"
|
|
213
|
+
],
|
|
214
|
+
"vv-nav-item-title": [
|
|
215
|
+
"dist/components/VvNavItemTitle/VvNavItemTitle.vue.d.ts"
|
|
216
|
+
],
|
|
211
217
|
"vv-progress": [
|
|
212
218
|
"dist/components/VvProgress/VvProgress.vue.d.ts"
|
|
213
219
|
],
|
|
@@ -371,6 +377,16 @@
|
|
|
371
377
|
"import": "./dist/components/VvInputText/VvInputText.es.js",
|
|
372
378
|
"default": "./dist/components/VvInputText/VvInputText.umd.js"
|
|
373
379
|
},
|
|
380
|
+
"./vv-nav": {
|
|
381
|
+
"types": "./dist/components/VvNav/VvNav.vue.d.ts",
|
|
382
|
+
"import": "./dist/components/VvNav/VvNav.es.js",
|
|
383
|
+
"default": "./dist/components/VvNav/VvNav.umd.js"
|
|
384
|
+
},
|
|
385
|
+
"./vv-nav-item-title": {
|
|
386
|
+
"types": "./dist/components/VvNavItemTitle/VvNavItemTitle.vue.d.ts",
|
|
387
|
+
"import": "./dist/components/VvNavItemTitle/VvNavItemTitle.es.js",
|
|
388
|
+
"default": "./dist/components/VvNavItemTitle/VvNavItemTitle.umd.js"
|
|
389
|
+
},
|
|
374
390
|
"./vv-progress": {
|
|
375
391
|
"types": "./dist/components/VvProgress/VvProgress.vue.d.ts",
|
|
376
392
|
"import": "./dist/components/VvProgress/VvProgress.es.js",
|