gitextract_r5h__py7/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── demo/ │ ├── public/ │ │ └── 404.html │ └── src/ │ ├── App.js │ ├── components/ │ │ ├── Button/ │ │ │ └── index.js │ │ ├── Docs/ │ │ │ └── index.js │ │ ├── Footer/ │ │ │ └── index.js │ │ ├── GithubStarLink/ │ │ │ └── index.js │ │ ├── Highlight/ │ │ │ └── index.js │ │ ├── Home/ │ │ │ ├── index.js │ │ │ └── simple.txt │ │ ├── NavBar/ │ │ │ └── index.js │ │ ├── Root/ │ │ │ └── index.js │ │ └── Samples/ │ │ ├── Custom/ │ │ │ └── index.js │ │ ├── Linked/ │ │ │ ├── index.js │ │ │ └── index.txt │ │ ├── Multiple/ │ │ │ ├── index.js │ │ │ └── index.txt │ │ ├── Simple/ │ │ │ └── index.js │ │ ├── Threaded/ │ │ │ └── index.js │ │ └── Touch/ │ │ ├── index.js │ │ └── index.txt │ ├── index.css │ ├── index.html │ ├── index.js │ ├── mocks.js │ └── registerServiceWorker.js ├── nwb.config.js ├── package.json ├── public/ │ └── 404.html ├── src/ │ ├── components/ │ │ ├── Annotation.js │ │ ├── Content/ │ │ │ └── index.js │ │ ├── Editor/ │ │ │ └── index.js │ │ ├── FancyRectangle/ │ │ │ └── index.js │ │ ├── Oval/ │ │ │ └── index.js │ │ ├── Overlay/ │ │ │ └── index.js │ │ ├── Point/ │ │ │ └── index.js │ │ ├── Rectangle/ │ │ │ └── index.js │ │ ├── TextEditor/ │ │ │ └── index.js │ │ └── defaultProps.js │ ├── hocs/ │ │ ├── OvalSelector.js │ │ ├── PointSelector.js │ │ └── RectangleSelector.js │ ├── index.js │ ├── selectors.js │ ├── types/ │ │ └── index.d.ts │ └── utils/ │ ├── compose.js │ ├── isMouseHovering.js │ ├── offsetCoordinates.js │ └── withRelativeMousePos.js └── tests/ ├── .eslintrc ├── Annotation.spec.js ├── index.test.js └── selectors/ ├── OvalSelector.spec.js ├── PointSelector.spec.js └── RectangleSelector.spec.js