@talend/storybook-docs
v2.7.0
Published
Talend Storybook Docs component library
Readme
Talend Storybook doc tools
This package holds shared elements used in Storybook (themes) and its docs mode (.mdx files).
Getting Started
Clone the repository
$> git clone [email protected]:Talend/ui.gitInstall the dependencies
$> yarnStart Storybook and start editing
$> yarn workspace @talend/storybook-docs run startHow to integrate the shared theme in your storybook
In your .storybook directory you'll need to edit or create three files:
manager.js
import { addons } from '@storybook/addons';
import { create } from '@storybook/theming';
import { light } from '@talend/storybook-docs/lib/themes';
import '@talend/storybook-docs/dist/managerStyles.min.css';
addons.setConfig({
theme: create(light),
});manager-head.html
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"
rel="stylesheet"
/>preview.js
import '@talend/storybook-docs/dist/globalStyles.min.css';