mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:11:07 +08:00
Merge pull request #7645 from christianliebel/patch-2
Knobs documentation: add missing groupId parameter demos
This commit is contained in:
commit
3507d50ca6
@ -323,8 +323,9 @@ const options = {
|
||||
Watermelon: 'watermelon',
|
||||
};
|
||||
const defaultValue = 'kiwi';
|
||||
const groupId = 'GROUP-ID1';
|
||||
|
||||
const value = radios(label, options, defaultValue);
|
||||
const value = radios(label, options, defaultValue, groupId);
|
||||
```
|
||||
|
||||
### options
|
||||
@ -344,8 +345,9 @@ const defaultValue = 'kiwi';
|
||||
const optionsObj = {
|
||||
display: 'inline-radio'
|
||||
};
|
||||
const groupId = 'GROUP-ID1';
|
||||
|
||||
const value = options(label, valuesObj, defaultValue, optionsObj);
|
||||
const value = options(label, valuesObj, defaultValue, optionsObj, groupId);
|
||||
```
|
||||
> The display property for `optionsObj` accepts:
|
||||
> - `radio`
|
||||
@ -365,8 +367,9 @@ import { files } from '@storybook/addon-knobs';
|
||||
const label = 'Images';
|
||||
const accept = '.xlsx, .pdf';
|
||||
const defaultValue = [];
|
||||
const groupId = 'GROUP-ID1';
|
||||
|
||||
const value = files(label, accept, defaultValue);
|
||||
const value = files(label, accept, defaultValue, groupId);
|
||||
```
|
||||
|
||||
> You can optionally specify a [list of file types](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept) which the file input should accept.
|
||||
|
Loading…
x
Reference in New Issue
Block a user