├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .scripts ├── get_gh_pages_url.js ├── mocha_runner.js ├── prepublish.sh ├── publish_storybook.sh └── user │ ├── prepublish.sh │ └── pretest.js ├── .storybook ├── config.js ├── user │ └── modify_webpack_config.js └── webpack.config.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs └── home-screenshot.png ├── example ├── Button.js └── story.js ├── package.json └── src ├── components ├── Chapter.jsx ├── Node.jsx ├── PropTable.jsx ├── Section.jsx └── Story.jsx ├── index.js ├── tests └── index.js ├── theme.js └── utils └── info-content.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | dist 4 | .vscode 5 | .idea 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | -------------------------------------------------------------------------------- /.scripts/get_gh_pages_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.scripts/get_gh_pages_url.js -------------------------------------------------------------------------------- /.scripts/mocha_runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.scripts/mocha_runner.js -------------------------------------------------------------------------------- /.scripts/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.scripts/prepublish.sh -------------------------------------------------------------------------------- /.scripts/publish_storybook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.scripts/publish_storybook.sh -------------------------------------------------------------------------------- /.scripts/user/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.scripts/user/prepublish.sh -------------------------------------------------------------------------------- /.scripts/user/pretest.js: -------------------------------------------------------------------------------- 1 | // Use this file to setup any test utilities. 2 | -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/user/modify_webpack_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.storybook/user/modify_webpack_config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/README.md -------------------------------------------------------------------------------- /docs/home-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/docs/home-screenshot.png -------------------------------------------------------------------------------- /example/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/example/Button.js -------------------------------------------------------------------------------- /example/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/example/story.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Chapter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/components/Chapter.jsx -------------------------------------------------------------------------------- /src/components/Node.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/components/Node.jsx -------------------------------------------------------------------------------- /src/components/PropTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/components/PropTable.jsx -------------------------------------------------------------------------------- /src/components/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/components/Section.jsx -------------------------------------------------------------------------------- /src/components/Story.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/components/Story.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/index.js -------------------------------------------------------------------------------- /src/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/tests/index.js -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/theme.js -------------------------------------------------------------------------------- /src/utils/info-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Checkfront/react-storybook-addon-chapters/HEAD/src/utils/info-content.js --------------------------------------------------------------------------------