@storybook/addon-docs 8.0.0-alpha.6 → 8.0.0-alpha.8
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/README.md +0 -17
- package/dist/{DocsRenderer-NNNQARDV.mjs → DocsRenderer-56ZJCE2Q.mjs} +1 -0
- package/dist/chunk-FG2YIYKM.mjs +3 -0
- package/dist/index.mjs +1 -0
- package/dist/mdx-loader.d.ts +6595 -0
- package/dist/mdx-loader.js +50 -0
- package/dist/mdx-loader.mjs +53 -0
- package/dist/preset.d.ts +2 -4
- package/dist/preset.js +46 -12
- package/dist/preview.mjs +3 -1
- package/package.json +18 -19
- package/jest-transform-mdx.js +0 -22
- package/template/stories/stories-mdx/csf-in-mdx.non-stories.js +0 -19
package/dist/preset.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PresetProperty, Options } from '@storybook/types';
|
|
2
2
|
|
|
3
|
-
declare const createStoriesMdxIndexer: (legacyMdx1?: boolean) => Indexer;
|
|
4
3
|
declare const addons: PresetProperty<'addons'>;
|
|
5
4
|
declare const viteFinal: (config: any, options: Options) => Promise<any>;
|
|
6
5
|
declare const webpackX: any;
|
|
7
|
-
declare const indexersX: any;
|
|
8
6
|
declare const docsX: any;
|
|
9
7
|
/**
|
|
10
8
|
* If the user has not installed react explicitly in their project,
|
|
@@ -20,4 +18,4 @@ declare const resolvedReact: (existing: any) => Promise<{
|
|
|
20
18
|
}>;
|
|
21
19
|
declare const optimizeViteDeps: string[];
|
|
22
20
|
|
|
23
|
-
export { addons,
|
|
21
|
+
export { addons, docsX as docs, optimizeViteDeps, resolvedReact, viteFinal, webpackX as webpack };
|