FIX Proptype & add example

This commit is contained in:
Norbert de Langen 2018-10-17 15:11:26 +02:00
parent 64301bf7cb
commit 3908fd3e00
No known key found for this signature in database
GPG Key ID: 976651DA156C2825
2 changed files with 15 additions and 1 deletions

View File

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

View File

@ -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) {