@storybook/svelte 7.0.0-beta.13 → 7.0.0-beta.14
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 +1 -2
- package/package.json +7 -7
- package/template/cli/js/Button.stories.js +1 -1
- package/template/cli/js/Header.stories.js +2 -2
- package/template/cli/ts/Button.stories.ts +1 -1
- package/template/cli/ts/Header.stories.ts +2 -2
- package/template/cli/ts-legacy/Button.stories.ts +1 -1
- package/template/cli/ts-legacy/Header.stories.ts +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { S as SvelteRenderer, a as SvelteStoryResult } from './types-ee5cbd7c.js';
|
|
2
|
-
export { S as SvelteRenderer } from './types-ee5cbd7c.js';
|
|
3
2
|
import * as lib_types_dist from 'lib/types/dist';
|
|
4
3
|
import * as svelte from 'svelte';
|
|
5
4
|
import { SvelteComponentTyped, ComponentType, ComponentProps } from 'svelte';
|
|
@@ -39,4 +38,4 @@ type Decorator<TArgs = StrictArgs> = DecoratorFunction<SvelteRenderer, TArgs>;
|
|
|
39
38
|
type Loader<TArgs = StrictArgs> = LoaderFunction<SvelteRenderer, TArgs>;
|
|
40
39
|
type StoryContext<TArgs = StrictArgs> = StoryContext$1<SvelteRenderer, TArgs>;
|
|
41
40
|
|
|
42
|
-
export { Decorator, Loader, Meta, StoryContext, StoryFn, StoryObj, configure, forceReRender, raw, storiesOf };
|
|
41
|
+
export { Decorator, Loader, Meta, StoryContext, StoryFn, StoryObj, SvelteRenderer, configure, forceReRender, raw, storiesOf };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/svelte",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.14",
|
|
4
4
|
"description": "Storybook Svelte renderer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@storybook/client-logger": "7.0.0-beta.
|
|
59
|
-
"@storybook/core-client": "7.0.0-beta.
|
|
60
|
-
"@storybook/docs-tools": "7.0.0-beta.
|
|
58
|
+
"@storybook/client-logger": "7.0.0-beta.14",
|
|
59
|
+
"@storybook/core-client": "7.0.0-beta.14",
|
|
60
|
+
"@storybook/docs-tools": "7.0.0-beta.14",
|
|
61
61
|
"@storybook/global": "^5.0.0",
|
|
62
|
-
"@storybook/preview-api": "7.0.0-beta.
|
|
63
|
-
"@storybook/types": "7.0.0-beta.
|
|
62
|
+
"@storybook/preview-api": "7.0.0-beta.14",
|
|
63
|
+
"@storybook/types": "7.0.0-beta.14",
|
|
64
64
|
"sveltedoc-parser": "^4.2.1",
|
|
65
65
|
"type-fest": "2.19.0"
|
|
66
66
|
},
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
],
|
|
88
88
|
"platform": "browser"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "c3b2e8fe2517ba2d7630e260de0fd1ad86cafeb6"
|
|
91
91
|
}
|
|
@@ -3,8 +3,8 @@ import Header from './Header.svelte';
|
|
|
3
3
|
export default {
|
|
4
4
|
title: 'Example/Header',
|
|
5
5
|
component: Header,
|
|
6
|
-
// This component will have an automatically generated
|
|
7
|
-
tags: ['
|
|
6
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/svelte/writing-docs/docs-page
|
|
7
|
+
tags: ['autodocs'],
|
|
8
8
|
parameters: {
|
|
9
9
|
// More on how to position stories at: https://storybook.js.org/docs/7.0/svelte/configure/story-layout
|
|
10
10
|
layout: 'fullscreen',
|
|
@@ -4,8 +4,8 @@ import Header from './Header.svelte';
|
|
|
4
4
|
const meta = {
|
|
5
5
|
title: 'Example/Header',
|
|
6
6
|
component: Header,
|
|
7
|
-
// This component will have an automatically generated
|
|
8
|
-
tags: ['
|
|
7
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/react/writing-docs/docs-page
|
|
8
|
+
tags: ['autodocs'],
|
|
9
9
|
parameters: {
|
|
10
10
|
// More on how to position stories at: https://storybook.js.org/docs/7.0/svelte/configure/story-layout
|
|
11
11
|
layout: 'fullscreen',
|
|
@@ -4,8 +4,8 @@ import Header from './Header.svelte';
|
|
|
4
4
|
const meta: Meta<Header> = {
|
|
5
5
|
title: 'Example/Header',
|
|
6
6
|
component: Header,
|
|
7
|
-
// This component will have an automatically generated
|
|
8
|
-
tags: ['
|
|
7
|
+
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/7.0/react/writing-docs/docs-page
|
|
8
|
+
tags: ['autodocs'],
|
|
9
9
|
parameters: {
|
|
10
10
|
// More on how to position stories at: https://storybook.js.org/docs/7.0/svelte/configure/story-layout
|
|
11
11
|
layout: 'fullscreen',
|