├── .editorconfig ├── .eslintrc ├── .github ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .nvmrc ├── .stylelintrc ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── e2e │ ├── audio.spec.cy.ts │ ├── basic.spec.cy.ts │ ├── disable-pan-and-zoom.spec.cy.ts │ ├── errors-and-warnings.spec.cy.ts │ ├── index.html │ ├── multi-viewer.html │ └── multi-viewer.spec.cy.ts ├── fixtures │ ├── annotations │ │ ├── standard-v2 │ │ │ └── list.json │ │ └── standard-v3 │ │ │ └── page-1.json │ ├── audio │ │ └── royalty-free-talking.mp3 │ ├── images │ │ ├── exact-tiles │ │ │ ├── 0,0,1024,1024 │ │ │ │ └── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 0,0,2048,2048 │ │ │ │ ├── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 128, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 256, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 512, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ └── 64, │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 0,1024,1024,1024 │ │ │ │ └── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 1024,0,1024,1024 │ │ │ │ └── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 1024,1024,1024,1024 │ │ │ │ └── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── full │ │ │ │ ├── 1024, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 128, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 2048, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 256, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 512, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ ├── 64, │ │ │ │ │ └── 0 │ │ │ │ │ │ └── default.jpg │ │ │ │ └── full │ │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ └── info.json │ │ └── tractor │ │ │ ├── 0,0,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 0,0,2048,2048 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 0,0,4031,3023 │ │ │ ├── 1008, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 126, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 252, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ └── 504, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 0,1024,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 0,2048,1024,975 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 0,2048,2048,975 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 1024,0,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 1024,1024,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 1024,2048,1024,975 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 2048,0,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 2048,0,1983,2048 │ │ │ └── 992, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 2048,1024,1024,1024 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 2048,2048,1024,975 │ │ │ └── 1024, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 2048,2048,1983,975 │ │ │ └── 992, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 3072,0,959,1024 │ │ │ └── 959, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 3072,1024,959,1024 │ │ │ └── 959, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── 3072,2048,959,975 │ │ │ └── 959, │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ ├── full │ │ │ ├── 1008, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 126, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 2016, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 252, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 4031, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ ├── 504, │ │ │ │ └── 0 │ │ │ │ │ └── default.jpg │ │ │ └── full │ │ │ │ └── 0 │ │ │ │ └── default.jpg │ │ │ └── info.json │ └── manifests │ │ ├── audio-v3 │ │ └── manifest.json │ │ ├── external-annotation-pages-v3 │ │ └── manifest.json │ │ ├── mixed-html-plain-summary-v3 │ │ └── manifest.json │ │ ├── no-label-v3 │ │ └── manifest.json │ │ ├── not-a-manifest │ │ └── manifest.json │ │ ├── plain-text-summary-v3 │ │ └── manifest.json │ │ ├── standard-v2 │ │ └── manifest.json │ │ └── standard-v3 │ │ └── manifest.json └── support │ ├── commands.ts │ ├── e2e.ts │ └── utils.ts ├── docs ├── Storiies_banner_1280_95.jpg ├── _config.yml ├── api │ ├── .nojekyll │ ├── assets │ │ ├── highlight.css │ │ ├── main.js │ │ ├── search.js │ │ └── style.css │ ├── classes │ │ └── StoriiiesViewer.html │ ├── index.html │ └── interfaces │ │ └── StoriiiesViewerConfig.html ├── demo │ └── grande-jatte.json └── index.md ├── index.html ├── package.json ├── src ├── StoriiiesViewer.ts ├── css │ └── styles.css ├── images │ ├── arrow.svg │ ├── eye.svg │ ├── hide.svg │ └── restart.svg └── utils.ts ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/.stylelintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/audio.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/audio.spec.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/basic.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/basic.spec.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/disable-pan-and-zoom.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/disable-pan-and-zoom.spec.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/errors-and-warnings.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/errors-and-warnings.spec.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/index.html -------------------------------------------------------------------------------- /cypress/e2e/multi-viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/multi-viewer.html -------------------------------------------------------------------------------- /cypress/e2e/multi-viewer.spec.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/e2e/multi-viewer.spec.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/annotations/standard-v2/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/annotations/standard-v2/list.json -------------------------------------------------------------------------------- /cypress/fixtures/annotations/standard-v3/page-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/annotations/standard-v3/page-1.json -------------------------------------------------------------------------------- /cypress/fixtures/audio/royalty-free-talking.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/audio/royalty-free-talking.mp3 -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,2048,2048/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,2048,2048/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,2048,2048/128,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,2048,2048/128,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,2048,2048/256,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,2048,2048/256,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,2048,2048/512,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,2048,2048/512,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,0,2048,2048/64,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,0,2048,2048/64,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/0,1024,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/0,1024,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/1024,0,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/1024,0,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/1024,1024,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/1024,1024,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/128,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/128,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/2048,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/2048,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/256,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/256,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/512,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/512,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/64,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/64,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/full/full/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/full/full/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/exact-tiles/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/exact-tiles/info.json -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,2048,2048/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,2048,2048/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,4031,3023/1008,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,4031,3023/1008,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,4031,3023/126,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,4031,3023/126,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,4031,3023/252,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,4031,3023/252,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,0,4031,3023/504,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,0,4031,3023/504,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,1024,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,1024,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,2048,1024,975/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,2048,1024,975/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/0,2048,2048,975/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/0,2048,2048,975/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/1024,0,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/1024,0,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/1024,1024,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/1024,1024,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/1024,2048,1024,975/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/1024,2048,1024,975/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/2048,0,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/2048,0,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/2048,0,1983,2048/992,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/2048,0,1983,2048/992,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/2048,1024,1024,1024/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/2048,1024,1024,1024/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/2048,2048,1024,975/1024,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/2048,2048,1024,975/1024,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/2048,2048,1983,975/992,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/2048,2048,1983,975/992,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/3072,0,959,1024/959,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/3072,0,959,1024/959,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/3072,1024,959,1024/959,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/3072,1024,959,1024/959,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/3072,2048,959,975/959,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/3072,2048,959,975/959,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/1008,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/1008,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/126,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/126,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/2016,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/2016,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/252,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/252,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/4031,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/4031,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/504,/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/504,/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/full/full/0/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/full/full/0/default.jpg -------------------------------------------------------------------------------- /cypress/fixtures/images/tractor/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/images/tractor/info.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/audio-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/audio-v3/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/external-annotation-pages-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/external-annotation-pages-v3/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/mixed-html-plain-summary-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/mixed-html-plain-summary-v3/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/no-label-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/no-label-v3/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/not-a-manifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/not-a-manifest/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/plain-text-summary-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/plain-text-summary-v3/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/standard-v2/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/standard-v2/manifest.json -------------------------------------------------------------------------------- /cypress/fixtures/manifests/standard-v3/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/fixtures/manifests/standard-v3/manifest.json -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/support/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/cypress/support/utils.ts -------------------------------------------------------------------------------- /docs/Storiies_banner_1280_95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/Storiies_banner_1280_95.jpg -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jekyll-redirect-from 3 | -------------------------------------------------------------------------------- /docs/api/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/.nojekyll -------------------------------------------------------------------------------- /docs/api/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/assets/highlight.css -------------------------------------------------------------------------------- /docs/api/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/assets/main.js -------------------------------------------------------------------------------- /docs/api/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/assets/search.js -------------------------------------------------------------------------------- /docs/api/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/assets/style.css -------------------------------------------------------------------------------- /docs/api/classes/StoriiiesViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/classes/StoriiiesViewer.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/interfaces/StoriiiesViewerConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/api/interfaces/StoriiiesViewerConfig.html -------------------------------------------------------------------------------- /docs/demo/grande-jatte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/docs/demo/grande-jatte.json -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | redirect_to: /api/ 3 | --- 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/package.json -------------------------------------------------------------------------------- /src/StoriiiesViewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/StoriiiesViewer.ts -------------------------------------------------------------------------------- /src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/css/styles.css -------------------------------------------------------------------------------- /src/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/images/arrow.svg -------------------------------------------------------------------------------- /src/images/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/images/eye.svg -------------------------------------------------------------------------------- /src/images/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/images/hide.svg -------------------------------------------------------------------------------- /src/images/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/images/restart.svg -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CogappLabs/StoriiiesViewer/HEAD/vite.config.ts --------------------------------------------------------------------------------