@volverjs/ui-vue 0.0.6-beta.2 → 0.0.6-beta.4
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 +2 -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 +450 -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 +32 -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/components/VvTab/VvTab.es.js +505 -0
- package/dist/components/VvTab/VvTab.umd.js +1 -0
- package/dist/components/VvTab/VvTab.vue.d.ts +52 -0
- package/dist/components/VvTab/index.d.ts +23 -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/dist/stories/Tab/Tab.settings.d.ts +37 -0
- package/dist/stories/Tab/Tab.test.d.ts +2 -0
- package/package.json +25 -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 +66 -0
- package/src/components/VvNav/index.ts +21 -0
- package/src/components/VvNavItemTitle/VvNavItemTitle.vue +11 -0
- package/src/components/VvNavSeparator/VvNavSeparator.ts +8 -0
- package/src/components/VvTab/VvTab.vue +53 -0
- package/src/components/VvTab/index.ts +13 -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
- package/src/stories/Tab/Tab.settings.ts +41 -0
- package/src/stories/Tab/Tab.stories.mdx +65 -0
- package/src/stories/Tab/Tab.test.ts +37 -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
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const defaultArgs: {
|
|
2
|
+
items: ({
|
|
3
|
+
title: string;
|
|
4
|
+
href: string;
|
|
5
|
+
to?: undefined;
|
|
6
|
+
id?: undefined;
|
|
7
|
+
on?: undefined;
|
|
8
|
+
} | {
|
|
9
|
+
title: string;
|
|
10
|
+
to: string;
|
|
11
|
+
href?: undefined;
|
|
12
|
+
id?: undefined;
|
|
13
|
+
on?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
id: string;
|
|
16
|
+
title: string;
|
|
17
|
+
to: string;
|
|
18
|
+
on: {
|
|
19
|
+
click: () => void;
|
|
20
|
+
};
|
|
21
|
+
href?: undefined;
|
|
22
|
+
})[];
|
|
23
|
+
};
|
|
24
|
+
export declare const defaultArgTypes: {
|
|
25
|
+
tabId: {
|
|
26
|
+
description: string;
|
|
27
|
+
control: {
|
|
28
|
+
type: string;
|
|
29
|
+
};
|
|
30
|
+
table: {
|
|
31
|
+
category: string;
|
|
32
|
+
type: {
|
|
33
|
+
summary: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
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.4",
|
|
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
|
],
|
|
@@ -220,6 +226,9 @@
|
|
|
220
226
|
"vv-select": [
|
|
221
227
|
"dist/components/VvSelect/VvSelect.vue.d.ts"
|
|
222
228
|
],
|
|
229
|
+
"vv-tab": [
|
|
230
|
+
"dist/components/VvTab/VvTab.vue.d.ts"
|
|
231
|
+
],
|
|
223
232
|
"vv-textarea": [
|
|
224
233
|
"dist/components/VvTextarea/VvTextarea.vue.d.ts"
|
|
225
234
|
],
|
|
@@ -371,6 +380,16 @@
|
|
|
371
380
|
"import": "./dist/components/VvInputText/VvInputText.es.js",
|
|
372
381
|
"default": "./dist/components/VvInputText/VvInputText.umd.js"
|
|
373
382
|
},
|
|
383
|
+
"./vv-nav": {
|
|
384
|
+
"types": "./dist/components/VvNav/VvNav.vue.d.ts",
|
|
385
|
+
"import": "./dist/components/VvNav/VvNav.es.js",
|
|
386
|
+
"default": "./dist/components/VvNav/VvNav.umd.js"
|
|
387
|
+
},
|
|
388
|
+
"./vv-nav-item-title": {
|
|
389
|
+
"types": "./dist/components/VvNavItemTitle/VvNavItemTitle.vue.d.ts",
|
|
390
|
+
"import": "./dist/components/VvNavItemTitle/VvNavItemTitle.es.js",
|
|
391
|
+
"default": "./dist/components/VvNavItemTitle/VvNavItemTitle.umd.js"
|
|
392
|
+
},
|
|
374
393
|
"./vv-progress": {
|
|
375
394
|
"types": "./dist/components/VvProgress/VvProgress.vue.d.ts",
|
|
376
395
|
"import": "./dist/components/VvProgress/VvProgress.es.js",
|
|
@@ -391,6 +410,11 @@
|
|
|
391
410
|
"import": "./dist/components/VvSelect/VvSelect.es.js",
|
|
392
411
|
"default": "./dist/components/VvSelect/VvSelect.umd.js"
|
|
393
412
|
},
|
|
413
|
+
"./vv-tab": {
|
|
414
|
+
"types": "./dist/components/VvTab/VvTab.vue.d.ts",
|
|
415
|
+
"import": "./dist/components/VvTab/VvTab.es.js",
|
|
416
|
+
"default": "./dist/components/VvTab/VvTab.umd.js"
|
|
417
|
+
},
|
|
394
418
|
"./vv-textarea": {
|
|
395
419
|
"types": "./dist/components/VvTextarea/VvTextarea.vue.d.ts",
|
|
396
420
|
"import": "./dist/components/VvTextarea/VvTextarea.es.js",
|