@storybook/types 7.0.0-beta.55 → 7.0.0-beta.57

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/index.d.ts +5 -0
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -1959,6 +1959,7 @@ interface BuilderOptions {
1959
1959
  cache?: FileSystemCache;
1960
1960
  configDir: string;
1961
1961
  docsMode?: boolean;
1962
+ env?: (envs: Record<string, string>) => Record<string, string>;
1962
1963
  features?: StorybookConfig['features'];
1963
1964
  versionCheck?: VersionCheck;
1964
1965
  releaseNotesData?: ReleaseNotesData;
@@ -2089,6 +2090,10 @@ interface StorybookConfig {
2089
2090
  * Use legacy MDX1, to help smooth migration to 7.0
2090
2091
  */
2091
2092
  legacyMdx1?: boolean;
2093
+ /**
2094
+ * Apply decorators from preview.js before decorators from addons or frameworks
2095
+ */
2096
+ legacyDecoratorFileOrder?: boolean;
2092
2097
  };
2093
2098
  /**
2094
2099
  * Tells Storybook where to find stories.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/types",
3
- "version": "7.0.0-beta.55",
3
+ "version": "7.0.0-beta.57",
4
4
  "description": "Core Storybook Types",
5
5
  "keywords": [
6
6
  "storybook"
@@ -43,7 +43,7 @@
43
43
  "prep": "../../../scripts/prepare/bundle.ts"
44
44
  },
45
45
  "dependencies": {
46
- "@storybook/channels": "7.0.0-beta.55",
46
+ "@storybook/channels": "7.0.0-beta.57",
47
47
  "@types/babel__core": "^7.0.0",
48
48
  "@types/express": "^4.7.0",
49
49
  "file-system-cache": "^2.0.0"
@@ -61,5 +61,5 @@
61
61
  "./src/index.ts"
62
62
  ]
63
63
  },
64
- "gitHead": "fcabbb3d1837b193348cbdb7935d497049cd5243"
64
+ "gitHead": "40424e73ad881740b16d5017507f7790fe8d27c5"
65
65
  }