@storybook/html-webpack5 7.0.0-beta.55 → 7.0.0-beta.56

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.
Files changed (2) hide show
  1. package/dist/preset.d.ts +5 -0
  2. package/package.json +6 -6
package/dist/preset.d.ts CHANGED
@@ -887,6 +887,7 @@ interface BuilderOptions {
887
887
  cache?: FileSystemCache;
888
888
  configDir: string;
889
889
  docsMode?: boolean;
890
+ env?: (envs: Record<string, string>) => Record<string, string>;
890
891
  features?: StorybookConfig['features'];
891
892
  versionCheck?: VersionCheck;
892
893
  releaseNotesData?: ReleaseNotesData;
@@ -996,6 +997,10 @@ interface StorybookConfig {
996
997
  * Use legacy MDX1, to help smooth migration to 7.0
997
998
  */
998
999
  legacyMdx1?: boolean;
1000
+ /**
1001
+ * Apply decorators from preview.js before decorators from addons or frameworks
1002
+ */
1003
+ legacyDecoratorFileOrder?: boolean;
999
1004
  };
1000
1005
  /**
1001
1006
  * Tells Storybook where to find stories.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/html-webpack5",
3
- "version": "7.0.0-beta.55",
3
+ "version": "7.0.0-beta.56",
4
4
  "description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
5
5
  "keywords": [
6
6
  "storybook"
@@ -48,11 +48,11 @@
48
48
  "prep": "../../../scripts/prepare/bundle.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@storybook/builder-webpack5": "7.0.0-beta.55",
52
- "@storybook/core-common": "7.0.0-beta.55",
51
+ "@storybook/builder-webpack5": "7.0.0-beta.56",
52
+ "@storybook/core-common": "7.0.0-beta.56",
53
53
  "@storybook/global": "^5.0.0",
54
- "@storybook/html": "7.0.0-beta.55",
55
- "@storybook/preset-html-webpack": "7.0.0-beta.55",
54
+ "@storybook/html": "7.0.0-beta.56",
55
+ "@storybook/preset-html-webpack": "7.0.0-beta.56",
56
56
  "@types/node": "^16.0.0"
57
57
  },
58
58
  "devDependencies": {
@@ -76,5 +76,5 @@
76
76
  ],
77
77
  "platform": "node"
78
78
  },
79
- "gitHead": "fcabbb3d1837b193348cbdb7935d497049cd5243"
79
+ "gitHead": "26815b0ea07f3800cc514cccd242c8ab1f428b8c"
80
80
  }