@storybook/react 8.2.0-beta.2 → 8.2.0-beta.3

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": "8.2.0-beta.2",
3
+ "version": "8.2.0-beta.3",
4
4
  "description": "Storybook React renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -65,7 +65,7 @@
65
65
  },
66
66
  "dependencies": {
67
67
  "@storybook/global": "^5.0.0",
68
- "@storybook/react-dom-shim": "8.2.0-beta.2",
68
+ "@storybook/react-dom-shim": "8.2.0-beta.3",
69
69
  "@types/escodegen": "^0.0.6",
70
70
  "@types/estree": "^0.0.51",
71
71
  "@types/node": "^18.0.0",
@@ -83,8 +83,8 @@
83
83
  "util-deprecate": "^1.0.2"
84
84
  },
85
85
  "devDependencies": {
86
- "@storybook/blocks": "8.2.0-beta.2",
87
- "@storybook/test": "8.2.0-beta.2",
86
+ "@storybook/blocks": "8.2.0-beta.3",
87
+ "@storybook/test": "8.2.0-beta.3",
88
88
  "@types/babel-plugin-react-docgen": "^4",
89
89
  "@types/semver": "^7.3.4",
90
90
  "@types/util-deprecate": "^1.0.0",
@@ -95,7 +95,7 @@
95
95
  "peerDependencies": {
96
96
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
97
97
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
98
- "storybook": "^8.2.0-beta.2",
98
+ "storybook": "^8.2.0-beta.3",
99
99
  "typescript": ">= 4.2.x"
100
100
  },
101
101
  "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;