@storybook/preact 7.1.0-alpha.13 → 7.1.0-alpha.14
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 +5 -5
- package/template/cli/Header.jsx +1 -1
- package/template/cli/Page.jsx +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/preact",
|
3
|
-
"version": "7.1.0-alpha.
|
3
|
+
"version": "7.1.0-alpha.14",
|
4
4
|
"description": "Storybook Preact renderer",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -48,10 +48,10 @@
|
|
48
48
|
"prep": "../../../scripts/prepare/bundle.ts"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
|
-
"@storybook/core-client": "7.1.0-alpha.
|
51
|
+
"@storybook/core-client": "7.1.0-alpha.14",
|
52
52
|
"@storybook/global": "^5.0.0",
|
53
|
-
"@storybook/preview-api": "7.1.0-alpha.
|
54
|
-
"@storybook/types": "7.1.0-alpha.
|
53
|
+
"@storybook/preview-api": "7.1.0-alpha.14",
|
54
|
+
"@storybook/types": "7.1.0-alpha.14",
|
55
55
|
"ts-dedent": "^2.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
@@ -74,5 +74,5 @@
|
|
74
74
|
],
|
75
75
|
"platform": "browser"
|
76
76
|
},
|
77
|
-
"gitHead": "
|
77
|
+
"gitHead": "72ae6b0d965d1ae596159cdb15109c5e13376d78"
|
78
78
|
}
|
package/template/cli/Header.jsx
CHANGED
@@ -5,7 +5,7 @@ import './header.css';
|
|
5
5
|
|
6
6
|
export const Header = ({ user, onLogin, onLogout, onCreateAccount }) => (
|
7
7
|
<header>
|
8
|
-
<div className="
|
8
|
+
<div className="storybook-header">
|
9
9
|
<div>
|
10
10
|
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
11
11
|
<g fill="none" fillRule="evenodd">
|
package/template/cli/Page.jsx
CHANGED