@storybook/nextjs 8.2.0-beta.2 → 8.2.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Storybook for Next.js
2
2
 
3
- See [documentation](https://storybook.js.org/docs/8.0/get-started/nextjs) for installation instructions, usage examples, APIs, and more.
3
+ See [documentation](https://storybook.js.org/docs/get-started/frameworks/nextjs?renderer=react) for installation instructions, usage examples, APIs, and more.
4
4
 
5
5
  ## Acknowledgements
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/nextjs",
3
- "version": "8.2.0-beta.2",
3
+ "version": "8.2.0",
4
4
  "description": "Storybook for Next.js",
5
5
  "keywords": [
6
6
  "storybook",
@@ -139,10 +139,10 @@
139
139
  "@babel/preset-typescript": "^7.24.1",
140
140
  "@babel/runtime": "^7.24.4",
141
141
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
142
- "@storybook/builder-webpack5": "8.2.0-beta.2",
143
- "@storybook/preset-react-webpack": "8.2.0-beta.2",
144
- "@storybook/react": "8.2.0-beta.2",
145
- "@storybook/test": "8.2.0-beta.2",
142
+ "@storybook/builder-webpack5": "8.2.0",
143
+ "@storybook/preset-react-webpack": "8.2.0",
144
+ "@storybook/react": "8.2.0",
145
+ "@storybook/test": "8.2.0",
146
146
  "@types/node": "^18.0.0",
147
147
  "@types/semver": "^7.3.4",
148
148
  "babel-loader": "^9.1.3",
@@ -180,7 +180,7 @@
180
180
  "next": "^13.5.0 || ^14.0.0",
181
181
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
182
182
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
183
- "storybook": "^8.2.0-beta.2",
183
+ "storybook": "^8.2.0",
184
184
  "webpack": "^5.0.0"
185
185
  },
186
186
  "peerDependenciesMeta": {
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import './button.css';
3
3
 
4
- interface ButtonProps {
4
+ export interface ButtonProps {
5
5
  /**
6
6
  * Is this the principal call to action on the page?
7
7
  */
@@ -7,7 +7,7 @@ type User = {
7
7
  name: string;
8
8
  };
9
9
 
10
- interface HeaderProps {
10
+ export interface HeaderProps {
11
11
  user?: User;
12
12
  onLogin?: () => void;
13
13
  onLogout?: () => void;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import './button.css';
3
3
 
4
- interface ButtonProps {
4
+ export interface ButtonProps {
5
5
  /**
6
6
  * Is this the principal call to action on the page?
7
7
  */
@@ -7,7 +7,7 @@ type User = {
7
7
  name: string;
8
8
  };
9
9
 
10
- interface HeaderProps {
10
+ export interface HeaderProps {
11
11
  user?: User;
12
12
  onLogin?: () => void;
13
13
  onLogout?: () => void;