@volverjs/ui-vue 0.0.6-beta.1 → 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.
Files changed (39) hide show
  1. package/README.md +2 -2
  2. package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +363 -0
  3. package/dist/components/VvAvatarGroup/VvAvatarGroup.umd.js +1 -0
  4. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +68 -0
  5. package/dist/components/VvAvatarGroup/index.d.ts +38 -0
  6. package/dist/components/VvNav/VvNav.es.js +442 -0
  7. package/dist/components/VvNav/VvNav.umd.js +1 -0
  8. package/dist/components/VvNav/VvNav.vue.d.ts +47 -0
  9. package/dist/components/VvNav/index.d.ts +31 -0
  10. package/dist/components/VvNavItemTitle/VvNavItemTitle.es.js +19 -0
  11. package/dist/components/VvNavItemTitle/VvNavItemTitle.umd.js +1 -0
  12. package/dist/components/VvNavItemTitle/VvNavItemTitle.vue.d.ts +6 -0
  13. package/dist/components/VvNavSeparator/VvNavSeparator.d.ts +2 -0
  14. package/dist/icons.es.js +3 -3
  15. package/dist/icons.umd.js +1 -1
  16. package/dist/stories/AvatarGroup/AvatarGroup.settings.d.ts +56 -0
  17. package/dist/stories/AvatarGroup/AvatarGroup.test.d.ts +2 -0
  18. package/dist/stories/Nav/Nav.settings.d.ts +33 -0
  19. package/dist/stories/Nav/Nav.test.d.ts +2 -0
  20. package/package.json +25 -1
  21. package/src/assets/icons/detailed.json +1 -1
  22. package/src/assets/icons/normal.json +1 -1
  23. package/src/assets/icons/simple.json +1 -1
  24. package/src/components/VvAvatarGroup/VvAvatarGroup.vue +65 -0
  25. package/src/components/VvAvatarGroup/index.ts +28 -0
  26. package/src/components/VvNav/VvNav.vue +56 -0
  27. package/src/components/VvNav/index.ts +20 -0
  28. package/src/components/VvNavItemTitle/VvNavItemTitle.vue +11 -0
  29. package/src/components/VvNavSeparator/VvNavSeparator.ts +8 -0
  30. package/src/stories/Avatar/Avatar.settings.ts +1 -9
  31. package/src/stories/AvatarGroup/AvatarGroup.settings.ts +60 -0
  32. package/src/stories/AvatarGroup/AvatarGroup.stories.mdx +30 -0
  33. package/src/stories/AvatarGroup/AvatarGroup.test.ts +36 -0
  34. package/src/stories/AvatarGroup/AvatarGroupModifiers.stories.mdx +24 -0
  35. package/src/stories/AvatarGroup/AvatarGroupSlotDefault.stories.mdx +45 -0
  36. package/src/stories/Nav/Nav.settings.ts +34 -0
  37. package/src/stories/Nav/Nav.stories.mdx +28 -0
  38. package/src/stories/Nav/Nav.test.ts +32 -0
  39. package/src/stories/Nav/NavModifiers.stories.mdx +48 -0
@@ -0,0 +1,56 @@
1
+ export declare const defaultArgs: {
2
+ items: ({
3
+ text: string;
4
+ imgSrc: string;
5
+ modifiers: string;
6
+ } | {
7
+ imgSrc: string;
8
+ modifiers: string;
9
+ text?: undefined;
10
+ })[];
11
+ avatarModifiers: string;
12
+ };
13
+ export declare const argTypes: {
14
+ default: {
15
+ description: string;
16
+ control: {
17
+ type: string;
18
+ };
19
+ table: {
20
+ category: string;
21
+ type: {
22
+ summary: string;
23
+ };
24
+ };
25
+ };
26
+ modifiers: {
27
+ options: string[];
28
+ type: {
29
+ summary: string[];
30
+ };
31
+ description: string;
32
+ control: {
33
+ type: string;
34
+ };
35
+ };
36
+ avatarModifiers: {
37
+ options: string[];
38
+ type: {
39
+ summary: string[];
40
+ };
41
+ description: string;
42
+ control: {
43
+ type: string;
44
+ };
45
+ };
46
+ toShow: {
47
+ control: {
48
+ type: string;
49
+ };
50
+ };
51
+ totalItems: {
52
+ control: {
53
+ type: string;
54
+ };
55
+ };
56
+ };
@@ -0,0 +1,2 @@
1
+ import type { PlayAttributes } from '@/test/types';
2
+ export declare function defaultTest({ canvasElement, args }: PlayAttributes): Promise<void>;
@@ -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,2 @@
1
+ import type { PlayAttributes } from '@/test/types';
2
+ export declare function defaultTest({ canvasElement, args }: PlayAttributes): Promise<void>;
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.1",
22
+ "version": "0.0.6-beta.3",
23
23
  "engines": {
24
24
  "node": ">= 16.x"
25
25
  },
@@ -157,6 +157,9 @@
157
157
  "vv-avatar": [
158
158
  "dist/components/VvAvatar/VvAvatar.vue.d.ts"
159
159
  ],
160
+ "vv-avatar-group": [
161
+ "dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts"
162
+ ],
160
163
  "vv-badge": [
161
164
  "dist/components/VvBadge/VvBadge.vue.d.ts"
162
165
  ],
@@ -205,6 +208,12 @@
205
208
  "vv-input-text": [
206
209
  "dist/components/VvInputText/VvInputText.vue.d.ts"
207
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
+ ],
208
217
  "vv-progress": [
209
218
  "dist/components/VvProgress/VvProgress.vue.d.ts"
210
219
  ],
@@ -283,6 +292,11 @@
283
292
  "import": "./dist/components/VvAvatar/VvAvatar.es.js",
284
293
  "default": "./dist/components/VvAvatar/VvAvatar.umd.js"
285
294
  },
295
+ "./vv-avatar-group": {
296
+ "types": "./dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts",
297
+ "import": "./dist/components/VvAvatarGroup/VvAvatarGroup.es.js",
298
+ "default": "./dist/components/VvAvatarGroup/VvAvatarGroup.umd.js"
299
+ },
286
300
  "./vv-badge": {
287
301
  "types": "./dist/components/VvBadge/VvBadge.vue.d.ts",
288
302
  "import": "./dist/components/VvBadge/VvBadge.es.js",
@@ -363,6 +377,16 @@
363
377
  "import": "./dist/components/VvInputText/VvInputText.es.js",
364
378
  "default": "./dist/components/VvInputText/VvInputText.umd.js"
365
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
+ },
366
390
  "./vv-progress": {
367
391
  "types": "./dist/components/VvProgress/VvProgress.vue.d.ts",
368
392
  "import": "./dist/components/VvProgress/VvProgress.es.js",