@storybook/experimental-nextjs-vite 8.5.0 → 8.5.1
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/experimental-nextjs-vite",
|
3
|
-
"version": "8.5.
|
3
|
+
"version": "8.5.1",
|
4
4
|
"description": "Storybook for Next.js and Vite",
|
5
5
|
"keywords": [
|
6
6
|
"storybook",
|
@@ -95,10 +95,10 @@
|
|
95
95
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
96
96
|
},
|
97
97
|
"dependencies": {
|
98
|
-
"@storybook/builder-vite": "8.5.
|
99
|
-
"@storybook/react": "8.5.
|
100
|
-
"@storybook/react-vite": "8.5.
|
101
|
-
"@storybook/test": "8.5.
|
98
|
+
"@storybook/builder-vite": "8.5.1",
|
99
|
+
"@storybook/react": "8.5.1",
|
100
|
+
"@storybook/react-vite": "8.5.1",
|
101
|
+
"@storybook/test": "8.5.1",
|
102
102
|
"styled-jsx": "5.1.6",
|
103
103
|
"vite-plugin-storybook-nextjs": "^1.1.0"
|
104
104
|
},
|
@@ -108,11 +108,11 @@
|
|
108
108
|
"typescript": "^5.3.2"
|
109
109
|
},
|
110
110
|
"peerDependencies": {
|
111
|
-
"@storybook/test": "8.5.
|
111
|
+
"@storybook/test": "8.5.1",
|
112
112
|
"next": "^14.1.0 || ^15.0.0",
|
113
113
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
114
114
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
|
115
|
-
"storybook": "^8.5.
|
115
|
+
"storybook": "^8.5.1",
|
116
116
|
"vite": "^5.0.0 || ^6.0.0"
|
117
117
|
},
|
118
118
|
"peerDependenciesMeta": {
|
@@ -13,7 +13,7 @@ export default {
|
|
13
13
|
|
14
14
|
export const LoggedOut = {};
|
15
15
|
|
16
|
-
// More on
|
16
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
17
17
|
export const LoggedIn = {
|
18
18
|
play: async ({ canvasElement }) => {
|
19
19
|
const canvas = within(canvasElement);
|
@@ -17,7 +17,7 @@ type Story = StoryObj<typeof Page>;
|
|
17
17
|
|
18
18
|
export const LoggedOut: Story = {};
|
19
19
|
|
20
|
-
// More on
|
20
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
21
21
|
export const LoggedIn: Story = {
|
22
22
|
play: async ({ canvasElement }) => {
|
23
23
|
const canvas = within(canvasElement);
|
@@ -17,7 +17,7 @@ type Story = StoryObj<typeof meta>;
|
|
17
17
|
|
18
18
|
export const LoggedOut: Story = {};
|
19
19
|
|
20
|
-
// More on
|
20
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
21
21
|
export const LoggedIn: Story = {
|
22
22
|
play: async ({ canvasElement }) => {
|
23
23
|
const canvas = within(canvasElement);
|