├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── deploy-beta.yml │ ├── deploy.yml │ ├── deprecate-version.yml │ └── tests.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── cypress.config.ts ├── cypress ├── .DS_Store ├── assets │ ├── .DS_Store │ ├── another-demo.jpg │ ├── broken-pdf.pdf │ ├── demo.heic │ ├── demo.jpg │ ├── demo.tiff │ ├── multi-page.pdf │ └── shapes.ts ├── downloads │ └── downloads.html ├── snapshots │ └── components │ │ ├── AnnotationLens.spec.tsx │ │ ├── annotationLens.default.snap.png │ │ ├── annotationLens.different-image.snap.png │ │ ├── annotationLens.different-orientation.snap.png │ │ ├── annotationLens.different-shapes.snap.png │ │ ├── annotationLens.pointer-move.1.snap.png │ │ ├── annotationLens.pointer-move.2.snap.png │ │ ├── annotationLens.pointer-move.3.snap.png │ │ └── annotationLens.same-data.snap.png │ │ └── AnnotationViewer.spec.tsx │ │ ├── custom-options.snap.png │ │ ├── custom-zoom-level.snap.png │ │ ├── different-image.snap.png │ │ ├── different-orientation.snap.png │ │ ├── different-shapes.snap.png │ │ ├── heic.file.snap.png │ │ ├── jpg.file.snap.png │ │ ├── multi-select.snap.png │ │ ├── remote.file.snap.png │ │ ├── same-data.snap.png │ │ ├── shapeClicked.snap.png │ │ ├── tiff.file.snap.png │ │ └── zoomed.snap.png └── support │ ├── component-index.html │ ├── component.ts │ └── index.d.ts ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── declarations.d.ts ├── docs │ ├── API │ │ ├── _category_.json │ │ ├── annotation-lens-api.mdx │ │ └── annotation-viewer-api.mdx │ ├── Tutorial │ │ ├── Lens.md │ │ ├── _category_.json │ │ ├── controlled-shapes.md │ │ ├── dynamic-zoom.md │ │ ├── mouse-events.md │ │ ├── multi-selection.md │ │ ├── pdf-file.md │ │ └── the-basics.md │ ├── Utils │ │ ├── _category_.json │ │ ├── draw-layer.mdx │ │ ├── draw-shape.mdx │ │ ├── get-images-form-pdf-api.mdx │ │ └── set-shape-config.mdx │ ├── customization.md │ ├── intro.md │ ├── migration.md │ └── ssr.md ├── docusaurus.config.js ├── package.json ├── pnpm-lock.yaml ├── sidebars.js ├── src │ ├── components │ │ ├── HomepageFeatures.js │ │ └── HomepageFeatures.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── index.module.css ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── tutorial │ │ ├── demo.jpg │ │ └── demo.pdf │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── package.json ├── pnpm-lock.yaml ├── src ├── common │ ├── constants.ts │ └── types.ts ├── components │ ├── AnnotationLens.spec.tsx │ ├── AnnotationLens.tsx │ ├── AnnotationViewer.spec.tsx │ ├── AnnotationViewer.tsx │ └── dynamicZoom.spec.tsx ├── declarations.d.ts ├── index.ts └── utils │ ├── canvas.spec.ts │ ├── canvas.ts │ ├── functions.ts │ ├── getImagesFromPDF.spec.tsx │ ├── getImagesFromPDF.ts │ ├── image.spec.ts │ ├── image.ts │ ├── layer.ts │ ├── orientation.ts │ ├── roundTo.spec.ts │ ├── roundTo.ts │ ├── selection.spec.ts │ ├── selection.ts │ ├── useEventListener.ts │ ├── useMultiSelection.ts │ ├── zoom.spec.ts │ └── zoom.ts ├── tsconfig.json └── vite.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .netlify 4 | .vscode 5 | docs 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/deploy-beta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.github/workflows/deploy-beta.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deprecate-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.github/workflows/deprecate-version.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/.DS_Store -------------------------------------------------------------------------------- /cypress/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/.DS_Store -------------------------------------------------------------------------------- /cypress/assets/another-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/another-demo.jpg -------------------------------------------------------------------------------- /cypress/assets/broken-pdf.pdf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/assets/demo.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/demo.heic -------------------------------------------------------------------------------- /cypress/assets/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/demo.jpg -------------------------------------------------------------------------------- /cypress/assets/demo.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/demo.tiff -------------------------------------------------------------------------------- /cypress/assets/multi-page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/multi-page.pdf -------------------------------------------------------------------------------- /cypress/assets/shapes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/assets/shapes.ts -------------------------------------------------------------------------------- /cypress/downloads/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/downloads/downloads.html -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.default.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.default.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-image.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-image.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-orientation.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-orientation.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-shapes.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.different-shapes.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.1.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.1.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.2.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.2.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.3.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.pointer-move.3.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.same-data.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationLens.spec.tsx/annotationLens.same-data.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/custom-options.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/custom-options.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/custom-zoom-level.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/custom-zoom-level.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/different-image.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/different-image.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/different-orientation.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/different-orientation.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/different-shapes.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/different-shapes.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/heic.file.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/heic.file.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/jpg.file.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/jpg.file.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/multi-select.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/multi-select.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/remote.file.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/remote.file.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/same-data.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/same-data.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/shapeClicked.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/shapeClicked.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/tiff.file.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/tiff.file.snap.png -------------------------------------------------------------------------------- /cypress/snapshots/components/AnnotationViewer.spec.tsx/zoomed.snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/snapshots/components/AnnotationViewer.spec.tsx/zoomed.snap.png -------------------------------------------------------------------------------- /cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/support/component-index.html -------------------------------------------------------------------------------- /cypress/support/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/support/component.ts -------------------------------------------------------------------------------- /cypress/support/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/cypress/support/index.d.ts -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/declarations.d.ts -------------------------------------------------------------------------------- /docs/docs/API/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/API/_category_.json -------------------------------------------------------------------------------- /docs/docs/API/annotation-lens-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/API/annotation-lens-api.mdx -------------------------------------------------------------------------------- /docs/docs/API/annotation-viewer-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/API/annotation-viewer-api.mdx -------------------------------------------------------------------------------- /docs/docs/Tutorial/Lens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/Lens.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/_category_.json -------------------------------------------------------------------------------- /docs/docs/Tutorial/controlled-shapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/controlled-shapes.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/dynamic-zoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/dynamic-zoom.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/mouse-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/mouse-events.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/multi-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/multi-selection.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/pdf-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/pdf-file.md -------------------------------------------------------------------------------- /docs/docs/Tutorial/the-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Tutorial/the-basics.md -------------------------------------------------------------------------------- /docs/docs/Utils/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Utils/_category_.json -------------------------------------------------------------------------------- /docs/docs/Utils/draw-layer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Utils/draw-layer.mdx -------------------------------------------------------------------------------- /docs/docs/Utils/draw-shape.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Utils/draw-shape.mdx -------------------------------------------------------------------------------- /docs/docs/Utils/get-images-form-pdf-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Utils/get-images-form-pdf-api.mdx -------------------------------------------------------------------------------- /docs/docs/Utils/set-shape-config.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/Utils/set-shape-config.mdx -------------------------------------------------------------------------------- /docs/docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/customization.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/migration.md -------------------------------------------------------------------------------- /docs/docs/ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docs/ssr.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/src/pages/index.js -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/tutorial/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/tutorial/demo.jpg -------------------------------------------------------------------------------- /docs/static/img/tutorial/demo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/tutorial/demo.pdf -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/components/AnnotationLens.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/components/AnnotationLens.spec.tsx -------------------------------------------------------------------------------- /src/components/AnnotationLens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/components/AnnotationLens.tsx -------------------------------------------------------------------------------- /src/components/AnnotationViewer.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/components/AnnotationViewer.spec.tsx -------------------------------------------------------------------------------- /src/components/AnnotationViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/components/AnnotationViewer.tsx -------------------------------------------------------------------------------- /src/components/dynamicZoom.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/components/dynamicZoom.spec.tsx -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/canvas.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/canvas.spec.ts -------------------------------------------------------------------------------- /src/utils/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/canvas.ts -------------------------------------------------------------------------------- /src/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/functions.ts -------------------------------------------------------------------------------- /src/utils/getImagesFromPDF.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/getImagesFromPDF.spec.tsx -------------------------------------------------------------------------------- /src/utils/getImagesFromPDF.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/getImagesFromPDF.ts -------------------------------------------------------------------------------- /src/utils/image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/image.spec.ts -------------------------------------------------------------------------------- /src/utils/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/image.ts -------------------------------------------------------------------------------- /src/utils/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/layer.ts -------------------------------------------------------------------------------- /src/utils/orientation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/orientation.ts -------------------------------------------------------------------------------- /src/utils/roundTo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/roundTo.spec.ts -------------------------------------------------------------------------------- /src/utils/roundTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/roundTo.ts -------------------------------------------------------------------------------- /src/utils/selection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/selection.spec.ts -------------------------------------------------------------------------------- /src/utils/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/selection.ts -------------------------------------------------------------------------------- /src/utils/useEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/useEventListener.ts -------------------------------------------------------------------------------- /src/utils/useMultiSelection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/useMultiSelection.ts -------------------------------------------------------------------------------- /src/utils/zoom.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/zoom.spec.ts -------------------------------------------------------------------------------- /src/utils/zoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/src/utils/zoom.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindee/react-mindee-js/HEAD/vite.config.js --------------------------------------------------------------------------------