├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── bin └── styleguidist ├── contributing.md ├── core ├── build.js ├── index.js ├── lang-jsx.js └── middleware │ └── index.js ├── example ├── lib │ └── components │ │ ├── Button │ │ ├── Button.css │ │ ├── Button.js │ │ ├── Readme.md │ │ └── index.js │ │ └── Placeholder │ │ ├── Placeholder.css │ │ ├── Placeholder.js │ │ ├── Readme.md │ │ └── index.js └── styleguide.config.js ├── gulpfile.js ├── license.md ├── loaders ├── examples.loader.js └── styleguide.loader.js ├── mochasetup.js ├── package.json ├── readme.md ├── src ├── build.js ├── components │ ├── Components │ │ ├── Components.js │ │ └── index.js │ ├── Editor │ │ ├── Editor.css │ │ ├── Editor.js │ │ └── index.js │ ├── Layout │ │ ├── Layout.css │ │ ├── Layout.js │ │ └── index.js │ ├── Playground │ │ ├── Playground.css │ │ ├── Playground.js │ │ └── index.js │ ├── Preview │ │ ├── Preview.css │ │ ├── Preview.js │ │ └── index.js │ ├── Props │ │ ├── Props.css │ │ ├── Props.js │ │ └── index.js │ ├── ReactComponent │ │ ├── ReactComponent.css │ │ ├── ReactComponent.js │ │ └── index.js │ ├── StyleGuide │ │ ├── StyleGuide.js │ │ └── index.js │ └── Wrapper │ │ ├── Wrapper.js │ │ └── index.js ├── index.js ├── make-webpack-config.js ├── server.js ├── styles.css ├── templates │ └── index.html └── utils │ ├── codemirror-jsx.js │ ├── config.js │ ├── server.js │ └── utils.js └── test ├── examples.loader.spec.js ├── mocha.opts └── utils.utils.spec.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | example/styleguide/ 2 | .publish/ 3 | node_modules 4 | build 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/.travis.yml -------------------------------------------------------------------------------- /bin/styleguidist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/bin/styleguidist -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/contributing.md -------------------------------------------------------------------------------- /core/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/core/build.js -------------------------------------------------------------------------------- /core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/core/index.js -------------------------------------------------------------------------------- /core/lang-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/core/lang-jsx.js -------------------------------------------------------------------------------- /core/middleware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/core/middleware/index.js -------------------------------------------------------------------------------- /example/lib/components/Button/Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/example/lib/components/Button/Button.css -------------------------------------------------------------------------------- /example/lib/components/Button/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/example/lib/components/Button/Button.js -------------------------------------------------------------------------------- /example/lib/components/Button/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/example/lib/components/Button/Readme.md -------------------------------------------------------------------------------- /example/lib/components/Button/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Button.js'; 2 | -------------------------------------------------------------------------------- /example/lib/components/Placeholder/Placeholder.css: -------------------------------------------------------------------------------- 1 | .root { 2 | background: #ccc; 3 | } 4 | -------------------------------------------------------------------------------- /example/lib/components/Placeholder/Placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/example/lib/components/Placeholder/Placeholder.js -------------------------------------------------------------------------------- /example/lib/components/Placeholder/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example/lib/components/Placeholder/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Placeholder.js'; 2 | -------------------------------------------------------------------------------- /example/styleguide.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/example/styleguide.config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/gulpfile.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/license.md -------------------------------------------------------------------------------- /loaders/examples.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/loaders/examples.loader.js -------------------------------------------------------------------------------- /loaders/styleguide.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/loaders/styleguide.loader.js -------------------------------------------------------------------------------- /mochasetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/mochasetup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/readme.md -------------------------------------------------------------------------------- /src/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/build.js -------------------------------------------------------------------------------- /src/components/Components/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Components/Components.js -------------------------------------------------------------------------------- /src/components/Components/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Components.js'; 2 | -------------------------------------------------------------------------------- /src/components/Editor/Editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Editor/Editor.css -------------------------------------------------------------------------------- /src/components/Editor/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Editor/Editor.js -------------------------------------------------------------------------------- /src/components/Editor/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Editor.js'; 2 | -------------------------------------------------------------------------------- /src/components/Layout/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Layout/Layout.css -------------------------------------------------------------------------------- /src/components/Layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Layout/Layout.js -------------------------------------------------------------------------------- /src/components/Layout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Layout.js'; 2 | -------------------------------------------------------------------------------- /src/components/Playground/Playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Playground/Playground.css -------------------------------------------------------------------------------- /src/components/Playground/Playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Playground/Playground.js -------------------------------------------------------------------------------- /src/components/Playground/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Playground.js'; 2 | -------------------------------------------------------------------------------- /src/components/Preview/Preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Preview/Preview.css -------------------------------------------------------------------------------- /src/components/Preview/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Preview/Preview.js -------------------------------------------------------------------------------- /src/components/Preview/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Preview.js'; 2 | -------------------------------------------------------------------------------- /src/components/Props/Props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Props/Props.css -------------------------------------------------------------------------------- /src/components/Props/Props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Props/Props.js -------------------------------------------------------------------------------- /src/components/Props/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Props.js'; 2 | -------------------------------------------------------------------------------- /src/components/ReactComponent/ReactComponent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/ReactComponent/ReactComponent.css -------------------------------------------------------------------------------- /src/components/ReactComponent/ReactComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/ReactComponent/ReactComponent.js -------------------------------------------------------------------------------- /src/components/ReactComponent/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './ReactComponent.js'; 2 | -------------------------------------------------------------------------------- /src/components/StyleGuide/StyleGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/StyleGuide/StyleGuide.js -------------------------------------------------------------------------------- /src/components/StyleGuide/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './StyleGuide.js'; 2 | -------------------------------------------------------------------------------- /src/components/Wrapper/Wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/components/Wrapper/Wrapper.js -------------------------------------------------------------------------------- /src/components/Wrapper/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './Wrapper.js'; 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/index.js -------------------------------------------------------------------------------- /src/make-webpack-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/make-webpack-config.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/server.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/templates/index.html -------------------------------------------------------------------------------- /src/utils/codemirror-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/utils/codemirror-jsx.js -------------------------------------------------------------------------------- /src/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/utils/config.js -------------------------------------------------------------------------------- /src/utils/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/utils/server.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /test/examples.loader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/test/examples.loader.spec.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:babel-core/register 2 | --require mochasetup 3 | -------------------------------------------------------------------------------- /test/utils.utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcejs/sourcejs-react-styleguidist/HEAD/test/utils.utils.spec.js --------------------------------------------------------------------------------