mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
Merge pull request #11015 from matheo/fix/controls
Addon-controls: Remove residual options-type controls
This commit is contained in:
commit
71d99f5db4
@ -136,18 +136,17 @@ describe('enhanceArgTypes', () => {
|
||||
it('options', () => {
|
||||
expect(
|
||||
enhance({
|
||||
argType: { control: { type: 'options', options: [1, 2], controlType: 'radio' } },
|
||||
argType: { control: { type: 'radio', options: [1, 2] } },
|
||||
}).input
|
||||
).toMatchInlineSnapshot(`
|
||||
{
|
||||
"name": "input",
|
||||
"control": {
|
||||
"type": "options",
|
||||
"type": "radio",
|
||||
"options": [
|
||||
1,
|
||||
2
|
||||
],
|
||||
"controlType": "radio"
|
||||
]
|
||||
}
|
||||
}
|
||||
`);
|
||||
|
@ -123,7 +123,7 @@ export const ArgsDisplay = (args = {}) => (
|
||||
argTypes={{
|
||||
count: { control: { type: 'range', min: 0, max: 10 } },
|
||||
label: {
|
||||
control: { type: 'options', options: ['apple', 'banana', 'cherry'] },
|
||||
control: { type: 'select', options: ['apple', 'banana', 'cherry'] },
|
||||
},
|
||||
background: { control: { type: 'color' } },
|
||||
}}
|
||||
|
@ -14,5 +14,5 @@ export const ButtonWithProps = (args: any) => ({
|
||||
},
|
||||
});
|
||||
ButtonWithProps.argTypes = {
|
||||
size: { control: { type: 'options', options: ButtonSizes } },
|
||||
size: { control: { type: 'select', options: ButtonSizes } },
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user