mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:51:07 +08:00
parent
735848f52e
commit
c4f70cacb2
@ -33,9 +33,10 @@ export const extractComponentSectionArray = (docgenSection: any) => {
|
||||
const typeSystem = getTypeSystem(docgenSection[0]);
|
||||
const createPropDef = getPropDefFactory(typeSystem);
|
||||
|
||||
return docgenSection
|
||||
.map((item: any) => extractProp(item.name, item, typeSystem, createPropDef))
|
||||
.filter(Boolean);
|
||||
return docgenSection.map((item: any) => {
|
||||
const sanitizedItem = { ...item, value: item.elements };
|
||||
return extractProp(sanitizedItem.name, sanitizedItem, typeSystem, createPropDef);
|
||||
});
|
||||
};
|
||||
|
||||
export const extractComponentSectionObject = (docgenSection: any) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user