Skip to content

Commit 9e069c5

Browse files
committed
Merge branch 'next' into StoryRender-renderId
2 parents 0179146 + 5ba8775 commit 9e069c5

File tree

66 files changed

+568
-258
lines changed

Some content is hidden

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

66 files changed

+568
-258
lines changed

CHANGELOG.prerelease.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 9.1.0-beta.2
2+
3+
- Test: Consider exports map - [#32157](https://github.com/storybookjs/storybook/pull/32157), thanks @valentinpalkovic!
4+
- Test: Invalidate vite cache for manual mocks - [#32152](https://github.com/storybookjs/storybook/pull/32152), thanks @valentinpalkovic!
5+
6+
## 9.1.0-beta.1
7+
8+
- Automigration: Await updateMainConfig in removeEssentials - [#32140](https://github.com/storybookjs/storybook/pull/32140), thanks @valentinpalkovic!
9+
- Docs: Update @storybook/icons - [#32144](https://github.com/storybookjs/storybook/pull/32144), thanks @valentinpalkovic!
10+
- Init: Exclude mdx stories when docs feature isn't selected during init - [#32142](https://github.com/storybookjs/storybook/pull/32142), thanks @valentinpalkovic!
11+
112
## 9.1.0-beta.0
213

314
- Core: Avoid pausing animations in non-Vitest Playwright environments - [#32123](https://github.com/storybookjs/storybook/pull/32123), thanks @ghengeveld!

code/.storybook/preview.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ sb.mock(import('../core/template/stories/test/ModuleAutoMocking.utils'));
4141
sb.mock(import('lodash-es'));
4242
sb.mock(import('lodash-es/add'));
4343
sb.mock(import('lodash-es/sum'));
44+
sb.mock(import('uuid'));
4445

4546
const { document } = global;
4647
globalThis.CONFIG_TYPE = 'DEVELOPMENT';

code/__mocks__/uuid.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export function v4() {
2+
return 'MOCK-V4';
3+
}

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": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "Test component compliance with web accessibility standards",
55
"keywords": [
66
"a11y",

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": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "Document component usage and properties in Markdown",
55
"keywords": [
66
"addon",

code/addons/jest/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-jest",
3-
"version": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "React storybook addon that show component jest report",
55
"keywords": [
66
"addon",

code/addons/links/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-links",
3-
"version": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "Link stories together to build demos and prototypes with your UI components",
55
"keywords": [
66
"storybook-addons",

code/addons/onboarding/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-onboarding",
3-
"version": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "Storybook Addon Onboarding - Introduces a new onboarding experience",
55
"keywords": [
66
"storybook-addons",

code/addons/pseudo-states/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-pseudo-states",
3-
"version": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "CSS pseudo states for Storybook",
55
"keywords": [
66
"storybook",

code/addons/themes/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-themes",
3-
"version": "9.1.0-beta.0",
3+
"version": "9.1.0-beta.2",
44
"description": "Switch between multiple themes for you components in Storybook",
55
"keywords": [
66
"css",

0 commit comments

Comments
 (0)