├── .editorconfig ├── .eslintrc ├── .gitignore ├── .lintstagedrc ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENCE.md ├── README.md ├── demo └── src │ ├── demo.md │ ├── index.js │ └── routes.js ├── jest.config.json ├── jest.transform.js ├── nwb.config.js ├── package.json ├── setupTest.js ├── src ├── __snapshots__ │ └── index.test.js.snap ├── components │ ├── Arrow │ │ ├── index.js │ │ └── index.test.js │ ├── Bubble │ │ ├── index.js │ │ └── index.test.js │ └── Tooltip │ │ ├── __snapshots__ │ │ └── index.test.js.snap │ │ ├── index.js │ │ └── index.test.js ├── index.d.ts ├── index.js ├── index.test.js └── utils │ ├── propTypes.js │ └── propTypes.test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/README.md -------------------------------------------------------------------------------- /demo/src/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/demo/src/demo.md -------------------------------------------------------------------------------- /demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/demo/src/index.js -------------------------------------------------------------------------------- /demo/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/demo/src/routes.js -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/jest.config.json -------------------------------------------------------------------------------- /jest.transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/jest.transform.js -------------------------------------------------------------------------------- /nwb.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/nwb.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/package.json -------------------------------------------------------------------------------- /setupTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/setupTest.js -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/components/Arrow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Arrow/index.js -------------------------------------------------------------------------------- /src/components/Arrow/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Arrow/index.test.js -------------------------------------------------------------------------------- /src/components/Bubble/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Bubble/index.js -------------------------------------------------------------------------------- /src/components/Bubble/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Bubble/index.test.js -------------------------------------------------------------------------------- /src/components/Tooltip/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Tooltip/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/components/Tooltip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Tooltip/index.js -------------------------------------------------------------------------------- /src/components/Tooltip/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/components/Tooltip/index.test.js -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "react-simple-tooltip"; 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/utils/propTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/utils/propTypes.js -------------------------------------------------------------------------------- /src/utils/propTypes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/src/utils/propTypes.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedricdelpoux/react-simple-tooltip/HEAD/yarn.lock --------------------------------------------------------------------------------