Fix globals

This commit is contained in:
Tom Coleman 2021-09-08 15:10:00 +10:00
parent 23254408d1
commit abbd38f69c
2 changed files with 9 additions and 2 deletions

View File

@ -196,10 +196,16 @@ export class ClientApi<TFramework extends AnyFramework> {
parameters
);
if (globals) {
this.facade.projectAnnotations.globals = globals;
this.facade.projectAnnotations.globals = {
...this.facade.projectAnnotations.globals,
...globals,
};
}
if (globalTypes) {
this.facade.projectAnnotations.globalTypes = normalizeInputTypes(globalTypes);
this.facade.projectAnnotations.globalTypes = {
...this.facade.projectAnnotations.globalTypes,
...normalizeInputTypes(globalTypes),
};
}
};

View File

@ -150,6 +150,7 @@ export function prepareStory<TFramework extends AnyFramework>(
contextForEnhancers.parameters = {
...contextForEnhancers.parameters,
__id: id,
globals: projectAnnotations.globals,
globalTypes: projectAnnotations.globalTypes,
args: contextForEnhancers.initialArgs,
argTypes: contextForEnhancers.argTypes,