@storybook/svelte 8.2.1 → 8.3.0-alpha.0
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.
|
@@ -1,15 +1,18 @@
|
|
|
1
|
+
import * as core_dist_docs_tools from 'core/dist/docs-tools';
|
|
1
2
|
import { DecoratorFunction, ArgTypesEnhancer } from 'storybook/internal/types';
|
|
2
|
-
import { ArgTypesExtractor } from 'storybook/internal/docs-tools';
|
|
3
3
|
import { S as SvelteRenderer } from './types-3695f681.js';
|
|
4
4
|
import 'svelte';
|
|
5
5
|
|
|
6
|
+
type Component = any;
|
|
7
|
+
declare function extractComponentDescription(component?: Component): string;
|
|
8
|
+
|
|
6
9
|
declare const parameters: {
|
|
7
10
|
docs: {
|
|
8
11
|
story: {
|
|
9
12
|
inline: boolean;
|
|
10
13
|
};
|
|
11
|
-
extractArgTypes: ArgTypesExtractor;
|
|
12
|
-
extractComponentDescription:
|
|
14
|
+
extractArgTypes: core_dist_docs_tools.ArgTypesExtractor;
|
|
15
|
+
extractComponentDescription: typeof extractComponentDescription;
|
|
13
16
|
};
|
|
14
17
|
};
|
|
15
18
|
declare const decorators: DecoratorFunction<SvelteRenderer>[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/svelte",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.3.0-alpha.0",
|
|
4
4
|
"description": "Storybook Svelte renderer",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook"
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"typescript": "^5.3.2"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
|
-
"storybook": "^8.
|
|
76
|
+
"storybook": "^8.3.0-alpha.0",
|
|
77
77
|
"svelte": "^4.0.0 || ^5.0.0-next.65"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|