diff --git a/src/components/Select/Select.stories.ts b/src/components/Select/Select.stories.ts index 7d2cea1ce90183f2c8d68d80397205d9b4ff77c5..c12c0e86922f7d0e441ad0d3cf7cfe81912127be 100644 --- a/src/components/Select/Select.stories.ts +++ b/src/components/Select/Select.stories.ts @@ -19,12 +19,12 @@ const meta: Meta = { filtered: { control: 'boolean' }, disabled: { control: 'boolean' }, noHighlight: { control: 'boolean' }, + fontSize: { control: 'text' }, placeholder: { control: 'text' }, name: { control: 'text' }, openIcon: { control: 'select', options: Object.keys(iconsSet) }, size: { control: 'select', options: ['small', 'normal', 'large', 'huge'] }, darknessTheme: { control: 'select', options: ['100', '200', '300', '400', '500', '600', '700', '800', '900'] }, - darknessBackground: { control: 'select', options: ['100', '200', '300', '400', '500', '600', '700', '800', '900'] }, darknessOpenIcon: { control: 'select', options: ['100', '200', '300', '400', '500', '600', '700', '800', '900'] }, theme: { control: 'select', @@ -46,26 +46,6 @@ const meta: Meta = { 'black', ], }, - background: { - control: 'select', - options: [ - 'white', - 'blue', - 'sky', - 'cyan', - 'teal', - 'green', - 'yellow', - 'orange', - 'pink', - 'fuchsia', - 'purple', - 'indigo', - 'rose', - 'red', - 'black', - ], - }, openIconColor: { control: 'select', options: [ @@ -165,9 +145,7 @@ export const Full: Story = { size: 'normal', width: '250px', theme: 'sky', - background: 'sky', - darknessTheme: '700', - darknessBackground: '200', + darknessTheme: '200', openIconColor: 'sky', filtered: true, }, diff --git a/src/components/Select/Select.vue b/src/components/Select/Select.vue index 21428127f4026ff0519b3947119253806d8aadd5..645e64c0af7cd655b49478785b81c35e305eb757 100644 --- a/src/components/Select/Select.vue +++ b/src/components/Select/Select.vue @@ -1,7 +1,7 @@