@storybook/react-vite 8.1.0-alpha.8 → 8.1.0-beta.0

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.
@@ -801,8 +801,6 @@ type BaseIndexInput = {
801
801
  metaId?: MetaId;
802
802
  /** Tags for filtering entries in Storybook and its tools. */
803
803
  tags?: Tag$1[];
804
- /** Tags from the meta for filtering entries in Storybook and its tools. */
805
- metaTags?: Tag$1[];
806
804
  /**
807
805
  * The id of the entry, auto-generated from {@link title}/{@link metaId} and {@link exportName} if unspecified.
808
806
  * If specified, the story in the CSF file _must_ have a matching id set at `parameters.__id`, to be correctly matched.
@@ -997,6 +995,8 @@ type DocsOptions = {
997
995
  * Should we generate a docs entry per CSF file?
998
996
  * Set to 'tag' (the default) to generate an entry for every CSF file with the
999
997
  * 'autodocs' tag.
998
+ *
999
+ * @deprecated Use `tags: ['autodocs']` in `.storybook/preview.js` instead
1000
1000
  */
1001
1001
  autodocs?: boolean | 'tag';
1002
1002
  /**
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { F as FrameworkOptions, S as StorybookConfig } from './index-c23aca7e.js';
1
+ export { F as FrameworkOptions, S as StorybookConfig } from './index-71591a18.js';
2
2
  import 'file-system-cache';
3
3
  import 'http';
4
4
  import '@storybook/builder-vite';
package/dist/preset.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { P as PresetProperty, S as StorybookConfig } from './index-c23aca7e.js';
1
+ import { P as PresetProperty, S as StorybookConfig } from './index-71591a18.js';
2
2
  import 'file-system-cache';
3
3
  import 'http';
4
4
  import '@storybook/builder-vite';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-vite",
3
- "version": "8.1.0-alpha.8",
3
+ "version": "8.1.0-beta.0",
4
4
  "description": "Storybook for React and Vite: Develop React components in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -47,11 +47,11 @@
47
47
  "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
48
48
  },
49
49
  "dependencies": {
50
- "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0",
50
+ "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.1",
51
51
  "@rollup/pluginutils": "^5.0.2",
52
- "@storybook/builder-vite": "8.1.0-alpha.8",
53
- "@storybook/node-logger": "8.1.0-alpha.8",
54
- "@storybook/react": "8.1.0-alpha.8",
52
+ "@storybook/builder-vite": "8.1.0-beta.0",
53
+ "@storybook/node-logger": "8.1.0-beta.0",
54
+ "@storybook/react": "8.1.0-beta.0",
55
55
  "find-up": "^5.0.0",
56
56
  "magic-string": "^0.30.0",
57
57
  "react-docgen": "^7.0.0",
@@ -64,8 +64,8 @@
64
64
  "vite": "^4.0.0"
65
65
  },
66
66
  "peerDependencies": {
67
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
68
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
67
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
68
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta",
69
69
  "vite": "^4.0.0 || ^5.0.0"
70
70
  },
71
71
  "engines": {