Addon-docs: Only pass args for the primary component

This commit is contained in:
Michael Shilman 2020-04-15 16:13:30 +08:00
parent c577129fa9
commit 3e7478c64d

View File

@ -32,8 +32,9 @@ export const enhanceArgTypes: ArgTypesEnhancer = (context) => {
extractedArgTypes = Object.entries(componentArgTypes).reduce((acc, [label, compTypes]) => {
if (compTypes) {
Object.entries(compTypes).forEach(([key, argType]) => {
const subLabel = label === 'Primary' ? key : camelCase(`${label} ${key}`);
acc[subLabel] = argType;
if (label === 'Primary') {
acc[key] = argType;
}
});
}
return acc;