@volverjs/ui-vue 0.0.6-beta.3 → 0.0.6-beta.5

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 (73) hide show
  1. package/README.md +1 -0
  2. package/dist/components/VvAccordion/VvAccordion.es.js +18 -1
  3. package/dist/components/VvAccordion/VvAccordion.umd.js +1 -1
  4. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +2 -2
  5. package/dist/components/VvAccordion/index.d.ts +2 -2
  6. package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +22 -2
  7. package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
  8. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +6 -58
  9. package/dist/components/VvAccordionGroup/index.d.ts +3 -29
  10. package/dist/components/VvAvatarGroup/VvAvatarGroup.vue.d.ts +2 -28
  11. package/dist/components/VvAvatarGroup/index.d.ts +1 -14
  12. package/dist/components/VvBreadcrumb/VvBreadcrumb.vue.d.ts +2 -28
  13. package/dist/components/VvBreadcrumb/index.d.ts +1 -14
  14. package/dist/components/VvButton/VvButton.es.js +51 -20
  15. package/dist/components/VvButton/VvButton.umd.js +1 -1
  16. package/dist/components/VvButton/VvButton.vue.d.ts +27 -2
  17. package/dist/components/VvButton/index.d.ts +25 -2
  18. package/dist/components/VvButtonGroup/VvButtonGroup.es.js +10 -4
  19. package/dist/components/VvButtonGroup/VvButtonGroup.umd.js +1 -1
  20. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +7 -59
  21. package/dist/components/VvButtonGroup/index.d.ts +3 -29
  22. package/dist/components/VvCard/VvCard.vue.d.ts +2 -2
  23. package/dist/components/VvCard/index.d.ts +1 -1
  24. package/dist/components/VvCombobox/VvCombobox.es.js +1 -1
  25. package/dist/components/VvDialog/VvDialog.es.js +1 -1
  26. package/dist/components/VvIcon/VvIcon.es.js +1 -1
  27. package/dist/components/VvIcon/index.d.ts +1 -1
  28. package/dist/components/VvInputText/VvInputText.es.js +1 -1
  29. package/dist/components/VvNav/VvNav.es.js +15 -7
  30. package/dist/components/VvNav/VvNav.umd.js +1 -1
  31. package/dist/components/VvNav/VvNav.vue.d.ts +2 -28
  32. package/dist/components/VvNav/index.d.ts +2 -14
  33. package/dist/components/VvSelect/VvSelect.es.js +1 -1
  34. package/dist/components/VvTab/VvTab.es.js +505 -0
  35. package/dist/components/VvTab/VvTab.umd.js +1 -0
  36. package/dist/components/VvTab/VvTab.vue.d.ts +26 -0
  37. package/dist/components/VvTab/index.d.ts +10 -0
  38. package/dist/components/VvTextarea/VvTextarea.es.js +1 -1
  39. package/dist/components/index.es.js +83 -26
  40. package/dist/components/index.umd.js +1 -1
  41. package/dist/icons.es.js +3 -3
  42. package/dist/icons.umd.js +1 -1
  43. package/dist/stories/Button/Button.settings.d.ts +25 -0
  44. package/dist/stories/Tab/Tab.settings.d.ts +37 -0
  45. package/dist/stories/Tab/Tab.test.d.ts +2 -0
  46. package/package.json +12 -4
  47. package/src/assets/icons/detailed.json +1 -1
  48. package/src/assets/icons/normal.json +1 -1
  49. package/src/assets/icons/simple.json +1 -1
  50. package/src/components/VvAccordion/index.ts +21 -4
  51. package/src/components/VvAccordionGroup/index.ts +6 -3
  52. package/src/components/VvAvatarGroup/index.ts +2 -2
  53. package/src/components/VvBreadcrumb/index.ts +1 -1
  54. package/src/components/VvButton/VvButton.vue +9 -6
  55. package/src/components/VvButton/index.ts +44 -21
  56. package/src/components/VvButtonGroup/VvButtonGroup.vue +2 -2
  57. package/src/components/VvButtonGroup/index.ts +14 -2
  58. package/src/components/VvCard/index.ts +1 -1
  59. package/src/components/VvCombobox/index.ts +2 -2
  60. package/src/components/VvIcon/index.ts +1 -1
  61. package/src/components/VvNav/VvNav.vue +18 -8
  62. package/src/components/VvNav/index.ts +2 -1
  63. package/src/components/VvTab/VvTab.vue +53 -0
  64. package/src/components/VvTab/index.ts +13 -0
  65. package/src/components/common/HintSlot.ts +3 -3
  66. package/src/props/index.ts +2 -2
  67. package/src/stories/Button/Button.settings.ts +21 -0
  68. package/src/stories/Button/Button.stories.mdx +3 -3
  69. package/src/stories/Button/ButtonToggle.stories.mdx +62 -0
  70. package/src/stories/Tab/Tab.settings.ts +41 -0
  71. package/src/stories/Tab/Tab.stories.mdx +65 -0
  72. package/src/stories/Tab/Tab.test.ts +37 -0
  73. package/src/types/group.d.ts +5 -3
@@ -75,6 +75,9 @@ export declare const argTypes: {
75
75
  control: {
76
76
  type: string;
77
77
  };
78
+ type: {
79
+ summary: string;
80
+ };
78
81
  table: {
79
82
  defaultValue: {
80
83
  summary: string;
@@ -195,4 +198,26 @@ export declare const argTypes: {
195
198
  };
196
199
  };
197
200
  };
201
+ value: {
202
+ description: string;
203
+ type: {
204
+ summary: string[];
205
+ };
206
+ table: {
207
+ defaultValue: {
208
+ summary: string;
209
+ };
210
+ };
211
+ };
212
+ uncheckedValue: {
213
+ description: string;
214
+ type: {
215
+ summary: string[];
216
+ };
217
+ table: {
218
+ defaultValue: {
219
+ summary: string;
220
+ };
221
+ };
222
+ };
198
223
  };
@@ -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
+ };
@@ -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.3",
22
+ "version": "0.0.6-beta.5",
23
23
  "engines": {
24
24
  "node": ">= 16.x"
25
25
  },
@@ -50,9 +50,9 @@
50
50
  "vue": "^3.2.47"
51
51
  },
52
52
  "devDependencies": {
53
- "@babel/core": "^7.21.3",
54
- "@babel/preset-env": "^7.20.2",
55
- "@babel/preset-typescript": "^7.21.0",
53
+ "@babel/core": "^7.21.4",
54
+ "@babel/preset-env": "^7.21.4",
55
+ "@babel/preset-typescript": "^7.21.4",
56
56
  "@iconify/types": "^2.0.0",
57
57
  "@iconify/utils": "^2.1.5",
58
58
  "@mdx-js/react": "^2.3.0",
@@ -226,6 +226,9 @@
226
226
  "vv-select": [
227
227
  "dist/components/VvSelect/VvSelect.vue.d.ts"
228
228
  ],
229
+ "vv-tab": [
230
+ "dist/components/VvTab/VvTab.vue.d.ts"
231
+ ],
229
232
  "vv-textarea": [
230
233
  "dist/components/VvTextarea/VvTextarea.vue.d.ts"
231
234
  ],
@@ -407,6 +410,11 @@
407
410
  "import": "./dist/components/VvSelect/VvSelect.es.js",
408
411
  "default": "./dist/components/VvSelect/VvSelect.umd.js"
409
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
+ },
410
418
  "./vv-textarea": {
411
419
  "types": "./dist/components/VvTextarea/VvTextarea.vue.d.ts",
412
420
  "import": "./dist/components/VvTextarea/VvTextarea.es.js",