├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── examples ├── modal-enhance-example │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── App.js │ │ ├── index.js │ │ ├── registerServiceWorker.js │ │ └── styles.js └── modal-example │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ └── src │ ├── App.js │ ├── index.js │ └── registerServiceWorker.js ├── lerna.json ├── package.json └── packages ├── modal-enhanced-react-native-web ├── .babelrc ├── LICENSE.md ├── README.md ├── default-config.js ├── package.json ├── src │ ├── animations.js │ ├── index.js │ └── styles.js ├── webpack.config.cjs.js └── webpack.config.esm.js └── modal-react-native-web ├── .babelrc ├── LICENSE.md ├── README.md ├── package.json └── src ├── Portal.js ├── ariaAppHider.js ├── index.js ├── styles.js └── utils.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/README.md -------------------------------------------------------------------------------- /examples/modal-enhance-example/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/modal-enhance-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/.gitignore -------------------------------------------------------------------------------- /examples/modal-enhance-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/README.md -------------------------------------------------------------------------------- /examples/modal-enhance-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/package.json -------------------------------------------------------------------------------- /examples/modal-enhance-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/public/favicon.ico -------------------------------------------------------------------------------- /examples/modal-enhance-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/public/index.html -------------------------------------------------------------------------------- /examples/modal-enhance-example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/public/manifest.json -------------------------------------------------------------------------------- /examples/modal-enhance-example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/src/App.js -------------------------------------------------------------------------------- /examples/modal-enhance-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/src/index.js -------------------------------------------------------------------------------- /examples/modal-enhance-example/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/modal-enhance-example/src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-enhance-example/src/styles.js -------------------------------------------------------------------------------- /examples/modal-example/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /examples/modal-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/.gitignore -------------------------------------------------------------------------------- /examples/modal-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/README.md -------------------------------------------------------------------------------- /examples/modal-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/package.json -------------------------------------------------------------------------------- /examples/modal-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/public/favicon.ico -------------------------------------------------------------------------------- /examples/modal-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/public/index.html -------------------------------------------------------------------------------- /examples/modal-example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/public/manifest.json -------------------------------------------------------------------------------- /examples/modal-example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/src/App.js -------------------------------------------------------------------------------- /examples/modal-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/src/index.js -------------------------------------------------------------------------------- /examples/modal-example/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/examples/modal-example/src/registerServiceWorker.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/package.json -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/.babelrc -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/LICENSE.md -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/README.md -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/default-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/default-config.js -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/package.json -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/src/animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/src/animations.js -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/src/index.js -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/src/styles.js -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/webpack.config.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/webpack.config.cjs.js -------------------------------------------------------------------------------- /packages/modal-enhanced-react-native-web/webpack.config.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-enhanced-react-native-web/webpack.config.esm.js -------------------------------------------------------------------------------- /packages/modal-react-native-web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/.babelrc -------------------------------------------------------------------------------- /packages/modal-react-native-web/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/LICENSE.md -------------------------------------------------------------------------------- /packages/modal-react-native-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/README.md -------------------------------------------------------------------------------- /packages/modal-react-native-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/package.json -------------------------------------------------------------------------------- /packages/modal-react-native-web/src/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/src/Portal.js -------------------------------------------------------------------------------- /packages/modal-react-native-web/src/ariaAppHider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/src/ariaAppHider.js -------------------------------------------------------------------------------- /packages/modal-react-native-web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/src/index.js -------------------------------------------------------------------------------- /packages/modal-react-native-web/src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/src/styles.js -------------------------------------------------------------------------------- /packages/modal-react-native-web/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dekoruma/react-native-web-modal/HEAD/packages/modal-react-native-web/src/utils.js --------------------------------------------------------------------------------