Skip to content

Commit d20faea

Browse files
authored
Merge branch 'next' into fix/tags-filter-undefined
2 parents 2974cb8 + 6c85f9b commit d20faea

File tree

57 files changed

+134
-122
lines changed

Some content is hidden

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

57 files changed

+134
-122
lines changed

CHANGELOG.prerelease.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 10.3.0-alpha.11
2+
3+
- Addon Pseudo-states: Process all nested css rules - [#33605](https://github.com/storybookjs/storybook/pull/33605), thanks @hpohlmeyer!
4+
- Core: Avoid hanging when inferring args for recursive calls on DOM elemens - [#33922](https://github.com/storybookjs/storybook/pull/33922), thanks @valentinpalkovic!
5+
- Core: Sanitize inputs for save from controls - [#33868](https://github.com/storybookjs/storybook/pull/33868), thanks @valentinpalkovic!
6+
- Telemetry: Add project age - [#33910](https://github.com/storybookjs/storybook/pull/33910), thanks @shilman!
7+
- Viewport: Prioritize story viewport globals and avoid user-global pollution - [#33849](https://github.com/storybookjs/storybook/pull/33849), thanks @ia319!
8+
19
## 10.3.0-alpha.10
210

311
- Addon-Vitest: Fix postinstall a11y installation - [#33888](https://github.com/storybookjs/storybook/pull/33888), thanks @valentinpalkovic!

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.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Addon A11y: Test UI component compliance with WCAG 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": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Docs: Document UI components automatically with stories and MDX",
55
"keywords": [
66
"docs",

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": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Links: Link stories together to build demos and prototypes with your UI components",
55
"keywords": [
66
"storybook",

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": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Onboarding: Help new users learn how to write stories",
55
"keywords": [
66
"storybook",

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": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Pseudo-states addon: Manipulate CSS pseudo states",
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": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Themes addon: Switch between themes from the toolbar",
55
"keywords": [
66
"css",

code/addons/vitest/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-vitest",
3-
"version": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "Storybook Vitest addon: Blazing fast component testing using stories",
55
"keywords": [
66
"storybook",

code/builders/builder-vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@storybook/builder-vite",
3-
"version": "10.3.0-alpha.10",
3+
"version": "10.3.0-alpha.11",
44
"description": "A Storybook builder to dev and build with Vite",
55
"keywords": [
66
"storybook",

code/builders/builder-vite/src/build.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ export async function build(options: Options) {
4646
finalConfig.plugins?.push({
4747
name: 'storybook:enforce-output-dir',
4848
enforce: 'post',
49-
config: (config) => ({
50-
...config,
49+
config: () => ({
5150
build: {
5251
outDir: options.outputDir,
5352
},

0 commit comments

Comments
 (0)