@storybook/experimental-nextjs-vite 9.0.0-alpha.4 → 9.0.0-alpha.5

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/experimental-nextjs-vite",
3
- "version": "9.0.0-alpha.4",
3
+ "version": "9.0.0-alpha.5",
4
4
  "description": "Storybook for Next.js and Vite",
5
5
  "keywords": [
6
6
  "storybook",
@@ -104,9 +104,9 @@
104
104
  "prep": "jiti ../../../scripts/prepare/bundle.ts"
105
105
  },
106
106
  "dependencies": {
107
- "@storybook/builder-vite": "9.0.0-alpha.4",
108
- "@storybook/react": "9.0.0-alpha.4",
109
- "@storybook/react-vite": "9.0.0-alpha.4",
107
+ "@storybook/builder-vite": "9.0.0-alpha.5",
108
+ "@storybook/react": "9.0.0-alpha.5",
109
+ "@storybook/react-vite": "9.0.0-alpha.5",
110
110
  "styled-jsx": "5.1.6",
111
111
  "vite-plugin-storybook-nextjs": "2.0.0--canary.33.a61ad85.0"
112
112
  },
@@ -119,7 +119,7 @@
119
119
  "next": "^14.1.0 || ^15.0.0",
120
120
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
121
121
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
122
- "storybook": "^9.0.0-alpha.4",
122
+ "storybook": "^9.0.0-alpha.5",
123
123
  "vite": "^5.0.0 || ^6.0.0"
124
124
  },
125
125
  "peerDependenciesMeta": {
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
-
3
1
  import PropTypes from 'prop-types';
4
2
 
5
3
  import './button.css';
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
-
3
1
  import PropTypes from 'prop-types';
4
2
 
5
3
  import { Button } from './Button';
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
-
3
1
  import './button.css';
4
2
 
5
3
  export interface ButtonProps {
@@ -1,5 +1,3 @@
1
- import React from 'react';
2
-
3
1
  import { Button } from './Button';
4
2
  import './header.css';
5
3