├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Container.js ├── ContainerMixin.js ├── LICENSE ├── Layer.js ├── LayerMixin.js ├── Portal.js ├── README.md ├── __tests__ ├── Container-test.js ├── ContainerMixin-test.js ├── Layer-test.js ├── LayerMixin-test.js └── Portal-test.js ├── examples ├── README.md ├── dynamic-container │ ├── app.js │ └── index.html ├── global.css └── modal │ ├── app.js │ └── index.html ├── index.js ├── modules ├── Container.js ├── CustomPropTypes.js ├── ReactLayer.js ├── __tests__ │ ├── Container-test.js │ ├── CustomPropTypes-test.js │ └── ReactLayer-test.js └── documentBodyContainer.js ├── package.json ├── preprocessor.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/Container.js -------------------------------------------------------------------------------- /ContainerMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/ContainerMixin.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/LICENSE -------------------------------------------------------------------------------- /Layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/Layer.js -------------------------------------------------------------------------------- /LayerMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/LayerMixin.js -------------------------------------------------------------------------------- /Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/Portal.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/Container-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/__tests__/Container-test.js -------------------------------------------------------------------------------- /__tests__/ContainerMixin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/__tests__/ContainerMixin-test.js -------------------------------------------------------------------------------- /__tests__/Layer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/__tests__/Layer-test.js -------------------------------------------------------------------------------- /__tests__/LayerMixin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/__tests__/LayerMixin-test.js -------------------------------------------------------------------------------- /__tests__/Portal-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/__tests__/Portal-test.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/dynamic-container/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/dynamic-container/app.js -------------------------------------------------------------------------------- /examples/dynamic-container/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/dynamic-container/index.html -------------------------------------------------------------------------------- /examples/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/global.css -------------------------------------------------------------------------------- /examples/modal/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/modal/app.js -------------------------------------------------------------------------------- /examples/modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/examples/modal/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/index.js -------------------------------------------------------------------------------- /modules/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/Container.js -------------------------------------------------------------------------------- /modules/CustomPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/CustomPropTypes.js -------------------------------------------------------------------------------- /modules/ReactLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/ReactLayer.js -------------------------------------------------------------------------------- /modules/__tests__/Container-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/__tests__/Container-test.js -------------------------------------------------------------------------------- /modules/__tests__/CustomPropTypes-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/__tests__/CustomPropTypes-test.js -------------------------------------------------------------------------------- /modules/__tests__/ReactLayer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/__tests__/ReactLayer-test.js -------------------------------------------------------------------------------- /modules/documentBodyContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/modules/documentBodyContainer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/package.json -------------------------------------------------------------------------------- /preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/preprocessor.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pieterv/react-layers/HEAD/webpack.config.js --------------------------------------------------------------------------------