Merge branch 'next' into norbert/delete-deprecated

This commit is contained in:
Norbert de Langen 2025-02-27 13:29:02 +01:00 committed by GitHub
commit 4e3d4f6435
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,8 @@
## 8.6.1
- CSF: Only export definePreview from the framework - [#30676](https://github.com/storybookjs/storybook/pull/30676), thanks @kasperpeulen!
- Codemod: Only remove types when they are unused - [#30644](https://github.com/storybookjs/storybook/pull/30644), thanks @yannbf!
## 8.6.0
The 8.6 release focuses on [Storybook Test](https://storybook.js.org/blog/storybook-test-sneak-peek/), which brings realtime component, accessibility, and visual UI tests to your favorite component workshop.

View File

@ -25,7 +25,7 @@ import addonTest from '@storybook/experimental-addon-test';
import { definePreview } from '@storybook/react-vite';
import addonA11y from '@storybook/addon-a11y';
import addonEssentials from '@storybook/addon-essentials';
import * as addonEssentials from '@storybook/addon-essentials/entry-preview';
import addonThemes from '@storybook/addon-themes';
import * as addonsPreview from '../addons/toolbars/template/stories/preview';
@ -372,7 +372,7 @@ const parameters = {
export default definePreview({
addons: [
addonThemes(),
addonEssentials(),
addonEssentials,
addonA11y(),
addonTest(),
addonsPreview,

View File

@ -25,7 +25,8 @@ function addNextHeadCount() {
function isAsyncClientComponentError(error: unknown) {
return (
typeof error === 'string' &&
(error.includes('A component was suspended by an uncached promise.') ||
(error.includes('Only Server Components can be async at the moment.') ||
error.includes('A component was suspended by an uncached promise.') ||
error.includes('async/await is not yet supported in Client Components'))
);
}

View File

@ -30,7 +30,8 @@ function addNextHeadCount() {
function isAsyncClientComponentError(error: unknown) {
return (
typeof error === 'string' &&
(error.includes('A component was suspended by an uncached promise.') ||
(error.includes('Only Server Components can be async at the moment.') ||
error.includes('A component was suspended by an uncached promise.') ||
error.includes('async/await is not yet supported in Client Components'))
);
}

View File

@ -235,7 +235,7 @@ export const baseTemplates = {
'experimental-nextjs-vite/default-ts': {
name: 'Next.js Latest (Vite | TypeScript)',
script:
'npx create-next-app {{beforeDir}} --eslint --tailwind --app --import-alias="@/*" --src-dir',
'npx create-next-app {{beforeDir}} --eslint --no-tailwind --app --import-alias="@/*" --src-dir',
expected: {
framework: '@storybook/experimental-nextjs-vite',
renderer: '@storybook/react',

View File

@ -330,6 +330,7 @@ export async function doInitiate(options: CommandOptions): Promise<
choices: Object.entries(selectableFeatures).map(([value, { name, description }]) => ({
title: `${name}: ${description}`,
value,
selected: true,
})),
});
selectedFeatures = new Set(out.features);

View File

@ -66,7 +66,7 @@ interface ReactMeta<
): ReactStory;
story<
const TInput extends Simplify<
TInput extends Simplify<
StoryAnnotations<
ReactRenderer,
// TODO: infer mocks from story itself as well