Skip to content

Commit 3f6da1e

Browse files
Merge branch 'next' into docs_fix_eslint_rules
2 parents ca6b5a4 + b439f83 commit 3f6da1e

File tree

136 files changed

+306
-211
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+306
-211
lines changed

CHANGELOG.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 10.1.11
2+
3+
- React: Fix several CSF factory bugs - [#33354](https://github.com/storybookjs/storybook/pull/33354), thanks @kasperpeulen!
4+
- UI: Fix React error 300 on some addons - [#33381](https://github.com/storybookjs/storybook/pull/33381), thanks @Sidnioulz!
5+
16
## 10.1.10
27

38
- Core: Fix `.env`-file parsing - [#33383](https://github.com/storybookjs/storybook/pull/33383), thanks @JReinhold!
@@ -297,10 +302,6 @@ It also includes features to level up your UI development, documentation, and te
297302

298303
</details>
299304

300-
## 9.1.17
301-
302-
- Core: Fix .env-file parsing, thanks @jreinhold!
303-
304305
## 9.1.16
305306

306307
- CLI: Fix Nextjs project creation in empty directories - [#32828](https://github.com/storybookjs/storybook/pull/32828), thanks @yannbf!
@@ -846,10 +847,6 @@ Unique contributors: 29
846847

847848
</details>
848849

849-
## 8.6.15
850-
851-
- Core: Fix .env-file parsing, thanks @jreinhold!
852-
853850
## 8.6.14
854851

855852
- CLI: Add skip onboarding, recommended/minimal config - [#30930](https://github.com/storybookjs/storybook/pull/30930), thanks @shilman!
@@ -1827,10 +1824,6 @@ It brings major improvements to Storybook's feature set for testing and document
18271824

18281825
Please checkout our [Migration Guide](https://storybook.js.org/docs/8.0/migration-guide) to upgrade from earlier versions of Storybook. To see a comprehensive list of changes that went into 8.0, you can refer to the [8.0 prerelease changelogs](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.prerelease.md).
18291826

1830-
## 7.6.21
1831-
1832-
- Core: Fix .env-file parsing, thanks @jreinhold!
1833-
18341827
## 7.6.17
18351828

18361829
- Addon-docs: Fix Table of Contents heading leak - [#23677](https://github.com/storybookjs/storybook/pull/23677), thanks [@vmizg](https://github.com/vmizg)!

CHANGELOG.prerelease.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 10.2.0-alpha.10
2+
3+
- Dependencies: Bump various packages - [#33412](https://github.com/storybookjs/storybook/pull/33412), thanks @ndelangen!
4+
- Interactions: Add disable parameter for interactions panel - [#33368](https://github.com/storybookjs/storybook/pull/33368), thanks @jeevikar14!
5+
- Interactions: Fix state reset bug when switching stories with date mocks - [#33388](https://github.com/storybookjs/storybook/pull/33388), thanks @Sidnioulz!
6+
- Manifests: Refactor from `componentManifestGenerator` to extensible `manifests` preset property - [#33392](https://github.com/storybookjs/storybook/pull/33392), thanks @JReinhold!
7+
- Manifests: Support `!manifest` tag in preview files - [#33406](https://github.com/storybookjs/storybook/pull/33406), thanks @JReinhold!
8+
- NextJS: Import `next/dist` with `.js`-extension for ESM compat - [#33380](https://github.com/storybookjs/storybook/pull/33380), thanks @yue4u!
9+
- Preview: Treat canceled animations as finished - [#32401](https://github.com/storybookjs/storybook/pull/32401), thanks @bawjensen!
10+
- UI: Ensure consistent right padding in TreeNode - [#33322](https://github.com/storybookjs/storybook/pull/33322), thanks @Sidnioulz!
11+
- UI: Fix React error 300 on some addons - [#33381](https://github.com/storybookjs/storybook/pull/33381), thanks @Sidnioulz!
12+
- UI: Prevent primary story from duplicating anchor ID - [#33384](https://github.com/storybookjs/storybook/pull/33384), thanks @Sidnioulz!
13+
- Upgrade: Preserve package.json indentation when upgrading - [#32280](https://github.com/storybookjs/storybook/pull/32280), thanks @y-hsgw!
14+
- Vitest: Fallback detecting vitest version in postinstall - [#33415](https://github.com/storybookjs/storybook/pull/33415), thanks @ndelangen!
15+
116
## 10.2.0-alpha.9
217

318
- Core and Vite: Use story index as source of truth for Vite paths - [#30612](https://github.com/storybookjs/storybook/pull/30612), thanks @JReinhold!

MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3668,7 +3668,7 @@ export default {
36683668
label: 'Click Me!',
36693669
},
36703670
parameters: {
3671-
chromatic: { disable: true },
3671+
chromatic: { disableSnapshot: true },
36723672
},
36733673
};
36743674
export const Basic = {

code/addons/a11y/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-a11y",
3-
"version": "10.2.0-alpha.9",
3+
"version": "10.2.0-alpha.10",
44
"description": "Storybook Addon A11y: Test UI component compliance with WCAG web accessibility standards",
55
"keywords": [
66
"a11y",

code/addons/a11y/template/stories/parameters.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
content: '<button>Click Me!</button>',
77
},
88
parameters: {
9-
chromatic: { disable: true },
9+
chromatic: { disableSnapshot: true },
1010
a11y: {
1111
test: 'error',
1212
},

code/addons/a11y/template/stories/tests.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
content: '',
77
},
88
parameters: {
9-
chromatic: { disable: true },
9+
chromatic: { disableSnapshot: true },
1010
},
1111
};
1212

code/addons/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/addon-docs",
3-
"version": "10.2.0-alpha.9",
3+
"version": "10.2.0-alpha.10",
44
"description": "Storybook Docs: Document UI components automatically with stories and MDX",
55
"keywords": [
66
"docs",

code/addons/docs/src/blocks/examples/Button.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export const ErrorStory: Story = {
136136
},
137137
args: { label: 'Button' },
138138
parameters: {
139-
chromatic: { disable: true },
139+
chromatic: { disableSnapshot: true },
140140
},
141141
tags: ['!test', '!vitest'],
142142
};

code/addons/docs/src/blocks/examples/ButtonNoAutodocs.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const meta = {
99
backgroundColor: { control: 'color' },
1010
},
1111
parameters: {
12-
chromatic: { disable: true },
12+
chromatic: { disableSnapshot: true },
1313
},
1414
} satisfies Meta<typeof Button>;
1515

code/addons/docs/src/blocks/examples/ButtonSomeAutodocs.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const meta = {
99
backgroundColor: { control: 'color' },
1010
},
1111
parameters: {
12-
chromatic: { disable: true },
12+
chromatic: { disableSnapshot: true },
1313
},
1414
} satisfies Meta<typeof Button>;
1515

0 commit comments

Comments
 (0)