@volverjs/ui-vue 0.0.9-beta.2 → 0.0.9-beta.20
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 +3 -3
- package/auto-imports.d.ts +2 -0
- package/dist/components/VvAccordion/VvAccordion.es.js +7 -0
- package/dist/components/VvAccordionGroup/VvAccordionGroup.es.js +7 -0
- package/dist/components/VvAction/VvAction.es.js +9 -1
- package/dist/components/VvAction/VvAction.umd.js +1 -1
- package/dist/components/VvAction/VvAction.vue.d.ts +9 -0
- package/dist/components/VvAction/index.d.ts +4 -0
- package/dist/components/VvAlert/VvAlert.es.js +14 -6
- package/dist/components/VvAlert/VvAlert.umd.js +1 -1
- package/dist/components/VvAlert/VvAlert.vue.d.ts +6 -6
- package/dist/components/VvAlert/index.d.ts +3 -3
- package/dist/components/VvAlertGroup/VvAlertGroup.es.js +14 -6
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvAlertGroup/VvAlertGroup.vue.d.ts +3 -3
- package/dist/components/VvAlertGroup/index.d.ts +1 -1
- package/dist/components/VvAvatar/VvAvatar.es.js +7 -0
- package/dist/components/VvAvatarGroup/VvAvatarGroup.es.js +7 -0
- package/dist/components/VvBadge/VvBadge.es.js +7 -0
- package/dist/components/VvBreadcrumb/VvBreadcrumb.es.js +7 -0
- package/dist/components/VvButton/VvButton.es.js +11 -2
- package/dist/components/VvButton/VvButton.umd.js +1 -1
- package/dist/components/VvButton/VvButton.vue.d.ts +9 -0
- package/dist/components/VvButton/index.d.ts +4 -0
- package/dist/components/VvButtonGroup/VvButtonGroup.es.js +7 -0
- package/dist/components/VvCard/VvCard.es.js +7 -0
- package/dist/components/VvCheckbox/VvCheckbox.es.js +91 -14
- package/dist/components/VvCheckbox/VvCheckbox.umd.js +1 -1
- package/dist/components/VvCheckbox/VvCheckbox.vue.d.ts +4 -4
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +97 -15
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.vue.d.ts +4 -4
- package/dist/components/VvCombobox/VvCombobox.es.js +243 -179
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +323 -95
- package/dist/components/VvCombobox/index.d.ts +123 -35
- package/dist/components/VvDialog/VvDialog.es.js +42 -30
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.es.js +19 -6
- package/dist/components/VvDropdown/VvDropdown.umd.js +1 -1
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +291 -84
- package/dist/components/VvDropdown/VvDropdownAction.vue.d.ts +9 -0
- package/dist/components/VvDropdown/index.d.ts +96 -27
- package/dist/components/VvDropdownAction/VvDropdownAction.es.js +9 -1
- package/dist/components/VvDropdownAction/VvDropdownAction.umd.js +1 -1
- package/dist/components/VvDropdownOptgroup/VvDropdownOptgroup.es.js +7 -0
- package/dist/components/VvDropdownOption/VvDropdownOption.es.js +7 -0
- package/dist/components/VvInputText/VvInputText.es.js +271 -109
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.vue.d.ts +23 -41
- package/dist/components/VvInputText/index.d.ts +25 -35
- package/dist/components/VvNav/VvNav.es.js +10 -2
- package/dist/components/VvNav/VvNav.umd.js +1 -1
- package/dist/components/VvNav/index.d.ts +1 -1
- package/dist/components/VvProgress/VvProgress.es.js +7 -0
- package/dist/components/VvRadio/VvRadio.es.js +91 -14
- package/dist/components/VvRadio/VvRadio.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.vue.d.ts +4 -4
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +97 -15
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvRadioGroup/VvRadioGroup.vue.d.ts +4 -4
- package/dist/components/VvSelect/VvSelect.es.js +87 -14
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.vue.d.ts +5 -5
- package/dist/components/VvTab/VvTab.es.js +10 -2
- package/dist/components/VvTab/VvTab.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.es.js +95 -19
- package/dist/components/VvTextarea/VvTextarea.umd.js +1 -1
- package/dist/components/VvTextarea/VvTextarea.vue.d.ts +4 -4
- package/dist/components/VvTooltip/VvTooltip.es.js +7 -0
- package/dist/components/common/HintSlot.d.ts +4 -3
- package/dist/components/index.d.ts +5 -0
- package/dist/components/index.es.js +1199 -614
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/alert/useAlert.d.ts +27 -0
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/index.es.js +81 -0
- package/dist/composables/index.umd.js +1 -0
- package/dist/constants.d.ts +10 -0
- package/dist/directives/index.es.js +7 -0
- package/dist/directives/v-tooltip.es.js +7 -0
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +103 -27
- package/dist/resolvers/unplugin.es.js +3 -0
- package/dist/resolvers/unplugin.umd.js +1 -1
- package/dist/stories/AccordionGroup/AccordionGroup.stories.d.ts +2 -2
- package/dist/stories/AccordionGroup/AccordionGroupSlots.stories.d.ts +54 -269
- package/dist/stories/Alert/Alert.settings.d.ts +3 -7
- package/dist/stories/AlertGroup/AlertGroupSlots.stories.d.ts +2 -2
- package/dist/stories/AlertGroup/AlertGroupWithComposable.stories.d.ts +6 -0
- package/dist/stories/Button/Button.settings.d.ts +3 -13
- package/dist/stories/Combobox/Combobox.settings.d.ts +117 -19
- package/dist/stories/InputText/InputText.settings.d.ts +31 -9
- package/dist/stories/InputText/InputText.stories.d.ts +0 -1
- package/dist/stories/InputText/InputTextMask.stories.d.ts +12 -0
- package/dist/stories/Nav/Nav.settings.d.ts +3 -21
- package/package.json +75 -66
- 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/VvAction/VvAction.vue +2 -1
- package/src/components/VvAlert/VvAlert.vue +5 -1
- package/src/components/VvAlert/index.ts +3 -3
- package/src/components/VvAlertGroup/VvAlertGroup.vue +2 -0
- package/src/components/VvButton/VvButton.vue +1 -0
- package/src/components/VvCheckbox/VvCheckbox.vue +8 -1
- package/src/components/VvCheckboxGroup/VvCheckboxGroup.vue +8 -1
- package/src/components/VvCombobox/VvCombobox.vue +43 -23
- package/src/components/VvCombobox/index.ts +24 -0
- package/src/components/VvDialog/VvDialog.vue +22 -19
- package/src/components/VvDropdown/VvDropdown.vue +14 -9
- package/src/components/VvInputText/VvInputText.vue +177 -55
- package/src/components/VvInputText/index.ts +32 -34
- package/src/components/VvNav/VvNav.vue +1 -1
- package/src/components/VvNav/index.ts +1 -1
- package/src/components/VvRadio/VvRadio.vue +8 -1
- package/src/components/VvRadioGroup/VvRadioGroup.vue +8 -1
- package/src/components/VvSelect/VvSelect.vue +8 -1
- package/src/components/VvTextarea/VvTextarea.vue +16 -6
- package/src/components/common/HintSlot.ts +26 -13
- package/src/components/index.ts +5 -0
- package/src/composables/alert/useAlert.ts +103 -0
- package/src/composables/index.ts +1 -0
- package/src/constants.ts +21 -0
- package/src/props/index.ts +7 -0
- package/src/resolvers/unplugin.ts +3 -0
- package/src/stories/Alert/Alert.settings.ts +3 -1
- package/src/stories/AlertGroup/AlertGroup.test.ts +13 -0
- package/src/stories/AlertGroup/AlertGroupSlots.stories.ts +3 -3
- package/src/stories/AlertGroup/AlertGroupWithComposable.stories.ts +118 -0
- package/src/stories/Button/Button.settings.ts +5 -3
- package/src/stories/Combobox/Combobox.settings.ts +119 -2
- package/src/stories/Combobox/Combobox.test.ts +1 -1
- package/src/stories/InputText/InputText.settings.ts +36 -15
- package/src/stories/InputText/InputText.stories.ts +4 -12
- package/src/stories/InputText/InputText.test.ts +31 -15
- package/src/stories/InputText/InputTextMask.stories.ts +122 -0
- package/src/stories/Nav/Nav.settings.ts +3 -1
- package/src/stories/Tab/Tab.stories.ts +3 -3
- package/src/stories/Textarea/TextareaLength.stories.ts +1 -1
- package/src/types/alert.d.ts +20 -0
- /package/dist/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue.d.ts +0 -0
- /package/dist/components/{VvNavSeparator → VvNav}/VvNavSeparator.d.ts +0 -0
- /package/src/components/{VvNavItemTitle → VvNav}/VvNavItemTitle.vue +0 -0
- /package/src/components/{VvNavSeparator → VvNav}/VvNavSeparator.ts +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import VvAlertGroup from '@/components/VvAlertGroup/VvAlertGroup.vue';
|
|
3
|
+
import { type Story } from './AlertGroup.stories';
|
|
4
|
+
declare const meta: Meta<typeof VvAlertGroup>;
|
|
5
|
+
export default meta;
|
|
6
|
+
export declare const UseComposable: Story;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
toggle: boolean;
|
|
5
|
-
unselectable: boolean;
|
|
6
|
-
loading: boolean;
|
|
7
|
-
pressed: boolean;
|
|
8
|
-
active: boolean;
|
|
9
|
-
disabled: boolean;
|
|
10
|
-
rel: string;
|
|
11
|
-
iconPosition: string;
|
|
12
|
-
icon: undefined;
|
|
13
|
-
};
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import type { VvButton } from '@/components';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvButton>['args'];
|
|
14
4
|
export declare const argTypes: {
|
|
15
5
|
before: {
|
|
16
6
|
description: string;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
options: string[];
|
|
5
|
-
placeholder: string;
|
|
6
|
-
label: string;
|
|
7
|
-
};
|
|
1
|
+
import type { VvCombobox } from '@/components';
|
|
2
|
+
import type { Meta } from '@storybook/vue3';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvCombobox>['args'];
|
|
8
4
|
export declare const argTypes: {
|
|
9
5
|
triggerWidth: {
|
|
10
6
|
table: {
|
|
@@ -42,6 +38,83 @@ export declare const argTypes: {
|
|
|
42
38
|
};
|
|
43
39
|
};
|
|
44
40
|
};
|
|
41
|
+
noOptionsLabel: {
|
|
42
|
+
description: string;
|
|
43
|
+
control: {
|
|
44
|
+
type: string;
|
|
45
|
+
};
|
|
46
|
+
table: {
|
|
47
|
+
defaultValue: {
|
|
48
|
+
summary: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
selectedHintLabel: {
|
|
53
|
+
description: string;
|
|
54
|
+
control: {
|
|
55
|
+
type: string;
|
|
56
|
+
};
|
|
57
|
+
table: {
|
|
58
|
+
defaultValue: {
|
|
59
|
+
summary: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
deselectActionLabel: {
|
|
64
|
+
description: string;
|
|
65
|
+
control: {
|
|
66
|
+
type: string;
|
|
67
|
+
};
|
|
68
|
+
table: {
|
|
69
|
+
defaultValue: {
|
|
70
|
+
summary: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
selectHintLabel: {
|
|
75
|
+
description: string;
|
|
76
|
+
control: {
|
|
77
|
+
type: string;
|
|
78
|
+
};
|
|
79
|
+
table: {
|
|
80
|
+
defaultValue: {
|
|
81
|
+
summary: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
deselectHintLabel: {
|
|
86
|
+
description: string;
|
|
87
|
+
control: {
|
|
88
|
+
type: string;
|
|
89
|
+
};
|
|
90
|
+
table: {
|
|
91
|
+
defaultValue: {
|
|
92
|
+
summary: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
closeLabel: {
|
|
97
|
+
description: string;
|
|
98
|
+
control: {
|
|
99
|
+
type: string;
|
|
100
|
+
};
|
|
101
|
+
table: {
|
|
102
|
+
defaultValue: {
|
|
103
|
+
summary: string;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
loadingLabel: {
|
|
108
|
+
description: string;
|
|
109
|
+
control: {
|
|
110
|
+
type: string;
|
|
111
|
+
};
|
|
112
|
+
table: {
|
|
113
|
+
defaultValue: {
|
|
114
|
+
summary: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
45
118
|
placeholder: {
|
|
46
119
|
description: string;
|
|
47
120
|
control: {
|
|
@@ -56,11 +129,24 @@ export declare const argTypes: {
|
|
|
56
129
|
};
|
|
57
130
|
};
|
|
58
131
|
};
|
|
132
|
+
searchFunction: {
|
|
133
|
+
description: string;
|
|
134
|
+
table: {
|
|
135
|
+
defaultValue: {
|
|
136
|
+
summary: undefined;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
};
|
|
59
140
|
searchPlaceholder: {
|
|
60
141
|
description: string;
|
|
61
142
|
control: {
|
|
62
143
|
type: string;
|
|
63
144
|
};
|
|
145
|
+
table: {
|
|
146
|
+
defaultValue: {
|
|
147
|
+
summary: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
64
150
|
};
|
|
65
151
|
debounceSearch: {
|
|
66
152
|
description: string;
|
|
@@ -117,6 +203,22 @@ export declare const argTypes: {
|
|
|
117
203
|
type: string;
|
|
118
204
|
};
|
|
119
205
|
description: string;
|
|
206
|
+
table: {
|
|
207
|
+
defaultValue: {
|
|
208
|
+
summary: string;
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
transitionName: {
|
|
213
|
+
control: {
|
|
214
|
+
type: string;
|
|
215
|
+
};
|
|
216
|
+
description: string;
|
|
217
|
+
table: {
|
|
218
|
+
defaultValue: {
|
|
219
|
+
summary: string;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
120
222
|
};
|
|
121
223
|
autoOpen: {
|
|
122
224
|
description: string;
|
|
@@ -134,6 +236,14 @@ export declare const argTypes: {
|
|
|
134
236
|
};
|
|
135
237
|
};
|
|
136
238
|
};
|
|
239
|
+
autofocusFirst: {
|
|
240
|
+
description: string;
|
|
241
|
+
table: {
|
|
242
|
+
defaultValue: {
|
|
243
|
+
summary: boolean;
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
};
|
|
137
247
|
before: {
|
|
138
248
|
control: {
|
|
139
249
|
type: string;
|
|
@@ -246,12 +356,6 @@ export declare const argTypes: {
|
|
|
246
356
|
};
|
|
247
357
|
};
|
|
248
358
|
};
|
|
249
|
-
transitionName: {
|
|
250
|
-
description: string;
|
|
251
|
-
control: {
|
|
252
|
-
type: string;
|
|
253
|
-
};
|
|
254
|
-
};
|
|
255
359
|
offset: {
|
|
256
360
|
description: string;
|
|
257
361
|
control: {
|
|
@@ -442,12 +546,6 @@ export declare const argTypes: {
|
|
|
442
546
|
};
|
|
443
547
|
};
|
|
444
548
|
};
|
|
445
|
-
loadingLabel: {
|
|
446
|
-
description: string;
|
|
447
|
-
control: {
|
|
448
|
-
type: string;
|
|
449
|
-
};
|
|
450
|
-
};
|
|
451
549
|
hintLabel: {
|
|
452
550
|
description: string;
|
|
453
551
|
control: {
|
|
@@ -145,42 +145,64 @@ export declare const argTypes: {
|
|
|
145
145
|
};
|
|
146
146
|
};
|
|
147
147
|
};
|
|
148
|
-
|
|
148
|
+
iMask: {
|
|
149
149
|
description: string;
|
|
150
150
|
control: {
|
|
151
151
|
type: string;
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
|
-
|
|
154
|
+
masked: {
|
|
155
155
|
description: string;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
summary: boolean;
|
|
159
|
-
};
|
|
156
|
+
control: {
|
|
157
|
+
type: string;
|
|
160
158
|
};
|
|
161
159
|
};
|
|
162
|
-
|
|
160
|
+
autoWidth: {
|
|
163
161
|
description: string;
|
|
162
|
+
control: {
|
|
163
|
+
type: string;
|
|
164
|
+
};
|
|
164
165
|
table: {
|
|
165
166
|
defaultValue: {
|
|
166
167
|
summary: boolean;
|
|
167
168
|
};
|
|
169
|
+
type: {
|
|
170
|
+
summary: string;
|
|
171
|
+
};
|
|
168
172
|
};
|
|
169
173
|
};
|
|
170
|
-
|
|
174
|
+
hideActions: {
|
|
171
175
|
description: string;
|
|
176
|
+
control: {
|
|
177
|
+
type: string;
|
|
178
|
+
};
|
|
172
179
|
table: {
|
|
173
180
|
defaultValue: {
|
|
181
|
+
summary: boolean;
|
|
182
|
+
};
|
|
183
|
+
type: {
|
|
174
184
|
summary: string;
|
|
175
185
|
};
|
|
176
186
|
};
|
|
177
187
|
};
|
|
178
|
-
|
|
188
|
+
unit: {
|
|
189
|
+
description: string;
|
|
190
|
+
control: {
|
|
191
|
+
type: string;
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
selectOnFocus: {
|
|
179
195
|
description: string;
|
|
196
|
+
control: {
|
|
197
|
+
type: string;
|
|
198
|
+
};
|
|
180
199
|
table: {
|
|
181
200
|
defaultValue: {
|
|
182
201
|
summary: boolean;
|
|
183
202
|
};
|
|
203
|
+
type: {
|
|
204
|
+
summary: string;
|
|
205
|
+
};
|
|
184
206
|
};
|
|
185
207
|
};
|
|
186
208
|
before: {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import VvInputText from '@/components/VvInputText/VvInputText.vue';
|
|
3
|
+
declare const meta: Meta<typeof VvInputText>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof VvInputText>;
|
|
6
|
+
export declare const RegExp: Story;
|
|
7
|
+
export declare const PhoneNumber: Story;
|
|
8
|
+
export declare const Pattern: Story;
|
|
9
|
+
export declare const IntlNumber: Story;
|
|
10
|
+
export declare const DatePlaceholder: Story;
|
|
11
|
+
export declare const PhoneOrEmail: Story;
|
|
12
|
+
export declare const Currency: Story;
|
|
@@ -1,24 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
};
|
|
1
|
+
import type { Meta } from '@storybook/vue3';
|
|
2
|
+
import type { VvNav } from '@/components';
|
|
3
|
+
export declare const defaultArgs: Meta<typeof VvNav>['args'];
|
|
22
4
|
export declare const argTypes: {
|
|
23
5
|
modifiers: {
|
|
24
6
|
options: string[];
|
package/package.json
CHANGED
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "https://github.com/volverjs/ui-vue/issues"
|
|
21
21
|
},
|
|
22
|
-
"version": "0.0.9-beta.
|
|
22
|
+
"version": "0.0.9-beta.20",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
26
|
-
"packageManager": "pnpm@8.
|
|
26
|
+
"packageManager": "pnpm@8.7.0",
|
|
27
27
|
"type": "module",
|
|
28
28
|
"main": "./dist/Volver.umd.js",
|
|
29
29
|
"module": "./dist/Volver.es.js",
|
|
@@ -38,92 +38,93 @@
|
|
|
38
38
|
"*.d.ts"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@floating-ui/vue": "^1.0.
|
|
42
|
-
"@iconify/tools": "^3.0.
|
|
43
|
-
"@iconify/vue": "4.1.1",
|
|
44
|
-
"@vueuse/core": "^10.1
|
|
45
|
-
"jsdom": "^22.
|
|
46
|
-
"
|
|
47
|
-
"mitt": "^3.0.0",
|
|
41
|
+
"@floating-ui/vue": "^1.0.2",
|
|
42
|
+
"@iconify/tools": "^3.0.5",
|
|
43
|
+
"@iconify/vue": "^4.1.1",
|
|
44
|
+
"@vueuse/core": "^10.4.1",
|
|
45
|
+
"jsdom": "^22.1.0",
|
|
46
|
+
"mitt": "^3.0.1",
|
|
48
47
|
"nanoid": "^4.0.2",
|
|
49
|
-
"ts-dot-prop": "^2.1.
|
|
50
|
-
"vue": "^3.3.4"
|
|
48
|
+
"ts-dot-prop": "^2.1.3",
|
|
49
|
+
"vue": "^3.3.4",
|
|
50
|
+
"vue-imask": "^7.1.3"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@volverjs/style": "0.*"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@babel/core": "^7.
|
|
57
|
-
"@babel/preset-env": "^7.
|
|
58
|
-
"@babel/preset-typescript": "^7.
|
|
56
|
+
"@babel/core": "^7.22.11",
|
|
57
|
+
"@babel/preset-env": "^7.22.10",
|
|
58
|
+
"@babel/preset-typescript": "^7.22.11",
|
|
59
59
|
"@iconify/types": "^2.0.0",
|
|
60
|
-
"@iconify/utils": "^2.1.
|
|
60
|
+
"@iconify/utils": "^2.1.9",
|
|
61
61
|
"@mdx-js/react": "^2.3.0",
|
|
62
|
-
"@rushstack/eslint-patch": "^1.3.
|
|
63
|
-
"@storybook/addon-a11y": "^7.
|
|
64
|
-
"@storybook/addon-actions": "^7.
|
|
65
|
-
"@storybook/addon-docs": "^7.
|
|
66
|
-
"@storybook/addon-essentials": "^7.
|
|
67
|
-
"@storybook/addon-interactions": "^7.
|
|
68
|
-
"@storybook/addon-links": "^7.
|
|
69
|
-
"@storybook/channel-postmessage": "^7.
|
|
70
|
-
"@storybook/channel-websocket": "^7.
|
|
71
|
-
"@storybook/cli": "^7.
|
|
72
|
-
"@storybook/client-api": "^7.
|
|
73
|
-
"@storybook/client-logger": "^7.
|
|
74
|
-
"@storybook/core-common": "^7.
|
|
75
|
-
"@storybook/jest": "^0.1
|
|
76
|
-
"@storybook/preview-api": "^7.
|
|
77
|
-
"@storybook/preview-web": "^7.
|
|
78
|
-
"@storybook/test-runner": "^0.
|
|
79
|
-
"@storybook/testing-library": "^0.
|
|
80
|
-
"@storybook/vue3": "^7.
|
|
81
|
-
"@storybook/vue3-vite": "^7.
|
|
82
|
-
"@tsconfig/node18": "^2.
|
|
62
|
+
"@rushstack/eslint-patch": "^1.3.3",
|
|
63
|
+
"@storybook/addon-a11y": "^7.3.2",
|
|
64
|
+
"@storybook/addon-actions": "^7.3.2",
|
|
65
|
+
"@storybook/addon-docs": "^7.3.2",
|
|
66
|
+
"@storybook/addon-essentials": "^7.3.2",
|
|
67
|
+
"@storybook/addon-interactions": "^7.3.2",
|
|
68
|
+
"@storybook/addon-links": "^7.3.2",
|
|
69
|
+
"@storybook/channel-postmessage": "^7.3.2",
|
|
70
|
+
"@storybook/channel-websocket": "^7.3.2",
|
|
71
|
+
"@storybook/cli": "^7.3.2",
|
|
72
|
+
"@storybook/client-api": "^7.3.2",
|
|
73
|
+
"@storybook/client-logger": "^7.3.2",
|
|
74
|
+
"@storybook/core-common": "^7.3.2",
|
|
75
|
+
"@storybook/jest": "^0.2.1",
|
|
76
|
+
"@storybook/preview-api": "^7.3.2",
|
|
77
|
+
"@storybook/preview-web": "^7.3.2",
|
|
78
|
+
"@storybook/test-runner": "^0.13.0",
|
|
79
|
+
"@storybook/testing-library": "^0.2.0",
|
|
80
|
+
"@storybook/vue3": "^7.3.2",
|
|
81
|
+
"@storybook/vue3-vite": "^7.3.2",
|
|
82
|
+
"@tsconfig/node18": "^18.2.1",
|
|
83
83
|
"@types/jest-axe": "^3.5.5",
|
|
84
|
-
"@types/jsdom": "^21.1.
|
|
85
|
-
"@types/node": "^20.
|
|
86
|
-
"@types/react": "^18.2.
|
|
84
|
+
"@types/jsdom": "^21.1.2",
|
|
85
|
+
"@types/node": "^20.5.7",
|
|
86
|
+
"@types/react": "^18.2.21",
|
|
87
87
|
"@types/yargs": "^17.0.24",
|
|
88
|
-
"@vitejs/plugin-vue": "^4.
|
|
89
|
-
"@volverjs/style": "
|
|
88
|
+
"@vitejs/plugin-vue": "^4.3.3",
|
|
89
|
+
"@volverjs/style": "0.1.12-beta.4",
|
|
90
90
|
"@vue/compiler-sfc": "^3.3.4",
|
|
91
|
-
"@vue/eslint-config-prettier": "^
|
|
91
|
+
"@vue/eslint-config-prettier": "^8.0.0",
|
|
92
92
|
"@vue/eslint-config-typescript": "^11.0.3",
|
|
93
|
-
"@vue/test-utils": "^2.
|
|
93
|
+
"@vue/test-utils": "^2.4.1",
|
|
94
94
|
"@vue/tsconfig": "^0.4.0",
|
|
95
95
|
"change-case": "^4.1.2",
|
|
96
|
-
"eslint": "^8.
|
|
97
|
-
"eslint-config-prettier": "^
|
|
98
|
-
"eslint-mdx": "^2.
|
|
99
|
-
"eslint-plugin-mdx": "^2.
|
|
100
|
-
"eslint-plugin-
|
|
101
|
-
"eslint-plugin-
|
|
96
|
+
"eslint": "^8.48.0",
|
|
97
|
+
"eslint-config-prettier": "^9.0.0",
|
|
98
|
+
"eslint-mdx": "^2.2.0",
|
|
99
|
+
"eslint-plugin-mdx": "^2.2.0",
|
|
100
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
101
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
102
|
+
"eslint-plugin-vue": "^9.17.0",
|
|
102
103
|
"glob": "7.2.3",
|
|
103
|
-
"jest-axe": "^
|
|
104
|
-
"jest-diff": "^29.
|
|
105
|
-
"jest-get-type": "^29.
|
|
106
|
-
"jsdom": "^22.
|
|
104
|
+
"jest-axe": "^8.0.0",
|
|
105
|
+
"jest-diff": "^29.6.4",
|
|
106
|
+
"jest-get-type": "^29.6.3",
|
|
107
|
+
"jsdom": "^22.1.0",
|
|
107
108
|
"npm-run-all": "^4.1.5",
|
|
108
|
-
"prettier": "^
|
|
109
|
-
"pretty-format": "^29.
|
|
109
|
+
"prettier": "^3.0.2",
|
|
110
|
+
"pretty-format": "^29.6.3",
|
|
110
111
|
"react": "^18.2.0",
|
|
111
112
|
"react-dom": "^18.2.0",
|
|
112
113
|
"remark": "^14.0.3",
|
|
113
|
-
"sass": "^1.
|
|
114
|
-
"storybook": "7.
|
|
115
|
-
"storybook-addon-markdown-docs": "^
|
|
116
|
-
"storybook-dark-mode": "^3.0.
|
|
114
|
+
"sass": "^1.66.1",
|
|
115
|
+
"storybook": "^7.3.2",
|
|
116
|
+
"storybook-addon-markdown-docs": "^2.0.0",
|
|
117
|
+
"storybook-dark-mode": "^3.0.1",
|
|
117
118
|
"storybook-version": "^0.1.1",
|
|
118
|
-
"terser": "^5.
|
|
119
|
+
"terser": "^5.19.2",
|
|
119
120
|
"ts-node": "^10.9.1",
|
|
120
|
-
"typescript": "~5.
|
|
121
|
-
"unplugin-auto-import": "^0.16.
|
|
122
|
-
"unplugin-vue-components": "^0.
|
|
123
|
-
"vite": "^4.
|
|
121
|
+
"typescript": "~5.2.2",
|
|
122
|
+
"unplugin-auto-import": "^0.16.6",
|
|
123
|
+
"unplugin-vue-components": "^0.25.1",
|
|
124
|
+
"vite": "^4.4.9",
|
|
124
125
|
"vite-plugin-eslint": "^1.8.1",
|
|
125
|
-
"vite-plugin-externalize-deps": "^0.
|
|
126
|
-
"vue-tsc": "^1.
|
|
126
|
+
"vite-plugin-externalize-deps": "^0.7.0",
|
|
127
|
+
"vue-tsc": "^1.8.8",
|
|
127
128
|
"yargs": "^17.7.2"
|
|
128
129
|
},
|
|
129
130
|
"typesVersions": {
|
|
@@ -146,6 +147,9 @@
|
|
|
146
147
|
"v-tooltip": [
|
|
147
148
|
"dist/directives/v-tooltip.d.ts"
|
|
148
149
|
],
|
|
150
|
+
"composables": [
|
|
151
|
+
"dist/composables/index.d.ts"
|
|
152
|
+
],
|
|
149
153
|
"components": [
|
|
150
154
|
"dist/components/index.d.ts"
|
|
151
155
|
],
|
|
@@ -280,6 +284,11 @@
|
|
|
280
284
|
"import": "./dist/directives/v-tooltip.es.js",
|
|
281
285
|
"default": "./dist/directives/v-tooltip.umd.js"
|
|
282
286
|
},
|
|
287
|
+
"./composables": {
|
|
288
|
+
"types": "./dist/composables/index.d.ts",
|
|
289
|
+
"import": "./dist/composables/index.es.js",
|
|
290
|
+
"default": "./dist/composables/index.umd.js"
|
|
291
|
+
},
|
|
283
292
|
"./components": {
|
|
284
293
|
"types": "./dist/components/index.d.ts",
|
|
285
294
|
"import": "./dist/components/index.es.js",
|