├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── images │ └── logo.svg ├── docs ├── README.md ├── default.css └── index.html ├── package.json └── src ├── area.js ├── configuration.js └── selection-area.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/docs/default.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/package.json -------------------------------------------------------------------------------- /src/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/src/area.js -------------------------------------------------------------------------------- /src/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/src/configuration.js -------------------------------------------------------------------------------- /src/selection-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmenendez/selection-area/HEAD/src/selection-area.js --------------------------------------------------------------------------------