mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:31:15 +08:00
parent
a7ba16a096
commit
5683c4baae
@ -13,7 +13,7 @@ const limit = pLimit(1);
|
||||
*/
|
||||
export const prepareForInline = (
|
||||
storyFn: PartialStoryFn<AngularFramework>,
|
||||
{ id, parameters }: StoryContext
|
||||
{ id, parameters, component }: StoryContext
|
||||
) => {
|
||||
return React.createElement('div', {
|
||||
ref: async (node?: HTMLDivElement): Promise<void> => {
|
||||
@ -25,6 +25,7 @@ export const prepareForInline = (
|
||||
const renderer = await rendererFactory.getRendererInstance(`${id}-${nanoid(10)}`, node);
|
||||
await renderer.render({
|
||||
forced: false,
|
||||
component,
|
||||
parameters,
|
||||
storyFnAngular: storyFn(),
|
||||
targetDOMNode: node,
|
||||
|
@ -104,7 +104,7 @@ export abstract class AbstractRenderer {
|
||||
}: {
|
||||
storyFnAngular: StoryFnAngularReturnType;
|
||||
forced: boolean;
|
||||
component?: any;
|
||||
component: any;
|
||||
parameters: Parameters;
|
||||
targetDOMNode: HTMLElement;
|
||||
}) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user