Skip to content

Commit

Permalink
Merge pull request #26578 from storybookjs/version-non-patch-from-8.1…
Browse files Browse the repository at this point in the history
….0-alpha.3

Release: Prerelease 8.1.0-alpha.4
  • Loading branch information
shilman authored Mar 21, 2024
2 parents ac8e907 + 7bc4b4c commit 5e31038
Show file tree
Hide file tree
Showing 249 changed files with 10,315 additions and 8,806 deletions.
672 changes: 336 additions & 336 deletions .yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ nodeLinker: node-modules

npmPublishAccess: public

yarnPath: .yarn/releases/yarn-4.0.2.cjs
yarnPath: .yarn/releases/yarn-4.1.1.cjs
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 8.0.2

- Addon Docs: Fix [Object object] displayName in some JSX components - [#26566](https://github.com/storybookjs/storybook/pull/26566), thanks @yannbf!
- CLI: Add yarn1 package manager fallback for init in empty directory - [#26500](https://github.com/storybookjs/storybook/pull/26500), thanks @valentinpalkovic!
- CSF: Make sure loaders/decorators can be used as array - [#26514](https://github.com/storybookjs/storybook/pull/26514), thanks @kasperpeulen!
- Controls: Fix disable condition in ArgControl component - [#26567](https://github.com/storybookjs/storybook/pull/26567), thanks @valentinpalkovic!
- UI: Add key property to list children in Highlight component - [#26471](https://github.com/storybookjs/storybook/pull/26471), thanks @valentinpalkovic!
- UI: Fix theming of elements inside bars - [#26527](https://github.com/storybookjs/storybook/pull/26527), thanks @valentinpalkovic!
- UI: Improve empty state of addon panel - [#26481](https://github.com/storybookjs/storybook/pull/26481), thanks @yannbf!

## 8.0.1

- Controls: Fix type summary when table.type unset - [#26283](https://github.com/storybookjs/storybook/pull/26283), thanks @shilman!
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.prerelease.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 8.1.0-alpha.4

- Addon Docs: Support Stencil based display names in source snippets - [#26592](https://github.com/storybookjs/storybook/pull/26592), thanks @yannbf!
- Angular: Add type support for Angular's input signals - [#26413](https://github.com/storybookjs/storybook/pull/26413), thanks @valentinpalkovic!
- Angular: Add type support for Angular's output signals - [#26546](https://github.com/storybookjs/storybook/pull/26546), thanks @valentinpalkovic!
- CLI: Instruct the correct auto-migration command - [#26515](https://github.com/storybookjs/storybook/pull/26515), thanks @ndelangen!
- CLI: Throw an error when running upgrade command in incorrect cwd - [#26585](https://github.com/storybookjs/storybook/pull/26585), thanks @yannbf!
- CSF: Allow default export without title or component attributes - [#26516](https://github.com/storybookjs/storybook/pull/26516), thanks @kasperpeulen!
- Core: Fix preloading too early - [#26442](https://github.com/storybookjs/storybook/pull/26442), thanks @ndelangen!
- UI: Replace the icon prop in the Manager API - [#26477](https://github.com/storybookjs/storybook/pull/26477), thanks @cdedreuille!

## 8.1.0-alpha.3

- Addon Docs: Fix [Object object] displayName in some JSX components - [#26566](https://github.com/storybookjs/storybook/pull/26566), thanks @yannbf!
Expand Down
4 changes: 4 additions & 0 deletions code/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Nx 18 enables using plugins to infer targets by default
# This is disabled for existing workspaces to maintain compatibility
# For more info, see: https://nx.dev/concepts/inferred-tasks
NX_ADD_PLUGINS=false
7 changes: 7 additions & 0 deletions code/.nxignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Seems like NX get confused as our gitignore directory is not in the NX root
dist
node_modules
storybook-static
tsconfig.tsbuildinfo
coverage
fixtures
13 changes: 12 additions & 1 deletion code/.yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,20 @@ plugins:
- path: ../.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: '@yarnpkg/plugin-workspace-tools'

# See https://github.com/nrwl/nx/issues/22177
supportedArchitectures:
cpu:
- current
- x64
- arm64
os:
- current
- linux
- darwin

unsafeHttpWhitelist:
- localhost

yarnPath: ../.yarn/releases/yarn-4.0.2.cjs
yarnPath: ../.yarn/releases/yarn-4.1.1.cjs
# Sometimes you get a "The remote archive doesn't match the expected checksum" error, uncommenting this line will fix it
# checksumBehavior: 'update'
7 changes: 4 additions & 3 deletions code/addons/a11y/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-a11y",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/a11y/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/actions/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-actions",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/actions/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/backgrounds/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-backgrounds",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/backgrounds/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/controls/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-controls",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/controls/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/docs/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-docs",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/docs/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/essentials/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-essentials",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/essentials/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/gfm/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-mdx-gfm",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/gfm/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/highlight/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-highlight",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
1 change: 0 additions & 1 deletion code/addons/highlight/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"],
"strict": true
},
Expand Down
2 changes: 0 additions & 2 deletions code/addons/highlight/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/interactions/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-interactions",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/interactions/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/jest/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-jest",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/jest/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/links/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-links",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/links/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/measure/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-measure",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
2 changes: 0 additions & 2 deletions code/addons/measure/vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { defineConfig, mergeConfig } from 'vitest/config';
import { sep, posix } from 'path';
import { vitestCommonConfig } from '../../vitest.workspace';

export default mergeConfig(
vitestCommonConfig,
defineConfig({
test: {
environment: 'jsdom',
name: __dirname.split(sep).slice(-2).join(posix.sep),
},
})
);
7 changes: 4 additions & 3 deletions code/addons/onboarding/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@storybook/addon-onboarding",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"implicitDependencies": [],
"type": "library"
"projectType": "library",
"targets": {
"build": {}
}
}
Loading

0 comments on commit 5e31038

Please sign in to comment.