@1024pix/pix-ui 46.2.1 → 46.3.0
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/addon/components/pix-button-base.js +1 -1
- package/app/stories/pix-button-link.stories.js +1 -1
- package/app/stories/pix-button-upload.stories.js +1 -1
- package/app/stories/pix-button.mdx +1 -1
- package/app/stories/pix-button.stories.js +3 -4
- package/app/stories/pix-icon-button.mdx +3 -3
- package/app/stories/pix-icon-button.stories.js +2 -2
- package/package.json +1 -1
|
@@ -122,7 +122,7 @@ export default {
|
|
|
122
122
|
control: { type: 'select' },
|
|
123
123
|
table: {
|
|
124
124
|
type: { summary: 'string' },
|
|
125
|
-
defaultValue: { summary: '
|
|
125
|
+
defaultValue: { summary: 'small' },
|
|
126
126
|
},
|
|
127
127
|
},
|
|
128
128
|
isBorderVisible: {
|
|
@@ -182,7 +182,6 @@ const Template = (args) => ({
|
|
|
182
182
|
export const Default = Template.bind({});
|
|
183
183
|
Default.args = {
|
|
184
184
|
loadingColor: 'white',
|
|
185
|
-
size: 'large',
|
|
186
185
|
variant: 'primary',
|
|
187
186
|
label: 'Bouton',
|
|
188
187
|
};
|
|
@@ -266,6 +265,6 @@ loader.args = {
|
|
|
266
265
|
export const size = Template.bind({});
|
|
267
266
|
size.args = {
|
|
268
267
|
...Default.args,
|
|
269
|
-
label: 'Bouton
|
|
270
|
-
size: '
|
|
268
|
+
label: 'Bouton large',
|
|
269
|
+
size: 'large',
|
|
271
270
|
};
|
|
@@ -13,11 +13,11 @@ Le bouton en version big et sans fond grisé.
|
|
|
13
13
|
|
|
14
14
|
<Story of={ComponentStories.Default} height={60} />
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Size
|
|
17
17
|
|
|
18
|
-
Le bouton en version small.
|
|
18
|
+
Le bouton en version small. (big étant la valeur par défaut)
|
|
19
19
|
|
|
20
|
-
<Story of={ComponentStories.
|
|
20
|
+
<Story of={ComponentStories.size} height={60} />
|
|
21
21
|
|
|
22
22
|
## With Background
|
|
23
23
|
|