mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
working on getting more documentation.
This commit is contained in:
parent
a984acc52b
commit
edd6b6920a
@ -36,13 +36,18 @@ export default class PropTable extends React.Component {
|
||||
continue;
|
||||
}
|
||||
const typeInfo = type.propTypes[property];
|
||||
const propType = PropTypesMap.get(typeInfo) || 'other';
|
||||
let propType = PropTypesMap.get(typeInfo) || 'other';
|
||||
const required = typeInfo.isRequired === undefined ? 'yes' : 'no';
|
||||
const description = type.__docgenInfo &&
|
||||
type.__docgenInfo.props &&
|
||||
type.__docgenInfo.props[property]
|
||||
? type.__docgenInfo.props[property].description
|
||||
: null;
|
||||
if (propType === 'other') {
|
||||
if (type.__docgenInfo && type.__docgenInfo.props && type.__docgenInfo.props[property]) {
|
||||
propType = type.__docgenInfo.props[property].type;
|
||||
}
|
||||
}
|
||||
props[property] = { property, propType, required, description };
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user