@storybook/html 6.5.0-alpha.46 → 6.5.0-alpha.47
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/cjs/server/framework-preset-html.js +0 -1
- package/dist/esm/server/framework-preset-html.js +0 -1
- package/dist/modern/server/framework-preset-html.js +0 -1
- package/dist/ts3.9/client/preview/index.d.ts +2 -2
- package/dist/ts3.9/client/preview/types-6-0.d.ts +2 -2
- package/dist/ts3.9/client/preview/types-7-0.d.ts +1 -1
- package/dist/ts3.9/server/framework-preset-html.d.ts +2 -2
- package/dist/ts3.9/server/options.d.ts +1 -1
- package/package.json +8 -8
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/// <reference types="webpack-env" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
|
-
import { ClientStoryApi, Loadable } from '@storybook/addons';
|
|
3
|
+
import type { ClientStoryApi, Loadable } from '@storybook/addons';
|
|
4
4
|
import { HtmlFramework } from './types-6-0';
|
|
5
5
|
import './globals';
|
|
6
|
-
import { IStorybookSection } from './types';
|
|
6
|
+
import type { IStorybookSection } from './types';
|
|
7
7
|
interface ClientApi extends ClientStoryApi<HtmlFramework['storyResult']> {
|
|
8
8
|
setAddon(addon: any): void;
|
|
9
9
|
configure(loader: Loadable, module: NodeModule): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Args, ComponentAnnotations, StoryAnnotations, AnnotatedStoryFn } from '@storybook/csf';
|
|
2
|
-
import { StoryFnHtmlReturnType } from './types';
|
|
1
|
+
import type { Args, ComponentAnnotations, StoryAnnotations, AnnotatedStoryFn } from '@storybook/csf';
|
|
2
|
+
import type { StoryFnHtmlReturnType } from './types';
|
|
3
3
|
export type { Args, ArgTypes, Parameters, StoryContext } from '@storybook/addons';
|
|
4
4
|
export declare type HtmlFramework = {
|
|
5
5
|
component: HTMLElement;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Configuration } from 'webpack';
|
|
2
|
-
import { StorybookConfig } from '@storybook/core-common';
|
|
1
|
+
import type { Configuration } from 'webpack';
|
|
2
|
+
import type { StorybookConfig } from '@storybook/core-common';
|
|
3
3
|
export declare function webpack(config: Configuration): Configuration;
|
|
4
4
|
export declare const config: StorybookConfig['config'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/html",
|
|
3
|
-
"version": "6.5.0-alpha.
|
|
3
|
+
"version": "6.5.0-alpha.47",
|
|
4
4
|
"description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"prepare": "node ../../scripts/prepare.js"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@storybook/addons": "6.5.0-alpha.
|
|
49
|
-
"@storybook/client-api": "6.5.0-alpha.
|
|
50
|
-
"@storybook/core": "6.5.0-alpha.
|
|
51
|
-
"@storybook/core-common": "6.5.0-alpha.
|
|
48
|
+
"@storybook/addons": "6.5.0-alpha.47",
|
|
49
|
+
"@storybook/client-api": "6.5.0-alpha.47",
|
|
50
|
+
"@storybook/core": "6.5.0-alpha.47",
|
|
51
|
+
"@storybook/core-common": "6.5.0-alpha.47",
|
|
52
52
|
"@storybook/csf": "0.0.2--canary.87bc651.0",
|
|
53
|
-
"@storybook/preview-web": "6.5.0-alpha.
|
|
54
|
-
"@storybook/store": "6.5.0-alpha.
|
|
53
|
+
"@storybook/preview-web": "6.5.0-alpha.47",
|
|
54
|
+
"@storybook/store": "6.5.0-alpha.47",
|
|
55
55
|
"@types/node": "^14.14.20 || ^16.0.0",
|
|
56
56
|
"@types/webpack-env": "^1.16.0",
|
|
57
57
|
"core-js": "^3.8.2",
|
|
@@ -72,6 +72,6 @@
|
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "e848de5c5d389fcb452d85f7ebdfc27f1e3c10c4",
|
|
76
76
|
"sbmodern": "dist/modern/client/index.js"
|
|
77
77
|
}
|