@storybook/preact 0.0.0-pr-28768-sha-416cd00d → 0.0.0-pr-28920-sha-f4db6c03
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/preact",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-28920-sha-f4db6c03",
|
4
4
|
"description": "Storybook Preact renderer",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -47,11 +47,11 @@
|
|
47
47
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
48
48
|
},
|
49
49
|
"dependencies": {
|
50
|
-
"@storybook/components": "^0.0.0-pr-
|
50
|
+
"@storybook/components": "^0.0.0-pr-28920-sha-f4db6c03",
|
51
51
|
"@storybook/global": "^5.0.0",
|
52
|
-
"@storybook/manager-api": "^0.0.0-pr-
|
53
|
-
"@storybook/preview-api": "^0.0.0-pr-
|
54
|
-
"@storybook/theming": "^0.0.0-pr-
|
52
|
+
"@storybook/manager-api": "^0.0.0-pr-28920-sha-f4db6c03",
|
53
|
+
"@storybook/preview-api": "^0.0.0-pr-28920-sha-f4db6c03",
|
54
|
+
"@storybook/theming": "^0.0.0-pr-28920-sha-f4db6c03",
|
55
55
|
"ts-dedent": "^2.0.0"
|
56
56
|
},
|
57
57
|
"devDependencies": {
|
@@ -60,7 +60,7 @@
|
|
60
60
|
},
|
61
61
|
"peerDependencies": {
|
62
62
|
"preact": "^8.0.0||^10.0.0",
|
63
|
-
"storybook": "^0.0.0-pr-
|
63
|
+
"storybook": "^0.0.0-pr-28920-sha-f4db6c03"
|
64
64
|
},
|
65
65
|
"engines": {
|
66
66
|
"node": ">=18.0.0"
|
package/template/cli/Button.jsx
CHANGED
@@ -2,10 +2,11 @@ import './button.css';
|
|
2
2
|
|
3
3
|
/**
|
4
4
|
* Primary UI component for user interaction
|
5
|
+
*
|
5
6
|
* @param {object} props
|
6
|
-
* @param {string} [props.primary=false]
|
7
|
+
* @param {string} [props.primary=false] Default is `false`
|
7
8
|
* @param {string} [props.backgroundColor]
|
8
|
-
* @param {
|
9
|
+
* @param {'small' | 'medium' | 'large'} [props.size='medium'] Default is `'medium'`
|
9
10
|
* @param {string} props.label
|
10
11
|
* @param {function} props.onClick
|
11
12
|
*/
|
package/template/cli/Header.jsx
CHANGED
package/template/cli/Page.jsx
CHANGED