@storybook/react 7.0.0-beta.21 → 7.0.0-beta.24
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": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.24",
|
|
4
4
|
"description": "Storybook React renderer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -48,12 +48,13 @@
|
|
|
48
48
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@storybook/client-logger": "7.0.0-beta.
|
|
52
|
-
"@storybook/core-client": "7.0.0-beta.
|
|
53
|
-
"@storybook/docs-tools": "7.0.0-beta.
|
|
51
|
+
"@storybook/client-logger": "7.0.0-beta.24",
|
|
52
|
+
"@storybook/core-client": "7.0.0-beta.24",
|
|
53
|
+
"@storybook/docs-tools": "7.0.0-beta.24",
|
|
54
54
|
"@storybook/global": "^5.0.0",
|
|
55
|
-
"@storybook/preview-api": "7.0.0-beta.
|
|
56
|
-
"@storybook/types": "7.0.0-beta.
|
|
55
|
+
"@storybook/preview-api": "7.0.0-beta.24",
|
|
56
|
+
"@storybook/types": "7.0.0-beta.24",
|
|
57
|
+
"@types/escodegen": "^0.0.6",
|
|
57
58
|
"@types/estree": "^0.0.51",
|
|
58
59
|
"@types/node": "^16.0.0",
|
|
59
60
|
"acorn": "^7.4.1",
|
|
@@ -98,5 +99,5 @@
|
|
|
98
99
|
],
|
|
99
100
|
"platform": "browser"
|
|
100
101
|
},
|
|
101
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "cf402923a5076bbeee8dc08fe91115d747903cbf"
|
|
102
103
|
}
|
|
@@ -6,6 +6,8 @@ import { Button } from './Button';
|
|
|
6
6
|
const meta: Meta<typeof Button> = {
|
|
7
7
|
title: 'Example/Button',
|
|
8
8
|
component: Button,
|
|
9
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/react/writing-docs/docs-page
|
|
10
|
+
tags: ['autodocs'],
|
|
9
11
|
// More on argTypes: https://storybook.js.org/docs/react/api/argtypes
|
|
10
12
|
argTypes: {
|
|
11
13
|
backgroundColor: { control: 'color' },
|
|
@@ -4,6 +4,8 @@ import { Header } from './Header';
|
|
|
4
4
|
const meta: Meta<typeof Header> = {
|
|
5
5
|
title: 'Example/Header',
|
|
6
6
|
component: Header,
|
|
7
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/react/writing-docs/docs-page
|
|
8
|
+
tags: ['autodocs'],
|
|
7
9
|
parameters: {
|
|
8
10
|
// More on Story layout: https://storybook.js.org/docs/react/configure/story-layout
|
|
9
11
|
layout: 'fullscreen',
|