Skip to content

Commit df82d66

Browse files
committed
Rename 'inline styling' to 'styles'
1 parent 05bb34e commit df82d66

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

packages/uui-avatar-group/lib/uui-avatar-group.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const AAAOverview: Story = props => html`
2626
`;
2727
AAAOverview.args = { fontSize: 2, '--uui-avatar-border-color': 'white' };
2828
AAAOverview.argTypes = {
29-
fontSize: { table: { category: 'inline styling' } },
29+
fontSize: { table: { category: 'Styles' } },
3030
'--uui-avatar-border-color': { control: { type: 'color' } },
3131
};
3232
AAAOverview.parameters = {};

packages/uui-avatar/lib/uui-avatar.story.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ export const AAAOverview = Template.bind({});
4444
AAAOverview.storyName = 'Overview';
4545
AAAOverview.args = { color: '#1b264f', backgroundColor: '#f5c1bc' };
4646
AAAOverview.argTypes = {
47-
color: { table: { category: 'inline styling' } },
48-
backgroundColor: { table: { category: 'inline styling' } },
49-
fontSize: { table: { category: 'inline styling' } },
47+
color: { table: { category: 'Styles' } },
48+
backgroundColor: { table: { category: 'Styles' } },
49+
fontSize: { table: { category: 'Styles' } },
5050
};
5151
AAAOverview.parameters = {
5252
docs: {
@@ -69,7 +69,7 @@ Picture.parameters = {
6969

7070
export const Sizes = Template.bind({});
7171
Sizes.argTypes = {
72-
fontSize: { table: { category: 'inline styling' } },
72+
fontSize: { table: { category: 'Styles' } },
7373
};
7474
Sizes.parameters = {
7575
controls: { include: ['fontSize', 'name'] },
@@ -83,8 +83,8 @@ Sizes.parameters = {
8383
export const Colors = Template.bind({});
8484
Colors.args = { color: 'white', backgroundColor: 'blue' };
8585
Colors.argTypes = {
86-
color: { table: { category: 'inline styling' } },
87-
backgroundColor: { table: { category: 'inline styling' } },
86+
color: { table: { category: 'Styles' } },
87+
backgroundColor: { table: { category: 'Styles' } },
8888
};
8989
Colors.parameters = {
9090
controls: { include: ['backgroundColor', 'color', 'name'] },

packages/uui-loader-bar/lib/uui-loader-bar.story.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const AAAOverview = Template.bind({});
3434
AAAOverview.storyName = 'Overview';
3535
AAAOverview.args = { color: '' };
3636
AAAOverview.argTypes = {
37-
color: { table: { category: 'inline styling' } },
37+
color: { table: { category: 'Styles' } },
3838
};
3939
AAAOverview.parameters = {
4040
docs: {
@@ -47,7 +47,7 @@ AAAOverview.parameters = {
4747
export const Color = Template.bind({});
4848
Color.args = { color: 'blue' };
4949
Color.argTypes = {
50-
color: { table: { category: 'inline styling' } },
50+
color: { table: { category: 'Styles' } },
5151
};
5252
Color.parameters = {
5353
docs: {

packages/uui-loader-circle/lib/uui-loader-circle.story.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ AAAOverview.storyName = 'Overview';
3434

3535
AAAOverview.args = { color: '' };
3636
AAAOverview.argTypes = {
37-
color: { table: { category: 'inline styling' } },
37+
color: { table: { category: 'Styles' } },
3838
};
3939
AAAOverview.parameters = {
4040
docs: {
@@ -47,7 +47,7 @@ AAAOverview.parameters = {
4747
export const Color = Template.bind({});
4848
Color.args = { color: 'blue' };
4949
Color.argTypes = {
50-
color: { table: { category: 'inline styling' } },
50+
color: { table: { category: 'Styles' } },
5151
};
5252
Color.parameters = {
5353
controls: { include: ['color', 'progress'] },

packages/uui-loader/lib/uui-loader.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ export const Overview: Story = props =>
2222
style=${props.color ? 'color: ' + props.color : ''}></uui-loader>`;
2323
Overview.args = { color: '' };
2424
Overview.argTypes = {
25-
color: { table: { category: 'inline styling' } },
25+
color: { table: { category: 'Styles' } },
2626
};

0 commit comments

Comments
 (0)