storybook 9.0.0-beta.6 → 9.0.0-beta.7
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.
- package/dist/bin/index.cjs +44 -44
- package/dist/bin/index.js +44 -44
- package/dist/cli/bin/index.cjs +1 -1
- package/dist/cli/bin/index.js +1 -1
- package/dist/cli/index.cjs +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/common/index.cjs +441 -441
- package/dist/common/index.d.ts +1 -1
- package/dist/common/index.js +420 -420
- package/dist/core-server/index.cjs +12 -8
- package/dist/core-server/index.d.ts +22 -22
- package/dist/core-server/index.js +12 -8
- package/dist/manager/globals-runtime.js +9190 -9167
- package/dist/manager/runtime.js +1151 -1149
- package/dist/manager-api/index.cjs +1046 -1023
- package/dist/manager-api/index.d.ts +12 -1
- package/dist/manager-api/index.js +649 -626
- package/dist/preview/runtime.js +1824 -1824
- package/dist/test/index.d.ts +2 -6
- package/dist/test/index.js +2818 -2818
- package/dist/test/preview.cjs +648 -648
- package/dist/test/preview.js +837 -837
- package/dist/test/spy.cjs +112 -112
- package/dist/test/spy.d.ts +2 -6
- package/dist/test/spy.js +104 -104
- package/dist/types/index.cjs +4 -4
- package/dist/types/index.d.ts +2687 -2594
- package/package.json +1 -1
package/dist/common/index.d.ts
CHANGED
|
@@ -768,7 +768,7 @@ declare function getRendererName(options: Options$1): Promise<string>;
|
|
|
768
768
|
* @param frameworkName The name of the framework.
|
|
769
769
|
* @returns The name of the renderer.
|
|
770
770
|
*/
|
|
771
|
-
declare function extractProperRendererNameFromFramework(frameworkName: string): Promise<storybook_internal_types.SupportedRenderers |
|
|
771
|
+
declare function extractProperRendererNameFromFramework(frameworkName: string): Promise<"vue" | storybook_internal_types.SupportedRenderers | null>;
|
|
772
772
|
|
|
773
773
|
declare function getStorybookConfiguration(storybookScript: string, shortName: string, longName: string): string | null;
|
|
774
774
|
|