├── .babelrc.js ├── .eslintignore ├── .eslintrc ├── .github ├── banner.svg └── workflows │ └── publish.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .storybook ├── addons.js ├── config.js └── preview-head.html ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── 0.832dfd222af123ce2f31.manager.bundle.js ├── 4.db02a1c3f1659cbe21f6.manager.bundle.js ├── 4.db02a1c3f1659cbe21f6.manager.bundle.js.LICENSE.txt ├── 5.4d53f3bd7dac3d5945b8.manager.bundle.js ├── 5.4d53f3bd7dac3d5945b8.manager.bundle.js.LICENSE.txt ├── 6.8ba05c71d52a3d82cda0.manager.bundle.js ├── 7.318ff74319aa6c7eeb31.manager.bundle.js ├── favicon.ico ├── iframe.html ├── index.html ├── main.1d1e3042.iframe.bundle.js ├── main.1d44ffca4e30d87db952.manager.bundle.js ├── runtime~main.bf4428eb.iframe.bundle.js ├── runtime~main.c70d5de959612a6c5779.manager.bundle.js ├── vendors~main.15124dc5.iframe.bundle.js ├── vendors~main.15124dc5.iframe.bundle.js.LICENSE.txt ├── vendors~main.15124dc5.iframe.bundle.js.map ├── vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js └── vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js.LICENSE.txt ├── package.json ├── rollup.config.js ├── src └── NewWindow.js ├── stories ├── components │ ├── Button.js │ ├── Col.js │ ├── Container.js │ ├── Row.js │ └── TextInput.js ├── default.stories.js ├── features-prop.stories.js ├── prop-close-on-unmount.stories.js ├── text-box.stories.js ├── title-prop.stories.js └── url-prop.stories.js └── types └── NewWindow.d.ts /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | es 2 | umd 3 | stories 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.github/banner.svg -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | es 3 | umd 4 | lib 5 | *.log 6 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.12.1 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/README.md -------------------------------------------------------------------------------- /docs/0.832dfd222af123ce2f31.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/0.832dfd222af123ce2f31.manager.bundle.js -------------------------------------------------------------------------------- /docs/4.db02a1c3f1659cbe21f6.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/4.db02a1c3f1659cbe21f6.manager.bundle.js -------------------------------------------------------------------------------- /docs/4.db02a1c3f1659cbe21f6.manager.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/4.db02a1c3f1659cbe21f6.manager.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/5.4d53f3bd7dac3d5945b8.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/5.4d53f3bd7dac3d5945b8.manager.bundle.js -------------------------------------------------------------------------------- /docs/5.4d53f3bd7dac3d5945b8.manager.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/5.4d53f3bd7dac3d5945b8.manager.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/6.8ba05c71d52a3d82cda0.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/6.8ba05c71d52a3d82cda0.manager.bundle.js -------------------------------------------------------------------------------- /docs/7.318ff74319aa6c7eeb31.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/7.318ff74319aa6c7eeb31.manager.bundle.js -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/iframe.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.1d1e3042.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/main.1d1e3042.iframe.bundle.js -------------------------------------------------------------------------------- /docs/main.1d44ffca4e30d87db952.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/main.1d44ffca4e30d87db952.manager.bundle.js -------------------------------------------------------------------------------- /docs/runtime~main.bf4428eb.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/runtime~main.bf4428eb.iframe.bundle.js -------------------------------------------------------------------------------- /docs/runtime~main.c70d5de959612a6c5779.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/runtime~main.c70d5de959612a6c5779.manager.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.15124dc5.iframe.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/vendors~main.15124dc5.iframe.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.15124dc5.iframe.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/vendors~main.15124dc5.iframe.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/vendors~main.15124dc5.iframe.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/vendors~main.15124dc5.iframe.bundle.js.map -------------------------------------------------------------------------------- /docs/vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/docs/vendors~main.7dd5fda8ce8b35154eed.manager.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/NewWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/src/NewWindow.js -------------------------------------------------------------------------------- /stories/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/components/Button.js -------------------------------------------------------------------------------- /stories/components/Col.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/components/Col.js -------------------------------------------------------------------------------- /stories/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/components/Container.js -------------------------------------------------------------------------------- /stories/components/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/components/Row.js -------------------------------------------------------------------------------- /stories/components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/components/TextInput.js -------------------------------------------------------------------------------- /stories/default.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/default.stories.js -------------------------------------------------------------------------------- /stories/features-prop.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/features-prop.stories.js -------------------------------------------------------------------------------- /stories/prop-close-on-unmount.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/prop-close-on-unmount.stories.js -------------------------------------------------------------------------------- /stories/text-box.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/text-box.stories.js -------------------------------------------------------------------------------- /stories/title-prop.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/title-prop.stories.js -------------------------------------------------------------------------------- /stories/url-prop.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/stories/url-prop.stories.js -------------------------------------------------------------------------------- /types/NewWindow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmariuzzo/react-new-window/HEAD/types/NewWindow.d.ts --------------------------------------------------------------------------------