@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.
@@ -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 light',
94
- modifiers: 'static-light',
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: {