@storybook/react 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",
|
|
3
|
-
"version": "9.0.0
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Storybook React renderer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@storybook/global": "^5.0.0",
|
|
75
|
-
"@storybook/react-dom-shim": "9.0.0
|
|
75
|
+
"@storybook/react-dom-shim": "9.0.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@types/babel-plugin-react-docgen": "^4.2.3",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"peerDependencies": {
|
|
99
99
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
100
100
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
|
101
|
-
"storybook": "^9.0.0
|
|
101
|
+
"storybook": "^9.0.0",
|
|
102
102
|
"typescript": ">= 4.9.x"
|
|
103
103
|
},
|
|
104
104
|
"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);
|