@storybook/preact 8.4.0-alpha.8 → 8.4.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +6 -6
package/dist/index.d.ts CHANGED
@@ -6,19 +6,19 @@ import 'preact';
6
6
  /**
7
7
  * Metadata to configure the stories for a component.
8
8
  *
9
- * @see [Default export](https://storybook.js.org/docs/formats/component-story-format/#default-export)
9
+ * @see [Default export](https://storybook.js.org/docs/api/csf#default-export)
10
10
  */
11
11
  type Meta<TArgs = Args> = ComponentAnnotations<PreactRenderer, TArgs>;
12
12
  /**
13
13
  * Story function that represents a CSFv2 component example.
14
14
  *
15
- * @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
15
+ * @see [Named Story exports](https://storybook.js.org/docs/api/csf#named-story-exports)
16
16
  */
17
17
  type StoryFn<TArgs = Args> = AnnotatedStoryFn<PreactRenderer, TArgs>;
18
18
  /**
19
19
  * Story object that represents a CSFv3 component example.
20
20
  *
21
- * @see [Named Story exports](https://storybook.js.org/docs/formats/component-story-format/#named-story-exports)
21
+ * @see [Named Story exports](https://storybook.js.org/docs/api/csf#named-story-exports)
22
22
  */
23
23
  type StoryObj<TArgs = Args> = StoryAnnotations<PreactRenderer, TArgs>;
24
24
  type Decorator<TArgs = StrictArgs> = DecoratorFunction<PreactRenderer, TArgs>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/preact",
3
- "version": "8.4.0-alpha.8",
3
+ "version": "8.4.0-beta.1",
4
4
  "description": "Storybook Preact renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -46,11 +46,11 @@
46
46
  "prep": "jiti ../../../scripts/prepare/bundle.ts"
47
47
  },
48
48
  "dependencies": {
49
- "@storybook/components": "^8.4.0-alpha.8",
49
+ "@storybook/components": "^8.4.0-beta.1",
50
50
  "@storybook/global": "^5.0.0",
51
- "@storybook/manager-api": "^8.4.0-alpha.8",
52
- "@storybook/preview-api": "^8.4.0-alpha.8",
53
- "@storybook/theming": "^8.4.0-alpha.8",
51
+ "@storybook/manager-api": "^8.4.0-beta.1",
52
+ "@storybook/preview-api": "^8.4.0-beta.1",
53
+ "@storybook/theming": "^8.4.0-beta.1",
54
54
  "ts-dedent": "^2.0.0"
55
55
  },
56
56
  "devDependencies": {
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "peerDependencies": {
61
61
  "preact": "^8.0.0||^10.0.0",
62
- "storybook": "^8.4.0-alpha.8"
62
+ "storybook": "^8.4.0-beta.1"
63
63
  },
64
64
  "engines": {
65
65
  "node": ">=18.0.0"