diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 000000000..e2ac6616a --- /dev/null +++ b/docs/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css new file mode 100644 index 000000000..a2f1712d8 --- /dev/null +++ b/docs/assets/highlight.css @@ -0,0 +1,36 @@ +:root { + --light-hl-0: #001080; + --dark-hl-0: #9CDCFE; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-code-background: #FFFFFF; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --code-background: var(--dark-code-background); +} } + +:root[data-theme='light'] { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --code-background: var(--light-code-background); +} + +:root[data-theme='dark'] { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +pre, code { background: var(--code-background); } diff --git a/docs/assets/style.css b/docs/assets/style.css new file mode 100644 index 000000000..07a385b73 --- /dev/null +++ b/docs/assets/style.css @@ -0,0 +1,1394 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + + --light-color-ts-keyword: #056bd6; + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: var(--light-color-ts-type-alias); + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + --dark-color-link: #00aff4; + + --dark-color-ts-keyword: #3399ff; + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); +} + +:root[data-theme="dark"] { + --color-background: var(--dark-color-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 > a, +h2 > a, +h3 > a, +h4 > a, +h5 > a, +h6 > a { + text-decoration: none; + color: var(--color-text); +} + +h1 { + font-size: 1.875rem; + margin: 0.67rem 0; +} + +h2 { + font-size: 1.5rem; + margin: 0.83rem 0; +} + +h3 { + font-size: 1.25rem; + margin: 1rem 0; +} + +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; +} + +h5 { + font-size: 1rem; + margin: 1.5rem 0; +} + +h6 { + font-size: 0.875rem; + margin: 2.33rem 0; +} + +.uppercase { + text-transform: uppercase; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +.tsd-generator { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} + +.tsd-generator > p { + margin-top: 0; + margin-bottom: 0; + padding: 0 1rem; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; +} + +pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); +} +pre code { + padding: 0; + font-size: 100%; +} +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h4, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} +.tsd-typography table { + border-collapse: collapse; + border: none; +} +.tsd-typography td, +.tsd-typography th { + padding: 6px 13px; + border: 1px solid var(--color-accent); +} +.tsd-typography thead, +.tsd-typography tr:nth-child(even) { + background-color: var(--color-background-secondary); +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; +} +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; +} +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; +} +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { + content: " "; +} +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { + clear: both; +} +dl.tsd-comment-tag-group p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; +} +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; +} +.tsd-filter-input { + display: flex; + width: fit-content; + width: -moz-fit-content; + align-items: center; + user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + cursor: pointer; +} +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; +} +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; +} +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; +} +.tsd-filter-input input[type="checkbox"]:focus + svg { + transform: scale(0.95); +} +.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { + transform: scale(1); +} +.tsd-checkbox-background { + fill: var(--color-accent); +} +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; +} +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); +} + +.tsd-theme-toggle { + padding-top: 0.75rem; +} +.tsd-theme-toggle > h4 { + display: inline; + vertical-align: middle; + margin-right: 0.75rem; +} + +.tsd-hierarchy { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } +} +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } +} +.tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: relative; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} + +.tsd-navigation.settings { + margin: 1rem 0; +} +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.5rem); +} +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: inline-flex; + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); +} +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li, +.tsd-page-navigation li { + padding: 0; + max-width: 100%; +} +.tsd-nested-navigation { + margin-left: 3rem; +} +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; +} +.tsd-small-nested-navigation { + margin-left: 1.5rem; +} +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; +} + +.tsd-nested-navigation > li > a, +.tsd-nested-navigation > li > span { + width: calc(100% - 1.75rem - 0.5rem); +} + +.tsd-page-navigation ul { + padding-left: 1.75rem; +} + +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; +} +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; +} + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ +} +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ +} +.tsd-accordion-summary, +.tsd-accordion-summary a { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + + cursor: pointer; +} +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); +} +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; +} +.tsd-index-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; +} +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); +} +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; +} + +.tsd-panel { + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; +} + +.tsd-panel-group { + margin: 4rem 0; +} +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + background-color: var(--color-background); + line-height: initial; + padding: 4px; +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current:not(.no-results), +#tsd-search .results li:hover:not(.no-results) { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} + +.tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; +} +.tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; +} +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; +} + +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +.tsd-sources { + margin-top: 1rem; + font-size: 0.875em; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: + opacity 0.1s, + background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} + +.deprecated { + text-decoration: line-through !important; +} + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); +} +.tsd-kind-constructor { + color: var(--color-ts-constructor); +} +.tsd-kind-property { + color: var(--color-ts-property); +} +.tsd-kind-method { + color: var(--color-ts-method); +} +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); +} +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } +} + +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html new file mode 100644 index 000000000..fef54ca72 --- /dev/null +++ b/docs/classes/_internal_.Metric.html @@ -0,0 +1,4 @@ +Metric | universalviewer

Constructors

Properties

Constructors

Properties

minWidth: number
type: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/enums/_internal_.StorageType.html b/docs/enums/_internal_.StorageType.html new file mode 100644 index 000000000..05721da67 --- /dev/null +++ b/docs/enums/_internal_.StorageType.html @@ -0,0 +1,4 @@ +StorageType | universalviewer

Enumeration Members

Enumeration Members

LOCAL: "local"
MEMORY: "memory"
SESSION: "session"

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 000000000..51f7216a2 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,71 @@ +universalviewer

universalviewer

+ +

Universal Viewer

+

+A community-developed open source project on a mission
to help you share your 📚📜📰📽️📻🗿 with the 🌎 +

+

+
+

+Sponsors on Open Collective + + + +License +

+ +

+ @ twitter     +# slack +

+ +
+ +
npm install universalviewer --save
+
+
+ +
+

Please note that UV v4 is designed to work on evergreen browsers. If you need IE11 support, please use UV v3. +Microsoft no longer supports IE11, and it reached end-of-life on June 15 2022.

+
+
+ + +

🌐 Website

Visit the UV demo page to try it out.

+

📖 Scope

Read more about the Universal Viewer

+

💻 Getting Started

See the examples for how to use the UV in various scenarios.

+

💻 Contributing

Read below to learn how to take part in improving the UV:

+
    +
  • Fork the repository and run the examples from source
  • +
  • Get familiar with Code of Conduct
  • +
  • Read our guide to contributing
  • +
  • Find an issue to work on and submit a pull request
      +
    • First time contributing to open source? Pick a good first issue to get you familiar with GitHub contributing process.
    • +
    • First time contributing to the UV? Pick a beginner friendly issue to get you familiar with codebase and our contributing process.
    • +
    • Want to become a Committer? Solve an issue showing that you understand UV objectives and architecture. Here is a good list to start.
    • +
    +
  • +
  • Could not find an issue? Look for bugs, typos, and missing features.
  • +
+

Contributors

+

+

🏅 Sponsors

Become a sponsor and join our Steering Group to help guide how our sponsorship funds are allocated.

+

📖 License

The Universal Viewer is released under the MIT license.

+

📖 Accessibility Statement

Read our Accessibility Statement

+

📣 Feedback

Read below how to engage with the UV community:

+
    +
  • Join the discussion on Slack.
  • +
  • Ask a question, request a new feature and file a bug with GitHub issues.
  • +
  • Star the repository to show your support ⭐
  • +
+

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html new file mode 100644 index 000000000..f9b09918d --- /dev/null +++ b/docs/modules.html @@ -0,0 +1,3 @@ +universalviewer

universalviewer

Index

Modules

Type Aliases

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/_internal_.html b/docs/modules/_internal_.html new file mode 100644 index 000000000..fa0a4989e --- /dev/null +++ b/docs/modules/_internal_.html @@ -0,0 +1,194 @@ +<internal> | universalviewer

Module <internal>

Index

Enumerations

Classes

Type Aliases

AVCenterPanel +AVCenterPanelContent +AVCenterPanelOptions +AVDownloadDialogue +AVDownloadDialogueContent +AVDownloadDialogueOptions +AVSettingsDialogue +AVSettingsDialogueContent +AVSettingsDialogueOptions +AVShareDialogue +AVShareDialogueContent +AVShareDialogueOptions +AlephCenterPanel +AlephCenterPanelContent +AlephCenterPanelOptions +AlephDownloadDialogue +AlephDownloadDialogueContent +AlephDownloadDialogueOptions +AlephLeftPanel +AlephLeftPanelContent +AlephLeftPanelOptions +AlephSettingsDialogue +AlephSettingsDialogueContent +AlephSettingsDialogueOptions +AlephShareDialogue +AlephShareDialogueContent +AlephShareDialogueOptions +AuthDialogue +AuthDialogueContent +AuthDialogueOptions +BaseConfig +CenterPanel +CenterPanelContent +CenterPanelOptions +ClickThroughDialogue +ClickThroughDialogueContent +ClickThroughDialogueOptions +Config +Config +Config +Config +Config +Config +Config +Config +Content +ContentLeftPanel +ContentLeftPanelContent +ContentLeftPanelOptions +DefaultCenterPanel +DefaultCenterPanelContent +DefaultCenterPanelOptions +DefaultDownloadDialogue +DefaultDownloadDialogueContent +DefaultDownloadDialogueOptions +DefaultSettingsDialogue +DefaultSettingsDialogueContent +DefaultSettingsDialogueOptions +DefaultShareDialogue +DefaultShareDialogueContent +DefaultShareDialogueOptions +Dialogue +DialogueContent +DialogueOptions +DownloadDialogue +DownloadDialogueContent +DownloadDialogueOptions +EbookCenterPanel +EbookCenterPanelContent +EbookCenterPanelOptions +EbookDownloadDialogue +EbookDownloadDialogueContent +EbookDownloadDialogueOptions +EbookLeftPanel +EbookLeftPanelContent +EbookLeftPanelOptions +EbookSettingsDialogue +EbookSettingsDialogueContent +EbookSettingsDialogueOptions +EbookShareDialogue +EbookShareDialogueContent +EbookShareDialogueOptions +ExpandPanel +ExpandPanelContent +ExpandPanelOptions +FooterPanel +FooterPanelContent +FooterPanelOptions +GenericDialogue +GenericDialogueContent +GenericDialogueOptions +HeaderPanel +HeaderPanelContent +HeaderPanelOptions +HelpDialogue +HelpDialogueContent +HelpDialogueOptions +LeftPanel +Locale +Localisation +LoginDialogue +LoginDialogueContent +LoginDialogueOptions +MediaElementCenterPanel +MediaElementCenterPanelContent +MediaElementCenterPanelOptions +MediaElementDownloadDialogue +MediaElementDownloadDialogueContent +MediaElementDownloadDialogueOptions +MediaElementSettingsDialogue +MediaElementSettingsDialogueContent +MediaElementSettingsDialogueOptions +MediaElementShareDialogue +MediaElementShareDialogueContent +MediaElementShareDialogueOptions +MobileFooterPanel +MobileFooterPanelContent +MobileFooterPanelOptions +ModelViewerCenterPanel +ModelViewerCenterPanelContent +ModelViewerCenterPanelOptions +ModelViewerDownloadDialogue +ModelViewerDownloadDialogueContent +ModelViewerDownloadDialogueOptions +ModelViewerSettingsDialogue +ModelViewerSettingsDialogueContent +ModelViewerSettingsDialogueOptions +ModelViewerShareDialogue +ModelViewerShareDialogueContent +ModelViewerShareDialogueOptions +ModuleConfig +ModuleContent +ModuleOptions +Modules +Modules +Modules +Modules +Modules +Modules +Modules +Modules +MoreInfoRightPanel +MoreInfoRightPanelContent +MoreInfoRightPanelOptions +MultiSelectDialogue +MultiSelectDialogueContent +MultiSelectDialogueOptions +OSDCenterPanel +OSDCenterPanelContent +OSDCenterPanelOptions +OSDDownloadDialogue +OSDDownloadDialogueContent +OSDDownloadDialogueOptions +OSDSettingsDialogue +OSDSettingsDialogueContent +OSDSettingsDialogueOptions +OSDShareDialogue +OSDShareDialogueContent +OSDShareDialogueOptions +Options +PDFCenterPanel +PDFCenterPanelContent +PDFCenterPanelOptions +PDFDownloadDialogue +PDFDownloadDialogueContent +PDFDownloadDialogueOptions +PDFHeaderPanel +PDFHeaderPanelContent +PDFHeaderPanelOptions +PDFSettingsDialogue +PDFSettingsDialogueContent +PDFSettingsDialogueOptions +PDFShareDialogue +PDFShareDialogueContent +PDFShareDialogueOptions +PagingHeaderPanel +PagingHeaderPanelContent +PagingHeaderPanelOptions +RestrictedDialogue +RestrictedDialogueContent +RestrictedDialogueOptions +SearchFooterPanel +SearchFooterPanelContent +SearchFooterPanelOptions +SettingsDialogue +SettingsDialogueContent +SettingsDialogueOptions +ShareDialogue +ShareDialogueContent +ShareDialogueOptions +ThumbsCacheInvalidation +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/IIIFContentHandlerConfig.html b/docs/types/IIIFContentHandlerConfig.html new file mode 100644 index 000000000..50ce6893d --- /dev/null +++ b/docs/types/IIIFContentHandlerConfig.html @@ -0,0 +1 @@ +IIIFContentHandlerConfig | universalviewer

Type alias IIIFContentHandlerConfig

IIIFContentHandlerConfig: {
    aleph: Config;
    av: Config;
    default: Config;
    ebook: Config;
    mediaelement: Config;
    modelViewer: Config;
    osd: Config;
    pdf: Config;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/_internal_.AVCenterPanel.html b/docs/types/_internal_.AVCenterPanel.html new file mode 100644 index 000000000..1b1d0847e --- /dev/null +++ b/docs/types/_internal_.AVCenterPanel.html @@ -0,0 +1 @@ +AVCenterPanel | universalviewer
AVCenterPanel: {
    content: AVCenterPanelContent;
    options: AVCenterPanelOptions;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html new file mode 100644 index 000000000..0ac8f2bd8 --- /dev/null +++ b/docs/types/_internal_.AVCenterPanelContent.html @@ -0,0 +1 @@ +AVCenterPanelContent | universalviewer

Type alias AVCenterPanelContent

AVCenterPanelContent: CenterPanelContent & {
    delimiter: string;
}

Type declaration

  • delimiter: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/_internal_.AVCenterPanelOptions.html b/docs/types/_internal_.AVCenterPanelOptions.html new file mode 100644 index 000000000..f740e06af --- /dev/null +++ b/docs/types/_internal_.AVCenterPanelOptions.html @@ -0,0 +1,11 @@ +AVCenterPanelOptions | universalviewer

Type alias AVCenterPanelOptions

AVCenterPanelOptions: CenterPanelOptions & {
    autoAdvanceRanges: boolean;
    autoPlay: boolean;
    enableFastForward: boolean;
    enableFastRewind: boolean;
    hideMediaError: boolean;
    includeParentInTitleEnabled: boolean;
    limitToRange: boolean;
    posterImageExpanded: boolean;
    posterImageRatio: number;
    subtitleMetadataField: string;
}

Type declaration

  • autoAdvanceRanges: boolean

    Determines if ranges auto advance

    +
  • autoPlay: boolean

    Determines if auto play is enabled

    +
  • enableFastForward: boolean

    Determines if fast forward is enabled

    +
  • enableFastRewind: boolean

    Determines if fast rewind is enabled

    +
  • hideMediaError: boolean

    Determines if media errors are hidden

    +
  • includeParentInTitleEnabled: boolean

    Determines if parent is included in title

    +
  • limitToRange: boolean

    Determines if limit is set to range

    +
  • posterImageExpanded: boolean

    Determines if the poster image is expanded

    +
  • posterImageRatio: number

    Ratio of the poster image

    +
  • subtitleMetadataField: string

    Field for subtitle metadata

    +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html new file mode 100644 index 000000000..302da8bba --- /dev/null +++ b/docs/types/_internal_.AVDownloadDialogue.html @@ -0,0 +1 @@ +AVDownloadDialogue | universalviewer

Type alias AVDownloadDialogue

AVDownloadDialogue: ModuleConfig & {
    content: AVDownloadDialogueContent;
    options: AVDownloadDialogueOptions;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html new file mode 100644 index 000000000..8f952011c --- /dev/null +++ b/docs/types/_internal_.AVDownloadDialogueContent.html @@ -0,0 +1 @@ +AVDownloadDialogueContent | universalviewer

Type alias AVDownloadDialogueContent

AVDownloadDialogueContent: DownloadDialogueContent & {}

Type declaration

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html new file mode 100644 index 000000000..7970e420b --- /dev/null +++ b/docs/types/_internal_.AVDownloadDialogueOptions.html @@ -0,0 +1 @@ +AVDownloadDialogueOptions | universalviewer

    Type alias AVDownloadDialogueOptions

    AVDownloadDialogueOptions: DownloadDialogueOptions & {}

    Type declaration

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/_internal_.AVSettingsDialogue.html b/docs/types/_internal_.AVSettingsDialogue.html new file mode 100644 index 000000000..1fef4efd3 --- /dev/null +++ b/docs/types/_internal_.AVSettingsDialogue.html @@ -0,0 +1 @@ +AVSettingsDialogue | universalviewer

      Type alias AVSettingsDialogue

      AVSettingsDialogue: ModuleConfig & {
          content: AVSettingsDialogueContent;
          options: AVSettingsDialogueOptions;
      }

      Type declaration

      Generated using TypeDoc

      \ No newline at end of file diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html new file mode 100644 index 000000000..f49745bda --- /dev/null +++ b/docs/types/_internal_.AVSettingsDialogueContent.html @@ -0,0 +1 @@ +AVSettingsDialogueContent | universalviewer

      Type alias AVSettingsDialogueContent

      AVSettingsDialogueContent: SettingsDialogueContent & {}

      Type declaration

        Generated using TypeDoc

        \ No newline at end of file diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html new file mode 100644 index 000000000..c8332f533 --- /dev/null +++ b/docs/types/_internal_.AVSettingsDialogueOptions.html @@ -0,0 +1 @@ +AVSettingsDialogueOptions | universalviewer

        Type alias AVSettingsDialogueOptions

        AVSettingsDialogueOptions: SettingsDialogueOptions & {}

        Type declaration

          Generated using TypeDoc

          \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html new file mode 100644 index 000000000..6cab0beea --- /dev/null +++ b/docs/types/_internal_.AVShareDialogue.html @@ -0,0 +1 @@ +AVShareDialogue | universalviewer
          AVShareDialogue: ModuleConfig & {
              content: AVShareDialogueContent;
              options: AVShareDialogueOptions;
          }

          Type declaration

          Generated using TypeDoc

          \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html new file mode 100644 index 000000000..2fb070fd9 --- /dev/null +++ b/docs/types/_internal_.AVShareDialogueContent.html @@ -0,0 +1 @@ +AVShareDialogueContent | universalviewer

          Type alias AVShareDialogueContent

          AVShareDialogueContent: ShareDialogueContent & {}

          Type declaration

            Generated using TypeDoc

            \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html new file mode 100644 index 000000000..4144933e9 --- /dev/null +++ b/docs/types/_internal_.AVShareDialogueOptions.html @@ -0,0 +1 @@ +AVShareDialogueOptions | universalviewer

            Type alias AVShareDialogueOptions

            AVShareDialogueOptions: ShareDialogueOptions & {}

            Type declaration

              Generated using TypeDoc

              \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html new file mode 100644 index 000000000..c5186fe9f --- /dev/null +++ b/docs/types/_internal_.AlephCenterPanel.html @@ -0,0 +1 @@ +AlephCenterPanel | universalviewer
              AlephCenterPanel: {
                  content: AlephCenterPanelContent;
                  options: AlephCenterPanelOptions;
              }

              Type declaration

              Generated using TypeDoc

              \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html new file mode 100644 index 000000000..31b4bf4c5 --- /dev/null +++ b/docs/types/_internal_.AlephCenterPanelContent.html @@ -0,0 +1 @@ +AlephCenterPanelContent | universalviewer

              Type alias AlephCenterPanelContent

              AlephCenterPanelContent: CenterPanelContent & {}

              Type declaration

                Generated using TypeDoc

                \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html new file mode 100644 index 000000000..7c9959fe2 --- /dev/null +++ b/docs/types/_internal_.AlephCenterPanelOptions.html @@ -0,0 +1 @@ +AlephCenterPanelOptions | universalviewer

                Type alias AlephCenterPanelOptions

                AlephCenterPanelOptions: CenterPanelOptions & {}

                Type declaration

                  Generated using TypeDoc

                  \ No newline at end of file diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html new file mode 100644 index 000000000..5902b20ef --- /dev/null +++ b/docs/types/_internal_.AlephDownloadDialogue.html @@ -0,0 +1 @@ +AlephDownloadDialogue | universalviewer

                  Type alias AlephDownloadDialogue

                  AlephDownloadDialogue: ModuleConfig & {
                      content: AlephDownloadDialogueContent;
                      options: AlephDownloadDialogueOptions;
                  }

                  Generated using TypeDoc

                  \ No newline at end of file diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html new file mode 100644 index 000000000..03c2de06f --- /dev/null +++ b/docs/types/_internal_.AlephDownloadDialogueContent.html @@ -0,0 +1 @@ +AlephDownloadDialogueContent | universalviewer

                  Type alias AlephDownloadDialogueContent

                  AlephDownloadDialogueContent: DownloadDialogueContent & {}

                  Type declaration

                    Generated using TypeDoc

                    \ No newline at end of file diff --git a/docs/types/_internal_.AlephDownloadDialogueOptions.html b/docs/types/_internal_.AlephDownloadDialogueOptions.html new file mode 100644 index 000000000..23ae80386 --- /dev/null +++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html @@ -0,0 +1 @@ +AlephDownloadDialogueOptions | universalviewer

                    Type alias AlephDownloadDialogueOptions

                    AlephDownloadDialogueOptions: DownloadDialogueOptions & {}

                    Type declaration

                      Generated using TypeDoc

                      \ No newline at end of file diff --git a/docs/types/_internal_.AlephLeftPanel.html b/docs/types/_internal_.AlephLeftPanel.html new file mode 100644 index 000000000..c600d9374 --- /dev/null +++ b/docs/types/_internal_.AlephLeftPanel.html @@ -0,0 +1 @@ +AlephLeftPanel | universalviewer
                      AlephLeftPanel: {
                          content: AlephLeftPanelContent;
                          options: AlephLeftPanelOptions;
                      }

                      Type declaration

                      Generated using TypeDoc

                      \ No newline at end of file diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html new file mode 100644 index 000000000..b2b4217da --- /dev/null +++ b/docs/types/_internal_.AlephLeftPanelContent.html @@ -0,0 +1 @@ +AlephLeftPanelContent | universalviewer

                      Type alias AlephLeftPanelContent

                      AlephLeftPanelContent: ExpandPanelContent & {
                          title: string;
                      }

                      Type declaration

                      • title: string

                      Generated using TypeDoc

                      \ No newline at end of file diff --git a/docs/types/_internal_.AlephLeftPanelOptions.html b/docs/types/_internal_.AlephLeftPanelOptions.html new file mode 100644 index 000000000..009fa7731 --- /dev/null +++ b/docs/types/_internal_.AlephLeftPanelOptions.html @@ -0,0 +1,5 @@ +AlephLeftPanelOptions | universalviewer

                      Type alias AlephLeftPanelOptions

                      AlephLeftPanelOptions: ExpandPanelOptions & {
                          consoleTabEnabled: boolean;
                          graphTabEnabled: boolean;
                          settingsTabEnabled: boolean;
                          srcTabEnabled: boolean;
                      }

                      Type declaration

                      • consoleTabEnabled: boolean

                        Determines if the console tab is enabled

                        +
                      • graphTabEnabled: boolean

                        Determines if the graph tab is enabled

                        +
                      • settingsTabEnabled: boolean

                        Determines if the settings tab is enabled

                        +
                      • srcTabEnabled: boolean

                        Determines if the source tab is enabled

                        +

                      Generated using TypeDoc

                      \ No newline at end of file diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html new file mode 100644 index 000000000..29bee72f6 --- /dev/null +++ b/docs/types/_internal_.AlephSettingsDialogue.html @@ -0,0 +1 @@ +AlephSettingsDialogue | universalviewer

                      Type alias AlephSettingsDialogue

                      AlephSettingsDialogue: ModuleConfig & {
                          content: AlephSettingsDialogueContent;
                          options: AlephSettingsDialogueOptions;
                      }

                      Generated using TypeDoc

                      \ No newline at end of file diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html new file mode 100644 index 000000000..bb8de0250 --- /dev/null +++ b/docs/types/_internal_.AlephSettingsDialogueContent.html @@ -0,0 +1 @@ +AlephSettingsDialogueContent | universalviewer

                      Type alias AlephSettingsDialogueContent

                      AlephSettingsDialogueContent: SettingsDialogueContent & {}

                      Type declaration

                        Generated using TypeDoc

                        \ No newline at end of file diff --git a/docs/types/_internal_.AlephSettingsDialogueOptions.html b/docs/types/_internal_.AlephSettingsDialogueOptions.html new file mode 100644 index 000000000..eb6b6524b --- /dev/null +++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html @@ -0,0 +1 @@ +AlephSettingsDialogueOptions | universalviewer

                        Type alias AlephSettingsDialogueOptions

                        AlephSettingsDialogueOptions: SettingsDialogueOptions & {}

                        Type declaration

                          Generated using TypeDoc

                          \ No newline at end of file diff --git a/docs/types/_internal_.AlephShareDialogue.html b/docs/types/_internal_.AlephShareDialogue.html new file mode 100644 index 000000000..559fdc540 --- /dev/null +++ b/docs/types/_internal_.AlephShareDialogue.html @@ -0,0 +1 @@ +AlephShareDialogue | universalviewer

                          Type alias AlephShareDialogue

                          AlephShareDialogue: ModuleConfig & {
                              content: AlephShareDialogueContent;
                              options: AlephShareDialogueOptions;
                          }

                          Type declaration

                          Generated using TypeDoc

                          \ No newline at end of file diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html new file mode 100644 index 000000000..1c83856f2 --- /dev/null +++ b/docs/types/_internal_.AlephShareDialogueContent.html @@ -0,0 +1 @@ +AlephShareDialogueContent | universalviewer

                          Type alias AlephShareDialogueContent

                          AlephShareDialogueContent: ShareDialogueContent & {}

                          Type declaration

                            Generated using TypeDoc

                            \ No newline at end of file diff --git a/docs/types/_internal_.AlephShareDialogueOptions.html b/docs/types/_internal_.AlephShareDialogueOptions.html new file mode 100644 index 000000000..6c1ff630c --- /dev/null +++ b/docs/types/_internal_.AlephShareDialogueOptions.html @@ -0,0 +1 @@ +AlephShareDialogueOptions | universalviewer

                            Type alias AlephShareDialogueOptions

                            AlephShareDialogueOptions: ShareDialogueOptions & {}

                            Type declaration

                              Generated using TypeDoc

                              \ No newline at end of file diff --git a/docs/types/_internal_.AuthDialogue.html b/docs/types/_internal_.AuthDialogue.html new file mode 100644 index 000000000..9917a4878 --- /dev/null +++ b/docs/types/_internal_.AuthDialogue.html @@ -0,0 +1 @@ +AuthDialogue | universalviewer
                              AuthDialogue: ModuleConfig & {
                                  content: AuthDialogueContent;
                                  options: AuthDialogueOptions;
                              }

                              Type declaration

                              Generated using TypeDoc

                              \ No newline at end of file diff --git a/docs/types/_internal_.AuthDialogueContent.html b/docs/types/_internal_.AuthDialogueContent.html new file mode 100644 index 000000000..06620569c --- /dev/null +++ b/docs/types/_internal_.AuthDialogueContent.html @@ -0,0 +1 @@ +AuthDialogueContent | universalviewer

                              Type alias AuthDialogueContent

                              AuthDialogueContent: DialogueContent & {
                                  cancel: string;
                                  confirm: string;
                              }

                              Type declaration

                              • cancel: string
                              • confirm: string

                              Generated using TypeDoc

                              \ No newline at end of file diff --git a/docs/types/_internal_.AuthDialogueOptions.html b/docs/types/_internal_.AuthDialogueOptions.html new file mode 100644 index 000000000..bc9e23363 --- /dev/null +++ b/docs/types/_internal_.AuthDialogueOptions.html @@ -0,0 +1 @@ +AuthDialogueOptions | universalviewer

                              Type alias AuthDialogueOptions

                              AuthDialogueOptions: DialogueOptions & {}

                              Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.BaseConfig.html b/docs/types/_internal_.BaseConfig.html new file mode 100644 index 000000000..e88bfd94f --- /dev/null +++ b/docs/types/_internal_.BaseConfig.html @@ -0,0 +1 @@ +BaseConfig | universalviewer
                                BaseConfig: {
                                    content: Content;
                                    localisation: Localisation;
                                    modules: {
                                        authDialogue: AuthDialogue;
                                        centerPanel: CenterPanel;
                                        clickThroughDialogue: ClickThroughDialogue;
                                        dialogue: Dialogue;
                                        downloadDialogue: DownloadDialogue;
                                        footerPanel: FooterPanel;
                                        genericDialogue: GenericDialogue;
                                        headerPanel: HeaderPanel;
                                        helpDialogue: HelpDialogue;
                                        leftPanel: LeftPanel;
                                        loginDialogue: LoginDialogue;
                                        mobileFooterPanel: FooterPanel;
                                        moreInfoRightPanel: MoreInfoRightPanel;
                                        restrictedDialogue: RestrictedDialogue;
                                        settingsDialogue: SettingsDialogue;
                                        shareDialogue: ShareDialogue;
                                    };
                                    options: Options;
                                    uri?: string;
                                }

                                Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.CenterPanel.html b/docs/types/_internal_.CenterPanel.html new file mode 100644 index 000000000..4f9b5ee03 --- /dev/null +++ b/docs/types/_internal_.CenterPanel.html @@ -0,0 +1 @@ +CenterPanel | universalviewer
                                CenterPanel: ModuleConfig & {
                                    content: CenterPanelContent;
                                    options: CenterPanelOptions;
                                }

                                Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.CenterPanelContent.html b/docs/types/_internal_.CenterPanelContent.html new file mode 100644 index 000000000..6198bd36c --- /dev/null +++ b/docs/types/_internal_.CenterPanelContent.html @@ -0,0 +1 @@ +CenterPanelContent | universalviewer

                                Type alias CenterPanelContent

                                CenterPanelContent: {
                                    attribution: string;
                                }

                                Type declaration

                                • attribution: string

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.CenterPanelOptions.html b/docs/types/_internal_.CenterPanelOptions.html new file mode 100644 index 000000000..36332619b --- /dev/null +++ b/docs/types/_internal_.CenterPanelOptions.html @@ -0,0 +1 @@ +CenterPanelOptions | universalviewer

                                Type alias CenterPanelOptions

                                CenterPanelOptions: {
                                    mostSpecificRequiredStatement: boolean;
                                    requiredStatementEnabled: boolean;
                                    subtitleEnabled: boolean;
                                    titleEnabled: boolean;
                                }

                                Type declaration

                                • mostSpecificRequiredStatement: boolean
                                • requiredStatementEnabled: boolean
                                • subtitleEnabled: boolean
                                • titleEnabled: boolean

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.ClickThroughDialogue.html b/docs/types/_internal_.ClickThroughDialogue.html new file mode 100644 index 000000000..0381f68cf --- /dev/null +++ b/docs/types/_internal_.ClickThroughDialogue.html @@ -0,0 +1 @@ +ClickThroughDialogue | universalviewer

                                Type alias ClickThroughDialogue

                                ClickThroughDialogue: ModuleConfig & {
                                    content: ClickThroughDialogueContent;
                                    options: ClickThroughDialogueOptions;
                                }

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.ClickThroughDialogueContent.html b/docs/types/_internal_.ClickThroughDialogueContent.html new file mode 100644 index 000000000..5bf2447a9 --- /dev/null +++ b/docs/types/_internal_.ClickThroughDialogueContent.html @@ -0,0 +1 @@ +ClickThroughDialogueContent | universalviewer

                                Type alias ClickThroughDialogueContent

                                ClickThroughDialogueContent: DialogueContent & {
                                    viewTerms: string;
                                }

                                Type declaration

                                • viewTerms: string

                                Generated using TypeDoc

                                \ No newline at end of file diff --git a/docs/types/_internal_.ClickThroughDialogueOptions.html b/docs/types/_internal_.ClickThroughDialogueOptions.html new file mode 100644 index 000000000..20ed4edb9 --- /dev/null +++ b/docs/types/_internal_.ClickThroughDialogueOptions.html @@ -0,0 +1 @@ +ClickThroughDialogueOptions | universalviewer

                                Type alias ClickThroughDialogueOptions

                                ClickThroughDialogueOptions: DialogueOptions & {}

                                Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-1.html b/docs/types/_internal_.Config-1.html new file mode 100644 index 000000000..b3cfa6a77 --- /dev/null +++ b/docs/types/_internal_.Config-1.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-2.html b/docs/types/_internal_.Config-2.html new file mode 100644 index 000000000..9cba2f6a6 --- /dev/null +++ b/docs/types/_internal_.Config-2.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-3.html b/docs/types/_internal_.Config-3.html new file mode 100644 index 000000000..32695a9ff --- /dev/null +++ b/docs/types/_internal_.Config-3.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-4.html b/docs/types/_internal_.Config-4.html new file mode 100644 index 000000000..6ab41b7fc --- /dev/null +++ b/docs/types/_internal_.Config-4.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-5.html b/docs/types/_internal_.Config-5.html new file mode 100644 index 000000000..cec1001ee --- /dev/null +++ b/docs/types/_internal_.Config-5.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-6.html b/docs/types/_internal_.Config-6.html new file mode 100644 index 000000000..3f61fa33b --- /dev/null +++ b/docs/types/_internal_.Config-6.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config-7.html b/docs/types/_internal_.Config-7.html new file mode 100644 index 000000000..44dc9594f --- /dev/null +++ b/docs/types/_internal_.Config-7.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Config.html b/docs/types/_internal_.Config.html new file mode 100644 index 000000000..8002d22b9 --- /dev/null +++ b/docs/types/_internal_.Config.html @@ -0,0 +1 @@ +Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html new file mode 100644 index 000000000..7c78ef60e --- /dev/null +++ b/docs/types/_internal_.Content.html @@ -0,0 +1 @@ +Content | universalviewer
                                  Content: {
                                      authCORSError: string;
                                      authorisationFailedMessage: string;
                                      canvasIndexOutOfRange: string;
                                      fallbackDegradedLabel: string;
                                      fallbackDegradedMessage: string;
                                      forbiddenResourceMessage: string;
                                      mediaViewer: string;
                                      skipToDownload: string;
                                      termsOfUse: string;
                                  }

                                  Type declaration

                                  • authCORSError: string
                                  • authorisationFailedMessage: string
                                  • canvasIndexOutOfRange: string
                                  • fallbackDegradedLabel: string
                                  • fallbackDegradedMessage: string
                                  • forbiddenResourceMessage: string
                                  • mediaViewer: string
                                  • skipToDownload: string
                                  • termsOfUse: string

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.ContentLeftPanel.html b/docs/types/_internal_.ContentLeftPanel.html new file mode 100644 index 000000000..242ad0a4e --- /dev/null +++ b/docs/types/_internal_.ContentLeftPanel.html @@ -0,0 +1 @@ +ContentLeftPanel | universalviewer
                                  ContentLeftPanel: ModuleConfig & {
                                      content: ContentLeftPanelContent;
                                      options: ContentLeftPanelOptions;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html new file mode 100644 index 000000000..fb8461985 --- /dev/null +++ b/docs/types/_internal_.ContentLeftPanelContent.html @@ -0,0 +1 @@ +ContentLeftPanelContent | universalviewer

                                  Type alias ContentLeftPanelContent

                                  ContentLeftPanelContent: ExpandPanelContent & {
                                      date: string;
                                      index: string;
                                      manifestRanges: string;
                                      searchResult: string;
                                      searchResults: string;
                                      sortBy: string;
                                      thumbnails: string;
                                      title: string;
                                      volume: string;
                                  }

                                  Type declaration

                                  • date: string
                                  • index: string
                                  • manifestRanges: string
                                  • searchResult: string
                                  • searchResults: string
                                  • sortBy: string
                                  • thumbnails: string
                                  • title: string
                                  • volume: string

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.ContentLeftPanelOptions.html b/docs/types/_internal_.ContentLeftPanelOptions.html new file mode 100644 index 000000000..6316aba6d --- /dev/null +++ b/docs/types/_internal_.ContentLeftPanelOptions.html @@ -0,0 +1,24 @@ +ContentLeftPanelOptions | universalviewer

                                  Type alias ContentLeftPanelOptions

                                  ContentLeftPanelOptions: ExpandPanelOptions & {
                                      autoExpandTreeEnabled: boolean;
                                      autoExpandTreeIfFewerThan: number;
                                      branchNodesExpandOnClick: boolean;
                                      branchNodesSelectable: boolean;
                                      defaultToTreeEnabled: boolean;
                                      defaultToTreeIfGreaterThan: number;
                                      elideCount: number;
                                      galleryThumbChunkedResizingThreshold: number;
                                      galleryThumbHeight: number;
                                      galleryThumbLoadPadding: number;
                                      galleryThumbWidth: number;
                                      oneColThumbHeight: number;
                                      oneColThumbWidth: number;
                                      pageModeEnabled: boolean;
                                      tabOrder: string;
                                      thumbsCacheInvalidation: ThumbsCacheInvalidation;
                                      thumbsEnabled: boolean;
                                      thumbsExtraHeight: number;
                                      thumbsImageFadeInDuration: number;
                                      thumbsLoadRange: number;
                                      treeEnabled: boolean;
                                      twoColThumbHeight: number;
                                      twoColThumbWidth: number;
                                  }

                                  Type declaration

                                  • autoExpandTreeEnabled: boolean

                                    Determines if tree should expand automatically

                                    +
                                  • autoExpandTreeIfFewerThan: number

                                    Number of items to auto expand tree

                                    +
                                  • branchNodesExpandOnClick: boolean

                                    Determines if branch nodes expand on click

                                    +
                                  • branchNodesSelectable: boolean

                                    Determines if branch nodes are selectable

                                    +
                                  • defaultToTreeEnabled: boolean

                                    Determines if tree is the default view

                                    +
                                  • defaultToTreeIfGreaterThan: number

                                    Number of items to default to tree view

                                    +
                                  • elideCount: number

                                    Number of characters to elide at

                                    +
                                  • galleryThumbChunkedResizingThreshold: number

                                    Threshold for gallery thumb chunked resizing

                                    +
                                  • galleryThumbHeight: number

                                    Height of the gallery thumbnail

                                    +
                                  • galleryThumbLoadPadding: number

                                    Padding for gallery thumb load

                                    +
                                  • galleryThumbWidth: number

                                    Width of the gallery thumbnail

                                    +
                                  • oneColThumbHeight: number

                                    Height of the one column thumbnail

                                    +
                                  • oneColThumbWidth: number

                                    Width of the one column thumbnail

                                    +
                                  • pageModeEnabled: boolean

                                    Determines if page mode is enabled

                                    +
                                  • tabOrder: string

                                    Order of the tabs

                                    +
                                  • thumbsCacheInvalidation: ThumbsCacheInvalidation

                                    Configuration for thumbs cache invalidation

                                    +
                                  • thumbsEnabled: boolean

                                    Determines if thumbnails are enabled

                                    +
                                  • thumbsExtraHeight: number

                                    Extra height for thumbnails

                                    +
                                  • thumbsImageFadeInDuration: number

                                    Duration for thumbnails image fade in

                                    +
                                  • thumbsLoadRange: number

                                    Load range for thumbnails

                                    +
                                  • treeEnabled: boolean

                                    Determines if tree is enabled

                                    +
                                  • twoColThumbHeight: number

                                    Height of the two column thumbnail

                                    +
                                  • twoColThumbWidth: number

                                    Width of the two column thumbnail

                                    +

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.DefaultCenterPanel.html b/docs/types/_internal_.DefaultCenterPanel.html new file mode 100644 index 000000000..5f8130113 --- /dev/null +++ b/docs/types/_internal_.DefaultCenterPanel.html @@ -0,0 +1 @@ +DefaultCenterPanel | universalviewer

                                  Type alias DefaultCenterPanel

                                  DefaultCenterPanel: {
                                      content: DefaultCenterPanelContent;
                                      options: DefaultCenterPanelOptions;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file diff --git a/docs/types/_internal_.DefaultCenterPanelContent.html b/docs/types/_internal_.DefaultCenterPanelContent.html new file mode 100644 index 000000000..3bd11bdc4 --- /dev/null +++ b/docs/types/_internal_.DefaultCenterPanelContent.html @@ -0,0 +1 @@ +DefaultCenterPanelContent | universalviewer

                                  Type alias DefaultCenterPanelContent

                                  DefaultCenterPanelContent: CenterPanelContent & {}

                                  Type declaration

                                    Generated using TypeDoc

                                    \ No newline at end of file diff --git a/docs/types/_internal_.DefaultCenterPanelOptions.html b/docs/types/_internal_.DefaultCenterPanelOptions.html new file mode 100644 index 000000000..caea97ac3 --- /dev/null +++ b/docs/types/_internal_.DefaultCenterPanelOptions.html @@ -0,0 +1 @@ +DefaultCenterPanelOptions | universalviewer

                                    Type alias DefaultCenterPanelOptions

                                    DefaultCenterPanelOptions: CenterPanelOptions & {}

                                    Type declaration

                                      Generated using TypeDoc

                                      \ No newline at end of file diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html new file mode 100644 index 000000000..9dd6184d7 --- /dev/null +++ b/docs/types/_internal_.DefaultDownloadDialogue.html @@ -0,0 +1 @@ +DefaultDownloadDialogue | universalviewer

                                      Type alias DefaultDownloadDialogue

                                      DefaultDownloadDialogue: ModuleConfig & {
                                          content: DefaultDownloadDialogueContent;
                                          options: DefaultDownloadDialogueOptions;
                                      }

                                      Generated using TypeDoc

                                      \ No newline at end of file diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html new file mode 100644 index 000000000..5b67e4d60 --- /dev/null +++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html @@ -0,0 +1 @@ +DefaultDownloadDialogueContent | universalviewer

                                      Type alias DefaultDownloadDialogueContent

                                      DefaultDownloadDialogueContent: DownloadDialogueContent & {}

                                      Type declaration

                                        Generated using TypeDoc

                                        \ No newline at end of file diff --git a/docs/types/_internal_.DefaultDownloadDialogueOptions.html b/docs/types/_internal_.DefaultDownloadDialogueOptions.html new file mode 100644 index 000000000..d73d32e79 --- /dev/null +++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html @@ -0,0 +1 @@ +DefaultDownloadDialogueOptions | universalviewer

                                        Type alias DefaultDownloadDialogueOptions

                                        DefaultDownloadDialogueOptions: DownloadDialogueOptions & {}

                                        Type declaration

                                          Generated using TypeDoc

                                          \ No newline at end of file diff --git a/docs/types/_internal_.DefaultSettingsDialogue.html b/docs/types/_internal_.DefaultSettingsDialogue.html new file mode 100644 index 000000000..7e703832d --- /dev/null +++ b/docs/types/_internal_.DefaultSettingsDialogue.html @@ -0,0 +1 @@ +DefaultSettingsDialogue | universalviewer

                                          Type alias DefaultSettingsDialogue

                                          DefaultSettingsDialogue: ModuleConfig & {
                                              content: DefaultSettingsDialogueContent;
                                              options: DefaultSettingsDialogueOptions;
                                          }

                                          Generated using TypeDoc

                                          \ No newline at end of file diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html new file mode 100644 index 000000000..eb1f13fd0 --- /dev/null +++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html @@ -0,0 +1 @@ +DefaultSettingsDialogueContent | universalviewer

                                          Type alias DefaultSettingsDialogueContent

                                          DefaultSettingsDialogueContent: SettingsDialogueContent & {}

                                          Type declaration

                                            Generated using TypeDoc

                                            \ No newline at end of file diff --git a/docs/types/_internal_.DefaultSettingsDialogueOptions.html b/docs/types/_internal_.DefaultSettingsDialogueOptions.html new file mode 100644 index 000000000..c3fab4664 --- /dev/null +++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html @@ -0,0 +1 @@ +DefaultSettingsDialogueOptions | universalviewer

                                            Type alias DefaultSettingsDialogueOptions

                                            DefaultSettingsDialogueOptions: SettingsDialogueOptions & {}

                                            Type declaration

                                              Generated using TypeDoc

                                              \ No newline at end of file diff --git a/docs/types/_internal_.DefaultShareDialogue.html b/docs/types/_internal_.DefaultShareDialogue.html new file mode 100644 index 000000000..2d4bb0d4f --- /dev/null +++ b/docs/types/_internal_.DefaultShareDialogue.html @@ -0,0 +1 @@ +DefaultShareDialogue | universalviewer

                                              Type alias DefaultShareDialogue

                                              DefaultShareDialogue: ModuleConfig & {
                                                  content: DefaultShareDialogueContent;
                                                  options: DefaultShareDialogueOptions;
                                              }

                                              Generated using TypeDoc

                                              \ No newline at end of file diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html new file mode 100644 index 000000000..65ee7f5be --- /dev/null +++ b/docs/types/_internal_.DefaultShareDialogueContent.html @@ -0,0 +1 @@ +DefaultShareDialogueContent | universalviewer

                                              Type alias DefaultShareDialogueContent

                                              DefaultShareDialogueContent: ShareDialogueContent & {}

                                              Type declaration

                                                Generated using TypeDoc

                                                \ No newline at end of file diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html new file mode 100644 index 000000000..2501143d1 --- /dev/null +++ b/docs/types/_internal_.DefaultShareDialogueOptions.html @@ -0,0 +1 @@ +DefaultShareDialogueOptions | universalviewer

                                                Type alias DefaultShareDialogueOptions

                                                DefaultShareDialogueOptions: ShareDialogueOptions & {}

                                                Type declaration

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.Dialogue.html b/docs/types/_internal_.Dialogue.html new file mode 100644 index 000000000..191c9b043 --- /dev/null +++ b/docs/types/_internal_.Dialogue.html @@ -0,0 +1 @@ +Dialogue | universalviewer
                                                  Dialogue: ModuleConfig & {
                                                      content: DialogueContent;
                                                      options?: DialogueOptions;
                                                  }

                                                  Type declaration

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.DialogueContent.html b/docs/types/_internal_.DialogueContent.html new file mode 100644 index 000000000..57772ddb5 --- /dev/null +++ b/docs/types/_internal_.DialogueContent.html @@ -0,0 +1 @@ +DialogueContent | universalviewer
                                                  DialogueContent: {
                                                      close: string;
                                                  }

                                                  Type declaration

                                                  • close: string

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.DialogueOptions.html b/docs/types/_internal_.DialogueOptions.html new file mode 100644 index 000000000..6e874fb5e --- /dev/null +++ b/docs/types/_internal_.DialogueOptions.html @@ -0,0 +1 @@ +DialogueOptions | universalviewer
                                                  DialogueOptions: {
                                                      topCloseButtonEnabled: boolean;
                                                  }

                                                  Type declaration

                                                  • topCloseButtonEnabled: boolean

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.DownloadDialogue.html b/docs/types/_internal_.DownloadDialogue.html new file mode 100644 index 000000000..ddc3ee481 --- /dev/null +++ b/docs/types/_internal_.DownloadDialogue.html @@ -0,0 +1 @@ +DownloadDialogue | universalviewer
                                                  DownloadDialogue: ModuleConfig & {
                                                      content: DownloadDialogueContent;
                                                      options: DownloadDialogueOptions;
                                                  }

                                                  Type declaration

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.DownloadDialogueContent.html b/docs/types/_internal_.DownloadDialogueContent.html new file mode 100644 index 000000000..b755c3d33 --- /dev/null +++ b/docs/types/_internal_.DownloadDialogueContent.html @@ -0,0 +1 @@ +DownloadDialogueContent | universalviewer

                                                  Type alias DownloadDialogueContent

                                                  DownloadDialogueContent: DialogueContent & {
                                                      download: string;
                                                      entireDocument: string;
                                                      entireFileAsOriginal: string;
                                                      entireFileAsOriginalWithFormat: string;
                                                      noneAvailable: string;
                                                      title: string;
                                                  }

                                                  Type declaration

                                                  • download: string
                                                  • entireDocument: string
                                                  • entireFileAsOriginal: string
                                                  • entireFileAsOriginalWithFormat: string
                                                  • noneAvailable: string
                                                  • title: string

                                                  Generated using TypeDoc

                                                  \ No newline at end of file diff --git a/docs/types/_internal_.DownloadDialogueOptions.html b/docs/types/_internal_.DownloadDialogueOptions.html new file mode 100644 index 000000000..56b3e751c --- /dev/null +++ b/docs/types/_internal_.DownloadDialogueOptions.html @@ -0,0 +1 @@ +DownloadDialogueOptions | universalviewer

                                                  Type alias DownloadDialogueOptions

                                                  DownloadDialogueOptions: DialogueOptions & {}

                                                  Type declaration

                                                    Generated using TypeDoc

                                                    \ No newline at end of file diff --git a/docs/types/_internal_.EbookCenterPanel.html b/docs/types/_internal_.EbookCenterPanel.html new file mode 100644 index 000000000..2040188ac --- /dev/null +++ b/docs/types/_internal_.EbookCenterPanel.html @@ -0,0 +1 @@ +EbookCenterPanel | universalviewer
                                                    EbookCenterPanel: {
                                                        content: EbookCenterPanelContent;
                                                        options: EbookCenterPanelOptions;
                                                    }

                                                    Type declaration

                                                    Generated using TypeDoc

                                                    \ No newline at end of file diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html new file mode 100644 index 000000000..242ab5adf --- /dev/null +++ b/docs/types/_internal_.EbookCenterPanelContent.html @@ -0,0 +1 @@ +EbookCenterPanelContent | universalviewer

                                                    Type alias EbookCenterPanelContent

                                                    EbookCenterPanelContent: CenterPanelContent & {}

                                                    Type declaration

                                                      Generated using TypeDoc

                                                      \ No newline at end of file diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html new file mode 100644 index 000000000..dc194dba9 --- /dev/null +++ b/docs/types/_internal_.EbookCenterPanelOptions.html @@ -0,0 +1 @@ +EbookCenterPanelOptions | universalviewer

                                                      Type alias EbookCenterPanelOptions

                                                      EbookCenterPanelOptions: CenterPanelOptions & {}

                                                      Type declaration

                                                        Generated using TypeDoc

                                                        \ No newline at end of file diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html new file mode 100644 index 000000000..ec987017e --- /dev/null +++ b/docs/types/_internal_.EbookDownloadDialogue.html @@ -0,0 +1 @@ +EbookDownloadDialogue | universalviewer

                                                        Type alias EbookDownloadDialogue

                                                        EbookDownloadDialogue: ModuleConfig & {
                                                            content: EbookDownloadDialogueContent;
                                                            options: EbookDownloadDialogueOptions;
                                                        }

                                                        Generated using TypeDoc

                                                        \ No newline at end of file diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html new file mode 100644 index 000000000..5ce3da22f --- /dev/null +++ b/docs/types/_internal_.EbookDownloadDialogueContent.html @@ -0,0 +1 @@ +EbookDownloadDialogueContent | universalviewer

                                                        Type alias EbookDownloadDialogueContent

                                                        EbookDownloadDialogueContent: DownloadDialogueContent & {}

                                                        Type declaration

                                                          Generated using TypeDoc

                                                          \ No newline at end of file diff --git a/docs/types/_internal_.EbookDownloadDialogueOptions.html b/docs/types/_internal_.EbookDownloadDialogueOptions.html new file mode 100644 index 000000000..209e6dc9f --- /dev/null +++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html @@ -0,0 +1 @@ +EbookDownloadDialogueOptions | universalviewer

                                                          Type alias EbookDownloadDialogueOptions

                                                          EbookDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                          Type declaration

                                                            Generated using TypeDoc

                                                            \ No newline at end of file diff --git a/docs/types/_internal_.EbookLeftPanel.html b/docs/types/_internal_.EbookLeftPanel.html new file mode 100644 index 000000000..8e8884044 --- /dev/null +++ b/docs/types/_internal_.EbookLeftPanel.html @@ -0,0 +1 @@ +EbookLeftPanel | universalviewer
                                                            EbookLeftPanel: {
                                                                content: EbookLeftPanelContent;
                                                                options: EbookLeftPanelOptions;
                                                            }

                                                            Type declaration

                                                            Generated using TypeDoc

                                                            \ No newline at end of file diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html new file mode 100644 index 000000000..c5fb25e76 --- /dev/null +++ b/docs/types/_internal_.EbookLeftPanelContent.html @@ -0,0 +1 @@ +EbookLeftPanelContent | universalviewer

                                                            Type alias EbookLeftPanelContent

                                                            EbookLeftPanelContent: ExpandPanelContent & {
                                                                title: string;
                                                            }

                                                            Type declaration

                                                            • title: string

                                                            Generated using TypeDoc

                                                            \ No newline at end of file diff --git a/docs/types/_internal_.EbookLeftPanelOptions.html b/docs/types/_internal_.EbookLeftPanelOptions.html new file mode 100644 index 000000000..a79041be9 --- /dev/null +++ b/docs/types/_internal_.EbookLeftPanelOptions.html @@ -0,0 +1 @@ +EbookLeftPanelOptions | universalviewer

                                                            Type alias EbookLeftPanelOptions

                                                            EbookLeftPanelOptions: ExpandPanelOptions & {}

                                                            Type declaration

                                                              Generated using TypeDoc

                                                              \ No newline at end of file diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html new file mode 100644 index 000000000..5578e84f9 --- /dev/null +++ b/docs/types/_internal_.EbookSettingsDialogue.html @@ -0,0 +1 @@ +EbookSettingsDialogue | universalviewer

                                                              Type alias EbookSettingsDialogue

                                                              EbookSettingsDialogue: ModuleConfig & {
                                                                  content: EbookSettingsDialogueContent;
                                                                  options: EbookSettingsDialogueOptions;
                                                              }

                                                              Generated using TypeDoc

                                                              \ No newline at end of file diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html new file mode 100644 index 000000000..f64b237f8 --- /dev/null +++ b/docs/types/_internal_.EbookSettingsDialogueContent.html @@ -0,0 +1 @@ +EbookSettingsDialogueContent | universalviewer

                                                              Type alias EbookSettingsDialogueContent

                                                              EbookSettingsDialogueContent: SettingsDialogueContent & {}

                                                              Type declaration

                                                                Generated using TypeDoc

                                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookSettingsDialogueOptions.html b/docs/types/_internal_.EbookSettingsDialogueOptions.html new file mode 100644 index 000000000..6a960d6d2 --- /dev/null +++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html @@ -0,0 +1 @@ +EbookSettingsDialogueOptions | universalviewer

                                                                Type alias EbookSettingsDialogueOptions

                                                                EbookSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                Type declaration

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.EbookShareDialogue.html b/docs/types/_internal_.EbookShareDialogue.html new file mode 100644 index 000000000..50afc6cd3 --- /dev/null +++ b/docs/types/_internal_.EbookShareDialogue.html @@ -0,0 +1 @@ +EbookShareDialogue | universalviewer

                                                                  Type alias EbookShareDialogue

                                                                  EbookShareDialogue: ModuleConfig & {
                                                                      content: EbookShareDialogueContent;
                                                                      options: EbookShareDialogueOptions;
                                                                  }

                                                                  Type declaration

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html new file mode 100644 index 000000000..8e6a792b6 --- /dev/null +++ b/docs/types/_internal_.EbookShareDialogueContent.html @@ -0,0 +1 @@ +EbookShareDialogueContent | universalviewer

                                                                  Type alias EbookShareDialogueContent

                                                                  EbookShareDialogueContent: ShareDialogueContent & {}

                                                                  Type declaration

                                                                    Generated using TypeDoc

                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html new file mode 100644 index 000000000..f44cd54d3 --- /dev/null +++ b/docs/types/_internal_.EbookShareDialogueOptions.html @@ -0,0 +1 @@ +EbookShareDialogueOptions | universalviewer

                                                                    Type alias EbookShareDialogueOptions

                                                                    EbookShareDialogueOptions: ShareDialogueOptions & {}

                                                                    Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.ExpandPanel.html b/docs/types/_internal_.ExpandPanel.html new file mode 100644 index 000000000..24071b970 --- /dev/null +++ b/docs/types/_internal_.ExpandPanel.html @@ -0,0 +1 @@ +ExpandPanel | universalviewer
                                                                      ExpandPanel: ModuleConfig & {
                                                                          content: ExpandPanelContent;
                                                                          options: ExpandPanelOptions;
                                                                      }

                                                                      Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.ExpandPanelContent.html b/docs/types/_internal_.ExpandPanelContent.html new file mode 100644 index 000000000..c9ed5c34a --- /dev/null +++ b/docs/types/_internal_.ExpandPanelContent.html @@ -0,0 +1 @@ +ExpandPanelContent | universalviewer

                                                                      Type alias ExpandPanelContent

                                                                      ExpandPanelContent: {
                                                                          collapse: string;
                                                                          collapseFull: string;
                                                                          expand: string;
                                                                          expandFull: string;
                                                                      }

                                                                      Type declaration

                                                                      • collapse: string
                                                                      • collapseFull: string
                                                                      • expand: string
                                                                      • expandFull: string

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.ExpandPanelOptions.html b/docs/types/_internal_.ExpandPanelOptions.html new file mode 100644 index 000000000..5470dc971 --- /dev/null +++ b/docs/types/_internal_.ExpandPanelOptions.html @@ -0,0 +1,6 @@ +ExpandPanelOptions | universalviewer

                                                                      Type alias ExpandPanelOptions

                                                                      ExpandPanelOptions: {
                                                                          expandFullEnabled: boolean;
                                                                          panelAnimationDuration: number;
                                                                          panelCollapsedWidth: number;
                                                                          panelExpandedWidth: number;
                                                                          panelOpen: boolean;
                                                                      }

                                                                      Type declaration

                                                                      • expandFullEnabled: boolean

                                                                        Determines if expand full is enabled

                                                                        +
                                                                      • panelAnimationDuration: number

                                                                        Determines the duration of the panel expand/collapse animation

                                                                        +
                                                                      • panelCollapsedWidth: number

                                                                        Width of the collapsed panel

                                                                        +
                                                                      • panelExpandedWidth: number

                                                                        Width of the expanded panel

                                                                        +
                                                                      • panelOpen: boolean

                                                                        Determines if the panel is open

                                                                        +

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.FooterPanel.html b/docs/types/_internal_.FooterPanel.html new file mode 100644 index 000000000..bae6a2352 --- /dev/null +++ b/docs/types/_internal_.FooterPanel.html @@ -0,0 +1 @@ +FooterPanel | universalviewer
                                                                      FooterPanel: ModuleConfig & {
                                                                          content: FooterPanelContent;
                                                                          options: FooterPanelOptions;
                                                                      }

                                                                      Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.FooterPanelContent.html b/docs/types/_internal_.FooterPanelContent.html new file mode 100644 index 000000000..25aea25e2 --- /dev/null +++ b/docs/types/_internal_.FooterPanelContent.html @@ -0,0 +1 @@ +FooterPanelContent | universalviewer

                                                                      Type alias FooterPanelContent

                                                                      FooterPanelContent: {
                                                                          bookmark: string;
                                                                          download: string;
                                                                          embed: string;
                                                                          exitFullScreen: string;
                                                                          feedback: string;
                                                                          fullScreen: string;
                                                                          moreInfo: string;
                                                                          open: string;
                                                                          share: string;
                                                                      }

                                                                      Type declaration

                                                                      • bookmark: string
                                                                      • download: string
                                                                      • embed: string
                                                                      • exitFullScreen: string
                                                                      • feedback: string
                                                                      • fullScreen: string
                                                                      • moreInfo: string
                                                                      • open: string
                                                                      • share: string

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.FooterPanelOptions.html b/docs/types/_internal_.FooterPanelOptions.html new file mode 100644 index 000000000..6f1d33782 --- /dev/null +++ b/docs/types/_internal_.FooterPanelOptions.html @@ -0,0 +1,11 @@ +FooterPanelOptions | universalviewer

                                                                      Type alias FooterPanelOptions

                                                                      FooterPanelOptions: {
                                                                          bookmarkEnabled: boolean;
                                                                          downloadEnabled: boolean;
                                                                          embedEnabled: boolean;
                                                                          feedbackEnabled: boolean;
                                                                          fullscreenEnabled: boolean;
                                                                          minimiseButtons: boolean;
                                                                          moreInfoEnabled: boolean;
                                                                          openEnabled: boolean;
                                                                          printEnabled: boolean;
                                                                          shareEnabled: boolean;
                                                                      }

                                                                      Type declaration

                                                                      • bookmarkEnabled: boolean

                                                                        Determines if bookmarking is enabled

                                                                        +
                                                                      • downloadEnabled: boolean

                                                                        Determines if downloading is enabled

                                                                        +
                                                                      • embedEnabled: boolean

                                                                        Determines if embedding is enabled

                                                                        +
                                                                      • feedbackEnabled: boolean

                                                                        Determines if feedback is enabled

                                                                        +
                                                                      • fullscreenEnabled: boolean

                                                                        Determines if fullscreen mode is enabled

                                                                        +
                                                                      • minimiseButtons: boolean

                                                                        Determines if buttons are minimised

                                                                        +
                                                                      • moreInfoEnabled: boolean

                                                                        Determines if more information is enabled

                                                                        +
                                                                      • openEnabled: boolean

                                                                        Determines if opening is enabled

                                                                        +
                                                                      • printEnabled: boolean

                                                                        Determines if printing is enabled

                                                                        +
                                                                      • shareEnabled: boolean

                                                                        Determines if sharing is enabled

                                                                        +

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.GenericDialogue.html b/docs/types/_internal_.GenericDialogue.html new file mode 100644 index 000000000..1aee7fb8a --- /dev/null +++ b/docs/types/_internal_.GenericDialogue.html @@ -0,0 +1 @@ +GenericDialogue | universalviewer
                                                                      GenericDialogue: ModuleConfig & {
                                                                          content: GenericDialogueContent;
                                                                          options: GenericDialogueOptions;
                                                                      }

                                                                      Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.GenericDialogueContent.html b/docs/types/_internal_.GenericDialogueContent.html new file mode 100644 index 000000000..a2fa021bd --- /dev/null +++ b/docs/types/_internal_.GenericDialogueContent.html @@ -0,0 +1 @@ +GenericDialogueContent | universalviewer

                                                                      Type alias GenericDialogueContent

                                                                      GenericDialogueContent: DialogueContent & {
                                                                          emptyValue: string;
                                                                          invalidNumber: string;
                                                                          noMatches: string;
                                                                          ok: string;
                                                                          pageNotFound: string;
                                                                          refresh: string;
                                                                      }

                                                                      Type declaration

                                                                      • emptyValue: string
                                                                      • invalidNumber: string
                                                                      • noMatches: string
                                                                      • ok: string
                                                                      • pageNotFound: string
                                                                      • refresh: string

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.GenericDialogueOptions.html b/docs/types/_internal_.GenericDialogueOptions.html new file mode 100644 index 000000000..206958b2f --- /dev/null +++ b/docs/types/_internal_.GenericDialogueOptions.html @@ -0,0 +1 @@ +GenericDialogueOptions | universalviewer

                                                                      Type alias GenericDialogueOptions

                                                                      GenericDialogueOptions: DialogueOptions & {}

                                                                      Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HeaderPanel.html b/docs/types/_internal_.HeaderPanel.html new file mode 100644 index 000000000..69017f783 --- /dev/null +++ b/docs/types/_internal_.HeaderPanel.html @@ -0,0 +1 @@ +HeaderPanel | universalviewer
                                                                        HeaderPanel: ModuleConfig & {
                                                                            content: HeaderPanelContent;
                                                                            options: HeaderPanelOptions;
                                                                        }

                                                                        Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HeaderPanelContent.html b/docs/types/_internal_.HeaderPanelContent.html new file mode 100644 index 000000000..24f10b022 --- /dev/null +++ b/docs/types/_internal_.HeaderPanelContent.html @@ -0,0 +1 @@ +HeaderPanelContent | universalviewer

                                                                        Type alias HeaderPanelContent

                                                                        HeaderPanelContent: {
                                                                            close: string;
                                                                            settings: string;
                                                                        }

                                                                        Type declaration

                                                                        • close: string
                                                                        • settings: string

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HeaderPanelOptions.html b/docs/types/_internal_.HeaderPanelOptions.html new file mode 100644 index 000000000..58350d0f2 --- /dev/null +++ b/docs/types/_internal_.HeaderPanelOptions.html @@ -0,0 +1,4 @@ +HeaderPanelOptions | universalviewer

                                                                        Type alias HeaderPanelOptions

                                                                        HeaderPanelOptions: {
                                                                            centerOptionsEnabled: boolean;
                                                                            localeToggleEnabled: boolean;
                                                                            settingsButtonEnabled: boolean;
                                                                        }

                                                                        Type declaration

                                                                        • centerOptionsEnabled: boolean

                                                                          Determines if center options are enabled

                                                                          +
                                                                        • localeToggleEnabled: boolean

                                                                          Determines if locale toggle is enabled

                                                                          +
                                                                        • settingsButtonEnabled: boolean

                                                                          Determines if settings button is enabled

                                                                          +

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HelpDialogue.html b/docs/types/_internal_.HelpDialogue.html new file mode 100644 index 000000000..7a79d74a4 --- /dev/null +++ b/docs/types/_internal_.HelpDialogue.html @@ -0,0 +1 @@ +HelpDialogue | universalviewer
                                                                        HelpDialogue: ModuleConfig & {
                                                                            content: HelpDialogueContent;
                                                                            options: HelpDialogueOptions;
                                                                        }

                                                                        Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HelpDialogueContent.html b/docs/types/_internal_.HelpDialogueContent.html new file mode 100644 index 000000000..e25b6ab9b --- /dev/null +++ b/docs/types/_internal_.HelpDialogueContent.html @@ -0,0 +1 @@ +HelpDialogueContent | universalviewer

                                                                        Type alias HelpDialogueContent

                                                                        HelpDialogueContent: DialogueContent & {
                                                                            text: string;
                                                                            title: string;
                                                                        }

                                                                        Type declaration

                                                                        • text: string
                                                                        • title: string

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.HelpDialogueOptions.html b/docs/types/_internal_.HelpDialogueOptions.html new file mode 100644 index 000000000..1b505c1bc --- /dev/null +++ b/docs/types/_internal_.HelpDialogueOptions.html @@ -0,0 +1 @@ +HelpDialogueOptions | universalviewer

                                                                        Type alias HelpDialogueOptions

                                                                        HelpDialogueOptions: DialogueOptions & {}

                                                                        Type declaration

                                                                          Generated using TypeDoc

                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.LeftPanel.html b/docs/types/_internal_.LeftPanel.html new file mode 100644 index 000000000..7e7f6c218 --- /dev/null +++ b/docs/types/_internal_.LeftPanel.html @@ -0,0 +1 @@ +LeftPanel | universalviewer
                                                                          LeftPanel: ExpandPanel & {}

                                                                          Type declaration

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.Locale.html b/docs/types/_internal_.Locale.html new file mode 100644 index 000000000..83f963334 --- /dev/null +++ b/docs/types/_internal_.Locale.html @@ -0,0 +1 @@ +Locale | universalviewer
                                                                            Locale: {
                                                                                label: string;
                                                                                name: string;
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • name: string

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.Localisation.html b/docs/types/_internal_.Localisation.html new file mode 100644 index 000000000..0ee7f0e52 --- /dev/null +++ b/docs/types/_internal_.Localisation.html @@ -0,0 +1 @@ +Localisation | universalviewer
                                                                            Localisation: {
                                                                                label: string;
                                                                                locales: Locale[];
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • locales: Locale[]

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.LoginDialogue.html b/docs/types/_internal_.LoginDialogue.html new file mode 100644 index 000000000..b6116749f --- /dev/null +++ b/docs/types/_internal_.LoginDialogue.html @@ -0,0 +1 @@ +LoginDialogue | universalviewer
                                                                            LoginDialogue: ModuleConfig & {
                                                                                content: LoginDialogueContent;
                                                                                options: LoginDialogueOptions;
                                                                            }

                                                                            Type declaration

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.LoginDialogueContent.html b/docs/types/_internal_.LoginDialogueContent.html new file mode 100644 index 000000000..505376d39 --- /dev/null +++ b/docs/types/_internal_.LoginDialogueContent.html @@ -0,0 +1 @@ +LoginDialogueContent | universalviewer

                                                                            Type alias LoginDialogueContent

                                                                            LoginDialogueContent: DialogueContent & {
                                                                                cancel: string;
                                                                                login: string;
                                                                                logout: string;
                                                                            }

                                                                            Type declaration

                                                                            • cancel: string
                                                                            • login: string
                                                                            • logout: string

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.LoginDialogueOptions.html b/docs/types/_internal_.LoginDialogueOptions.html new file mode 100644 index 000000000..21b8e2c68 --- /dev/null +++ b/docs/types/_internal_.LoginDialogueOptions.html @@ -0,0 +1 @@ +LoginDialogueOptions | universalviewer

                                                                            Type alias LoginDialogueOptions

                                                                            LoginDialogueOptions: DialogueOptions & {}

                                                                            Type declaration

                                                                              Generated using TypeDoc

                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementCenterPanel.html b/docs/types/_internal_.MediaElementCenterPanel.html new file mode 100644 index 000000000..48b11e1cb --- /dev/null +++ b/docs/types/_internal_.MediaElementCenterPanel.html @@ -0,0 +1 @@ +MediaElementCenterPanel | universalviewer

                                                                              Type alias MediaElementCenterPanel

                                                                              MediaElementCenterPanel: {
                                                                                  content: MediaElementCenterPanelContent;
                                                                                  options: MediaElementCenterPanelOptions;
                                                                              }

                                                                              Generated using TypeDoc

                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html new file mode 100644 index 000000000..23ca16fa6 --- /dev/null +++ b/docs/types/_internal_.MediaElementCenterPanelContent.html @@ -0,0 +1 @@ +MediaElementCenterPanelContent | universalviewer

                                                                              Type alias MediaElementCenterPanelContent

                                                                              MediaElementCenterPanelContent: CenterPanelContent & {}

                                                                              Type declaration

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementCenterPanelOptions.html b/docs/types/_internal_.MediaElementCenterPanelOptions.html new file mode 100644 index 000000000..a9382021f --- /dev/null +++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html @@ -0,0 +1 @@ +MediaElementCenterPanelOptions | universalviewer

                                                                                Type alias MediaElementCenterPanelOptions

                                                                                MediaElementCenterPanelOptions: CenterPanelOptions & {
                                                                                    defaultHeight: number;
                                                                                    defaultWidth: number;
                                                                                }

                                                                                Type declaration

                                                                                • defaultHeight: number
                                                                                • defaultWidth: number

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementDownloadDialogue.html b/docs/types/_internal_.MediaElementDownloadDialogue.html new file mode 100644 index 000000000..65ce28ae7 --- /dev/null +++ b/docs/types/_internal_.MediaElementDownloadDialogue.html @@ -0,0 +1 @@ +MediaElementDownloadDialogue | universalviewer

                                                                                Type alias MediaElementDownloadDialogue

                                                                                MediaElementDownloadDialogue: ModuleConfig & {
                                                                                    content: MediaElementDownloadDialogueContent;
                                                                                    options: MediaElementDownloadDialogueOptions;
                                                                                }

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html new file mode 100644 index 000000000..1ef4a0585 --- /dev/null +++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html @@ -0,0 +1 @@ +MediaElementDownloadDialogueContent | universalviewer

                                                                                Type alias MediaElementDownloadDialogueContent

                                                                                MediaElementDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                Type declaration

                                                                                  Generated using TypeDoc

                                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html new file mode 100644 index 000000000..9cc6169e5 --- /dev/null +++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html @@ -0,0 +1 @@ +MediaElementDownloadDialogueOptions | universalviewer

                                                                                  Type alias MediaElementDownloadDialogueOptions

                                                                                  MediaElementDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                  Type declaration

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementSettingsDialogue.html b/docs/types/_internal_.MediaElementSettingsDialogue.html new file mode 100644 index 000000000..c10318195 --- /dev/null +++ b/docs/types/_internal_.MediaElementSettingsDialogue.html @@ -0,0 +1 @@ +MediaElementSettingsDialogue | universalviewer

                                                                                    Type alias MediaElementSettingsDialogue

                                                                                    MediaElementSettingsDialogue: ModuleConfig & {
                                                                                        content: MediaElementSettingsDialogueContent;
                                                                                        options: MediaElementSettingsDialogueOptions;
                                                                                    }

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html new file mode 100644 index 000000000..32e6cedcc --- /dev/null +++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html @@ -0,0 +1 @@ +MediaElementSettingsDialogueContent | universalviewer

                                                                                    Type alias MediaElementSettingsDialogueContent

                                                                                    MediaElementSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                    Type declaration

                                                                                      Generated using TypeDoc

                                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html new file mode 100644 index 000000000..b5aaa0d9f --- /dev/null +++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html @@ -0,0 +1 @@ +MediaElementSettingsDialogueOptions | universalviewer

                                                                                      Type alias MediaElementSettingsDialogueOptions

                                                                                      MediaElementSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                      Type declaration

                                                                                        Generated using TypeDoc

                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementShareDialogue.html b/docs/types/_internal_.MediaElementShareDialogue.html new file mode 100644 index 000000000..b52473755 --- /dev/null +++ b/docs/types/_internal_.MediaElementShareDialogue.html @@ -0,0 +1 @@ +MediaElementShareDialogue | universalviewer

                                                                                        Type alias MediaElementShareDialogue

                                                                                        MediaElementShareDialogue: ModuleConfig & {
                                                                                            content: MediaElementShareDialogueContent;
                                                                                            options: MediaElementShareDialogueOptions;
                                                                                        }

                                                                                        Generated using TypeDoc

                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html new file mode 100644 index 000000000..e8c7fe815 --- /dev/null +++ b/docs/types/_internal_.MediaElementShareDialogueContent.html @@ -0,0 +1 @@ +MediaElementShareDialogueContent | universalviewer

                                                                                        Type alias MediaElementShareDialogueContent

                                                                                        MediaElementShareDialogueContent: ShareDialogueContent & {}

                                                                                        Type declaration

                                                                                          Generated using TypeDoc

                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementShareDialogueOptions.html b/docs/types/_internal_.MediaElementShareDialogueOptions.html new file mode 100644 index 000000000..5cb2b3ece --- /dev/null +++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html @@ -0,0 +1 @@ +MediaElementShareDialogueOptions | universalviewer

                                                                                          Type alias MediaElementShareDialogueOptions

                                                                                          MediaElementShareDialogueOptions: ShareDialogueOptions & {}

                                                                                          Type declaration

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.MobileFooterPanel.html b/docs/types/_internal_.MobileFooterPanel.html new file mode 100644 index 000000000..6f6ec8b29 --- /dev/null +++ b/docs/types/_internal_.MobileFooterPanel.html @@ -0,0 +1 @@ +MobileFooterPanel | universalviewer

                                                                                            Type alias MobileFooterPanel

                                                                                            MobileFooterPanel: ModuleConfig & {
                                                                                                content: MobileFooterPanelContent;
                                                                                                options: MobileFooterPanelOptions;
                                                                                            }

                                                                                            Type declaration

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html new file mode 100644 index 000000000..0a9091133 --- /dev/null +++ b/docs/types/_internal_.MobileFooterPanelContent.html @@ -0,0 +1 @@ +MobileFooterPanelContent | universalviewer

                                                                                            Type alias MobileFooterPanelContent

                                                                                            MobileFooterPanelContent: FooterPanelContent & {
                                                                                                moreInfo: string;
                                                                                                rotateRight: string;
                                                                                                zoomIn: string;
                                                                                                zoomOut: string;
                                                                                            }

                                                                                            Type declaration

                                                                                            • moreInfo: string
                                                                                            • rotateRight: string
                                                                                            • zoomIn: string
                                                                                            • zoomOut: string

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.MobileFooterPanelOptions.html b/docs/types/_internal_.MobileFooterPanelOptions.html new file mode 100644 index 000000000..ad0c54baa --- /dev/null +++ b/docs/types/_internal_.MobileFooterPanelOptions.html @@ -0,0 +1 @@ +MobileFooterPanelOptions | universalviewer

                                                                                            Type alias MobileFooterPanelOptions

                                                                                            MobileFooterPanelOptions: FooterPanelOptions & {}

                                                                                            Type declaration

                                                                                              Generated using TypeDoc

                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html new file mode 100644 index 000000000..7f5f1e736 --- /dev/null +++ b/docs/types/_internal_.ModelViewerCenterPanel.html @@ -0,0 +1 @@ +ModelViewerCenterPanel | universalviewer

                                                                                              Type alias ModelViewerCenterPanel

                                                                                              ModelViewerCenterPanel: {
                                                                                                  content: ModelViewerCenterPanelContent;
                                                                                                  options: ModelViewerCenterPanelOptions;
                                                                                              }

                                                                                              Generated using TypeDoc

                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerCenterPanelContent.html b/docs/types/_internal_.ModelViewerCenterPanelContent.html new file mode 100644 index 000000000..0eb9d4fdd --- /dev/null +++ b/docs/types/_internal_.ModelViewerCenterPanelContent.html @@ -0,0 +1 @@ +ModelViewerCenterPanelContent | universalviewer

                                                                                              Type alias ModelViewerCenterPanelContent

                                                                                              ModelViewerCenterPanelContent: CenterPanelContent & {}

                                                                                              Type declaration

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerCenterPanelOptions.html b/docs/types/_internal_.ModelViewerCenterPanelOptions.html new file mode 100644 index 000000000..95932fcd5 --- /dev/null +++ b/docs/types/_internal_.ModelViewerCenterPanelOptions.html @@ -0,0 +1,5 @@ +ModelViewerCenterPanelOptions | universalviewer

                                                                                                Type alias ModelViewerCenterPanelOptions

                                                                                                ModelViewerCenterPanelOptions: CenterPanelOptions & {
                                                                                                    autoRotateEnabled: boolean;
                                                                                                    cameraChangeDelay: number;
                                                                                                    doubleClickAnnotationEnabled: boolean;
                                                                                                    interactionPromptEnabled: boolean;
                                                                                                }

                                                                                                Type declaration

                                                                                                • autoRotateEnabled: boolean

                                                                                                  Determines if auto rotation is enabled

                                                                                                  +
                                                                                                • cameraChangeDelay: number

                                                                                                  Delay in camera change

                                                                                                  +
                                                                                                • doubleClickAnnotationEnabled: boolean

                                                                                                  Determines if double click annotation is enabled

                                                                                                  +
                                                                                                • interactionPromptEnabled: boolean

                                                                                                  Determines if interaction prompt is enabled

                                                                                                  +

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html new file mode 100644 index 000000000..79a0541d6 --- /dev/null +++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html @@ -0,0 +1 @@ +ModelViewerDownloadDialogue | universalviewer

                                                                                                Type alias ModelViewerDownloadDialogue

                                                                                                ModelViewerDownloadDialogue: ModuleConfig & {
                                                                                                    content: ModelViewerDownloadDialogueContent;
                                                                                                    options: ModelViewerDownloadDialogueOptions;
                                                                                                }

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html new file mode 100644 index 000000000..4ced694ad --- /dev/null +++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html @@ -0,0 +1 @@ +ModelViewerDownloadDialogueContent | universalviewer

                                                                                                Type alias ModelViewerDownloadDialogueContent

                                                                                                ModelViewerDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                                Type declaration

                                                                                                  Generated using TypeDoc

                                                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html new file mode 100644 index 000000000..532b4f46f --- /dev/null +++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html @@ -0,0 +1 @@ +ModelViewerDownloadDialogueOptions | universalviewer

                                                                                                  Type alias ModelViewerDownloadDialogueOptions

                                                                                                  ModelViewerDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                                  Type declaration

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerSettingsDialogue.html b/docs/types/_internal_.ModelViewerSettingsDialogue.html new file mode 100644 index 000000000..5565e72fe --- /dev/null +++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html @@ -0,0 +1 @@ +ModelViewerSettingsDialogue | universalviewer

                                                                                                    Type alias ModelViewerSettingsDialogue

                                                                                                    ModelViewerSettingsDialogue: ModuleConfig & {
                                                                                                        content: ModelViewerSettingsDialogueContent;
                                                                                                        options: ModelViewerSettingsDialogueOptions;
                                                                                                    }

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html new file mode 100644 index 000000000..c3a2030fc --- /dev/null +++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html @@ -0,0 +1 @@ +ModelViewerSettingsDialogueContent | universalviewer

                                                                                                    Type alias ModelViewerSettingsDialogueContent

                                                                                                    ModelViewerSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                    Type declaration

                                                                                                      Generated using TypeDoc

                                                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html new file mode 100644 index 000000000..1984fb0d4 --- /dev/null +++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html @@ -0,0 +1 @@ +ModelViewerSettingsDialogueOptions | universalviewer

                                                                                                      Type alias ModelViewerSettingsDialogueOptions

                                                                                                      ModelViewerSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                      Type declaration

                                                                                                        Generated using TypeDoc

                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerShareDialogue.html b/docs/types/_internal_.ModelViewerShareDialogue.html new file mode 100644 index 000000000..48be31c9e --- /dev/null +++ b/docs/types/_internal_.ModelViewerShareDialogue.html @@ -0,0 +1 @@ +ModelViewerShareDialogue | universalviewer

                                                                                                        Type alias ModelViewerShareDialogue

                                                                                                        ModelViewerShareDialogue: ModuleConfig & {
                                                                                                            content: ModelViewerShareDialogueContent;
                                                                                                            options: ModelViewerShareDialogueOptions;
                                                                                                        }

                                                                                                        Generated using TypeDoc

                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html new file mode 100644 index 000000000..118dfa2f0 --- /dev/null +++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html @@ -0,0 +1 @@ +ModelViewerShareDialogueContent | universalviewer

                                                                                                        Type alias ModelViewerShareDialogueContent

                                                                                                        ModelViewerShareDialogueContent: ShareDialogueContent & {}

                                                                                                        Type declaration

                                                                                                          Generated using TypeDoc

                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerShareDialogueOptions.html b/docs/types/_internal_.ModelViewerShareDialogueOptions.html new file mode 100644 index 000000000..79a04da60 --- /dev/null +++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html @@ -0,0 +1 @@ +ModelViewerShareDialogueOptions | universalviewer

                                                                                                          Type alias ModelViewerShareDialogueOptions

                                                                                                          ModelViewerShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                          Type declaration

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ModuleConfig.html b/docs/types/_internal_.ModuleConfig.html new file mode 100644 index 000000000..b2b1a6a65 --- /dev/null +++ b/docs/types/_internal_.ModuleConfig.html @@ -0,0 +1 @@ +ModuleConfig | universalviewer
                                                                                                            ModuleConfig: {
                                                                                                                content: ModuleContent;
                                                                                                                options: ModuleOptions;
                                                                                                            }

                                                                                                            Type declaration

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ModuleContent.html b/docs/types/_internal_.ModuleContent.html new file mode 100644 index 000000000..19b3ca26f --- /dev/null +++ b/docs/types/_internal_.ModuleContent.html @@ -0,0 +1 @@ +ModuleContent | universalviewer
                                                                                                            ModuleContent: {}

                                                                                                            Type declaration

                                                                                                              Generated using TypeDoc

                                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.ModuleOptions.html b/docs/types/_internal_.ModuleOptions.html new file mode 100644 index 000000000..1ed7bebb9 --- /dev/null +++ b/docs/types/_internal_.ModuleOptions.html @@ -0,0 +1 @@ +ModuleOptions | universalviewer
                                                                                                              ModuleOptions: {}

                                                                                                              Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-1.html b/docs/types/_internal_.Modules-1.html new file mode 100644 index 000000000..b043da04b --- /dev/null +++ b/docs/types/_internal_.Modules-1.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: AVCenterPanel;
                                                                                                                    downloadDialogue: AVDownloadDialogue;
                                                                                                                    settingsDialogue: AVSettingsDialogue;
                                                                                                                    shareDialogue: AVShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-2.html b/docs/types/_internal_.Modules-2.html new file mode 100644 index 000000000..7fcd288bd --- /dev/null +++ b/docs/types/_internal_.Modules-2.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: DefaultCenterPanel;
                                                                                                                    downloadDialogue: DefaultDownloadDialogue;
                                                                                                                    settingsDialogue: DefaultSettingsDialogue;
                                                                                                                    shareDialogue: DefaultShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-3.html b/docs/types/_internal_.Modules-3.html new file mode 100644 index 000000000..3d4e9695c --- /dev/null +++ b/docs/types/_internal_.Modules-3.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: EbookCenterPanel;
                                                                                                                    downloadDialogue: EbookDownloadDialogue;
                                                                                                                    leftPanel: EbookLeftPanel;
                                                                                                                    settingsDialogue: EbookSettingsDialogue;
                                                                                                                    shareDialogue: EbookShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-4.html b/docs/types/_internal_.Modules-4.html new file mode 100644 index 000000000..3b191f4b9 --- /dev/null +++ b/docs/types/_internal_.Modules-4.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: MediaElementCenterPanel;
                                                                                                                    downloadDialogue: MediaElementDownloadDialogue;
                                                                                                                    settingsDialogue: MediaElementSettingsDialogue;
                                                                                                                    shareDialogue: MediaElementShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-5.html b/docs/types/_internal_.Modules-5.html new file mode 100644 index 000000000..51a75caae --- /dev/null +++ b/docs/types/_internal_.Modules-5.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: ModelViewerCenterPanel;
                                                                                                                    downloadDialogue: ModelViewerDownloadDialogue;
                                                                                                                    settingsDialogue: ModelViewerSettingsDialogue;
                                                                                                                    shareDialogue: ModelViewerShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-6.html b/docs/types/_internal_.Modules-6.html new file mode 100644 index 000000000..c85b06836 --- /dev/null +++ b/docs/types/_internal_.Modules-6.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: OSDCenterPanel;
                                                                                                                    downloadDialogue: OSDDownloadDialogue;
                                                                                                                    externalContentDialogue: Dialogue;
                                                                                                                    footerPanel: SearchFooterPanel;
                                                                                                                    headerPanel: PagingHeaderPanel;
                                                                                                                    leftPanel: ContentLeftPanel;
                                                                                                                    mobileFooterPanel: MobileFooterPanel;
                                                                                                                    multiSelectDialogue: MultiSelectDialogue;
                                                                                                                    settingsDialogue: OSDSettingsDialogue;
                                                                                                                    shareDialogue: OSDShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules-7.html b/docs/types/_internal_.Modules-7.html new file mode 100644 index 000000000..812bbcc34 --- /dev/null +++ b/docs/types/_internal_.Modules-7.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: PDFCenterPanel;
                                                                                                                    downloadDialogue: PDFDownloadDialogue;
                                                                                                                    headerPanel: PDFHeaderPanel;
                                                                                                                    settingsDialogue: PDFSettingsDialogue;
                                                                                                                    shareDialogue: PDFShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Modules.html b/docs/types/_internal_.Modules.html new file mode 100644 index 000000000..55208da92 --- /dev/null +++ b/docs/types/_internal_.Modules.html @@ -0,0 +1 @@ +Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    centerPanel: AlephCenterPanel;
                                                                                                                    downloadDialogue: AlephDownloadDialogue;
                                                                                                                    leftPanel: AlephLeftPanel;
                                                                                                                    settingsDialogue: AlephSettingsDialogue;
                                                                                                                    shareDialogue: AlephShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MoreInfoRightPanel.html b/docs/types/_internal_.MoreInfoRightPanel.html new file mode 100644 index 000000000..d7e420996 --- /dev/null +++ b/docs/types/_internal_.MoreInfoRightPanel.html @@ -0,0 +1 @@ +MoreInfoRightPanel | universalviewer

                                                                                                                Type alias MoreInfoRightPanel

                                                                                                                MoreInfoRightPanel: ModuleConfig & {
                                                                                                                    content: MoreInfoRightPanelContent;
                                                                                                                    options: MoreInfoRightPanelOptions;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MoreInfoRightPanelContent.html b/docs/types/_internal_.MoreInfoRightPanelContent.html new file mode 100644 index 000000000..80c319cfb --- /dev/null +++ b/docs/types/_internal_.MoreInfoRightPanelContent.html @@ -0,0 +1 @@ +MoreInfoRightPanelContent | universalviewer

                                                                                                                Type alias MoreInfoRightPanelContent

                                                                                                                MoreInfoRightPanelContent: DialogueContent & ExpandPanelContent & {
                                                                                                                    attribution: string;
                                                                                                                    canvasHeader: string;
                                                                                                                    collapse: string;
                                                                                                                    collapseFull: string;
                                                                                                                    copiedToClipboard: string;
                                                                                                                    copyToClipboard: string;
                                                                                                                    description: string;
                                                                                                                    expand: string;
                                                                                                                    expandFull: string;
                                                                                                                    holdingText: string;
                                                                                                                    less: string;
                                                                                                                    license: string;
                                                                                                                    logo: string;
                                                                                                                    manifestHeader: string;
                                                                                                                    more: string;
                                                                                                                    noData: string;
                                                                                                                    page: string;
                                                                                                                    rangeHeader: string;
                                                                                                                    title: string;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • attribution: string
                                                                                                                • canvasHeader: string
                                                                                                                • collapse: string
                                                                                                                • collapseFull: string
                                                                                                                • copiedToClipboard: string
                                                                                                                • copyToClipboard: string
                                                                                                                • description: string
                                                                                                                • expand: string
                                                                                                                • expandFull: string
                                                                                                                • holdingText: string
                                                                                                                • less: string
                                                                                                                • license: string
                                                                                                                • logo: string
                                                                                                                • manifestHeader: string
                                                                                                                • more: string
                                                                                                                • noData: string
                                                                                                                • page: string
                                                                                                                • rangeHeader: string
                                                                                                                • title: string

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MoreInfoRightPanelOptions.html b/docs/types/_internal_.MoreInfoRightPanelOptions.html new file mode 100644 index 000000000..71b73911b --- /dev/null +++ b/docs/types/_internal_.MoreInfoRightPanelOptions.html @@ -0,0 +1,11 @@ +MoreInfoRightPanelOptions | universalviewer

                                                                                                                Type alias MoreInfoRightPanelOptions

                                                                                                                MoreInfoRightPanelOptions: DialogueOptions & ExpandPanelOptions & {
                                                                                                                    canvasDisplayOrder: string;
                                                                                                                    canvasExclude: string;
                                                                                                                    copyToClipboardEnabled: boolean;
                                                                                                                    limitToRange: boolean;
                                                                                                                    manifestDisplayOrder: string;
                                                                                                                    manifestExclude: string;
                                                                                                                    rtlLanguageCodes: string;
                                                                                                                    showAllLanguages: boolean;
                                                                                                                    textLimit: number;
                                                                                                                    textLimitType: string;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • canvasDisplayOrder: string

                                                                                                                  Order in which canvases are displayed

                                                                                                                  +
                                                                                                                • canvasExclude: string

                                                                                                                  Canvases to exclude from display

                                                                                                                  +
                                                                                                                • copyToClipboardEnabled: boolean

                                                                                                                  Determines if copying to clipboard is enabled

                                                                                                                  +
                                                                                                                • limitToRange: boolean

                                                                                                                  Determines if download is enabled

                                                                                                                  +
                                                                                                                • manifestDisplayOrder: string

                                                                                                                  Order in which manifests are displayed

                                                                                                                  +
                                                                                                                • manifestExclude: string

                                                                                                                  Manifests to exclude from display

                                                                                                                  +
                                                                                                                • rtlLanguageCodes: string

                                                                                                                  Language codes for right-to-left languages

                                                                                                                  +
                                                                                                                • showAllLanguages: boolean

                                                                                                                  Determines if all languages should be shown

                                                                                                                  +
                                                                                                                • textLimit: number

                                                                                                                  Limit for the text

                                                                                                                  +
                                                                                                                • textLimitType: string

                                                                                                                  Type of the text limit

                                                                                                                  +

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html new file mode 100644 index 000000000..e4e6254e7 --- /dev/null +++ b/docs/types/_internal_.MultiSelectDialogue.html @@ -0,0 +1 @@ +MultiSelectDialogue | universalviewer

                                                                                                                Type alias MultiSelectDialogue

                                                                                                                MultiSelectDialogue: ModuleConfig & {
                                                                                                                    content: MultiSelectDialogueContent;
                                                                                                                    options: MultiSelectDialogueOptions;
                                                                                                                }

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html new file mode 100644 index 000000000..372f80252 --- /dev/null +++ b/docs/types/_internal_.MultiSelectDialogueContent.html @@ -0,0 +1 @@ +MultiSelectDialogueContent | universalviewer

                                                                                                                Type alias MultiSelectDialogueContent

                                                                                                                MultiSelectDialogueContent: DialogueContent & {
                                                                                                                    select: string;
                                                                                                                    selectAll: string;
                                                                                                                    title: string;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • select: string
                                                                                                                • selectAll: string
                                                                                                                • title: string

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MultiSelectDialogueOptions.html b/docs/types/_internal_.MultiSelectDialogueOptions.html new file mode 100644 index 000000000..383e779f0 --- /dev/null +++ b/docs/types/_internal_.MultiSelectDialogueOptions.html @@ -0,0 +1,7 @@ +MultiSelectDialogueOptions | universalviewer

                                                                                                                Type alias MultiSelectDialogueOptions

                                                                                                                MultiSelectDialogueOptions: DialogueOptions & {
                                                                                                                    galleryThumbChunkedResizingEnabled: boolean;
                                                                                                                    galleryThumbChunkedResizingThreshold: number;
                                                                                                                    galleryThumbHeight: number;
                                                                                                                    galleryThumbLoadPadding: number;
                                                                                                                    galleryThumbWidth: number;
                                                                                                                    pageModeEnabled: boolean;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • galleryThumbChunkedResizingEnabled: boolean

                                                                                                                  Determines if chunked resizing is enabled for gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbChunkedResizingThreshold: number

                                                                                                                  Threshold for chunked resizing of gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbHeight: number

                                                                                                                  Height of the gallery thumbnail

                                                                                                                  +
                                                                                                                • galleryThumbLoadPadding: number

                                                                                                                  Padding for loading gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbWidth: number

                                                                                                                  Width of the gallery thumbnail

                                                                                                                  +
                                                                                                                • pageModeEnabled: boolean

                                                                                                                  Determines if page mode is enabled

                                                                                                                  +

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDCenterPanel.html b/docs/types/_internal_.OSDCenterPanel.html new file mode 100644 index 000000000..b7d6e46b2 --- /dev/null +++ b/docs/types/_internal_.OSDCenterPanel.html @@ -0,0 +1 @@ +OSDCenterPanel | universalviewer
                                                                                                                OSDCenterPanel: ModuleConfig & {
                                                                                                                    content: OSDCenterPanelContent;
                                                                                                                    options: OSDCenterPanelOptions;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDCenterPanelContent.html b/docs/types/_internal_.OSDCenterPanelContent.html new file mode 100644 index 000000000..3ace1fcd6 --- /dev/null +++ b/docs/types/_internal_.OSDCenterPanelContent.html @@ -0,0 +1 @@ +OSDCenterPanelContent | universalviewer

                                                                                                                Type alias OSDCenterPanelContent

                                                                                                                OSDCenterPanelContent: CenterPanelContent & {
                                                                                                                    attribution: string;
                                                                                                                    goHome: string;
                                                                                                                    imageUnavailable: string;
                                                                                                                    next: string;
                                                                                                                    previous: string;
                                                                                                                    rotateRight: string;
                                                                                                                    zoomIn: string;
                                                                                                                    zoomOut: string;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • attribution: string
                                                                                                                • goHome: string
                                                                                                                • imageUnavailable: string
                                                                                                                • next: string
                                                                                                                • previous: string
                                                                                                                • rotateRight: string
                                                                                                                • zoomIn: string
                                                                                                                • zoomOut: string

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDCenterPanelOptions.html b/docs/types/_internal_.OSDCenterPanelOptions.html new file mode 100644 index 000000000..205293bc2 --- /dev/null +++ b/docs/types/_internal_.OSDCenterPanelOptions.html @@ -0,0 +1,18 @@ +OSDCenterPanelOptions | universalviewer

                                                                                                                Type alias OSDCenterPanelOptions

                                                                                                                OSDCenterPanelOptions: CenterPanelOptions & {
                                                                                                                    animationTime: number;
                                                                                                                    autoHideControls: boolean;
                                                                                                                    blendTime: number;
                                                                                                                    constrainDuringPan: boolean;
                                                                                                                    controlsFadeAfterInactive: number;
                                                                                                                    controlsFadeDelay: number;
                                                                                                                    controlsFadeLength: number;
                                                                                                                    defaultZoomLevel: number;
                                                                                                                    doubleClickAnnotationEnabled: boolean;
                                                                                                                    immediateRender: boolean;
                                                                                                                    maxZoomPixelRatio: number;
                                                                                                                    navigatorPosition: string;
                                                                                                                    pageGap: number;
                                                                                                                    requiredStatementEnabled: boolean;
                                                                                                                    showHomeControl: boolean;
                                                                                                                    trimAttributionCount: number;
                                                                                                                    visibilityRatio: number;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • animationTime: number

                                                                                                                  Duration of the animation

                                                                                                                  +
                                                                                                                • autoHideControls: boolean

                                                                                                                  Determines if controls are hidden automatically

                                                                                                                  +
                                                                                                                • blendTime: number

                                                                                                                  Time taken to blend images

                                                                                                                  +
                                                                                                                • constrainDuringPan: boolean

                                                                                                                  Determines if panning is constrained

                                                                                                                  +
                                                                                                                • controlsFadeAfterInactive: number

                                                                                                                  Time after which controls fade after inactivity

                                                                                                                  +
                                                                                                                • controlsFadeDelay: number

                                                                                                                  Delay before controls start to fade

                                                                                                                  +
                                                                                                                • controlsFadeLength: number

                                                                                                                  Duration of controls fade

                                                                                                                  +
                                                                                                                • defaultZoomLevel: number

                                                                                                                  Default zoom level

                                                                                                                  +
                                                                                                                • doubleClickAnnotationEnabled: boolean

                                                                                                                  Determines if annotation is enabled

                                                                                                                  +
                                                                                                                • immediateRender: boolean

                                                                                                                  Determines if rendering is immediate

                                                                                                                  +
                                                                                                                • maxZoomPixelRatio: number

                                                                                                                  Maximum pixel ratio for zoom

                                                                                                                  +
                                                                                                                • navigatorPosition: string

                                                                                                                  Position of the navigator

                                                                                                                  +
                                                                                                                • pageGap: number

                                                                                                                  Gap between pages

                                                                                                                  +
                                                                                                                • requiredStatementEnabled: boolean

                                                                                                                  Determines if required statement is enabled

                                                                                                                  +
                                                                                                                • showHomeControl: boolean

                                                                                                                  Determines if home control is shown

                                                                                                                  +
                                                                                                                • trimAttributionCount: number

                                                                                                                  Number of attributions to trim

                                                                                                                  +
                                                                                                                • visibilityRatio: number

                                                                                                                  Ratio of visibility

                                                                                                                  +

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html new file mode 100644 index 000000000..bc6e937e4 --- /dev/null +++ b/docs/types/_internal_.OSDDownloadDialogue.html @@ -0,0 +1 @@ +OSDDownloadDialogue | universalviewer

                                                                                                                Type alias OSDDownloadDialogue

                                                                                                                OSDDownloadDialogue: ModuleConfig & {
                                                                                                                    content: OSDDownloadDialogueContent;
                                                                                                                    options: OSDDownloadDialogueOptions;
                                                                                                                }

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html new file mode 100644 index 000000000..35651ef91 --- /dev/null +++ b/docs/types/_internal_.OSDDownloadDialogueContent.html @@ -0,0 +1 @@ +OSDDownloadDialogueContent | universalviewer

                                                                                                                Type alias OSDDownloadDialogueContent

                                                                                                                OSDDownloadDialogueContent: DownloadDialogueContent & {
                                                                                                                    allPages: string;
                                                                                                                    currentViewAsJpg: string;
                                                                                                                    currentViewAsJpgExplanation: string;
                                                                                                                    download: string;
                                                                                                                    downloadSelection: string;
                                                                                                                    downloadSelectionExplanation: string;
                                                                                                                    editSettings: string;
                                                                                                                    entireDocument: string;
                                                                                                                    entireFileAsOriginal: string;
                                                                                                                    entireFileAsOriginalWithFormat: string;
                                                                                                                    individualPages: string;
                                                                                                                    noneAvailable: string;
                                                                                                                    pagingNote: string;
                                                                                                                    preview: string;
                                                                                                                    selection: string;
                                                                                                                    termsOfUse: string;
                                                                                                                    title: string;
                                                                                                                    wholeImageHighRes: string;
                                                                                                                    wholeImageHighResExplanation: string;
                                                                                                                    wholeImageLowResAsJpg: string;
                                                                                                                    wholeImageLowResAsJpgExplanation: string;
                                                                                                                    wholeImagesHighRes: string;
                                                                                                                    wholeImagesHighResExplanation: string;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • allPages: string
                                                                                                                • currentViewAsJpg: string
                                                                                                                • currentViewAsJpgExplanation: string
                                                                                                                • download: string
                                                                                                                • downloadSelection: string
                                                                                                                • downloadSelectionExplanation: string
                                                                                                                • editSettings: string
                                                                                                                • entireDocument: string
                                                                                                                • entireFileAsOriginal: string
                                                                                                                • entireFileAsOriginalWithFormat: string
                                                                                                                • individualPages: string
                                                                                                                • noneAvailable: string
                                                                                                                • pagingNote: string
                                                                                                                • preview: string
                                                                                                                • selection: string
                                                                                                                • termsOfUse: string
                                                                                                                • title: string
                                                                                                                • wholeImageHighRes: string
                                                                                                                • wholeImageHighResExplanation: string
                                                                                                                • wholeImageLowResAsJpg: string
                                                                                                                • wholeImageLowResAsJpgExplanation: string
                                                                                                                • wholeImagesHighRes: string
                                                                                                                • wholeImagesHighResExplanation: string

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDDownloadDialogueOptions.html b/docs/types/_internal_.OSDDownloadDialogueOptions.html new file mode 100644 index 000000000..0e3e6c0c0 --- /dev/null +++ b/docs/types/_internal_.OSDDownloadDialogueOptions.html @@ -0,0 +1,9 @@ +OSDDownloadDialogueOptions | universalviewer

                                                                                                                Type alias OSDDownloadDialogueOptions

                                                                                                                OSDDownloadDialogueOptions: DownloadDialogueOptions & {
                                                                                                                    confinedImageSize: number;
                                                                                                                    currentViewDisabledPercentage: number;
                                                                                                                    downloadCurrentViewEnabled: boolean;
                                                                                                                    downloadWholeImageHighResEnabled: boolean;
                                                                                                                    downloadWholeImageLowResEnabled: boolean;
                                                                                                                    maxImageWidth: number;
                                                                                                                    optionsExplanatoryTextEnabled: boolean;
                                                                                                                    selectionEnabled: boolean;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                • confinedImageSize: number

                                                                                                                  Size of the confined image

                                                                                                                  +
                                                                                                                • currentViewDisabledPercentage: number

                                                                                                                  Percentage of the current view that is disabled

                                                                                                                  +
                                                                                                                • downloadCurrentViewEnabled: boolean

                                                                                                                  Determines if download of current view is enabled

                                                                                                                  +
                                                                                                                • downloadWholeImageHighResEnabled: boolean

                                                                                                                  Determines if download of whole image in high resolution is enabled

                                                                                                                  +
                                                                                                                • downloadWholeImageLowResEnabled: boolean

                                                                                                                  Determines if download of whole image in low resolution is enabled

                                                                                                                  +
                                                                                                                • maxImageWidth: number

                                                                                                                  Maximum width of the image

                                                                                                                  +
                                                                                                                • optionsExplanatoryTextEnabled: boolean

                                                                                                                  Determines if explanatory text for options is enabled

                                                                                                                  +
                                                                                                                • selectionEnabled: boolean

                                                                                                                  Determines if selection is enabled

                                                                                                                  +

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html new file mode 100644 index 000000000..a0b8b8517 --- /dev/null +++ b/docs/types/_internal_.OSDSettingsDialogue.html @@ -0,0 +1 @@ +OSDSettingsDialogue | universalviewer

                                                                                                                Type alias OSDSettingsDialogue

                                                                                                                OSDSettingsDialogue: ModuleConfig & {
                                                                                                                    content: OSDSettingsDialogueContent;
                                                                                                                    options: OSDSettingsDialogueOptions;
                                                                                                                }

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html new file mode 100644 index 000000000..05ec1ad3d --- /dev/null +++ b/docs/types/_internal_.OSDSettingsDialogueContent.html @@ -0,0 +1 @@ +OSDSettingsDialogueContent | universalviewer

                                                                                                                Type alias OSDSettingsDialogueContent

                                                                                                                OSDSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                                Type declaration

                                                                                                                  Generated using TypeDoc

                                                                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html new file mode 100644 index 000000000..94b9c94e1 --- /dev/null +++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html @@ -0,0 +1 @@ +OSDSettingsDialogueOptions | universalviewer

                                                                                                                  Type alias OSDSettingsDialogueOptions

                                                                                                                  OSDSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                                  Type declaration

                                                                                                                    Generated using TypeDoc

                                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html new file mode 100644 index 000000000..f41c045cf --- /dev/null +++ b/docs/types/_internal_.OSDShareDialogue.html @@ -0,0 +1 @@ +OSDShareDialogue | universalviewer
                                                                                                                    OSDShareDialogue: ModuleConfig & {
                                                                                                                        content: OSDShareDialogueContent;
                                                                                                                        options: OSDShareDialogueOptions;
                                                                                                                    }

                                                                                                                    Type declaration

                                                                                                                    Generated using TypeDoc

                                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html new file mode 100644 index 000000000..8202148fd --- /dev/null +++ b/docs/types/_internal_.OSDShareDialogueContent.html @@ -0,0 +1 @@ +OSDShareDialogueContent | universalviewer

                                                                                                                    Type alias OSDShareDialogueContent

                                                                                                                    OSDShareDialogueContent: ShareDialogueContent & {}

                                                                                                                    Type declaration

                                                                                                                      Generated using TypeDoc

                                                                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html new file mode 100644 index 000000000..f6255efc9 --- /dev/null +++ b/docs/types/_internal_.OSDShareDialogueOptions.html @@ -0,0 +1 @@ +OSDShareDialogueOptions | universalviewer

                                                                                                                      Type alias OSDShareDialogueOptions

                                                                                                                      OSDShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                                      Type declaration

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.Options.html b/docs/types/_internal_.Options.html new file mode 100644 index 000000000..60fb7f731 --- /dev/null +++ b/docs/types/_internal_.Options.html @@ -0,0 +1,31 @@ +Options | universalviewer
                                                                                                                        Options: {
                                                                                                                            allowStealFocus?: boolean;
                                                                                                                            authAPIVersion: number;
                                                                                                                            bookmarkThumbHeight?: number;
                                                                                                                            bookmarkThumbWidth?: number;
                                                                                                                            clickToZoomEnabled?: boolean;
                                                                                                                            doubleClickAnnotationEnabled?: boolean;
                                                                                                                            dropEnabled?: boolean;
                                                                                                                            footerPanelEnabled?: boolean;
                                                                                                                            headerPanelEnabled?: boolean;
                                                                                                                            leftPanelEnabled?: boolean;
                                                                                                                            limitLocales?: boolean;
                                                                                                                            metrics: Metric[];
                                                                                                                            multiSelectionMimeType: string;
                                                                                                                            navigatorEnabled?: boolean;
                                                                                                                            openTemplate: string;
                                                                                                                            overrideFullScreen: boolean;
                                                                                                                            pagingEnabled?: boolean;
                                                                                                                            pagingOptionEnabled?: boolean;
                                                                                                                            pessimisticAccessControl?: boolean;
                                                                                                                            preserveViewport?: boolean;
                                                                                                                            rightPanelEnabled?: boolean;
                                                                                                                            saveUserSettings?: boolean;
                                                                                                                            searchWithinEnabled?: boolean;
                                                                                                                            seeAlsoEnabled?: boolean;
                                                                                                                            termsOfUseEnabled: boolean;
                                                                                                                            theme: string;
                                                                                                                            tokenStorage: string | StorageType;
                                                                                                                            useArrowKeysToNavigate?: boolean;
                                                                                                                            zoomToBoundsEnabled?: boolean;
                                                                                                                            zoomToSearchResultEnabled?: boolean;
                                                                                                                        }

                                                                                                                        Type declaration

                                                                                                                        • Optional allowStealFocus?: boolean

                                                                                                                          Determines if the focus can be stolen

                                                                                                                          +
                                                                                                                        • authAPIVersion: number

                                                                                                                          Version of the authentication API

                                                                                                                          +
                                                                                                                        • Optional bookmarkThumbHeight?: number

                                                                                                                          Height of the bookmark thumbnail

                                                                                                                          +
                                                                                                                        • Optional bookmarkThumbWidth?: number

                                                                                                                          Width of the bookmark thumbnail

                                                                                                                          +
                                                                                                                        • Optional clickToZoomEnabled?: boolean

                                                                                                                          Determines if click to zoom is enabled

                                                                                                                          +
                                                                                                                        • Optional doubleClickAnnotationEnabled?: boolean

                                                                                                                          Determines if double click annotation is enabled

                                                                                                                          +
                                                                                                                        • Optional dropEnabled?: boolean

                                                                                                                          Determines if drop is enabled

                                                                                                                          +
                                                                                                                        • Optional footerPanelEnabled?: boolean

                                                                                                                          Determines if the footer panel is enabled

                                                                                                                          +
                                                                                                                        • Optional headerPanelEnabled?: boolean

                                                                                                                          Determines if the header panel is enabled

                                                                                                                          +
                                                                                                                        • Optional leftPanelEnabled?: boolean

                                                                                                                          Determines if the left panel is enabled

                                                                                                                          +
                                                                                                                        • Optional limitLocales?: boolean

                                                                                                                          Determines if locales are limited

                                                                                                                          +
                                                                                                                        • metrics: Metric[]

                                                                                                                          Metrics array

                                                                                                                          +
                                                                                                                        • multiSelectionMimeType: string

                                                                                                                          MIME type for multi selection

                                                                                                                          +
                                                                                                                        • Optional navigatorEnabled?: boolean

                                                                                                                          Determines if the navigator is enabled

                                                                                                                          +
                                                                                                                        • openTemplate: string

                                                                                                                          Template for opening

                                                                                                                          +
                                                                                                                        • overrideFullScreen: boolean

                                                                                                                          Determines if full screen is overridden

                                                                                                                          +
                                                                                                                        • Optional pagingEnabled?: boolean

                                                                                                                          Determines if paging is enabled

                                                                                                                          +
                                                                                                                        • Optional pagingOptionEnabled?: boolean

                                                                                                                          Determines if paging option is enabled

                                                                                                                          +
                                                                                                                        • Optional pessimisticAccessControl?: boolean

                                                                                                                          Determines if access control is pessimistic

                                                                                                                          +
                                                                                                                        • Optional preserveViewport?: boolean

                                                                                                                          Determines if viewport is preserved

                                                                                                                          +
                                                                                                                        • Optional rightPanelEnabled?: boolean

                                                                                                                          Determines if the right panel is enabled

                                                                                                                          +
                                                                                                                        • Optional saveUserSettings?: boolean

                                                                                                                          Determines if user settings are saved

                                                                                                                          +
                                                                                                                        • Optional searchWithinEnabled?: boolean

                                                                                                                          Determines if search within is enabled

                                                                                                                          +
                                                                                                                        • Optional seeAlsoEnabled?: boolean

                                                                                                                          Determines if seealso content is enabled

                                                                                                                          +
                                                                                                                        • termsOfUseEnabled: boolean

                                                                                                                          Determines if terms of use are enabled

                                                                                                                          +
                                                                                                                        • theme: string

                                                                                                                          Theme string

                                                                                                                          +
                                                                                                                        • tokenStorage: string | StorageType

                                                                                                                          Storage for tokens

                                                                                                                          +
                                                                                                                        • Optional useArrowKeysToNavigate?: boolean

                                                                                                                          Determines if arrow keys can be used to navigate

                                                                                                                          +
                                                                                                                        • Optional zoomToBoundsEnabled?: boolean

                                                                                                                          Determines if zoom to bounds is enabled

                                                                                                                          +
                                                                                                                        • Optional zoomToSearchResultEnabled?: boolean

                                                                                                                          Determines if zoom to search result is enabled

                                                                                                                          +

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanel.html b/docs/types/_internal_.PDFCenterPanel.html new file mode 100644 index 000000000..bf07acf06 --- /dev/null +++ b/docs/types/_internal_.PDFCenterPanel.html @@ -0,0 +1 @@ +PDFCenterPanel | universalviewer
                                                                                                                        PDFCenterPanel: {
                                                                                                                            content: PDFCenterPanelContent;
                                                                                                                            options: PDFCenterPanelOptions;
                                                                                                                        }

                                                                                                                        Type declaration

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html new file mode 100644 index 000000000..246e797a5 --- /dev/null +++ b/docs/types/_internal_.PDFCenterPanelContent.html @@ -0,0 +1 @@ +PDFCenterPanelContent | universalviewer

                                                                                                                        Type alias PDFCenterPanelContent

                                                                                                                        PDFCenterPanelContent: CenterPanelContent & {}

                                                                                                                        Type declaration

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanelOptions.html b/docs/types/_internal_.PDFCenterPanelOptions.html new file mode 100644 index 000000000..c0a3c7013 --- /dev/null +++ b/docs/types/_internal_.PDFCenterPanelOptions.html @@ -0,0 +1,2 @@ +PDFCenterPanelOptions | universalviewer

                                                                                                                          Type alias PDFCenterPanelOptions

                                                                                                                          PDFCenterPanelOptions: CenterPanelOptions & {
                                                                                                                              usePdfJs: boolean;
                                                                                                                          }

                                                                                                                          Type declaration

                                                                                                                          • usePdfJs: boolean

                                                                                                                            Determines if PDF.js should be used for PDF rendering

                                                                                                                            +

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.PDFDownloadDialogue.html b/docs/types/_internal_.PDFDownloadDialogue.html new file mode 100644 index 000000000..cb8eb1387 --- /dev/null +++ b/docs/types/_internal_.PDFDownloadDialogue.html @@ -0,0 +1 @@ +PDFDownloadDialogue | universalviewer

                                                                                                                          Type alias PDFDownloadDialogue

                                                                                                                          PDFDownloadDialogue: ModuleConfig & {
                                                                                                                              content: PDFDownloadDialogueContent;
                                                                                                                              options: PDFDownloadDialogueOptions;
                                                                                                                          }

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html new file mode 100644 index 000000000..61269cfa9 --- /dev/null +++ b/docs/types/_internal_.PDFDownloadDialogueContent.html @@ -0,0 +1 @@ +PDFDownloadDialogueContent | universalviewer

                                                                                                                          Type alias PDFDownloadDialogueContent

                                                                                                                          PDFDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                                                          Type declaration

                                                                                                                            Generated using TypeDoc

                                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html new file mode 100644 index 000000000..6594dac86 --- /dev/null +++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html @@ -0,0 +1 @@ +PDFDownloadDialogueOptions | universalviewer

                                                                                                                            Type alias PDFDownloadDialogueOptions

                                                                                                                            PDFDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                                                            Type declaration

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html new file mode 100644 index 000000000..26b0a14a6 --- /dev/null +++ b/docs/types/_internal_.PDFHeaderPanel.html @@ -0,0 +1 @@ +PDFHeaderPanel | universalviewer
                                                                                                                              PDFHeaderPanel: {
                                                                                                                                  content: PDFHeaderPanelContent;
                                                                                                                                  options: PDFHeaderPanelOptions;
                                                                                                                              }

                                                                                                                              Type declaration

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html new file mode 100644 index 000000000..671a5ed69 --- /dev/null +++ b/docs/types/_internal_.PDFHeaderPanelContent.html @@ -0,0 +1 @@ +PDFHeaderPanelContent | universalviewer

                                                                                                                              Type alias PDFHeaderPanelContent

                                                                                                                              PDFHeaderPanelContent: HeaderPanelContent & {
                                                                                                                                  emptyValue: string;
                                                                                                                                  first: string;
                                                                                                                                  go: string;
                                                                                                                                  last: string;
                                                                                                                                  next: string;
                                                                                                                                  of: string;
                                                                                                                                  pageSearchLabel: string;
                                                                                                                                  previous: string;
                                                                                                                              }

                                                                                                                              Type declaration

                                                                                                                              • emptyValue: string
                                                                                                                              • first: string
                                                                                                                              • go: string
                                                                                                                              • last: string
                                                                                                                              • next: string
                                                                                                                              • of: string
                                                                                                                              • pageSearchLabel: string
                                                                                                                              • previous: string

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file diff --git a/docs/types/_internal_.PDFHeaderPanelOptions.html b/docs/types/_internal_.PDFHeaderPanelOptions.html new file mode 100644 index 000000000..a4f746b3f --- /dev/null +++ b/docs/types/_internal_.PDFHeaderPanelOptions.html @@ -0,0 +1 @@ +PDFHeaderPanelOptions | universalviewer

                                                                                                                              Type alias PDFHeaderPanelOptions

                                                                                                                              PDFHeaderPanelOptions: HeaderPanelOptions & {}

                                                                                                                              Type declaration

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html new file mode 100644 index 000000000..904399a2b --- /dev/null +++ b/docs/types/_internal_.PDFSettingsDialogue.html @@ -0,0 +1 @@ +PDFSettingsDialogue | universalviewer

                                                                                                                                Type alias PDFSettingsDialogue

                                                                                                                                PDFSettingsDialogue: {
                                                                                                                                    content: PDFSettingsDialogueContent;
                                                                                                                                    options: PDFSettingsDialogueOptions;
                                                                                                                                }

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html new file mode 100644 index 000000000..cc02c6116 --- /dev/null +++ b/docs/types/_internal_.PDFSettingsDialogueContent.html @@ -0,0 +1 @@ +PDFSettingsDialogueContent | universalviewer

                                                                                                                                Type alias PDFSettingsDialogueContent

                                                                                                                                PDFSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                                                Type declaration

                                                                                                                                  Generated using TypeDoc

                                                                                                                                  \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html new file mode 100644 index 000000000..c3aa560db --- /dev/null +++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html @@ -0,0 +1 @@ +PDFSettingsDialogueOptions | universalviewer

                                                                                                                                  Type alias PDFSettingsDialogueOptions

                                                                                                                                  PDFSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                                                  Type declaration

                                                                                                                                    Generated using TypeDoc

                                                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html new file mode 100644 index 000000000..d6a016f3f --- /dev/null +++ b/docs/types/_internal_.PDFShareDialogue.html @@ -0,0 +1 @@ +PDFShareDialogue | universalviewer
                                                                                                                                    PDFShareDialogue: ModuleConfig & {
                                                                                                                                        content: PDFShareDialogueContent;
                                                                                                                                        options: PDFShareDialogueOptions;
                                                                                                                                    }

                                                                                                                                    Type declaration

                                                                                                                                    Generated using TypeDoc

                                                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html new file mode 100644 index 000000000..06263907c --- /dev/null +++ b/docs/types/_internal_.PDFShareDialogueContent.html @@ -0,0 +1 @@ +PDFShareDialogueContent | universalviewer

                                                                                                                                    Type alias PDFShareDialogueContent

                                                                                                                                    PDFShareDialogueContent: ShareDialogueContent & {}

                                                                                                                                    Type declaration

                                                                                                                                      Generated using TypeDoc

                                                                                                                                      \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html new file mode 100644 index 000000000..6e63b4fc3 --- /dev/null +++ b/docs/types/_internal_.PDFShareDialogueOptions.html @@ -0,0 +1 @@ +PDFShareDialogueOptions | universalviewer

                                                                                                                                      Type alias PDFShareDialogueOptions

                                                                                                                                      PDFShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                                                      Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html new file mode 100644 index 000000000..c0d16faa5 --- /dev/null +++ b/docs/types/_internal_.PagingHeaderPanel.html @@ -0,0 +1 @@ +PagingHeaderPanel | universalviewer

                                                                                                                                        Type alias PagingHeaderPanel

                                                                                                                                        PagingHeaderPanel: ModuleConfig & {
                                                                                                                                            content: PagingHeaderPanelContent;
                                                                                                                                            options: PagingHeaderPanelOptions;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html new file mode 100644 index 000000000..537266ae5 --- /dev/null +++ b/docs/types/_internal_.PagingHeaderPanelContent.html @@ -0,0 +1 @@ +PagingHeaderPanelContent | universalviewer

                                                                                                                                        Type alias PagingHeaderPanelContent

                                                                                                                                        PagingHeaderPanelContent: HeaderPanelContent & {
                                                                                                                                            emptyValue: string;
                                                                                                                                            first: string;
                                                                                                                                            firstImage: string;
                                                                                                                                            firstPage: string;
                                                                                                                                            folio: string;
                                                                                                                                            gallery: string;
                                                                                                                                            go: string;
                                                                                                                                            help: string;
                                                                                                                                            image: string;
                                                                                                                                            last: string;
                                                                                                                                            lastImage: string;
                                                                                                                                            lastPage: string;
                                                                                                                                            next: string;
                                                                                                                                            nextImage: string;
                                                                                                                                            nextPage: string;
                                                                                                                                            of: string;
                                                                                                                                            oneUp: string;
                                                                                                                                            page: string;
                                                                                                                                            pageSearchLabel: string;
                                                                                                                                            previous: string;
                                                                                                                                            previousImage: string;
                                                                                                                                            previousPage: string;
                                                                                                                                            twoUp: string;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        • emptyValue: string
                                                                                                                                        • first: string
                                                                                                                                        • firstImage: string
                                                                                                                                        • firstPage: string
                                                                                                                                        • folio: string
                                                                                                                                        • gallery: string
                                                                                                                                        • go: string
                                                                                                                                        • help: string
                                                                                                                                        • image: string
                                                                                                                                        • last: string
                                                                                                                                        • lastImage: string
                                                                                                                                        • lastPage: string
                                                                                                                                        • next: string
                                                                                                                                        • nextImage: string
                                                                                                                                        • nextPage: string
                                                                                                                                        • of: string
                                                                                                                                        • oneUp: string
                                                                                                                                        • page: string
                                                                                                                                        • pageSearchLabel: string
                                                                                                                                        • previous: string
                                                                                                                                        • previousImage: string
                                                                                                                                        • previousPage: string
                                                                                                                                        • twoUp: string

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.PagingHeaderPanelOptions.html b/docs/types/_internal_.PagingHeaderPanelOptions.html new file mode 100644 index 000000000..b40596041 --- /dev/null +++ b/docs/types/_internal_.PagingHeaderPanelOptions.html @@ -0,0 +1,9 @@ +PagingHeaderPanelOptions | universalviewer

                                                                                                                                        Type alias PagingHeaderPanelOptions

                                                                                                                                        PagingHeaderPanelOptions: HeaderPanelOptions & {
                                                                                                                                            autoCompleteBoxEnabled: boolean;
                                                                                                                                            autocompleteAllowWords: boolean;
                                                                                                                                            galleryButtonEnabled: boolean;
                                                                                                                                            helpEnabled: boolean;
                                                                                                                                            imageSelectionBoxEnabled: boolean;
                                                                                                                                            modeOptionsEnabled: boolean;
                                                                                                                                            pageModeEnabled: boolean;
                                                                                                                                            pagingToggleEnabled: boolean;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        • autoCompleteBoxEnabled: boolean

                                                                                                                                          Determines if autocomplete box is enabled

                                                                                                                                          +
                                                                                                                                        • autocompleteAllowWords: boolean

                                                                                                                                          Determines if autocomplete for words is allowed

                                                                                                                                          +
                                                                                                                                        • galleryButtonEnabled: boolean

                                                                                                                                          Determines if gallery button is enabled

                                                                                                                                          +
                                                                                                                                        • helpEnabled: boolean

                                                                                                                                          Determines if help is enabled

                                                                                                                                          +
                                                                                                                                        • imageSelectionBoxEnabled: boolean

                                                                                                                                          Determines if image selection box is enabled

                                                                                                                                          +
                                                                                                                                        • modeOptionsEnabled: boolean

                                                                                                                                          Determines if mode options is enabled

                                                                                                                                          +
                                                                                                                                        • pageModeEnabled: boolean

                                                                                                                                          Determines if page mode is enabled

                                                                                                                                          +
                                                                                                                                        • pagingToggleEnabled: boolean

                                                                                                                                          Determines if paging toggle is enabled

                                                                                                                                          +

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html new file mode 100644 index 000000000..51fabe505 --- /dev/null +++ b/docs/types/_internal_.RestrictedDialogue.html @@ -0,0 +1 @@ +RestrictedDialogue | universalviewer

                                                                                                                                        Type alias RestrictedDialogue

                                                                                                                                        RestrictedDialogue: ModuleConfig & {
                                                                                                                                            content: RestrictedDialogueContent;
                                                                                                                                            options: RestrictedDialogueOptions;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.RestrictedDialogueContent.html b/docs/types/_internal_.RestrictedDialogueContent.html new file mode 100644 index 000000000..42e8a6e20 --- /dev/null +++ b/docs/types/_internal_.RestrictedDialogueContent.html @@ -0,0 +1 @@ +RestrictedDialogueContent | universalviewer

                                                                                                                                        Type alias RestrictedDialogueContent

                                                                                                                                        RestrictedDialogueContent: DialogueContent & {
                                                                                                                                            cancel: string;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        • cancel: string

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.RestrictedDialogueOptions.html b/docs/types/_internal_.RestrictedDialogueOptions.html new file mode 100644 index 000000000..ffae123e2 --- /dev/null +++ b/docs/types/_internal_.RestrictedDialogueOptions.html @@ -0,0 +1 @@ +RestrictedDialogueOptions | universalviewer

                                                                                                                                        Type alias RestrictedDialogueOptions

                                                                                                                                        RestrictedDialogueOptions: DialogueOptions & {}

                                                                                                                                        Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SearchFooterPanel.html b/docs/types/_internal_.SearchFooterPanel.html new file mode 100644 index 000000000..af28ca65b --- /dev/null +++ b/docs/types/_internal_.SearchFooterPanel.html @@ -0,0 +1 @@ +SearchFooterPanel | universalviewer

                                                                                                                                          Type alias SearchFooterPanel

                                                                                                                                          SearchFooterPanel: ModuleConfig & {
                                                                                                                                              content: SearchFooterPanelContent;
                                                                                                                                              options: SearchFooterPanelOptions;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html new file mode 100644 index 000000000..5a9be5afd --- /dev/null +++ b/docs/types/_internal_.SearchFooterPanelContent.html @@ -0,0 +1 @@ +SearchFooterPanelContent | universalviewer

                                                                                                                                          Type alias SearchFooterPanelContent

                                                                                                                                          SearchFooterPanelContent: FooterPanelContent & {
                                                                                                                                              clearSearch: string;
                                                                                                                                              defaultLabel: string;
                                                                                                                                              displaying: string;
                                                                                                                                              enterKeyword: string;
                                                                                                                                              image: string;
                                                                                                                                              imageCaps: string;
                                                                                                                                              instanceFound: string;
                                                                                                                                              instancesFound: string;
                                                                                                                                              nextResult: string;
                                                                                                                                              page: string;
                                                                                                                                              pageCaps: string;
                                                                                                                                              previousResult: string;
                                                                                                                                              print: string;
                                                                                                                                              resultFoundFor: string;
                                                                                                                                              resultsFoundFor: string;
                                                                                                                                              searchWithin: string;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          • clearSearch: string
                                                                                                                                          • defaultLabel: string
                                                                                                                                          • displaying: string
                                                                                                                                          • enterKeyword: string
                                                                                                                                          • image: string
                                                                                                                                          • imageCaps: string
                                                                                                                                          • instanceFound: string
                                                                                                                                          • instancesFound: string
                                                                                                                                          • nextResult: string
                                                                                                                                          • page: string
                                                                                                                                          • pageCaps: string
                                                                                                                                          • previousResult: string
                                                                                                                                          • print: string
                                                                                                                                          • resultFoundFor: string
                                                                                                                                          • resultsFoundFor: string
                                                                                                                                          • searchWithin: string

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SearchFooterPanelOptions.html b/docs/types/_internal_.SearchFooterPanelOptions.html new file mode 100644 index 000000000..1442d1589 --- /dev/null +++ b/docs/types/_internal_.SearchFooterPanelOptions.html @@ -0,0 +1,7 @@ +SearchFooterPanelOptions | universalviewer

                                                                                                                                          Type alias SearchFooterPanelOptions

                                                                                                                                          SearchFooterPanelOptions: FooterPanelOptions & {
                                                                                                                                              autocompleteAllowWords: boolean;
                                                                                                                                              elideDetailsTermsCount: number;
                                                                                                                                              elideResultsTermsCount: number;
                                                                                                                                              forceImageMode: boolean;
                                                                                                                                              pageModeEnabled: boolean;
                                                                                                                                              positionMarkerEnabled: boolean;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          • autocompleteAllowWords: boolean

                                                                                                                                            Determines if autocomplete for words is allowed

                                                                                                                                            +
                                                                                                                                          • elideDetailsTermsCount: number

                                                                                                                                            Number of terms to elide in details

                                                                                                                                            +
                                                                                                                                          • elideResultsTermsCount: number

                                                                                                                                            Number of terms to elide in results

                                                                                                                                            +
                                                                                                                                          • forceImageMode: boolean

                                                                                                                                            Determines if image mode is forced

                                                                                                                                            +
                                                                                                                                          • pageModeEnabled: boolean

                                                                                                                                            Determines if page mode is enabled

                                                                                                                                            +
                                                                                                                                          • positionMarkerEnabled: boolean

                                                                                                                                            Determines if position marker is enabled

                                                                                                                                            +

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SettingsDialogue.html b/docs/types/_internal_.SettingsDialogue.html new file mode 100644 index 000000000..a092643d6 --- /dev/null +++ b/docs/types/_internal_.SettingsDialogue.html @@ -0,0 +1 @@ +SettingsDialogue | universalviewer
                                                                                                                                          SettingsDialogue: ModuleConfig & {
                                                                                                                                              content: SettingsDialogueContent;
                                                                                                                                              options: SettingsDialogueOptions;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SettingsDialogueContent.html b/docs/types/_internal_.SettingsDialogueContent.html new file mode 100644 index 000000000..9b5685634 --- /dev/null +++ b/docs/types/_internal_.SettingsDialogueContent.html @@ -0,0 +1 @@ +SettingsDialogueContent | universalviewer

                                                                                                                                          Type alias SettingsDialogueContent

                                                                                                                                          SettingsDialogueContent: DialogueContent & {
                                                                                                                                              clickToZoomEnabled: string;
                                                                                                                                              locale: string;
                                                                                                                                              navigatorEnabled: string;
                                                                                                                                              pagingEnabled: string;
                                                                                                                                              preserveViewport: string;
                                                                                                                                              reducedMotion: string;
                                                                                                                                              title: string;
                                                                                                                                              website: string;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          • clickToZoomEnabled: string
                                                                                                                                          • locale: string
                                                                                                                                          • navigatorEnabled: string
                                                                                                                                          • pagingEnabled: string
                                                                                                                                          • preserveViewport: string
                                                                                                                                          • reducedMotion: string
                                                                                                                                          • title: string
                                                                                                                                          • website: string

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file diff --git a/docs/types/_internal_.SettingsDialogueOptions.html b/docs/types/_internal_.SettingsDialogueOptions.html new file mode 100644 index 000000000..a5ec66f73 --- /dev/null +++ b/docs/types/_internal_.SettingsDialogueOptions.html @@ -0,0 +1 @@ +SettingsDialogueOptions | universalviewer

                                                                                                                                          Type alias SettingsDialogueOptions

                                                                                                                                          SettingsDialogueOptions: DialogueOptions & {}

                                                                                                                                          Type declaration

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ShareDialogue.html b/docs/types/_internal_.ShareDialogue.html new file mode 100644 index 000000000..50a7d89cf --- /dev/null +++ b/docs/types/_internal_.ShareDialogue.html @@ -0,0 +1 @@ +ShareDialogue | universalviewer
                                                                                                                                            ShareDialogue: ModuleConfig & {
                                                                                                                                                content: ShareDialogueContent;
                                                                                                                                                options: ShareDialogueOptions;
                                                                                                                                            }

                                                                                                                                            Type declaration

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ShareDialogueContent.html b/docs/types/_internal_.ShareDialogueContent.html new file mode 100644 index 000000000..0c9b73c0c --- /dev/null +++ b/docs/types/_internal_.ShareDialogueContent.html @@ -0,0 +1 @@ +ShareDialogueContent | universalviewer

                                                                                                                                            Type alias ShareDialogueContent

                                                                                                                                            ShareDialogueContent: DialogueContent & {
                                                                                                                                                customSize: string;
                                                                                                                                                embed: string;
                                                                                                                                                embedInstructions: string;
                                                                                                                                                height: string;
                                                                                                                                                iiif: string;
                                                                                                                                                share: string;
                                                                                                                                                shareInstructions: string;
                                                                                                                                                shareUrl: string;
                                                                                                                                                size: string;
                                                                                                                                                width: string;
                                                                                                                                            }

                                                                                                                                            Type declaration

                                                                                                                                            • customSize: string
                                                                                                                                            • embed: string
                                                                                                                                            • embedInstructions: string
                                                                                                                                            • height: string
                                                                                                                                            • iiif: string
                                                                                                                                            • share: string
                                                                                                                                            • shareInstructions: string
                                                                                                                                            • shareUrl: string
                                                                                                                                            • size: string
                                                                                                                                            • width: string

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ShareDialogueOptions.html b/docs/types/_internal_.ShareDialogueOptions.html new file mode 100644 index 000000000..8f66c8ac3 --- /dev/null +++ b/docs/types/_internal_.ShareDialogueOptions.html @@ -0,0 +1,7 @@ +ShareDialogueOptions | universalviewer

                                                                                                                                            Type alias ShareDialogueOptions

                                                                                                                                            ShareDialogueOptions: DialogueOptions & {
                                                                                                                                                embedEnabled: boolean;
                                                                                                                                                embedTemplate: string;
                                                                                                                                                instructionsEnabled: boolean;
                                                                                                                                                shareEnabled: boolean;
                                                                                                                                                shareFrameEnabled: boolean;
                                                                                                                                                shareManifestsEnabled: boolean;
                                                                                                                                            }

                                                                                                                                            Type declaration

                                                                                                                                            • embedEnabled: boolean

                                                                                                                                              Determines if embed is enabled

                                                                                                                                              +
                                                                                                                                            • embedTemplate: string

                                                                                                                                              Template for embedding

                                                                                                                                              +
                                                                                                                                            • instructionsEnabled: boolean

                                                                                                                                              Determines if instructions are enabled

                                                                                                                                              +
                                                                                                                                            • shareEnabled: boolean

                                                                                                                                              Determines if sharing is enabled

                                                                                                                                              +
                                                                                                                                            • shareFrameEnabled: boolean

                                                                                                                                              Determines if sharing frame is enabled

                                                                                                                                              +
                                                                                                                                            • shareManifestsEnabled: boolean

                                                                                                                                              Determines if sharing manifests is enabled

                                                                                                                                              +

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ThumbsCacheInvalidation.html b/docs/types/_internal_.ThumbsCacheInvalidation.html new file mode 100644 index 000000000..fdfed25fa --- /dev/null +++ b/docs/types/_internal_.ThumbsCacheInvalidation.html @@ -0,0 +1,3 @@ +ThumbsCacheInvalidation | universalviewer

                                                                                                                                            Type alias ThumbsCacheInvalidation

                                                                                                                                            ThumbsCacheInvalidation: {
                                                                                                                                                enabled: boolean;
                                                                                                                                                paramType: string;
                                                                                                                                            }

                                                                                                                                            Type declaration

                                                                                                                                            • enabled: boolean

                                                                                                                                              Determines if cache invalidation is enabled

                                                                                                                                              +
                                                                                                                                            • paramType: string

                                                                                                                                              Type of the parameter for cache invalidation

                                                                                                                                              +

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file diff --git a/typedoc.json b/typedoc.json index f5f82d953..dca1eca4c 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,4 +1,4 @@ { "entryPoints": ["src/content-handlers/iiif/Docs.ts"], - "out": "dist/docs" + "out": "docs" } diff --git a/webpack.dev-server.js b/webpack.dev-server.js index 9b24815f2..eac601d07 100644 --- a/webpack.dev-server.js +++ b/webpack.dev-server.js @@ -84,10 +84,7 @@ const config = { compress: true, port: 8080, onListening(devServer) { - devServer.app.use( - "/docs", - express.static(path.join(__dirname, "dist/docs")) - ); + devServer.app.use("/docs", express.static(path.join(__dirname, "docs"))); devServer.app.use( "/iiif-collection.json", express.static(path.join(__dirname, "src", "iiif-collection.json"))