mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Addon-docs: Only pass args for the primary component
This commit is contained in:
parent
c577129fa9
commit
3e7478c64d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user