Merge branch 'next' into tech/bundle-preview-web

This commit is contained in:
Norbert de Langen 2022-10-27 23:56:25 +02:00
commit 2654c8eb1c
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 4 additions and 3 deletions

View File

@ -223,7 +223,7 @@ jobs:
yarn lint
check:
executor:
class: medium+
class: large
name: sb_node_16_classic
steps:
- git-shallow-clone/checkout_advanced:

View File

@ -2,7 +2,8 @@ import global from 'global';
import type { Store_RenderContext, ArgsStoryFn } from '@storybook/types';
import { SvelteComponentTyped } from 'svelte';
import PreviewRender from '../templates/PreviewRender.svelte';
// eslint-disable-next-line import/no-extraneous-dependencies
import PreviewRender from '@storybook/svelte/templates/PreviewRender.svelte';
import { SvelteFramework } from './types';

View File

@ -200,6 +200,6 @@ Heres an example of how to render Vue stories inline. The following docs conf
<!-- prettier-ignore-end -->
With this function, anyone using the docs addon for [@storybook/vue](https://github.com/storybookjs/storybook/tree/master/frameworks/vue-webpack5) can make their stories render inline, either globally with the inlineStories docs parameter, or on a per-story-basis using the inline prop on the `<Story>` doc block.
With this function, anyone using the docs addon for [@storybook/vue](https://github.com/storybookjs/storybook/blob/next/code/frameworks/vue-webpack5/README.md) can make their stories render inline, either globally with the inlineStories docs parameter, or on a per-story-basis using the inline prop on the `<Story>` doc block.
If you come up with an elegant and flexible implementation for the `prepareForInline` function for your framework, let us know. We'd love to make it the default configuration to make inline stories more accessible for a larger variety of frameworks!