@volverjs/ui-vue 0.0.10-beta.5 → 0.0.10-beta.7

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 (56) hide show
  1. package/dist/Volver.d.ts +1 -0
  2. package/dist/components/VvAccordion/VvAccordion.vue.d.ts +4 -4
  3. package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +4 -4
  4. package/dist/components/VvAction/VvAction.vue.d.ts +4 -4
  5. package/dist/components/VvAlert/VvAlert.vue.d.ts +4 -4
  6. package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +4 -4
  7. package/dist/components/VvButton/VvButton.vue.d.ts +15 -9
  8. package/dist/components/VvButton/index.d.ts +2 -2
  9. package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +4 -4
  10. package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +5 -5
  11. package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
  12. package/dist/components/VvCheckboxGroup/index.d.ts +1 -1
  13. package/dist/components/VvCombobox/VvCombobox.es.js +9 -5
  14. package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
  15. package/dist/components/VvCombobox/VvCombobox.vue.d.ts +14 -14
  16. package/dist/components/VvCombobox/index.d.ts +11 -6
  17. package/dist/components/VvDialog/VvDialog.vue.d.ts +4 -4
  18. package/dist/components/VvDropdown/VvDropdown.vue.d.ts +19 -5
  19. package/dist/components/VvDropdown/index.d.ts +1 -1
  20. package/dist/components/VvInputText/VvInputText.vue.d.ts +6 -6
  21. package/dist/components/VvNav/VvNav.vue.d.ts +7 -7
  22. package/dist/components/VvNav/index.d.ts +1 -1
  23. package/dist/components/VvRadio/VvRadio.vue.d.ts +5 -5
  24. package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
  25. package/dist/components/VvRadioGroup/index.d.ts +1 -1
  26. package/dist/components/VvSelect/VvSelect.vue.d.ts +8 -8
  27. package/dist/components/VvSelect/index.d.ts +1 -1
  28. package/dist/components/VvTab/VvTab.vue.d.ts +4 -4
  29. package/dist/components/VvTextarea/VvTextarea.es.js +1 -1
  30. package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
  31. package/dist/components/VvTextarea/VvTextarea.vue.d.ts +7 -7
  32. package/dist/components/VvTooltip/VvTooltip.vue.d.ts +3 -3
  33. package/dist/components/VvTooltip/index.d.ts +1 -1
  34. package/dist/components/index.es.js +10 -6
  35. package/dist/components/index.umd.js +1 -1
  36. package/dist/icons.es.js +3 -3
  37. package/dist/icons.umd.js +1 -1
  38. package/dist/props/index.d.ts +1 -1
  39. package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +45 -10
  40. package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +301 -52
  41. package/dist/stories/Combobox/Combobox.settings.d.ts +8 -0
  42. package/dist/stories/Tab/Tab.settings.d.ts +2 -15
  43. package/dist/types/generic.d.ts +1 -2
  44. package/dist/types/index.d.ts +5 -0
  45. package/package.json +28 -28
  46. package/src/Volver.ts +1 -0
  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/VvCombobox/VvCombobox.vue +8 -4
  51. package/src/components/VvCombobox/index.ts +4 -0
  52. package/src/components/VvTextarea/VvTextarea.vue +1 -1
  53. package/src/stories/Combobox/Combobox.settings.ts +8 -0
  54. package/src/stories/Tab/Tab.settings.ts +2 -2
  55. package/src/types/generic.ts +2 -3
  56. package/src/types/index.ts +5 -0
@@ -332,6 +332,14 @@ export declare const argTypes: {
332
332
  };
333
333
  };
334
334
  };
