@volverjs/ui-vue 0.0.10-beta.1 → 0.0.10-beta.2
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 +64 -1
- package/auto-imports.d.ts +1 -1
- package/bin/icons.cjs +1 -1
- package/bin/icons.js +13 -5
- package/dist/components/VvAccordion/index.d.ts +1 -1
- package/dist/components/VvCheckbox/index.d.ts +1 -1
- package/dist/components/VvCombobox/VvCombobox.vue.d.ts +66 -66
- package/dist/components/VvCombobox/index.d.ts +22 -22
- package/dist/components/VvDropdown/VvDropdown.vue.d.ts +156 -156
- package/dist/components/VvDropdown/index.d.ts +22 -22
- package/dist/components/VvRadio/index.d.ts +1 -1
- package/dist/composables/group/useInjectedGroupState.d.ts +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/dist/props/index.d.ts +22 -22
- package/package.json +7 -6
- 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/stories/Button/ButtonModifiers.stories.ts +4 -14
|
@@ -3,7 +3,6 @@ import VvButton from '@/components/VvButton/VvButton.vue'
|
|
|
3
3
|
import { Default } from './Button.stories'
|
|
4
4
|
import { argTypes, defaultArgs } from './Button.settings'
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
const meta: Meta<typeof VvButton> = {
|
|
8
7
|
title: 'Components/Button/Modifiers',
|
|
9
8
|
component: VvButton,
|
|
@@ -70,9 +69,6 @@ export const StaticLight: Story = {
|
|
|
70
69
|
},
|
|
71
70
|
render: (args) => ({
|
|
72
71
|
components: { VvButton },
|
|
73
|
-
backgrounds: {
|
|
74
|
-
default: 'dark',
|
|
75
|
-
},
|
|
76
72
|
setup() {
|
|
77
73
|
return { args }
|
|
78
74
|
},
|
|
@@ -81,23 +77,18 @@ export const StaticLight: Story = {
|
|
|
81
77
|
<vv-button v-bind="args" data-testId="element" />
|
|
82
78
|
</div>
|
|
83
79
|
`,
|
|
84
|
-
})
|
|
85
|
-
|
|
80
|
+
}),
|
|
86
81
|
}
|
|
87
82
|
|
|
88
|
-
|
|
89
83
|
export const StaticDark: Story = {
|
|
90
84
|
...Default,
|
|
91
85
|
args: {
|
|
92
86
|
...Default.args,
|
|
93
|
-
label: 'Static
|
|
94
|
-
modifiers: 'static-
|
|
87
|
+
label: 'Static dark',
|
|
88
|
+
modifiers: 'static-dark',
|
|
95
89
|
},
|
|
96
90
|
render: (args) => ({
|
|
97
91
|
components: { VvButton },
|
|
98
|
-
backgrounds: {
|
|
99
|
-
default: 'dark',
|
|
100
|
-
},
|
|
101
92
|
setup() {
|
|
102
93
|
return { args }
|
|
103
94
|
},
|
|
@@ -106,7 +97,7 @@ export const StaticDark: Story = {
|
|
|
106
97
|
<vv-button v-bind="args" data-testId="element" />
|
|
107
98
|
</div>
|
|
108
99
|
`,
|
|
109
|
-
})
|
|
100
|
+
}),
|
|
110
101
|
}
|
|
111
102
|
|
|
112
103
|
export const Block: Story = {
|
|
@@ -137,7 +128,6 @@ export const FullBleed: Story = {
|
|
|
137
128
|
},
|
|
138
129
|
}
|
|
139
130
|
|
|
140
|
-
|
|
141
131
|
export const Action: Story = {
|
|
142
132
|
...Default,
|
|
143
133
|
args: {
|