@storybook/server 6.5.9 → 7.0.0-alpha.2

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.
Files changed (80) hide show
  1. package/README.md +1 -317
  2. package/dist/cjs/{client/index.js → index.js} +12 -11
  3. package/dist/cjs/{client/preview → preview}/config.js +3 -3
  4. package/dist/cjs/{client/preview → preview}/globals.js +3 -1
  5. package/dist/cjs/preview/index.js +47 -0
  6. package/dist/cjs/preview/render.js +113 -0
  7. package/dist/cjs/{client/preview → preview}/types.js +0 -0
  8. package/dist/esm/index.js +3 -0
  9. package/dist/{modern/client → esm}/preview/config.js +0 -0
  10. package/dist/{modern/client → esm}/preview/globals.js +0 -0
  11. package/dist/{modern/client → esm}/preview/index.js +1 -1
  12. package/dist/{modern/client → esm}/preview/render.js +0 -0
  13. package/dist/esm/{client/preview → preview}/types.js +0 -0
  14. package/dist/{ts3.9/client → types}/index.d.ts +0 -0
  15. package/dist/{ts3.9/client → types}/preview/config.d.ts +0 -0
  16. package/dist/{ts3.9/client → types}/preview/globals.d.ts +0 -0
  17. package/dist/{ts3.9/client → types}/preview/index.d.ts +1 -2
  18. package/dist/{ts3.9/client → types}/preview/render.d.ts +0 -0
  19. package/dist/{ts3.9/client → types}/preview/types.d.ts +1 -1
  20. package/package.json +13 -40
  21. package/preview.js +1 -0
  22. package/bin/build.js +0 -4
  23. package/bin/index.js +0 -3
  24. package/dist/cjs/client/preview/index.js +0 -52
  25. package/dist/cjs/client/preview/render.js +0 -192
  26. package/dist/cjs/lib/compiler/index.js +0 -21
  27. package/dist/cjs/lib/compiler/stringifier.js +0 -175
  28. package/dist/cjs/lib/compiler/types.js +0 -1
  29. package/dist/cjs/server/build.js +0 -9
  30. package/dist/cjs/server/framework-preset-server.js +0 -33
  31. package/dist/cjs/server/index.js +0 -9
  32. package/dist/cjs/server/loader.js +0 -14
  33. package/dist/cjs/server/options.js +0 -17
  34. package/dist/esm/client/index.js +0 -5
  35. package/dist/esm/client/preview/config.js +0 -4
  36. package/dist/esm/client/preview/globals.js +0 -3
  37. package/dist/esm/client/preview/index.js +0 -30
  38. package/dist/esm/client/preview/render.js +0 -161
  39. package/dist/esm/lib/compiler/index.js +0 -13
  40. package/dist/esm/lib/compiler/stringifier.js +0 -137
  41. package/dist/esm/lib/compiler/types.js +0 -0
  42. package/dist/esm/server/build.js +0 -3
  43. package/dist/esm/server/framework-preset-server.js +0 -18
  44. package/dist/esm/server/index.js +0 -3
  45. package/dist/esm/server/loader.js +0 -4
  46. package/dist/esm/server/options.js +0 -8
  47. package/dist/modern/client/index.js +0 -5
  48. package/dist/modern/client/preview/types.js +0 -1
  49. package/dist/modern/lib/compiler/index.js +0 -12
  50. package/dist/modern/lib/compiler/stringifier.js +0 -83
  51. package/dist/modern/lib/compiler/types.js +0 -0
  52. package/dist/modern/server/build.js +0 -3
  53. package/dist/modern/server/framework-preset-server.js +0 -18
  54. package/dist/modern/server/index.js +0 -3
  55. package/dist/modern/server/loader.js +0 -4
  56. package/dist/modern/server/options.js +0 -8
  57. package/dist/ts3.4/client/index.d.ts +0 -1
  58. package/dist/ts3.4/client/preview/config.d.ts +0 -4
  59. package/dist/ts3.4/client/preview/globals.d.ts +0 -1
  60. package/dist/ts3.4/client/preview/index.d.ts +0 -21
  61. package/dist/ts3.4/client/preview/render.d.ts +0 -5
  62. package/dist/ts3.4/client/preview/types.d.ts +0 -20
  63. package/dist/ts3.4/lib/compiler/index.d.ts +0 -2
  64. package/dist/ts3.4/lib/compiler/stringifier.d.ts +0 -7
  65. package/dist/ts3.4/lib/compiler/types.d.ts +0 -24
  66. package/dist/ts3.4/server/build.d.ts +0 -1
  67. package/dist/ts3.4/server/framework-preset-server.d.ts +0 -4
  68. package/dist/ts3.4/server/index.d.ts +0 -1
  69. package/dist/ts3.4/server/loader.d.ts +0 -2
  70. package/dist/ts3.4/server/options.d.ts +0 -3
  71. package/dist/ts3.9/lib/compiler/index.d.ts +0 -2
  72. package/dist/ts3.9/lib/compiler/stringifier.d.ts +0 -7
  73. package/dist/ts3.9/lib/compiler/types.d.ts +0 -24
  74. package/dist/ts3.9/server/build.d.ts +0 -1
  75. package/dist/ts3.9/server/framework-preset-server.d.ts +0 -4
  76. package/dist/ts3.9/server/index.d.ts +0 -1
  77. package/dist/ts3.9/server/loader.d.ts +0 -2
  78. package/dist/ts3.9/server/options.d.ts +0 -3
  79. package/preset.js +0 -1
  80. package/standalone.js +0 -8