335
+ 'update:search': {
336
+ table: {
337
+ category: string;
338
+ type: {
339
+ summary: string;
340
+ };
341
+ };
342
+ };
335
343
  placement: {
336
344
  description: string;
337
345
  options: (import("../../constants").Side | import("../../constants").Placement)[];
@@ -1,17 +1,4 @@
1
- import type { Meta } from '@storybook/vue3';
1
+ import type { ArgTypes, Meta } from '@storybook/vue3';
2
2
  import type { VvTab } from '@/components';
3
3
  export declare const defaultArgs: Meta<typeof VvTab>['args'];
4
- export declare const defaultArgTypes: {
5
- tabId: {
6
- description: string;
7
- control: {
8
- type: string;
9
- };
10
- table: {
11
- category: string;
12
- type: {
13
- summary: string;
14
- };
15
- };
16
- };
17
- };
4
+ export declare const defaultArgTypes: ArgTypes;
@@ -1,5 +1,4 @@
1
1
  export type Nullable<T> = T | null | undefined;
2
- export type Option = {
2
+ export type Option = Record<string | number | symbol, unknown> & {
3
3
  options?: Option[];
4
- [key: string]: unknown;
5
4
  };
@@ -0,0 +1,5 @@
1
+ export * from './alert';
2
+ export * from './floating-ui';
3
+ export * from './generic';
4
+ export * from './group';
5
+ export * from './nav';
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.10-beta.5",
22
+ "version": "0.0.10-beta.7",
23
23
  "engines": {
24
24
  "node": ">= 16.x"
25
25
  },
@@ -53,38 +53,38 @@
53
53
  "@volverjs/style": "0.*"
54
54
  },
55
55
  "devDependencies": {
56
- "@babel/core": "^7.22.20",
56
+ "@babel/core": "^7.23.0",
57
57
  "@babel/preset-env": "^7.22.20",
58
- "@babel/preset-typescript": "^7.22.15",
58
+ "@babel/preset-typescript": "^7.23.0",
59
59
  "@iconify/types": "^2.0.0",
60
60
  "@iconify/utils": "^2.1.10",
61
61
  "@mdx-js/react": "^2.3.0",
62
- "@rushstack/eslint-patch": "^1.4.0",
63
- "@storybook/addon-a11y": "^7.4.2",
64
- "@storybook/addon-actions": "^7.4.2",
65
- "@storybook/addon-docs": "^7.4.2",
66
- "@storybook/addon-essentials": "^7.4.2",
67
- "@storybook/addon-interactions": "^7.4.2",
68
- "@storybook/addon-links": "^7.4.2",
69
- "@storybook/channel-postmessage": "^7.4.2",
70
- "@storybook/channel-websocket": "^7.4.2",
71
- "@storybook/cli": "^7.4.2",
72
- "@storybook/client-api": "^7.4.2",
73
- "@storybook/client-logger": "^7.4.2",
74
- "@storybook/core-common": "^7.4.2",
62
+ "@rushstack/eslint-patch": "^1.5.0",
63
+ "@storybook/addon-a11y": "^7.4.5",
64
+ "@storybook/addon-actions": "^7.4.5",
65
+ "@storybook/addon-docs": "^7.4.5",
66
+ "@storybook/addon-essentials": "^7.4.5",
67
+ "@storybook/addon-interactions": "^7.4.5",
68
+ "@storybook/addon-links": "^7.4.5",
69
+ "@storybook/channel-postmessage": "^7.4.5",
70
+ "@storybook/channel-websocket": "^7.4.5",
71
+ "@storybook/cli": "^7.4.5",
72
+ "@storybook/client-api": "^7.4.5",
73
+ "@storybook/client-logger": "^7.4.5",
74
+ "@storybook/core-common": "^7.4.5",
75
75
  "@storybook/jest": "^0.2.2",
76
- "@storybook/preview-api": "^7.4.2",
77
- "@storybook/preview-web": "^7.4.2",
76
+ "@storybook/preview-api": "^7.4.5",
77
+ "@storybook/preview-web": "^7.4.5",
78
78
  "@storybook/test-runner": "^0.13.0",
79
79
  "@storybook/testing-library": "^0.2.1",
80
- "@storybook/vue3": "^7.4.2",
81
- "@storybook/vue3-vite": "^7.4.2",
80
+ "@storybook/vue3": "^7.4.5",
81
+ "@storybook/vue3-vite": "^7.4.5",
82
82
  "@tsconfig/node18": "^18.2.2",
83
83
  "@types/jest-axe": "^3.5.6",
84
84
  "@types/jsdom": "^21.1.3",
85
- "@types/node": "^20.6.2",
85
+ "@types/node": "^20.7.0",
86
86
  "@types/react": "^18.2.22",
87
- "@types/yargs": "^17.0.24",
87
+ "@types/yargs": "^17.0.25",
88
88
  "@vitejs/plugin-vue": "^4.3.4",
89
89
  "@volverjs/style": "0.1.12-beta.8",
90
90
  "@vue/compiler-sfc": "^3.3.4",
@@ -94,12 +94,12 @@
94
94
  "@vue/tsconfig": "^0.4.0",
95
95
  "change-case": "^4.1.2",
96
96
  "chokidar": "^3.5.3",
97
- "eslint": "^8.49.0",
97
+ "eslint": "^8.50.0",
98
98
  "eslint-config-prettier": "^9.0.0",
99
99
  "eslint-mdx": "^2.2.0",
100
100
  "eslint-plugin-mdx": "^2.2.0",
101
101
  "eslint-plugin-prettier": "^5.0.0",
102
- "eslint-plugin-storybook": "^0.6.13",
102
+ "eslint-plugin-storybook": "^0.6.14",
103
103
  "eslint-plugin-vue": "^9.17.0",
104
104
  "glob": "7.2.3",
105
105
  "jest-axe": "^8.0.0",
@@ -112,12 +112,12 @@
112
112
  "react": "^18.2.0",
113
113
  "react-dom": "^18.2.0",
114
114
  "remark": "^15.0.1",
115
- "sass": "^1.67.0",
116
- "storybook": "^7.4.2",
115
+ "sass": "^1.68.0",
116
+ "storybook": "^7.4.5",
117
117
  "storybook-addon-markdown-docs": "^2.0.0",
118
118
  "storybook-dark-mode": "^3.0.1",
119
119
  "storybook-version": "^0.1.1",
120
- "terser": "^5.19.4",
120
+ "terser": "^5.20.0",
121
121
  "ts-node": "^10.9.1",
122
122
  "typescript": "~5.2.2",
123
123
  "unplugin-auto-import": "^0.16.6",
@@ -125,7 +125,7 @@
125
125
  "vite": "^4.4.9",
126
126
  "vite-plugin-eslint": "^1.8.1",
127
127
  "vite-plugin-externalize-deps": "^0.7.0",
128
- "vue-tsc": "^1.8.11",
128
+ "vue-tsc": "^1.8.15",
129
129
  "yargs": "^17.7.2"
130
130
  },
131
131
  "typesVersions": {
package/src/Volver.ts CHANGED
@@ -293,3 +293,4 @@ const VolverPlugin: Plugin = {
293
293
  }
294
294
 
295
295
  export default VolverPlugin
296
+ export * from './types'