@storybook/react-vite 7.6.0-alpha.5 → 7.6.0-alpha.6

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.
@@ -2913,19 +2913,19 @@ interface TestBuildFlags {
2913
2913
  /**
2914
2914
  * The package @storybook/blocks will be excluded from the bundle, even when imported in e.g. the preview.
2915
2915
  */
2916
- emptyBlocks?: boolean;
2916
+ disableBlocks?: boolean;
2917
2917
  /**
2918
- * Disable all addons
2918
+ * Disable specific addons
2919
2919
  */
2920
- removeNonFastAddons?: boolean;
2920
+ disabledAddons?: string[];
2921
2921
  /**
2922
2922
  * Filter out .mdx stories entries
2923
2923
  */
2924
- removeMDXEntries?: boolean;
2924
+ disableMDXEntries?: boolean;
2925
2925
  /**
2926
2926
  * Override autodocs to be disabled
2927
2927
  */
2928
- removeAutoDocs?: boolean;
2928
+ disableAutoDocs?: boolean;
2929
2929
  /**
2930
2930
  * Override docgen to be disabled.
2931
2931
  */
@@ -2939,9 +2939,9 @@ interface TestBuildFlags {
2939
2939
  */
2940
2940
  disableTreeShaking?: boolean;
2941
2941
  /**
2942
- * Compile/Optimize with SWC.
2942
+ * Minify with ESBuild when using webpack.
2943
2943
  */
2944
- optimizeCompilation?: boolean;
2944
+ esbuildMinify?: boolean;
2945
2945
  }
2946
2946
  interface TestBuildConfig {
2947
2947
  test?: TestBuildFlags;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { F as FrameworkOptions, S as StorybookConfig } from './index-d74de77a.js';
1
+ export { F as FrameworkOptions, S as StorybookConfig } from './index-ac2e8f2f.js';
2
2
  import 'file-system-cache';
3
3
  import '@babel/core';
4
4
  import 'http';
package/dist/preset.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { P as PresetProperty, S as StorybookConfig } from './index-d74de77a.js';
1
+ import { P as PresetProperty, S as StorybookConfig } from './index-ac2e8f2f.js';
2
2
  import 'file-system-cache';
3
3
  import '@babel/core';
4
4
  import 'http';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/react-vite",
3
- "version": "7.6.0-alpha.5",
3
+ "version": "7.6.0-alpha.6",
4
4
  "description": "Storybook for React and Vite: Develop React components in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -49,8 +49,8 @@
49
49
  "dependencies": {
50
50
  "@joshwooding/vite-plugin-react-docgen-typescript": "0.3.0",
51
51
  "@rollup/pluginutils": "^5.0.2",
52
- "@storybook/builder-vite": "7.6.0-alpha.5",
53
- "@storybook/react": "7.6.0-alpha.5",
52
+ "@storybook/builder-vite": "7.6.0-alpha.6",
53
+ "@storybook/react": "7.6.0-alpha.6",
54
54
  "@vitejs/plugin-react": "^3.0.1",
55
55
  "magic-string": "^0.30.0",
56
56
  "react-docgen": "^7.0.0"