@storybook/react-webpack5 9.0.0-rc.4 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/react-webpack5",
|
3
|
-
"version": "9.0.0
|
3
|
+
"version": "9.0.0",
|
4
4
|
"description": "Storybook for React: Develop React Component in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -54,9 +54,9 @@
|
|
54
54
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
55
55
|
},
|
56
56
|
"dependencies": {
|
57
|
-
"@storybook/builder-webpack5": "9.0.0
|
58
|
-
"@storybook/preset-react-webpack": "9.0.0
|
59
|
-
"@storybook/react": "9.0.0
|
57
|
+
"@storybook/builder-webpack5": "9.0.0",
|
58
|
+
"@storybook/preset-react-webpack": "9.0.0",
|
59
|
+
"@storybook/react": "9.0.0"
|
60
60
|
},
|
61
61
|
"devDependencies": {
|
62
62
|
"@types/node": "^22.0.0"
|
@@ -64,7 +64,7 @@
|
|
64
64
|
"peerDependencies": {
|
65
65
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
66
66
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
67
|
-
"storybook": "^9.0.0
|
67
|
+
"storybook": "^9.0.0",
|
68
68
|
"typescript": ">= 4.9.x"
|
69
69
|
},
|
70
70
|
"peerDependenciesMeta": {
|
@@ -13,7 +13,7 @@ export default {
|
|
13
13
|
|
14
14
|
export const LoggedOut = {};
|
15
15
|
|
16
|
-
// More on component testing: https://storybook.js.org/docs/writing-tests/
|
16
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
|
17
17
|
export const LoggedIn = {
|
18
18
|
play: async ({ canvasElement }) => {
|
19
19
|
const canvas = within(canvasElement);
|
@@ -18,7 +18,7 @@ type Story = StoryObj<typeof meta>;
|
|
18
18
|
|
19
19
|
export const LoggedOut: Story = {};
|
20
20
|
|
21
|
-
// More on component testing: https://storybook.js.org/docs/writing-tests/
|
21
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
|
22
22
|
export const LoggedIn: Story = {
|
23
23
|
play: async ({ canvasElement }) => {
|
24
24
|
const canvas = within(canvasElement);
|