├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── dist ├── react-tray.js └── react-tray.min.js ├── examples ├── basic │ ├── app.js │ └── index.html └── index.html ├── lib ├── components │ ├── Tray.js │ ├── TrayPortal.js │ └── __tests__ │ │ └── Tray-test.js ├── helpers │ ├── customPropTypes.js │ ├── focusManager.js │ ├── isLeavingNode.js │ └── tabbable.js └── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/README.md -------------------------------------------------------------------------------- /dist/react-tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/dist/react-tray.js -------------------------------------------------------------------------------- /dist/react-tray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/dist/react-tray.min.js -------------------------------------------------------------------------------- /examples/basic/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/examples/basic/app.js -------------------------------------------------------------------------------- /examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/examples/basic/index.html -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/examples/index.html -------------------------------------------------------------------------------- /lib/components/Tray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/components/Tray.js -------------------------------------------------------------------------------- /lib/components/TrayPortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/components/TrayPortal.js -------------------------------------------------------------------------------- /lib/components/__tests__/Tray-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/components/__tests__/Tray-test.js -------------------------------------------------------------------------------- /lib/helpers/customPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/helpers/customPropTypes.js -------------------------------------------------------------------------------- /lib/helpers/focusManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/helpers/focusManager.js -------------------------------------------------------------------------------- /lib/helpers/isLeavingNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/helpers/isLeavingNode.js -------------------------------------------------------------------------------- /lib/helpers/tabbable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/lib/helpers/tabbable.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./components/Tray'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructure-react/react-tray/HEAD/package.json --------------------------------------------------------------------------------