@storybook/preact 0.0.0-pr-28920-sha-480f404a → 0.0.0-pr-28882-sha-441ae2cd

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-28920-sha-480f404a",
3
+ "version": "0.0.0-pr-28882-sha-441ae2cd",
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-28920-sha-480f404a",
50
+ "@storybook/components": "^0.0.0-pr-28882-sha-441ae2cd",
51
51
  "@storybook/global": "^5.0.0",
52
- "@storybook/manager-api": "^0.0.0-pr-28920-sha-480f404a",
53
- "@storybook/preview-api": "^0.0.0-pr-28920-sha-480f404a",
54
- "@storybook/theming": "^0.0.0-pr-28920-sha-480f404a",
52
+ "@storybook/manager-api": "^0.0.0-pr-28882-sha-441ae2cd",
53
+ "@storybook/preview-api": "^0.0.0-pr-28882-sha-441ae2cd",
54
+ "@storybook/theming": "^0.0.0-pr-28882-sha-441ae2cd",
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-28920-sha-480f404a"
63
+ "storybook": "^0.0.0-pr-28882-sha-441ae2cd"
64
64
  },
65
65
  "engines": {
66
66
  "node": ">=18.0.0"
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "rules": {
3
3
  "import/extensions": "off",
4
- "react/react-in-jsx-scope": "off"
4
+ "react/react-in-jsx-scope": "off",
5
+ "import/no-extraneous-dependencies": "off"
5
6
  }
6
7
  }
@@ -2,11 +2,10 @@ import './button.css';
2
2
 
3
3
  /**
4
4
  * Primary UI component for user interaction
5
- *
6
5
  * @param {object} props
7
- * @param {string} [props.primary=false] Default is `false`
6
+ * @param {string} [props.primary=false]
8
7
  * @param {string} [props.backgroundColor]
9
- * @param {'small' | 'medium' | 'large'} [props.size='medium'] Default is `'medium'`
8
+ * @param {('small' | 'medium' | 'large')} [props.size='medium']
10
9
  * @param {string} props.label
11
10
  * @param {function} props.onClick
12
11
  */
@@ -3,7 +3,6 @@ import './header.css';
3
3
 
4
4
  /**
5
5
  * Header component
6
- *
7
6
  * @param {object} props
8
7
  * @param {object} [props.user]
9
8
  * @param {string} props.user.name
@@ -3,7 +3,9 @@ import { useState } from 'preact/hooks';
3
3
  import { Header } from './Header';
4
4
  import './page.css';
5
5
 
6
- /** Simple page component */
6
+ /**
7
+ * Simple page component
8
+ */
7
9
  export const Page = () => {
8
10
  const [user, setUser] = useState();
9
11