@storybook/web-components 7.0.0-beta.53 → 7.0.0-beta.55
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/index.d.ts +3 -2
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Args, ComponentAnnotations, AnnotatedStoryFn, StoryAnnotations, StrictArgs, DecoratorFunction, LoaderFunction, StoryContext as StoryContext$1, Addon_ClientStoryApi, Addon_Loadable } from '@storybook/types';
|
|
1
|
+
import { Args, ComponentAnnotations, AnnotatedStoryFn, StoryAnnotations, StrictArgs, DecoratorFunction, LoaderFunction, StoryContext as StoryContext$1, ProjectAnnotations, Addon_ClientStoryApi, Addon_Loadable } from '@storybook/types';
|
|
2
2
|
export { ArgTypes, Args, Parameters, StrictArgs } from '@storybook/types';
|
|
3
3
|
import { W as WebComponentsRenderer } from './types-a4f869af.js';
|
|
4
4
|
import 'lit';
|
|
@@ -34,6 +34,7 @@ type Story<TArgs = Args> = StoryFn<TArgs>;
|
|
|
34
34
|
type Decorator<TArgs = StrictArgs> = DecoratorFunction<WebComponentsRenderer, TArgs>;
|
|
35
35
|
type Loader<TArgs = StrictArgs> = LoaderFunction<WebComponentsRenderer, TArgs>;
|
|
36
36
|
type StoryContext<TArgs = StrictArgs> = StoryContext$1<WebComponentsRenderer, TArgs>;
|
|
37
|
+
type Preview = ProjectAnnotations<WebComponentsRenderer>;
|
|
37
38
|
|
|
38
39
|
interface ClientApi extends Addon_ClientStoryApi<WebComponentsRenderer['storyResult']> {
|
|
39
40
|
configure(loader: Addon_Loadable, module: NodeModule): void;
|
|
@@ -54,4 +55,4 @@ declare function setCustomElements(customElements: any): void;
|
|
|
54
55
|
declare function setCustomElementsManifest(customElements: any): void;
|
|
55
56
|
declare function getCustomElements(): any;
|
|
56
57
|
|
|
57
|
-
export { Decorator, Loader, Meta, Story, StoryContext, StoryFn, StoryObj, WebComponentsRenderer, configure, forceReRender, getCustomElements, isValidComponent, isValidMetaData, raw, setCustomElements, setCustomElementsManifest, storiesOf };
|
|
58
|
+
export { Decorator, Loader, Meta, Preview, Story, StoryContext, StoryFn, StoryObj, WebComponentsRenderer, configure, forceReRender, getCustomElements, isValidComponent, isValidMetaData, raw, setCustomElements, setCustomElementsManifest, storiesOf };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/web-components",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.55",
|
|
4
4
|
"description": "Storybook web-components renderer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@storybook/client-logger": "7.0.0-beta.
|
|
55
|
-
"@storybook/core-client": "7.0.0-beta.
|
|
56
|
-
"@storybook/docs-tools": "7.0.0-beta.
|
|
54
|
+
"@storybook/client-logger": "7.0.0-beta.55",
|
|
55
|
+
"@storybook/core-client": "7.0.0-beta.55",
|
|
56
|
+
"@storybook/docs-tools": "7.0.0-beta.55",
|
|
57
57
|
"@storybook/global": "^5.0.0",
|
|
58
|
-
"@storybook/manager-api": "7.0.0-beta.
|
|
59
|
-
"@storybook/preview-api": "7.0.0-beta.
|
|
60
|
-
"@storybook/types": "7.0.0-beta.
|
|
58
|
+
"@storybook/manager-api": "7.0.0-beta.55",
|
|
59
|
+
"@storybook/preview-api": "7.0.0-beta.55",
|
|
60
|
+
"@storybook/types": "7.0.0-beta.55",
|
|
61
61
|
"ts-dedent": "^2.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
],
|
|
85
85
|
"platform": "browser"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "fcabbb3d1837b193348cbdb7935d497049cd5243"
|
|
88
88
|
}
|