@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.
- package/dist/Volver.d.ts +1 -0
- package/dist/components/VvAccordion/VvAccordion.vue.d.ts +4 -4
- package/dist/components/VvAccordionGroup/VvAccordionGroup.vue.d.ts +4 -4
- package/dist/components/VvAction/VvAction.vue.d.ts +4 -4
- package/dist/components/VvAlert/VvAlert.vue.d.ts +4 -4
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +4 -4
- package/dist/components/VvButton/VvButton.vue.d.ts +15 -9
- package/dist/components/VvButton/index.d.ts +2 -2
- package/dist/components/VvButtonGroup/VvButtonGroup.vue.d.ts +4 -4
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +5 -5
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
- package/dist/components/VvCheckboxGroup/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +9 -5
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +14 -14
- package/dist/components/VvCombobox/index.d.ts +11 -6
- package/dist/components/VvDialog/VvDialog.vue.d.ts +4 -4
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +19 -5
- package/dist/components/VvDropdown/index.d.ts +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +6 -6
- package/dist/components/VvNav/VvNav.vue.d.ts +7 -7
- package/dist/components/VvNav/index.d.ts +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +5 -5
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
- package/dist/components/VvRadioGroup/index.d.ts +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +8 -8
- package/dist/components/VvSelect/index.d.ts +1 -1
- package/dist/components/VvTab/VvTab.vue.d.ts +4 -4
- package/dist/components/VvTextarea/VvTextarea.es.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +7 -7
- package/dist/components/VvTooltip/VvTooltip.vue.d.ts +3 -3
- package/dist/components/VvTooltip/index.d.ts +1 -1
- package/dist/components/index.es.js +10 -6
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +45 -10
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +301 -52
- package/dist/stories/Combobox/Combobox.settings.d.ts +8 -0
- package/dist/stories/Tab/Tab.settings.d.ts +2 -15
- package/dist/types/generic.d.ts +1 -2
- package/dist/types/index.d.ts +5 -0
- package/package.json +28 -28
- package/src/Volver.ts +1 -0
- 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/VvCombobox/VvCombobox.vue +8 -4
- package/src/components/VvCombobox/index.ts +4 -0
- package/src/components/VvTextarea/VvTextarea.vue +1 -1
- package/src/stories/Combobox/Combobox.settings.ts +8 -0
- package/src/stories/Tab/Tab.settings.ts +2 -2
- package/src/types/generic.ts +2 -3
- 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;
|
package/dist/types/generic.d.ts
CHANGED
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.
|
|
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.
|
|
56
|
+
"@babel/core": "^7.23.0",
|
|
57
57
|
"@babel/preset-env": "^7.22.20",
|
|
58
|
-
"@babel/preset-typescript": "^7.
|
|
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.
|
|
63
|
-
"@storybook/addon-a11y": "^7.4.
|
|
64
|
-
"@storybook/addon-actions": "^7.4.
|
|
65
|
-
"@storybook/addon-docs": "^7.4.
|
|
66
|
-
"@storybook/addon-essentials": "^7.4.
|
|
67
|
-
"@storybook/addon-interactions": "^7.4.
|
|
68
|
-
"@storybook/addon-links": "^7.4.
|
|
69
|
-
"@storybook/channel-postmessage": "^7.4.
|
|
70
|
-
"@storybook/channel-websocket": "^7.4.
|
|
71
|
-
"@storybook/cli": "^7.4.
|
|
72
|
-
"@storybook/client-api": "^7.4.
|
|
73
|
-
"@storybook/client-logger": "^7.4.
|
|
74
|
-
"@storybook/core-common": "^7.4.
|
|
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.
|
|
77
|
-
"@storybook/preview-web": "^7.4.
|
|
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.
|
|
81
|
-
"@storybook/vue3-vite": "^7.4.
|
|
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.
|
|
85
|
+
"@types/node": "^20.7.0",
|
|
86
86
|
"@types/react": "^18.2.22",
|
|
87
|
-
"@types/yargs": "^17.0.
|
|
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.
|
|
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.
|
|
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.
|
|
116
|
-
"storybook": "^7.4.
|
|
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.
|
|
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.
|
|
128
|
+
"vue-tsc": "^1.8.15",
|
|
129
129
|
"yargs": "^17.7.2"
|
|
130
130
|
},
|
|
131
131
|
"typesVersions": {
|
package/src/Volver.ts
CHANGED