superset/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-demo
gordern 639c8bac74 feat(plugin-chart-echarts): echarts funnel chart (#1006)
* fix(plugin-chart-echarts): funnel rebase master

* fix(plugin-chart-echarts): resize thumbnail for Funnel Chart

* fix(plugin-chart-echarts): rm Funnel shape

* fix(plugin-chart-echarts): don't need the sort_by_metric control

* fix(plugin-chart-echarts): add sort and orient into Funnel shape

* refactor: use sharedControls instead of controlOverrides

* fix(plugin-chart-echarts): rm min/max args to use echarts default

* style(plugin-chart-echarts): update funnel thumbnail

* style(plugin-chart-echarts): rm unused properties

* fix(plugin-chart-echarts): revert yarn.lock into then one from master

* style(plugin-chart-echarts): add newline at the end of yarn.lock

* style(plugin-chart-echarts): npm run format

n

* style(plugin-chart-echarts): inser final new line to yarn.lock

* fix(demo): update funnel to Funnel

* feat(plugin-chart-echarts): add cross-filter

* feat(plugin-chart-echarts): add cross-filter
2021-11-26 11:47:06 +08:00
..
.storybook build: remove nimbus (#847) 2021-11-26 11:46:46 +08:00
storybook feat(plugin-chart-echarts): echarts funnel chart (#1006) 2021-11-26 11:47:06 +08:00
.eslintrc refactor: merge core superset-ui packages (#768) 2021-11-26 11:46:38 +08:00
package.json chore: publish v0.17.41 2021-11-26 11:47:06 +08:00
README.md fix: point version badge to npm page (#821) 2021-11-26 11:46:43 +08:00
tsconfig.json feat: allow toggling of table viz's bar chart backgrounds (#352) 2021-11-26 11:45:06 +08:00

@superset-ui/demo

Version David (path)

Storybook of @superset-ui packages. See it live at apache-superset.github.io/superset-ui

Development

Run storybook

To view the storybook locally, you should first run yarn install && yarn run bootstrap in the @superset-ui monorepo root directory, which will install all dependencies for this package and sym-link any @superset-ui packages to your local system.

After that run yarn run storybook which will open up a dev server at http://localhost:9001.

Adding new stories

Existing package

If stories already exist for the package you are adding, simply extend the examples already exported for that package in the storybook/stories/<package>/index.js file.

New package

If you are creating stories for a package that doesn't yet have any stories, follow these steps:

  1. Add any new package dependencies (including any @superset-ui/* packages) via yarn add <package>.

  2. Create a new folder that mirrors the package name

    e.g., mkdir storybook/stories/superset-ui-color/

  3. Add an index.js file to that folder with a default export with the following shape:

you can use the | separator within the storyPath string to denote nested stories e.g., storyPath: '@superset-ui/package|Nested i|Nested ii'

 default export {
   examples: [
     {
       storyPath: <string>,
       storyName: <string>,
       renderStory: <func> () => node,
     },
     ...
   ]
 };