mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +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]) => {
|
extractedArgTypes = Object.entries(componentArgTypes).reduce((acc, [label, compTypes]) => {
|
||||||
if (compTypes) {
|
if (compTypes) {
|
||||||
Object.entries(compTypes).forEach(([key, argType]) => {
|
Object.entries(compTypes).forEach(([key, argType]) => {
|
||||||
const subLabel = label === 'Primary' ? key : camelCase(`${label} ${key}`);
|
if (label === 'Primary') {
|
||||||
acc[subLabel] = argType;
|
acc[key] = argType;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return acc;
|
return acc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user