Merge pull request #11015 from matheo/fix/controls

Addon-controls: Remove residual options-type controls
This commit is contained in:
Michael Shilman 2020-06-04 06:33:11 +08:00 committed by GitHub
commit 71d99f5db4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 6 deletions

View File

@ -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"
]
}
}
`);

View File

@ -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' } },
}}

View File

@ -14,5 +14,5 @@ export const ButtonWithProps = (args: any) => ({
},
});
ButtonWithProps.argTypes = {
size: { control: { type: 'options', options: ButtonSizes } },
size: { control: { type: 'select', options: ButtonSizes } },
};