Kasper Peulen a972ff2470
Merge pull request #19833 from storybookjs/kasper/expose-more-types
Expose more CSF types in all renderers
2022-11-16 10:17:59 +01:00
..
2022-11-14 09:14:49 +01:00
2022-11-14 17:12:13 +01:00
2022-11-14 14:18:39 +01:00
2022-09-04 00:31:35 -04:00

Storybook Core-Client

This package contains browser-side functionality shared amongst all the frameworks (React, RN, Vue, Ember, Angular, etc) in the old "v6" story store back-compatibility layer.

A framework calls the start(renderToCanvas, { render, decorateStory }) function and provides:

  • The renderToCanvas function, which tells Storybook how to render the result of a story function to the DOM
  • The render function, which is a default mapping of args to a story result in CSFv3
  • The decorateStory function, which tells Storybook how to combine decorators in the framework.

The start function will return a configure() function, which can be re-exported to be used in preview.js (deprecated), or automatically by the main.js:stories field to:

  • return a list of CSF files
  • [deprecated] make calls to the storiesOf API.