├── .editorconfig ├── .gitignore ├── .nvmrc ├── CHANGELOG.md ├── README.md ├── package.json ├── src ├── example │ ├── example.tsx │ ├── index.css │ ├── index.html │ └── index.tsx └── index.tsx ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.log 5 | build-site 6 | .cache 7 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/package.json -------------------------------------------------------------------------------- /src/example/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/src/example/example.tsx -------------------------------------------------------------------------------- /src/example/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 2em; 3 | font-family: sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /src/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/src/example/index.html -------------------------------------------------------------------------------- /src/example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/src/example/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliankrispel/react-text-selection-popover/HEAD/yarn.lock --------------------------------------------------------------------------------