@volverjs/ui-vue 0.0.9 → 0.0.10-beta.1
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/components/VvButton/VvButton.es.js +3 -3
- package/dist/components/VvCheckbox/VvCheckbox.es.js +3 -3
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.es.js +5 -5
- package/dist/components/VvCheckboxGroup/VvCheckboxGroup.umd.js +1 -1
- package/dist/components/VvCombobox/VvCombobox.es.js +21 -32
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/VvRadio/VvRadio.es.js +3 -3
- package/dist/components/VvRadioGroup/VvRadioGroup.es.js +5 -5
- package/dist/components/VvRadioGroup/VvRadioGroup.umd.js +1 -1
- package/dist/components/VvSelect/VvSelect.es.js +6 -6
- package/dist/components/VvSelect/VvSelect.umd.js +1 -1
- package/dist/components/index.es.js +21 -32
- package/dist/components/index.umd.js +1 -1
- package/dist/composables/useOptions.d.ts +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/Combobox/ComboboxOptions.stories.d.ts +1 -0
- package/dist/stories/InputText/InputTextMask.stories.d.ts +1 -1
- package/package.json +2 -2
- 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 +13 -25
- package/src/components/VvSelect/VvSelect.vue +4 -4
- package/src/composables/useOptions.ts +2 -2
- package/src/stories/Combobox/ComboboxOptions.stories.ts +18 -0
- package/src/stories/InputText/InputTextMask.stories.ts +1 -1
- package/src/utils/ObjectUtilities.ts +3 -2
|
@@ -3,7 +3,7 @@ import VvInputText from '@/components/VvInputText/VvInputText.vue';
|
|
|
3
3
|
declare const meta: Meta<typeof VvInputText>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof VvInputText>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const Regex: Story;
|
|
7
7
|
export declare const PhoneNumber: Story;
|
|
8
8
|
export declare const Pattern: Story;
|
|
9
9
|
export declare const IntlNumber: Story;
|
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.
|
|
22
|
+
"version": "0.0.10-beta.1",
|
|
23
23
|
"engines": {
|
|
24
24
|
"node": ">= 16.x"
|
|
25
25
|
},
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"ts-node": "^10.9.1",
|
|
121
121
|
"typescript": "~5.2.2",
|
|
122
122
|
"unplugin-auto-import": "^0.16.6",
|
|
123
|
-
"unplugin-vue-components": "^0.25.
|
|
123
|
+
"unplugin-vue-components": "^0.25.2",
|
|
124
124
|
"vite": "^4.4.9",
|
|
125
125
|
"vite-plugin-eslint": "^1.8.1",
|
|
126
126
|
"vite-plugin-externalize-deps": "^0.7.0",
|