mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
FIX Proptype & add example
This commit is contained in:
parent
64301bf7cb
commit
3908fd3e00
@ -36,7 +36,7 @@ SelectType.defaultProps = {
|
||||
SelectType.propTypes = {
|
||||
knob: PropTypes.shape({
|
||||
name: PropTypes.string,
|
||||
value: PropTypes.string,
|
||||
value: PropTypes.any,
|
||||
options: PropTypes.oneOfType([PropTypes.array, PropTypes.object]),
|
||||
}),
|
||||
onChange: PropTypes.func,
|
||||
|
@ -190,6 +190,20 @@ storiesOf('Addons|Knobs.withKnobs', module)
|
||||
</div>
|
||||
);
|
||||
})
|
||||
.add('complex select', () => {
|
||||
const m = select(
|
||||
'complex',
|
||||
{
|
||||
number: 1,
|
||||
string: 'string',
|
||||
object: {},
|
||||
array: [],
|
||||
},
|
||||
'string'
|
||||
);
|
||||
const value = m.toString();
|
||||
return <pre>{value}</pre>;
|
||||
})
|
||||
.add('triggers actions via button', () => {
|
||||
button('Toggle item list state', () => {
|
||||
if (!injectedIsLoading && injectedItems.length === 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user