package/README.md CHANGED
@@ -1,317 +1 @@
1
- # Storybook for Server
2
-
3
- ---
4
-
5
- Storybook for Server is a UI development environment for your plain HTML snippets rendered by your server backend.
6
- With it, you can visualize different states of your UI components and develop them interactively.
7
-
8
- ![Storybook Screenshot](https://github.com/storybookjs/storybook/blob/main/media/storybook-intro.gif)
9
-
10
- Storybook runs outside of your app.
11
- So you can develop UI components in isolation without worrying about app specific dependencies and requirements.
12
-
13
- ## Getting Started
14
-
15
- ```sh
16
- cd my-app
17
- npx sb init -t server
18
- ```
19
-
20
- To configure the server that Storybook will connect to, export a global parameter `parameters.server.url` in `.storybook/preview.js`:
21
-
22
- ```js
23
- export const parameters = {
24
- server: {
25
- url: `http://localhost:${port}/storybook_preview`,
26
- },
27
- };
28
- ```
29
-
30
- The URL you connect to should have the ability to render a story, see [server rendering](#server-rendering) below.
31
-
32
- For more information visit: [storybook.js.org](https://storybook.js.org)
33
-
34
- ## Writing Stories
35
-
36
- To write a story, use whatever API is natural for your server-side rendering framework to generate set of JSON or YAML files of stories analogous to CSF files (see the [`server-kitchen-sink`](../../examples/server-kitchen-sink/stories) example for ideas).
37
-
38
- ```json
39
- {
40
- "title": "Component",
41
- "parameters": {
42
- "options": { "component": "my_widget" }
43
- },
44
- "stories": [
45
- {
46
- "name": "Default",
47
- "parameters": {
48
- "server": { "id": "path/of/your/story" }
49
- }
50
- }
51
- ]
52
- }
53
- ```
54
-
55
- In your `.storybook/main.js` you simply provide a glob specifying the location of those JSON files, e.g.
56
-
57
- ```js
58
- module.exports = {
59
- stories: ['../stories/**/*.stories.json'],
60
- };
61
- ```
62
-
63
- Notice that the JSON does not specify a rendering function -- `@storybook/server` will instead call your `parameters.server.url` with the story's server id appended.
64
-
65
- For example the JSON story above is requivalent to the CSF3 definition:
66
-
67
- ```javascript
68
- export default {
69
- title: 'Component',
70
- parameters: {
71
- options: {
72
- component: 'my_widget',
73
- },
74
- },
75
- };
76
-
77
- export const Default = {
78
- name: 'Default',
79
- parameters: {
80
- server: {
81
- id: 'path/of/your/story"',
82
- },
83
- },
84
- };
85
- ```
86
-
87
- With the story HTML will be fetched from the server by making a GET request to http://localhost/storybook_preview/path/of/your/story`
88
-
89
- ### Ruby/Rails support
90
-
91
- In particular the [View Component::Storybook](https://github.com/jonspalmer/view_component_storybook) gem provides a Ruby API for easily creating the above with a Ruby/Rails DSL (as well as providing a server rendering endpoint).
92
-
93
- ## Server rendering
94
-
95
- The server rendering side of things is relatively straightfoward. When you browse to a story in the sidebar, Storybook will make a `fetch` request to `${parameters.server.url}/{parameters.server.id}` and display the HTML that is returned.
96
-
97
- You need to ensure the route in your server app renders the appropriate HTML when called in that fashion.
98
-
99
- ### Passing parameters to the server
100
-
101
- Many components are likely to be dynamic - responding to parameters that change their content or appearance. `@storybook\server` has two mechanisms for passing those parameters to the server - `params` and `args`. Parameters defined in this way are appended to the fetch url as query string parameters. The server endpoint is responsible for interpreting those parameters and vary the returned html appropriately
102
-
103
- #### Constant parameters with `params`
104
-
105
- Static parameters can be defined using the `params` story parameter. For example suppose you have a Button component that has a label and color options:
106
-
107
- ```json
108
- {
109
- "title": "Buttons",
110
- "stories": [
111
- {
112
- "name": "Red",
113
- "parameters": {
114
- "server": {
115
- "id": "button",
116
- "params": { "color": "red", "label": "Stop" }
117
- }
118
- }
119
- },
120
- {
121
- "name": "Green",
122
- "parameters": {
123
- "server": {
124
- "id": "button",
125
- "params": { "color": "green", "label": "OK" }
126
- }
127
- }
128
- }
129
- ]
130
- }
131
- ```
132
-
133
- The Red and Green story HTML will be fetched from the urls `server.url/controls/button?color=red&label=Stop` and `server.url/controls/button?color=green&label=OK`
134
-
135
- Like all story parameters server params can be defined in the default export and overridden in stories.
136
-
137
- ```json
138
- {
139
- "title": "Buttons",
140
- "parameters": {
141
- "server": {
142
- "params": { "color": "red" }
143
- }
144
- },
145
- "stories": [
146
- {
147
- "name": "Default",
148
- "parameters": {
149
- "server": {
150
- "id": "button",
151
- "params": { "label": "Stop" }
152
- }
153
- }
154
- },
155
- {
156
- "name": "Green",
157
- "parameters": {
158
- "server": {
159
- "id": "button",
160
- "params": { "color": "green", "label": "OK" }
161
- }
162
- }
163
- }
164
- ]
165
- }
166
- ```
167
-
168
- #### Dynamic parameters with `args` and Controls
169
-
170
- Dynamic parameters can be defined using args and the Controls addon
171
-
172
- ```json
173
- {
174
- "title": "Buttons",
175
- "stories": [
176
- {
177
- "name": "Red",
178
- "parameters": {
179
- "server": {
180
- "id": "button"
181
- }
182
- },
183
- "args": { "color": "red", "label": "Stop" }
184
- },
185
- {
186
- "name": "Green",
187
- "parameters": {
188
- "server": {
189
- "id": "button"
190
- }
191
- },
192
- "args": { "color": "green", "label": "Go" }
193
- }
194
- ]
195
- }
196
- ```
197
-
198
- Story args are passed to the server as url query parameters just like `params` except now they can be varied on the Controls addon panel.
199
-
200
- Just like CSF stories we can define `argTypes` to specify the controls used in the controls panel. `argTypes` can be defined at the default or story level.
201
-
202
- ```json
203
- {
204
- "title": "Buttons",
205
- "argTypes": {
206
- "color": { "control": { "type": "color" } }
207
- },
208
- "stories": [
209
- {
210
- "name": "Red",
211
- "parameters": {
212
- "server": {
213
- "id": "button"
214
- }
215
- },
216
- "args": { "color": "red", "label": "Stop" }
217
- },
218
- {
219
- "name": "Green",
220
- "parameters": {
221
- "server": {
222
- "id": "button"
223
- }
224
- },
225
- "args": { "color": "green", "label": "Go" }
226
- }
227
- ]
228
- }
229
- ```
230
-
231
- ## Addon compatibility
232
-
233
- Storybook also comes with a lot of [addons](https://storybook.js.org/addons) and a great API to customize as you wish. As some addons assume the story is rendered in JS, they may not work with `@storybook/server` (yet!).
234
-
235
- Many addons that act on the manager side (such as `backgrounds` and `viewport`) will work out of the box with `@storybook/server` -- you can configure them with parameters written on the server as usual.
236
-
237
- ### Controls
238
-
239
- To configure controls, simple add `args` and `argTypes` keys to the story JSON much like you would CSF:
240
-
241
- ```json
242
- {
243
- "title": "Controls",
244
- "stories": [
245
- {
246
- "name": "Button",
247
- "parameters": {
248
- "server": { "id": "controls/button" }
249
- },
250
- "args": { "button_text": "Push Me", "color": "red" },
251
- "argTypes": { "button_text": { "control": { "type": "color" } } }
252
- }
253
- ]
254
- }
255
- ```
256
-
257
- The controls values will be added to your story URL as query parameters.
258
-
259
- ### Actions
260
-
261
- To use actions, use the `parameters.actions.handles` parameter:
262
-
263
- ```json
264
- {
265
- "title": "Actions",
266
- "stories": [
267
- {
268
- "name": "Button",
269
- "parameters": {
270
- "server": { "id": "actions/button" },
271
- "actions": {
272
- "handles": ["mouseover", "click .btn"]
273
- }
274
- }
275
- }
276
- ]
277
- }
278
- ```
279
-
280
- ## Advanced Configuration
281
-
282
- ### fetchStoryHtml
283
-
284
- For control over how `@storybook/server` fetches Html from the server you can provide a `fetchStoryHtml` function as a parameter. You would typically set this in `.storybook/preview.js` but it's just a regular Storybook parameter so could be overridden at the stories or story level.
285
-
286
- ```javascript
287
- // .storybook/preview.js
288
-
289
- const fetchStoryHtml = async (url, path, params, context) => {
290
- // Custom fetch implementation
291
- // ....
292
- return html;
293
- };
294
-
295
- export const parameters = {
296
- server: {
297
- url: `http://localhost:${port}/storybook_preview`,
298
- fetchStoryHtml,
299
- },
300
- };
301
- ```
302
-
303
- `fetchStoryHtml` should be an async function with the following signature
304
-
305
- ```javascript
306
- type FetchStoryHtmlType = (
307
- url: string,
308
- id: string,
309
- params: any,
310
- context: StoryContext
311
- ) => Promise<string | Node>;
312
- ```
313
-
314
- - url: Server url configured by the `parameters.server.url`
315
- - id: Id of the story being rendered given by `parameters.server.id`
316
- - params: Merged story params `parameters.server.params`and story args
317
- - context: The context of the story
1
+ # Storybook Server renderer
@@ -5,55 +5,56 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  Object.defineProperty(exports, "addDecorator", {
7
7
  enumerable: true,
8
- get: function get() {
8
+ get: function () {
9
9
  return _preview.addDecorator;
10
10
  }
11
11
  });
12
12
  Object.defineProperty(exports, "addParameters", {
13
13
  enumerable: true,
14
- get: function get() {
14
+ get: function () {
15
15
  return _preview.addParameters;
16
16
  }
17
17
  });
18
18
  Object.defineProperty(exports, "configure", {
19
19
  enumerable: true,
20
- get: function get() {
20
+ get: function () {
21
21
  return _preview.configure;
22
22
  }
23
23
  });
24
24
  Object.defineProperty(exports, "forceReRender", {
25
25
  enumerable: true,
26
- get: function get() {
26
+ get: function () {
27
27
  return _preview.forceReRender;
28
28
  }
29
29
  });
30
30
  Object.defineProperty(exports, "getStorybook", {
31
31
  enumerable: true,
32
- get: function get() {
32
+ get: function () {
33
33
  return _preview.getStorybook;
34
34
  }
35
35
  });
36
36
  Object.defineProperty(exports, "raw", {
37
37
  enumerable: true,
38
- get: function get() {
38
+ get: function () {
39
39
  return _preview.raw;
40
40
  }
41
41
  });
42
42
  Object.defineProperty(exports, "setAddon", {
43
43
  enumerable: true,
44
- get: function get() {
44
+ get: function () {
45
45
  return _preview.setAddon;
46
46
  }
47
47
  });
48
48
  Object.defineProperty(exports, "storiesOf", {
49
49
  enumerable: true,
50
- get: function get() {
50
+ get: function () {
51
51
  return _preview.storiesOf;
52
52
  }
53
53
  });
54
54
 
55
55
  var _preview = require("./preview");
56
56
 
57
- if (module && module.hot && module.hot.decline) {
58
- module.hot.decline();
59
- }
57
+ var _module, _module$hot;
58
+
59
+ // optimization: stop HMR propagation in webpack
60
+ (_module = module) === null || _module === void 0 ? void 0 : (_module$hot = _module.hot) === null || _module$hot === void 0 ? void 0 : _module$hot.decline();
@@ -6,20 +6,20 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.parameters = void 0;
7
7
  Object.defineProperty(exports, "render", {
8
8
  enumerable: true,
9
- get: function get() {
9
+ get: function () {
10
10
  return _render.render;
11
11
  }
12
12
  });
13
13
  Object.defineProperty(exports, "renderToDOM", {
14
14
  enumerable: true,
15
- get: function get() {
15
+ get: function () {
16
16
  return _render.renderToDOM;
17
17
  }
18
18
  });
19
19
 
20
20
  var _render = require("./render");
21
21
 
22
- var parameters = {
22
+ const parameters = {
23
23
  framework: 'server'
24
24
  };
25
25
  exports.parameters = parameters;
@@ -4,5 +4,7 @@ var _global = _interopRequireDefault(require("global"));
4
4
 
5
5
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6
6
 
7
- var globalWindow = _global.default.window;
7
+ const {
8
+ window: globalWindow
9
+ } = _global.default;
8
10
  globalWindow.STORYBOOK_ENV = 'SERVER';
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.storiesOf = exports.setAddon = exports.raw = exports.getStorybook = exports.forceReRender = exports.configure = exports.clearDecorators = exports.addParameters = exports.addDecorator = void 0;
7
+
8
+ var _coreClient = require("@storybook/core-client");
9
+
10
+ require("./globals");
11
+
12
+ var _render = require("./render");
13
+
14
+ const framework = 'server';
15
+ const api = (0, _coreClient.start)(_render.renderToDOM, {
16
+ render: _render.render
17
+ });
18
+
19
+ const storiesOf = (kind, m) => {
20
+ return api.clientApi.storiesOf(kind, m).addParameters({
21
+ framework
22
+ });
23
+ };
24
+
25
+ exports.storiesOf = storiesOf;
26
+
27
+ const configure = (...args) => api.configure(framework, ...args);
28
+
29
+ exports.configure = configure;
30
+ const {
31
+ addDecorator,
32
+ addParameters,
33
+ clearDecorators,
34
+ setAddon,
35
+ getStorybook,
36
+ raw
37
+ } = api.clientApi;
38
+ exports.raw = raw;
39
+ exports.getStorybook = getStorybook;
40
+ exports.setAddon = setAddon;
41
+ exports.clearDecorators = clearDecorators;
42
+ exports.addParameters = addParameters;
43
+ exports.addDecorator = addDecorator;
44
+ const {
45
+ forceReRender
46
+ } = api;
47
+ exports.forceReRender = forceReRender;
@@ -0,0 +1,113 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.render = void 0;
7
+ exports.renderToDOM = renderToDOM;
8
+
9
+ var _global = _interopRequireDefault(require("global"));
10
+
11
+ var _tsDedent = _interopRequireDefault(require("ts-dedent"));
12
+
13
+ var _previewWeb = require("@storybook/preview-web");
14
+
15
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
+
17
+ /* eslint-disable no-param-reassign */
18
+ const {
19
+ fetch,
20
+ Node
21
+ } = _global.default;
22
+
23
+ const defaultFetchStoryHtml = async (url, path, params, storyContext) => {
24
+ const fetchUrl = new URL(`${url}/${path}`);
25
+ fetchUrl.search = new URLSearchParams(Object.assign({}, storyContext.globals, params)).toString();
26
+ const response = await fetch(fetchUrl);
27
+ return response.text();
28
+ };
29
+
30
+ const buildStoryArgs = (args, argTypes) => {
31
+ const storyArgs = Object.assign({}, args);
32
+ Object.keys(argTypes).forEach(key => {
33
+ const argType = argTypes[key];
34
+ const {
35
+ control
36
+ } = argType;
37
+ const controlType = control && control.type.toLowerCase();
38
+ const argValue = storyArgs[key];
39
+
40
+ switch (controlType) {
41
+ case 'date':
42
+ // For cross framework & language support we pick a consistent representation of Dates as strings
43
+ storyArgs[key] = new Date(argValue).toISOString();
44
+ break;
45
+
46
+ case 'object':
47
+ // send objects as JSON strings
48
+ storyArgs[key] = JSON.stringify(argValue);
49
+ break;
50
+
51
+ default:
52
+ }
53
+ });
54
+ return storyArgs;
55
+ };
56
+
57
+ const render = args => {};
58
+
59
+ exports.render = render;
60
+
61
+ async function renderToDOM({
62
+ id,
63
+ title,
64
+ name,
65
+ showMain,
66
+ showError,
67
+ forceRemount,
68
+ storyFn,
69
+ storyContext,
70
+ storyContext: {
71
+ parameters,
72
+ args,
73
+ argTypes
74
+ }
75
+ }, domElement) {
76
+ // Some addons wrap the storyFn so we need to call it even though Server doesn't need the answer
77
+ storyFn();
78
+ const storyArgs = buildStoryArgs(args, argTypes);
79
+ const {
80
+ server: {
81
+ url,
82
+ id: storyId,
83
+ fetchStoryHtml = defaultFetchStoryHtml,
84
+ params
85
+ }
86
+ } = parameters;
87
+ const fetchId = storyId || id;
88
+ const storyParams = Object.assign({}, params, storyArgs);
89
+ const element = await fetchStoryHtml(url, fetchId, storyParams, storyContext);
90
+ showMain();
91
+
92
+ if (typeof element === 'string') {
93
+ domElement.innerHTML = element;
94
+ (0, _previewWeb.simulatePageLoad)(domElement);
95
+ } else if (element instanceof Node) {
96
+ // Don't re-mount the element if it didn't change and neither did the story
97
+ if (domElement.firstChild === element && forceRemount === false) {
98
+ return;
99
+ }
100
+
101
+ domElement.innerHTML = '';
102
+ domElement.appendChild(element);
103
+ (0, _previewWeb.simulateDOMContentLoaded)();
104
+ } else {
105
+ showError({
106
+ title: `Expecting an HTML snippet or DOM node from the story: "${name}" of "${title}".`,
107
+ description: (0, _tsDedent.default)`
108
+ Did you forget to return the HTML snippet from the story?
109
+ Use "() => <your snippet or node>" or when defining the story.
110
+ `
111
+ });
112
+ }
113
+ }
File without changes
@@ -0,0 +1,3 @@
1
+ export { storiesOf, setAddon, addDecorator, addParameters, configure, getStorybook, forceReRender, raw } from './preview'; // optimization: stop HMR propagation in webpack
2
+
3
+ module?.hot?.decline();
File without changes
File without changes
@@ -1,4 +1,4 @@
1
- import { start } from '@storybook/core';
1
+ import { start } from '@storybook/core-client';
2
2
  import './globals';
3
3
  import { renderToDOM, render } from './render';
4
4
  const framework = 'server';
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,4 @@
1
1
  /// <reference types="webpack-env" />
2
- /// <reference types="node" />
3
2
  import type { ClientStoryApi, Loadable } from '@storybook/addons';
4
3
  import './globals';
5
4
  import type { IStorybookSection, ServerFramework } from './types';
@@ -16,6 +15,6 @@ export declare const configure: ClientApi['configure'];
16
15
  export declare const addDecorator: (() => never) | ((decorator: import("@storybook/csf").DecoratorFunction<ServerFramework, import("@storybook/addons").Args>) => void), addParameters: (({ globals, globalTypes, ...parameters }: import("@storybook/csf").Parameters & {
17
16
  globals?: import("@storybook/csf").Globals;
18
17
  globalTypes?: import("@storybook/csf").GlobalTypes;
19
- }) => void) | (() => never), clearDecorators: (() => void) | (() => never), setAddon: ((addon: any) => void) | (() => never), getStorybook: (() => never) | (() => import("@storybook/client-api/dist/ts3.9/ClientApi").GetStorybookKind<ServerFramework>[]), raw: (() => never) | (() => import("@storybook/store").BoundStory<ServerFramework>[]);
18
+ }) => void) | (() => never), clearDecorators: (() => void) | (() => never), setAddon: ((addon: any) => void) | (() => never), getStorybook: (() => never) | (() => import("lib/client-api/dist/types/ClientApi").GetStorybookKind<ServerFramework>[]), raw: (() => never) | (() => import("lib/store/dist/types").BoundStory<ServerFramework>[]);
20
19
  export declare const forceReRender: (() => never) | (() => void);
21
20
  export {};
File without changes
@@ -1,5 +1,5 @@
1
1
  import type { StoryContext } from '@storybook/csf';
2
- export type { RenderContext } from '@storybook/core';
2
+ export type { RenderContext } from '@storybook/core-client';
3
3
  export declare type StoryFnServerReturnType = any;
4
4
  export declare type ServerFramework = {
5
5
  component: string;