@volverjs/ui-vue 0.0.10-beta.37 → 0.0.10-beta.38
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/VvAlertGroup/VvAlertGroup.es.js +1 -0
- package/dist/components/VvAlertGroup/VvAlertGroup.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.es.js +22 -7
- package/dist/components/VvDialog/VvDialog.umd.js +1 -1
- package/dist/components/VvDialog/VvDialog.vue.d.ts +9 -0
- package/dist/components/VvDialog/index.d.ts +4 -0
- package/dist/components/index.es.js +14 -7
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/stories/Dialog/DialogModifiers.stories.d.ts +8 -0
- package/package.json +1 -1
- 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/VvAlertGroup/VvAlertGroup.vue +1 -0
- package/src/components/VvDialog/VvDialog.vue +17 -8
- package/src/components/VvDialog/index.ts +2 -1
- package/src/stories/Dialog/Dialog.settings.ts +9 -1
- package/src/stories/Dialog/DialogModifiers.stories.ts +42 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
+
import VvDialog from '@/components/VvDialog/VvDialog.vue';
|
|
3
|
+
declare const meta: Meta<typeof VvDialog>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof VvDialog>;
|
|
6
|
+
export declare const Standard: Story;
|
|
7
|
+
export declare const Small: Story;
|
|
8
|
+
export declare const Fullscreen: Story;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volverjs/ui-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.10-beta.
|
|
4
|
+
"version": "0.0.10-beta.38",
|
|
5
5
|
"description": "@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.",
|
|
6
6
|
"author": "8 Wave S.r.l.",
|
|
7
7
|
"license": "MIT",
|