From 58793bbec94889a7b3a52c62393e406ce1618d22 Mon Sep 17 00:00:00 2001 From: Chris Hallberg Date: Wed, 17 Jan 2024 12:02:49 -0500 Subject: [PATCH 01/11] Show audio track labels (#947) * fix: add label to audio track options. * style: whitespace revert to spaces. * style: undo formatting from ???. * style: empty line at eof. --- .../uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts b/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts index da4f88e5b..f2e2c17d1 100644 --- a/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts @@ -99,6 +99,7 @@ export class MediaElementCenterPanel extends CenterPanel< canvas.getRenderings().forEach((rendering: Rendering) => { if (this.isTypeMedia(rendering)) { sources.push({ + label: rendering.getLabel().getValue() ?? rendering.getFormat().toString(), type: rendering.getFormat().toString(), src: rendering.id, }); From b96fa78738d7f3b6fa450a361aab18cf3bac7ddf Mon Sep 17 00:00:00 2001 From: Edward Silverton Date: Wed, 24 Jan 2024 12:16:23 +0000 Subject: [PATCH 02/11] revert #c8f1aa40c5d7f7858de3f8f5ba2a8e8546a45e53 --- src/content-handlers/iiif/BaseConfig.ts | 3 +- .../uv-aleph-extension/config/Config.ts | 4 +- .../uv-aleph-extension/config/config.json | 54 ++++++------- .../uv-av-extension/config/Config.ts | 2 +- .../uv-av-extension/config/config.json | 54 ++++++------- .../uv-default-extension/config/Config.ts | 12 +-- .../uv-default-extension/config/config.json | 56 +++++++------ .../uv-ebook-extension/config/Config.ts | 4 +- .../uv-ebook-extension/config/config.json | 54 ++++++------- .../config/Config.ts | 2 +- .../config/config.json | 39 +++------ .../config/Config.ts | 2 +- .../config/config.json | 59 ++++++-------- .../config/Config.ts | 24 +++--- .../config/config.json | 76 +++++++++++++++--- .../extensions/uv-pdf-extension/Extension.ts | 2 +- .../uv-pdf-extension/config/Config.ts | 4 +- .../uv-pdf-extension/config/config.json | 79 ++++++++++--------- .../AlephCenterPanel.ts | 4 +- .../AlephLeftPanel.ts | 6 +- .../uv-avcenterpanel-module/AVCenterPanel.ts | 4 +- .../MobileFooter.ts | 2 +- .../ContentLeftPanel.ts | 2 +- .../uv-contentleftpanel-module/GalleryView.ts | 2 +- .../uv-contentleftpanel-module/TreeView.ts | 2 +- .../ExternalContentDialogue.ts | 4 +- .../uv-dialogues-module/MoreInfoDialogue.ts | 2 +- .../EbookCenterPanel.ts | 4 +- .../EbookLeftPanel.ts | 6 +- .../FileLinkCenterPanel.ts | 4 +- .../MediaElementCenterPanel.ts | 4 +- .../ModelViewerCenterPanel.ts | 4 +- .../MultiSelectDialogue.ts | 2 +- .../OpenSeadragonCenterPanel.ts | 4 +- .../PagingHeaderPanel.ts | 4 +- .../PDFCenterPanel.ts | 5 +- .../PDFHeaderPanel.ts | 4 +- .../ResourcesLeftPanel.ts | 2 +- .../ThumbsView.ts | 2 +- .../FooterPanel.ts | 4 +- .../iiif/modules/uv-shared-module/BaseView.ts | 6 +- 41 files changed, 317 insertions(+), 296 deletions(-) diff --git a/src/content-handlers/iiif/BaseConfig.ts b/src/content-handlers/iiif/BaseConfig.ts index e1f18ac83..b3e871153 100644 --- a/src/content-handlers/iiif/BaseConfig.ts +++ b/src/content-handlers/iiif/BaseConfig.ts @@ -208,7 +208,7 @@ export type DialogueContent = { close: string; }; -export type Dialogue = ModuleConfig & { +type Dialogue = ModuleConfig & { options?: DialogueOptions; content: DialogueContent; }; @@ -434,7 +434,6 @@ export type BaseConfig = { helpDialogue: HelpDialogue; leftPanel: LeftPanel; loginDialogue: LoginDialogue; - mobileFooterPanel: FooterPanel; moreInfoRightPanel: MoreInfoRightPanel; restrictedDialogue: RestrictedDialogue; settingsDialogue: SettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-aleph-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-aleph-extension/config/Config.ts index 3f9958886..61d32d16c 100644 --- a/src/content-handlers/iiif/extensions/uv-aleph-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-aleph-extension/config/Config.ts @@ -72,8 +72,8 @@ type AlephSettingsDialogue = ModuleConfig & { }; type Modules = { - leftPanel: AlephLeftPanel; - centerPanel: AlephCenterPanel; + alephLeftPanel: AlephLeftPanel; + alephCenterPanel: AlephCenterPanel; downloadDialogue: AlephDownloadDialogue; shareDialogue: AlephShareDialogue; settingsDialogue: AlephSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-aleph-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-aleph-extension/config/config.json index 29979d6fb..f89826d76 100644 --- a/src/content-handlers/iiif/extensions/uv-aleph-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-aleph-extension/config/config.json @@ -47,6 +47,21 @@ }, "modules": { "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, + "alephLeftPanel": { "options": { "consoleTabEnabled": true, "graphTabEnabled": true, @@ -177,6 +192,17 @@ } }, "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, + "alephCenterPanel": { "options": { "titleEnabled": true, "subtitleEnabled": true, @@ -297,34 +323,6 @@ "cancel": "$cancel", "close": "$close" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-av-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-av-extension/config/Config.ts index 5cd7708bb..fad142b20 100644 --- a/src/content-handlers/iiif/extensions/uv-av-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-av-extension/config/Config.ts @@ -71,7 +71,7 @@ type AVSettingsDialogue = ModuleConfig & { }; type Modules = { - centerPanel: AVCenterPanel; + avCenterPanel: AVCenterPanel; downloadDialogue: AVDownloadDialogue; shareDialogue: AVShareDialogue; settingsDialogue: AVSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-av-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-av-extension/config/config.json index 131dd0ea3..6be55c64e 100644 --- a/src/content-handlers/iiif/extensions/uv-av-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-av-extension/config/config.json @@ -47,6 +47,21 @@ }, "modules": { "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, + "contentLeftPanel": { "options": { "autoExpandTreeEnabled": true, "autoExpandTreeIfFewerThan": 20, @@ -203,6 +218,17 @@ } }, "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, + "avCenterPanel": { "options": { "autoPlay": false, "includeParentInTitleEnabled": false, @@ -340,34 +366,6 @@ "cancel": "$cancel", "close": "$close" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-default-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-default-extension/config/Config.ts index d5f91e5fa..25ce7423f 100644 --- a/src/content-handlers/iiif/extensions/uv-default-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-default-extension/config/Config.ts @@ -11,13 +11,13 @@ import { ShareDialogueOptions, } from "@/content-handlers/iiif/BaseConfig"; -type DefaultCenterPanelOptions = CenterPanelOptions & {}; +type FileLinkCenterPanelOptions = CenterPanelOptions & {}; -type DefaultCenterPanelContent = CenterPanelContent & {}; +type FileLinkCenterPanelContent = CenterPanelContent & {}; -type DefaultCenterPanel = { - options: DefaultCenterPanelOptions; - content: DefaultCenterPanelContent; +type FileLinkCenterPanel = { + options: FileLinkCenterPanelOptions; + content: FileLinkCenterPanelContent; }; type DefaultDownloadDialogueOptions = DownloadDialogueOptions & {}; @@ -48,7 +48,7 @@ type DefaultSettingsDialogue = ModuleConfig & { }; type Modules = { - centerPanel: DefaultCenterPanel; + fileLinkCenterPanel: FileLinkCenterPanel; downloadDialogue: DefaultDownloadDialogue; shareDialogue: DefaultShareDialogue; settingsDialogue: DefaultSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-default-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-default-extension/config/config.json index 8fde8be99..290702f32 100644 --- a/src/content-handlers/iiif/extensions/uv-default-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-default-extension/config/config.json @@ -46,6 +46,21 @@ "zoomToSearchResultEnabled": true }, "modules": { + "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, "shareDialogue": { "options": { "embedEnabled": true, @@ -81,6 +96,17 @@ "attribution": "$attribution" } }, + "fileLinkCenterPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, "footerPanel": { "options": { "bookmarkEnabled": false, @@ -192,7 +218,7 @@ "title": "$moreInformation" } }, - "leftPanel": { + "resourcesLeftPanel": { "options": { "expandFullEnabled": false, "panelAnimationDuration": 250, @@ -296,34 +322,6 @@ "title": "$settings", "website": "$uvWebsite" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-ebook-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-ebook-extension/config/Config.ts index cb0e326c9..99d97a0b0 100644 --- a/src/content-handlers/iiif/extensions/uv-ebook-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-ebook-extension/config/Config.ts @@ -63,8 +63,8 @@ type EbookSettingsDialogue = ModuleConfig & { }; type Modules = { - leftPanel: EbookLeftPanel; - centerPanel: EbookCenterPanel; + ebookLeftPanel: EbookLeftPanel; + ebookCenterPanel: EbookCenterPanel; downloadDialogue: EbookDownloadDialogue; shareDialogue: EbookShareDialogue; settingsDialogue: EbookSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-ebook-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-ebook-extension/config/config.json index 62242ee52..203a61c1f 100644 --- a/src/content-handlers/iiif/extensions/uv-ebook-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-ebook-extension/config/config.json @@ -47,6 +47,21 @@ }, "modules": { "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, + "ebookLeftPanel": { "options": { "expandFullEnabled": false, "panelAnimationDuration": 250, @@ -183,6 +198,17 @@ "attribution": "$attribution" } }, + "ebookCenterPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, "settingsDialogue": { "options": { "topCloseButtonEnabled": false @@ -292,34 +318,6 @@ "cancel": "$cancel", "close": "$close" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/Config.ts index dba3c1f1e..400c80bc4 100644 --- a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/Config.ts @@ -51,7 +51,7 @@ type MediaElementSettingsDialogue = ModuleConfig & { }; type Modules = { - centerPanel: MediaElementCenterPanel; + mediaelementCenterPanel: MediaElementCenterPanel; downloadDialogue: MediaElementDownloadDialogue; shareDialogue: MediaElementShareDialogue; settingsDialogue: MediaElementSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/config.json index 1e1f8bb33..7ca31ede6 100644 --- a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/config/config.json @@ -146,6 +146,17 @@ } }, "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, + "mediaelementCenterPanel": { "options": { "defaultHeight": 420, "defaultWidth": 560, @@ -305,34 +316,6 @@ "title": "$settings", "website": "$uvWebsite" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/Config.ts index c86f29035..1707387ba 100644 --- a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/Config.ts @@ -57,7 +57,7 @@ type ModelViewerSettingsDialogue = ModuleConfig & { }; type Modules = { - centerPanel: ModelViewerCenterPanel; + modelViewerCenterPanel: ModelViewerCenterPanel; downloadDialogue: ModelViewerDownloadDialogue; shareDialogue: ModelViewerShareDialogue; settingsDialogue: ModelViewerSettingsDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/config.json index 513597ec1..52a1e16b9 100644 --- a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/config/config.json @@ -202,8 +202,22 @@ }, "leftPanel": { "options": { - "elideCount": 40, "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, + "contentLeftPanel": { + "options": { + "elideCount": 40, "galleryThumbHeight": 320, "galleryThumbWidth": 200, "oneColThumbHeight": 320, @@ -220,15 +234,20 @@ "treeEnabled": true, "twoColThumbHeight": 150, "twoColThumbWidth": 90 + } + }, + "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true }, "content": { - "collapse": "$collapse", - "collapseFull": "$collapseFull", - "expand": "$expandContents", - "expandFull": "$expandGallery" + "attribution": "$attribution" } }, - "centerPanel": { + "modelViewerCenterPanel": { "options": { "titleEnabled": true, "subtitleEnabled": true, @@ -311,34 +330,6 @@ "title": "$settings", "website": "$uvWebsite" } - }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/Config.ts index cad3056f0..ff5d7195a 100644 --- a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/Config.ts @@ -2,7 +2,6 @@ import { BaseConfig, CenterPanelContent, CenterPanelOptions, - Dialogue, DialogueContent, DialogueOptions, DownloadDialogueContent, @@ -96,7 +95,7 @@ type PagingHeaderPanel = ModuleConfig & { content: PagingHeaderPanelContent; }; -type OSDCenterPanelOptions = CenterPanelOptions & { +type OpenSeadragonCenterPanelOptions = CenterPanelOptions & { /** Duration of the animation */ animationTime: number; /** Determines if controls are hidden automatically */ @@ -133,7 +132,7 @@ type OSDCenterPanelOptions = CenterPanelOptions & { visibilityRatio: number; }; -type OSDCenterPanelContent = CenterPanelContent & { +type OpenSeadragonCenterPanelContent = CenterPanelContent & { attribution: string; goHome: string; imageUnavailable: string; @@ -144,9 +143,9 @@ type OSDCenterPanelContent = CenterPanelContent & { zoomOut: string; }; -type OSDCenterPanel = ModuleConfig & { - options: OSDCenterPanelOptions; - content: OSDCenterPanelContent; +type OpenSeadragonCenterPanel = ModuleConfig & { + options: OpenSeadragonCenterPanelOptions; + content: OpenSeadragonCenterPanelContent; }; type SearchFooterPanelOptions = FooterPanelOptions & { @@ -271,16 +270,15 @@ type OSDSettingsDialogue = ModuleConfig & { }; type Modules = { - centerPanel: OSDCenterPanel; + contentLeftPanel: ContentLeftPanel; downloadDialogue: OSDDownloadDialogue; - footerPanel: SearchFooterPanel; - leftPanel: ContentLeftPanel; - mobileFooterPanel: MobileFooterPanel; multiSelectDialogue: MultiSelectDialogue; - headerPanel: PagingHeaderPanel; - settingsDialogue: OSDSettingsDialogue; + pagingHeaderPanel: PagingHeaderPanel; + openSeadragonCenterPanel: OpenSeadragonCenterPanel; + searchFooterPanel: SearchFooterPanel; + mobileFooterPanel: MobileFooterPanel; shareDialogue: OSDShareDialogue; - externalContentDialogue: Dialogue; + settingsDialogue: OSDSettingsDialogue; }; export type Config = BaseConfig & { diff --git a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/config.json index b15cecfd7..2f02fb281 100644 --- a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/config/config.json @@ -50,6 +50,21 @@ }, "modules": { "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, + "contentLeftPanel": { "options": { "autoExpandTreeEnabled": false, "autoExpandTreeIfFewerThan": 20, @@ -148,6 +163,31 @@ "wholeImagesHighResExplanation": "$wholeImagesHighResExplanation" } }, + "footerPanel": { + "options": { + "bookmarkEnabled": false, + "downloadEnabled": true, + "embedEnabled": false, + "feedbackEnabled": false, + "fullscreenEnabled": true, + "minimiseButtons": true, + "moreInfoEnabled": true, + "openEnabled": false, + "printEnabled": false, + "shareEnabled": true + }, + "content": { + "bookmark": "$add_to_bookmarks", + "download": "$download", + "embed": "$embed", + "exitFullScreen": "$exitFullScreen", + "feedback": "$feedback", + "fullScreen": "$fullScreen", + "moreInfo": "$moreInfo", + "open": "$open", + "share": "$share" + } + }, "genericDialogue": { "options": { "topCloseButtonEnabled": false @@ -162,6 +202,17 @@ "refresh": "$refresh" } }, + "headerPanel": { + "options": { + "centerOptionsEnabled": true, + "localeToggleEnabled": false, + "settingsButtonEnabled": true + }, + "content": { + "close": "$close", + "settings": "$settings" + } + }, "helpDialogue": { "options": { "topCloseButtonEnabled": false @@ -231,7 +282,7 @@ "title": "$selectPagesForDownload" } }, - "headerPanel": { + "pagingHeaderPanel": { "options": { "autoCompleteBoxEnabled": true, "autocompleteAllowWords": false, @@ -274,6 +325,17 @@ } }, "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, + "openSeadragonCenterPanel": { "options": { "animationTime": 0.15, "autoHideControls": true, @@ -307,7 +369,7 @@ "zoomOut": "$zoomOut" } }, - "footerPanel": { + "searchFooterPanel": { "options": { "autocompleteAllowWords": false, "elideDetailsTermsCount": 20, @@ -460,16 +522,6 @@ "cancel": "$cancel", "close": "$close" } - }, - "externalContentDialogue": { - "options": { - "topCloseButtonEnabled": false - }, - "content": { - "cancel": "$cancel", - "close": "$close", - "confirm": "$confirm" - } } }, "localisation": { diff --git a/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts index c9fbe731f..b2152407f 100644 --- a/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts @@ -80,7 +80,7 @@ export default class Extension extends BaseExtension return ( super.isHeaderPanelEnabled() && Bools.getBool( - this.data.config!.modules.centerPanel.options.usePdfJs, + this.data.config!.modules.pdfCenterPanel.options.usePdfJs, true ) ); diff --git a/src/content-handlers/iiif/extensions/uv-pdf-extension/config/Config.ts b/src/content-handlers/iiif/extensions/uv-pdf-extension/config/Config.ts index 71266d5ef..116e1e3a9 100644 --- a/src/content-handlers/iiif/extensions/uv-pdf-extension/config/Config.ts +++ b/src/content-handlers/iiif/extensions/uv-pdf-extension/config/Config.ts @@ -71,8 +71,8 @@ type PDFSettingsDialogue = { }; type Modules = { - centerPanel: PDFCenterPanel; - headerPanel: PDFHeaderPanel; + pdfCenterPanel: PDFCenterPanel; + pdfHeaderPanel: PDFHeaderPanel; settingsDialogue: PDFSettingsDialogue; downloadDialogue: PDFDownloadDialogue; shareDialogue: PDFShareDialogue; diff --git a/src/content-handlers/iiif/extensions/uv-pdf-extension/config/config.json b/src/content-handlers/iiif/extensions/uv-pdf-extension/config/config.json index cd8f89b5b..c42c16d3c 100644 --- a/src/content-handlers/iiif/extensions/uv-pdf-extension/config/config.json +++ b/src/content-handlers/iiif/extensions/uv-pdf-extension/config/config.json @@ -46,6 +46,21 @@ "zoomToSearchResultEnabled": true }, "modules": { + "leftPanel": { + "options": { + "expandFullEnabled": false, + "panelAnimationDuration": 250, + "panelCollapsedWidth": 30, + "panelExpandedWidth": 255, + "panelOpen": false + }, + "content": { + "collapse": "$collapse", + "collapseFull": "$collapseFull", + "expand": "$expandContents", + "expandFull": "$expandGallery" + } + }, "footerPanel": { "options": { "bookmarkEnabled": false, @@ -85,6 +100,17 @@ "refresh": "$refresh" } }, + "headerPanel": { + "options": { + "centerOptionsEnabled": true, + "localeToggleEnabled": false, + "settingsButtonEnabled": true + }, + "content": { + "close": "$close", + "settings": "$settings" + } + }, "helpDialogue": { "options": { "topCloseButtonEnabled": false @@ -138,6 +164,17 @@ } }, "centerPanel": { + "options": { + "titleEnabled": true, + "subtitleEnabled": true, + "mostSpecificRequiredStatement": true, + "requiredStatementEnabled": true + }, + "content": { + "attribution": "$attribution" + } + }, + "pdfCenterPanel": { "options": { "titleEnabled": false, "subtitleEnabled": true, @@ -149,7 +186,7 @@ "attribution": "$attribution" } }, - "leftPanel": { + "resourcesLeftPanel": { "options": { "elideCount": 40, "galleryThumbHeight": 320, @@ -167,14 +204,7 @@ "thumbsLoadRange": 15, "treeEnabled": true, "twoColThumbHeight": 150, - "twoColThumbWidth": 90, - "expandFullEnabled": false - }, - "content": { - "collapse": "$collapse", - "collapseFull": "$collapseFull", - "expand": "$expandContents", - "expandFull": "$expandGallery" + "twoColThumbWidth": 90 } }, "dialogue": { @@ -216,7 +246,7 @@ "wholeImagesHighResExplanation": "$wholeImagesHighResExplanation" } }, - "headerPanel": { + "pdfHeaderPanel": { "options": { "centerOptionsEnabled": true, "localeToggleEnabled": false, @@ -314,34 +344,7 @@ "website": "$uvWebsite" } }, - "mobileFooterPanel": { - "options": { - "bookmarkEnabled": false, - "downloadEnabled": true, - "embedEnabled": false, - "feedbackEnabled": false, - "fullscreenEnabled": true, - "minimiseButtons": true, - "moreInfoEnabled": true, - "openEnabled": false, - "printEnabled": false, - "shareEnabled": true - }, - "content": { - "rotateRight": "$rotateRight", - "moreInfo": "$moreInfo", - "zoomIn": "$zoomIn", - "zoomOut": "$zoomOut", - "bookmark": "$add_to_bookmarks", - "download": "$download", - "embed": "$embed", - "exitFullScreen": "$exitFullScreen", - "feedback": "$feedback", - "fullScreen": "$fullScreen", - "open": "$open", - "share": "$share" - } - } + "contentLeftPanel": {} }, "localisation": { "label": "English (GB)", diff --git a/src/content-handlers/iiif/modules/uv-alephcenterpanel-module/AlephCenterPanel.ts b/src/content-handlers/iiif/modules/uv-alephcenterpanel-module/AlephCenterPanel.ts index 7d3f80fdb..3e26c11f9 100644 --- a/src/content-handlers/iiif/modules/uv-alephcenterpanel-module/AlephCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-alephcenterpanel-module/AlephCenterPanel.ts @@ -23,7 +23,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-aleph-extension/config/Config"; export class AlephCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["alephCenterPanel"] > { private _alViewer: any; private _alViewerReady: boolean = false; @@ -36,7 +36,7 @@ export class AlephCenterPanel extends CenterPanel< } async create(): Promise { - this.setConfig("centerPanel"); + this.setConfig("alephCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-alephleftpanel-module/AlephLeftPanel.ts b/src/content-handlers/iiif/modules/uv-alephleftpanel-module/AlephLeftPanel.ts index ed0d42f08..d743d8fdb 100644 --- a/src/content-handlers/iiif/modules/uv-alephleftpanel-module/AlephLeftPanel.ts +++ b/src/content-handlers/iiif/modules/uv-alephleftpanel-module/AlephLeftPanel.ts @@ -7,7 +7,9 @@ import { } from "@universalviewer/aleph/loader"; import { Config } from "../../extensions/uv-aleph-extension/config/Config"; -export class AlephLeftPanel extends LeftPanel { +export class AlephLeftPanel extends LeftPanel< + Config["modules"]["alephLeftPanel"] +> { private _alControlPanel: any; constructor($element: JQuery) { @@ -15,7 +17,7 @@ export class AlephLeftPanel extends LeftPanel { } async create(): Promise { - this.setConfig("leftPanel"); + this.setConfig("alephLeftPanel"); super.create(); await applyPolyfills(); diff --git a/src/content-handlers/iiif/modules/uv-avcenterpanel-module/AVCenterPanel.ts b/src/content-handlers/iiif/modules/uv-avcenterpanel-module/AVCenterPanel.ts index 8da9cc767..a268a25e1 100644 --- a/src/content-handlers/iiif/modules/uv-avcenterpanel-module/AVCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-avcenterpanel-module/AVCenterPanel.ts @@ -17,7 +17,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-av-extension/config/Config"; export class AVCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["avCenterPanel"] > { $avcomponent: JQuery; avcomponent: any; @@ -31,7 +31,7 @@ export class AVCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("avCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-avmobilefooterpanel-module/MobileFooter.ts b/src/content-handlers/iiif/modules/uv-avmobilefooterpanel-module/MobileFooter.ts index de291b57c..13fb61330 100644 --- a/src/content-handlers/iiif/modules/uv-avmobilefooterpanel-module/MobileFooter.ts +++ b/src/content-handlers/iiif/modules/uv-avmobilefooterpanel-module/MobileFooter.ts @@ -2,7 +2,7 @@ import { Config } from "../../extensions/uv-av-extension/config/Config"; import { FooterPanel as BaseFooterPanel } from "../uv-shared-module/FooterPanel"; export class FooterPanel extends BaseFooterPanel< - Config["modules"]["mobileFooterPanel"] + Config["modules"]["footerPanel"] > { $fullScreenBtn: JQuery; diff --git a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/ContentLeftPanel.ts b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/ContentLeftPanel.ts index 643161513..e35e98d26 100644 --- a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/ContentLeftPanel.ts +++ b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/ContentLeftPanel.ts @@ -58,7 +58,7 @@ export class ContentLeftPanel extends LeftPanel { } create(): void { - this.setConfig("leftPanel"); + this.setConfig("contentLeftPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/GalleryView.ts b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/GalleryView.ts index 5d37d8584..0e7acfb3f 100644 --- a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/GalleryView.ts +++ b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/GalleryView.ts @@ -15,7 +15,7 @@ export class GalleryView extends BaseView { } create(): void { - this.setConfig("leftPanel"); + this.setConfig("contentLeftPanel"); super.create(); this.$gallery = $(''); diff --git a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/TreeView.ts b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/TreeView.ts index 91b3af157..aefa43bab 100644 --- a/src/content-handlers/iiif/modules/uv-contentleftpanel-module/TreeView.ts +++ b/src/content-handlers/iiif/modules/uv-contentleftpanel-module/TreeView.ts @@ -16,7 +16,7 @@ export class TreeView extends BaseView { } create(): void { - this.setConfig("leftPanel"); + this.setConfig("contentLeftPanel"); super.create(); this.$tree = $('
'); this.$element.append(this.$tree); diff --git a/src/content-handlers/iiif/modules/uv-dialogues-module/ExternalContentDialogue.ts b/src/content-handlers/iiif/modules/uv-dialogues-module/ExternalContentDialogue.ts index 47f6a7e0d..e2d06e950 100644 --- a/src/content-handlers/iiif/modules/uv-dialogues-module/ExternalContentDialogue.ts +++ b/src/content-handlers/iiif/modules/uv-dialogues-module/ExternalContentDialogue.ts @@ -4,7 +4,7 @@ import { Config } from "../../extensions/uv-openseadragon-extension/config/Confi import { Dialogue } from "../uv-shared-module/Dialogue"; export class ExternalContentDialogue extends Dialogue< - Config["modules"]["externalContentDialogue"] + Config["modules"]["multiSelectDialogue"] > { $iframe: JQuery; @@ -13,7 +13,7 @@ export class ExternalContentDialogue extends Dialogue< } create(): void { - this.setConfig("externalContentDialogue"); + this.setConfig("externalContentDialogue"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-dialogues-module/MoreInfoDialogue.ts b/src/content-handlers/iiif/modules/uv-dialogues-module/MoreInfoDialogue.ts index 1f764af0d..28b3521bd 100644 --- a/src/content-handlers/iiif/modules/uv-dialogues-module/MoreInfoDialogue.ts +++ b/src/content-handlers/iiif/modules/uv-dialogues-module/MoreInfoDialogue.ts @@ -18,7 +18,7 @@ export class MoreInfoDialogue extends Dialogue< } create(): void { - this.setConfig("moreInfoRightPanel"); + this.setConfig("moreInfoDialogue"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-ebookcenterpanel-module/EbookCenterPanel.ts b/src/content-handlers/iiif/modules/uv-ebookcenterpanel-module/EbookCenterPanel.ts index 05269ea58..b07d0f8ba 100644 --- a/src/content-handlers/iiif/modules/uv-ebookcenterpanel-module/EbookCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-ebookcenterpanel-module/EbookCenterPanel.ts @@ -18,7 +18,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-ebook-extension/config/Config"; export class EbookCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["ebookCenterPanel"] > { private _cfi: string; private _ebookReader: any; @@ -32,7 +32,7 @@ export class EbookCenterPanel extends CenterPanel< } async create(): Promise { - this.setConfig("centerPanel"); + this.setConfig("ebookCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-ebookleftpanel-module/EbookLeftPanel.ts b/src/content-handlers/iiif/modules/uv-ebookleftpanel-module/EbookLeftPanel.ts index d459ebe3d..cad86026c 100644 --- a/src/content-handlers/iiif/modules/uv-ebookleftpanel-module/EbookLeftPanel.ts +++ b/src/content-handlers/iiif/modules/uv-ebookleftpanel-module/EbookLeftPanel.ts @@ -9,7 +9,9 @@ import { } from "@universalviewer/uv-ebook-components/loader"; import { Config } from "../../extensions/uv-ebook-extension/config/Config"; -export class EbookLeftPanel extends LeftPanel { +export class EbookLeftPanel extends LeftPanel< + Config["modules"]["ebookLeftPanel"] +> { private _ebookTOC: any; private _$container: JQuery; private _$ebookTOC: JQuery; @@ -19,7 +21,7 @@ export class EbookLeftPanel extends LeftPanel { } async create(): Promise { - this.setConfig("leftPanel"); + this.setConfig("ebookLeftPanel"); super.create(); this._$container = $('
'); diff --git a/src/content-handlers/iiif/modules/uv-filelinkcenterpanel-module/FileLinkCenterPanel.ts b/src/content-handlers/iiif/modules/uv-filelinkcenterpanel-module/FileLinkCenterPanel.ts index a1e18bd96..4d08950ef 100644 --- a/src/content-handlers/iiif/modules/uv-filelinkcenterpanel-module/FileLinkCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-filelinkcenterpanel-module/FileLinkCenterPanel.ts @@ -13,7 +13,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-default-extension/config/Config"; export class FileLinkCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["fileLinkCenterPanel"] > { $scroll: JQuery; $downloadItems: JQuery; @@ -24,7 +24,7 @@ export class FileLinkCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("fileLinkCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts b/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts index da4f88e5b..76062f189 100644 --- a/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-mediaelementcenterpanel-module/MediaElementCenterPanel.ts @@ -21,7 +21,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-mediaelement-extension/config/Config"; export class MediaElementCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["mediaelementCenterPanel"] > { $wrapper: JQuery; $container: JQuery; @@ -36,7 +36,7 @@ export class MediaElementCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("mediaelementCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-modelviewercenterpanel-module/ModelViewerCenterPanel.ts b/src/content-handlers/iiif/modules/uv-modelviewercenterpanel-module/ModelViewerCenterPanel.ts index bdf6a0584..85078dbfb 100644 --- a/src/content-handlers/iiif/modules/uv-modelviewercenterpanel-module/ModelViewerCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-modelviewercenterpanel-module/ModelViewerCenterPanel.ts @@ -15,7 +15,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-model-viewer-extension/config/Config"; export class ModelViewerCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["modelViewerCenterPanel"] > { $modelviewer: JQuery; $spinner: JQuery; @@ -27,7 +27,7 @@ export class ModelViewerCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("modelViewerCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-multiselectdialogue-module/MultiSelectDialogue.ts b/src/content-handlers/iiif/modules/uv-multiselectdialogue-module/MultiSelectDialogue.ts index 63720883a..8c378bbe7 100644 --- a/src/content-handlers/iiif/modules/uv-multiselectdialogue-module/MultiSelectDialogue.ts +++ b/src/content-handlers/iiif/modules/uv-multiselectdialogue-module/MultiSelectDialogue.ts @@ -22,7 +22,7 @@ export class MultiSelectDialogue extends Dialogue< } create(): void { - this.setConfig("multiSelectDialogue"); + this.setConfig("multiSelectDialogue"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-openseadragoncenterpanel-module/OpenSeadragonCenterPanel.ts b/src/content-handlers/iiif/modules/uv-openseadragoncenterpanel-module/OpenSeadragonCenterPanel.ts index 69f331e69..0096187ec 100644 --- a/src/content-handlers/iiif/modules/uv-openseadragoncenterpanel-module/OpenSeadragonCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-openseadragoncenterpanel-module/OpenSeadragonCenterPanel.ts @@ -26,7 +26,7 @@ import { Events } from "../../../../Events"; import { Config } from "../../extensions/uv-openseadragon-extension/config/Config"; export class OpenSeadragonCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["openSeadragonCenterPanel"] > { controlsVisible: boolean = false; currentAnnotationRect: AnnotationRect; @@ -65,7 +65,7 @@ export class OpenSeadragonCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("openSeadragonCenterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-pagingheaderpanel-module/PagingHeaderPanel.ts b/src/content-handlers/iiif/modules/uv-pagingheaderpanel-module/PagingHeaderPanel.ts index abe29138b..43237080e 100644 --- a/src/content-handlers/iiif/modules/uv-pagingheaderpanel-module/PagingHeaderPanel.ts +++ b/src/content-handlers/iiif/modules/uv-pagingheaderpanel-module/PagingHeaderPanel.ts @@ -12,7 +12,7 @@ import { Canvas, LanguageMap, ManifestType } from "manifesto.js"; import { Config } from "../../extensions/uv-openseadragon-extension/config/Config"; export class PagingHeaderPanel extends HeaderPanel< - Config["modules"]["headerPanel"] + Config["modules"]["pagingHeaderPanel"] > { $autoCompleteBox: JQuery; $firstButton: JQuery; @@ -47,7 +47,7 @@ export class PagingHeaderPanel extends HeaderPanel< } create(): void { - this.setConfig("headerPanel"); + this.setConfig("pagingHeaderPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-pdfcenterpanel-module/PDFCenterPanel.ts b/src/content-handlers/iiif/modules/uv-pdfcenterpanel-module/PDFCenterPanel.ts index 9e99ebc94..cf2b97808 100644 --- a/src/content-handlers/iiif/modules/uv-pdfcenterpanel-module/PDFCenterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-pdfcenterpanel-module/PDFCenterPanel.ts @@ -11,7 +11,7 @@ import { Config } from "../../extensions/uv-pdf-extension/config/Config"; // declare var PDFJS: any; export class PDFCenterPanel extends CenterPanel< - Config["modules"]["centerPanel"] + Config["modules"]["pdfCenterPanel"] > { // private _$spinner: JQuery; private _$canvas: JQuery; @@ -42,7 +42,7 @@ export class PDFCenterPanel extends CenterPanel< } create(): void { - this.setConfig("centerPanel"); + this.setConfig("pdfCenterPanel"); super.create(); @@ -60,7 +60,6 @@ export class PDFCenterPanel extends CenterPanel< // Only attach PDF controls if we're using PDF.js; they have no meaning in // PDFObject. However, we still create the objects above so that references // to them do not cause errors (simpler than putting usePdfJs checks all over): - if (Bools.getBool(this.options.usePdfJs, false)) { // this.$content.append(this._$spinner); this.$content.append(this._$progress); diff --git a/src/content-handlers/iiif/modules/uv-pdfheaderpanel-module/PDFHeaderPanel.ts b/src/content-handlers/iiif/modules/uv-pdfheaderpanel-module/PDFHeaderPanel.ts index 216c8f1c5..fe2388f5d 100644 --- a/src/content-handlers/iiif/modules/uv-pdfheaderpanel-module/PDFHeaderPanel.ts +++ b/src/content-handlers/iiif/modules/uv-pdfheaderpanel-module/PDFHeaderPanel.ts @@ -6,7 +6,7 @@ import { HeaderPanel } from "../uv-shared-module/HeaderPanel"; import { Strings } from "@edsilv/utils"; export class PDFHeaderPanel extends HeaderPanel< - Config["modules"]["headerPanel"] + Config["modules"]["pdfHeaderPanel"] > { $firstButton: JQuery; $lastButton: JQuery; @@ -32,7 +32,7 @@ export class PDFHeaderPanel extends HeaderPanel< } create(): void { - this.setConfig("headerPanel"); + this.setConfig("pdfHeaderPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ResourcesLeftPanel.ts b/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ResourcesLeftPanel.ts index aae069983..92df02206 100644 --- a/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ResourcesLeftPanel.ts +++ b/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ResourcesLeftPanel.ts @@ -23,7 +23,7 @@ export class ResourcesLeftPanel extends LeftPanel { } create(): void { - this.setConfig("leftPanel"); + this.setConfig("resourcesLeftPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ThumbsView.ts b/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ThumbsView.ts index 894cf9ee2..4c507f59b 100644 --- a/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ThumbsView.ts +++ b/src/content-handlers/iiif/modules/uv-resourcesleftpanel-module/ThumbsView.ts @@ -3,7 +3,7 @@ import { ExtendedLeftPanel } from "../../extensions/config/ExtendedLeftPanel"; export class ThumbsView extends BaseView { create(): void { - this.setConfig("leftPanel"); + this.setConfig("resourcesLeftPanel"); super.create(); } } diff --git a/src/content-handlers/iiif/modules/uv-searchfooterpanel-module/FooterPanel.ts b/src/content-handlers/iiif/modules/uv-searchfooterpanel-module/FooterPanel.ts index 589e1b924..6275d62d1 100644 --- a/src/content-handlers/iiif/modules/uv-searchfooterpanel-module/FooterPanel.ts +++ b/src/content-handlers/iiif/modules/uv-searchfooterpanel-module/FooterPanel.ts @@ -14,7 +14,7 @@ import { Canvas, LanguageMap } from "manifesto.js"; import { Config } from "../../extensions/uv-openseadragon-extension/config/Config"; export class FooterPanel extends BaseFooterPanel< - Config["modules"]["footerPanel"] + Config["modules"]["searchFooterPanel"] > { $clearSearchResultsButton: JQuery; $line: JQuery; @@ -46,7 +46,7 @@ export class FooterPanel extends BaseFooterPanel< } create(): void { - this.setConfig("footerPanel"); + this.setConfig("searchFooterPanel"); super.create(); diff --git a/src/content-handlers/iiif/modules/uv-shared-module/BaseView.ts b/src/content-handlers/iiif/modules/uv-shared-module/BaseView.ts index 936783ec3..a20b7acd2 100644 --- a/src/content-handlers/iiif/modules/uv-shared-module/BaseView.ts +++ b/src/content-handlers/iiif/modules/uv-shared-module/BaseView.ts @@ -2,7 +2,7 @@ const $ = require("jquery"); import { Panel } from "./Panel"; import { IExtension } from "./IExtension"; import { IIIFExtensionHost } from "../../IIIFExtensionHost"; -import { BaseConfig, ModuleConfig } from "../../BaseConfig"; +import { ModuleConfig } from "../../BaseConfig"; export class BaseView extends Panel { config: T; @@ -56,11 +56,11 @@ export class BaseView extends Panel { init(): void {} - setConfig(moduleName: keyof T["modules"]): void { + setConfig(moduleName: string): void { if (!this.modules) { this.modules = []; } - this.modules.push(moduleName as string); + this.modules.push(moduleName); } resize(): void { From 4923bcd2da7d485139b20c83bb15a1d1e3d9b1c4 Mon Sep 17 00:00:00 2001 From: Stephen Fraser Date: Thu, 1 Feb 2024 19:27:59 +0000 Subject: [PATCH 03/11] Fixed dynamic imports of locale - removed unused properties (#959) --- .../uv-aleph-extension/Extension.ts | 3 -- .../extensions/uv-av-extension/Extension.ts | 3 -- .../uv-default-extension/Extension.ts | 3 -- .../uv-ebook-extension/Extension.ts | 3 -- .../uv-mediaelement-extension/Extension.ts | 3 -- .../uv-model-viewer-extension/Extension.ts | 3 -- .../uv-openseadragon-extension/Extension.ts | 3 -- .../extensions/uv-pdf-extension/Extension.ts | 3 -- .../modules/uv-shared-module/BaseExtension.ts | 34 +++++++------------ 9 files changed, 12 insertions(+), 46 deletions(-) diff --git a/src/content-handlers/iiif/extensions/uv-aleph-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-aleph-extension/Extension.ts index 88ba7acdb..47390eb9d 100644 --- a/src/content-handlers/iiif/extensions/uv-aleph-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-aleph-extension/Extension.ts @@ -31,9 +31,6 @@ export default class Extension extends BaseExtension settingsDialogue: SettingsDialogue; shareDialogue: ShareDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-av-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-av-extension/Extension.ts index b1b4b5908..3f72620d5 100644 --- a/src/content-handlers/iiif/extensions/uv-av-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-av-extension/Extension.ts @@ -33,9 +33,6 @@ export default class Extension extends BaseExtension settingsDialogue: SettingsDialogue; shareDialogue: ShareDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; lastAvCanvasIndex?: number; create(): void { diff --git a/src/content-handlers/iiif/extensions/uv-default-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-default-extension/Extension.ts index db66fb891..9c2f9f08f 100644 --- a/src/content-handlers/iiif/extensions/uv-default-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-default-extension/Extension.ts @@ -29,9 +29,6 @@ export default class Extension extends BaseExtension rightPanel: MoreInfoRightPanel; settingsDialogue: SettingsDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-ebook-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-ebook-extension/Extension.ts index 08d86d794..94ef931ca 100644 --- a/src/content-handlers/iiif/extensions/uv-ebook-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-ebook-extension/Extension.ts @@ -37,9 +37,6 @@ export default class Extension extends BaseExtension shareDialogue: ShareDialogue; cfiFragement: string; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/Extension.ts index d2b738b8a..2f196c304 100644 --- a/src/content-handlers/iiif/extensions/uv-mediaelement-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-mediaelement-extension/Extension.ts @@ -46,9 +46,6 @@ export default class Extension extends BaseExtension rightPanel: MoreInfoRightPanel; settingsDialogue: SettingsDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/Extension.ts index 73b218f06..70ab09d49 100644 --- a/src/content-handlers/iiif/extensions/uv-model-viewer-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-model-viewer-extension/Extension.ts @@ -41,9 +41,6 @@ export default class ModelViewerExtension extends BaseExtension { settingsDialogue: SettingsDialogue; shareDialogue: ShareDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts index a24c6bc1e..70fc7cae1 100644 --- a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts @@ -82,9 +82,6 @@ export default class OpenSeadragonExtension extends BaseExtension { settingsDialogue: SettingsDialogue; shareDialogue: ShareDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts index b2152407f..88a7af2e7 100644 --- a/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-pdf-extension/Extension.ts @@ -33,9 +33,6 @@ export default class Extension extends BaseExtension rightPanel: MoreInfoRightPanel; settingsDialogue: SettingsDialogue; defaultConfig: Config = defaultConfig; - locales = { - "en-GB": defaultConfig, - }; create(): void { super.create(); diff --git a/src/content-handlers/iiif/modules/uv-shared-module/BaseExtension.ts b/src/content-handlers/iiif/modules/uv-shared-module/BaseExtension.ts index 38f77b818..f98a7ce7f 100644 --- a/src/content-handlers/iiif/modules/uv-shared-module/BaseExtension.ts +++ b/src/content-handlers/iiif/modules/uv-shared-module/BaseExtension.ts @@ -79,7 +79,15 @@ export class BaseExtension implements IExtension { tabbing: boolean = false; browserDetect: BrowserDetect; locales = {}; - defaultConfig: T; + defaultConfig: T = {} as any; + localeLoaders: Record Promise> = { + "en-GB": () => import("../../../../locales/en-GB.json"), + "cy-GB": () => import("../../../../locales/cy-GB.json"), + "fr-FR": () => import("../../../../locales/fr-FR.json"), + "pl-PL": () => import("../../../../locales/pl-PL.json"), + "sv-SE": () => import("../../../../locales/sv-SE.json"), + }; + public create(): void { const that = this; @@ -469,33 +477,15 @@ export class BaseExtension implements IExtension { } public async loadConfig(locale: string, extension: string): Promise { - let uv_locale = locale; - if (extension) { - uv_locale = "_"; - this.locales["_"] = () => - import(`../../extensions/${extension}/config/config.json`); - } - - let config = this.locales[uv_locale]; - - if (!config) { - throw new Error("Unable to load config"); - } - if (typeof config === "object") { - config = JSON.parse(JSON.stringify(config)); - } else if (typeof config === "function") { - config = await config(); - config = JSON.parse(JSON.stringify(config)); - } - - return this.translateLocale(config, locale); + return this.translateLocale(this.defaultConfig, locale); } private async translateLocale( config: Object, locale: String ): Promise { - let localeStrings = await import(`../../../../locales/${locale}.json`); + let loader = this.localeLoaders[locale as any] || this.localeLoaders["en-GB"]; + let localeStrings = (await loader()) || {}; let conf = JSON.stringify(config); for (let str in localeStrings) { From 54e3893b85aa1480f1404aaf4d92d3f08bfe4170 Mon Sep 17 00:00:00 2001 From: Hussain Date: Thu, 8 Feb 2024 14:42:38 +0000 Subject: [PATCH 04/11] Scoping input[type=range] to .uv (#961) --- .../modules/uv-shared-module/css/range.less | 212 +++++++++--------- 1 file changed, 107 insertions(+), 105 deletions(-) diff --git a/src/content-handlers/iiif/modules/uv-shared-module/css/range.less b/src/content-handlers/iiif/modules/uv-shared-module/css/range.less index 346c59f7c..eee385831 100644 --- a/src/content-handlers/iiif/modules/uv-shared-module/css/range.less +++ b/src/content-handlers/iiif/modules/uv-shared-module/css/range.less @@ -1,105 +1,107 @@ - -/* WebKit */ - -input[type=range] { - -webkit-appearance: none; -} - -input[type=range]::-webkit-slider-runnable-track { - width: 300px; - height: 5px; - background: @gray-light; - border: none; -} - -input[type=range]::-webkit-slider-thumb { - -webkit-appearance: none; - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: @gray; - margin-top: -5px; -} - -input[type=range]:focus { - outline: none; -} - -input[type=range]:focus::-webkit-slider-runnable-track { - background: @gray-light; -} - -/* Firefox */ - -input[type=range] { - /*required for proper track sizing in FF*/ - width: 300px; -} - -input[type=range]::-moz-range-track { - width: 300px; - height: 5px; - background: #ddd; - border: none; -} - -input[type=range]::-moz-range-thumb { - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: @gray; -} - -/*hide the outline behind the border*/ -input[type=range]:-moz-focusring { - outline: 1px solid white; - outline-offset: -1px; -} - -input[type=range]:focus::-moz-range-track { - background: #ccc; -} - - -/* IE */ - -input[type=range]::-ms-track { - width: 300px; - height: 5px; - - /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ - background: transparent; - - /*leave room for the larger thumb to overflow with a transparent border */ - border-color: transparent; - border-width: 6px 0; - - /*remove default tick marks*/ - color: transparent; -} - -input[type=range]::-ms-fill-lower { - background: @gray-light; -} - -input[type=range]::-ms-fill-upper { - background: @gray-light; -} - -input[type=range]::-ms-thumb { - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: @gray; -} - -input[type=range]:focus::-ms-fill-lower { - background: @gray-light; -} - -input[type=range]:focus::-ms-fill-upper { - background: @gray-lighter; -} +.uv { + + /* WebKit */ + + input[type=range] { + -webkit-appearance: none; + } + + input[type=range]::-webkit-slider-runnable-track { + width: 300px; + height: 5px; + background: @gray-light; + border: none; + } + + input[type=range]::-webkit-slider-thumb { + -webkit-appearance: none; + border: none; + height: 16px; + width: 16px; + border-radius: 50%; + background: @gray; + margin-top: -5px; + } + + input[type=range]:focus { + outline: none; + } + + input[type=range]:focus::-webkit-slider-runnable-track { + background: @gray-light; + } + + /* Firefox */ + + input[type=range] { + /*required for proper track sizing in FF*/ + width: 300px; + } + + input[type=range]::-moz-range-track { + width: 300px; + height: 5px; + background: #ddd; + border: none; + } + + input[type=range]::-moz-range-thumb { + border: none; + height: 16px; + width: 16px; + border-radius: 50%; + background: @gray; + } + + /*hide the outline behind the border*/ + input[type=range]:-moz-focusring { + outline: 1px solid white; + outline-offset: -1px; + } + + input[type=range]:focus::-moz-range-track { + background: #ccc; + } + + + /* IE */ + + input[type=range]::-ms-track { + width: 300px; + height: 5px; + + /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ + background: transparent; + + /*leave room for the larger thumb to overflow with a transparent border */ + border-color: transparent; + border-width: 6px 0; + + /*remove default tick marks*/ + color: transparent; + } + + input[type=range]::-ms-fill-lower { + background: @gray-light; + } + + input[type=range]::-ms-fill-upper { + background: @gray-light; + } + + input[type=range]::-ms-thumb { + border: none; + height: 16px; + width: 16px; + border-radius: 50%; + background: @gray; + } + + input[type=range]:focus::-ms-fill-lower { + background: @gray-light; + } + + input[type=range]:focus::-ms-fill-upper { + background: @gray-lighter; + } +} \ No newline at end of file From 7fa003b9bb8a00f648df52cde36247229fc61b64 Mon Sep 17 00:00:00 2001 From: Edward Silverton Date: Wed, 21 Feb 2024 16:30:57 +0000 Subject: [PATCH 05/11] rebuilt docs --- docs/CNAME | 1 - docs/classes/_internal_.Metric.html | 4 ++-- docs/index.html | 12 ++++++++---- docs/modules/_internal_.html | 12 ++++++------ docs/types/IIIFContentHandlerConfig.html | 2 +- docs/types/_internal_.AVCenterPanel.html | 2 +- docs/types/_internal_.AVCenterPanelContent.html | 2 +- docs/types/_internal_.AVCenterPanelOptions.html | 2 +- docs/types/_internal_.AVDownloadDialogue.html | 2 +- docs/types/_internal_.AVDownloadDialogueContent.html | 2 +- docs/types/_internal_.AVDownloadDialogueOptions.html | 2 +- docs/types/_internal_.AVSettingsDialogue.html | 2 +- docs/types/_internal_.AVSettingsDialogueContent.html | 2 +- docs/types/_internal_.AVSettingsDialogueOptions.html | 2 +- docs/types/_internal_.AVShareDialogue.html | 2 +- docs/types/_internal_.AVShareDialogueContent.html | 2 +- docs/types/_internal_.AVShareDialogueOptions.html | 2 +- docs/types/_internal_.AlephCenterPanel.html | 2 +- docs/types/_internal_.AlephCenterPanelContent.html | 2 +- docs/types/_internal_.AlephCenterPanelOptions.html | 2 +- docs/types/_internal_.AlephDownloadDialogue.html | 2 +- .../_internal_.AlephDownloadDialogueContent.html | 2 +- .../_internal_.AlephDownloadDialogueOptions.html | 2 +- docs/types/_internal_.AlephLeftPanel.html | 2 +- docs/types/_internal_.AlephLeftPanelContent.html | 2 +- docs/types/_internal_.AlephLeftPanelOptions.html | 2 +- docs/types/_internal_.AlephSettingsDialogue.html | 2 +- .../_internal_.AlephSettingsDialogueContent.html | 2 +- .../_internal_.AlephSettingsDialogueOptions.html | 2 +- docs/types/_internal_.AlephShareDialogue.html | 2 +- docs/types/_internal_.AlephShareDialogueContent.html | 2 +- docs/types/_internal_.AlephShareDialogueOptions.html | 2 +- docs/types/_internal_.AuthDialogue.html | 2 +- docs/types/_internal_.AuthDialogueContent.html | 2 +- docs/types/_internal_.AuthDialogueOptions.html | 2 +- docs/types/_internal_.BaseConfig.html | 2 +- docs/types/_internal_.CenterPanel.html | 2 +- docs/types/_internal_.CenterPanelContent.html | 2 +- docs/types/_internal_.CenterPanelOptions.html | 2 +- docs/types/_internal_.ClickThroughDialogue.html | 2 +- .../_internal_.ClickThroughDialogueContent.html | 2 +- .../_internal_.ClickThroughDialogueOptions.html | 2 +- docs/types/_internal_.Config-1.html | 2 +- docs/types/_internal_.Config-2.html | 2 +- docs/types/_internal_.Config-3.html | 2 +- docs/types/_internal_.Config-4.html | 2 +- docs/types/_internal_.Config-5.html | 2 +- docs/types/_internal_.Config-6.html | 2 +- docs/types/_internal_.Config-7.html | 2 +- docs/types/_internal_.Config.html | 2 +- docs/types/_internal_.Content.html | 2 +- docs/types/_internal_.ContentLeftPanel.html | 2 +- docs/types/_internal_.ContentLeftPanelContent.html | 2 +- docs/types/_internal_.ContentLeftPanelOptions.html | 2 +- docs/types/_internal_.DefaultCenterPanel.html | 1 - docs/types/_internal_.DefaultCenterPanelContent.html | 1 - docs/types/_internal_.DefaultCenterPanelOptions.html | 1 - docs/types/_internal_.DefaultDownloadDialogue.html | 2 +- .../_internal_.DefaultDownloadDialogueContent.html | 2 +- .../_internal_.DefaultDownloadDialogueOptions.html | 2 +- docs/types/_internal_.DefaultSettingsDialogue.html | 2 +- .../_internal_.DefaultSettingsDialogueContent.html | 2 +- .../_internal_.DefaultSettingsDialogueOptions.html | 2 +- docs/types/_internal_.DefaultShareDialogue.html | 2 +- .../_internal_.DefaultShareDialogueContent.html | 2 +- .../_internal_.DefaultShareDialogueOptions.html | 2 +- docs/types/_internal_.Dialogue.html | 2 +- docs/types/_internal_.DialogueContent.html | 2 +- docs/types/_internal_.DialogueOptions.html | 2 +- docs/types/_internal_.DownloadDialogue.html | 2 +- docs/types/_internal_.DownloadDialogueContent.html | 2 +- docs/types/_internal_.DownloadDialogueOptions.html | 2 +- docs/types/_internal_.EbookCenterPanel.html | 2 +- docs/types/_internal_.EbookCenterPanelContent.html | 2 +- docs/types/_internal_.EbookCenterPanelOptions.html | 2 +- docs/types/_internal_.EbookDownloadDialogue.html | 2 +- .../_internal_.EbookDownloadDialogueContent.html | 2 +- .../_internal_.EbookDownloadDialogueOptions.html | 2 +- docs/types/_internal_.EbookLeftPanel.html | 2 +- docs/types/_internal_.EbookLeftPanelContent.html | 2 +- docs/types/_internal_.EbookLeftPanelOptions.html | 2 +- docs/types/_internal_.EbookSettingsDialogue.html | 2 +- .../_internal_.EbookSettingsDialogueContent.html | 2 +- .../_internal_.EbookSettingsDialogueOptions.html | 2 +- docs/types/_internal_.EbookShareDialogue.html | 2 +- docs/types/_internal_.EbookShareDialogueContent.html | 2 +- docs/types/_internal_.EbookShareDialogueOptions.html | 2 +- docs/types/_internal_.ExpandPanel.html | 2 +- docs/types/_internal_.ExpandPanelContent.html | 2 +- docs/types/_internal_.ExpandPanelOptions.html | 2 +- docs/types/_internal_.FileLinkCenterPanel.html | 1 + .../types/_internal_.FileLinkCenterPanelContent.html | 1 + .../types/_internal_.FileLinkCenterPanelOptions.html | 1 + docs/types/_internal_.FooterPanel.html | 2 +- docs/types/_internal_.FooterPanelContent.html | 2 +- docs/types/_internal_.FooterPanelOptions.html | 2 +- docs/types/_internal_.GenericDialogue.html | 2 +- docs/types/_internal_.GenericDialogueContent.html | 2 +- docs/types/_internal_.GenericDialogueOptions.html | 2 +- docs/types/_internal_.HeaderPanel.html | 2 +- docs/types/_internal_.HeaderPanelContent.html | 2 +- docs/types/_internal_.HeaderPanelOptions.html | 2 +- docs/types/_internal_.HelpDialogue.html | 2 +- docs/types/_internal_.HelpDialogueContent.html | 2 +- docs/types/_internal_.HelpDialogueOptions.html | 2 +- docs/types/_internal_.LeftPanel.html | 2 +- docs/types/_internal_.Locale.html | 2 +- docs/types/_internal_.Localisation.html | 2 +- docs/types/_internal_.LoginDialogue.html | 2 +- docs/types/_internal_.LoginDialogueContent.html | 2 +- docs/types/_internal_.LoginDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementCenterPanel.html | 2 +- .../_internal_.MediaElementCenterPanelContent.html | 2 +- .../_internal_.MediaElementCenterPanelOptions.html | 2 +- .../_internal_.MediaElementDownloadDialogue.html | 2 +- ...nternal_.MediaElementDownloadDialogueContent.html | 2 +- ...nternal_.MediaElementDownloadDialogueOptions.html | 2 +- .../_internal_.MediaElementSettingsDialogue.html | 2 +- ...nternal_.MediaElementSettingsDialogueContent.html | 2 +- ...nternal_.MediaElementSettingsDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementShareDialogue.html | 2 +- .../_internal_.MediaElementShareDialogueContent.html | 2 +- .../_internal_.MediaElementShareDialogueOptions.html | 2 +- docs/types/_internal_.MobileFooterPanel.html | 2 +- docs/types/_internal_.MobileFooterPanelContent.html | 2 +- docs/types/_internal_.MobileFooterPanelOptions.html | 2 +- docs/types/_internal_.ModelViewerCenterPanel.html | 2 +- .../_internal_.ModelViewerCenterPanelContent.html | 2 +- .../_internal_.ModelViewerCenterPanelOptions.html | 2 +- .../_internal_.ModelViewerDownloadDialogue.html | 2 +- ...internal_.ModelViewerDownloadDialogueContent.html | 2 +- ...internal_.ModelViewerDownloadDialogueOptions.html | 2 +- .../_internal_.ModelViewerSettingsDialogue.html | 2 +- ...internal_.ModelViewerSettingsDialogueContent.html | 2 +- ...internal_.ModelViewerSettingsDialogueOptions.html | 2 +- docs/types/_internal_.ModelViewerShareDialogue.html | 2 +- .../_internal_.ModelViewerShareDialogueContent.html | 2 +- .../_internal_.ModelViewerShareDialogueOptions.html | 2 +- docs/types/_internal_.ModuleConfig.html | 2 +- docs/types/_internal_.ModuleContent.html | 2 +- docs/types/_internal_.ModuleOptions.html | 2 +- docs/types/_internal_.Modules-1.html | 2 +- docs/types/_internal_.Modules-2.html | 2 +- docs/types/_internal_.Modules-3.html | 2 +- docs/types/_internal_.Modules-4.html | 2 +- docs/types/_internal_.Modules-5.html | 2 +- docs/types/_internal_.Modules-6.html | 2 +- docs/types/_internal_.Modules-7.html | 2 +- docs/types/_internal_.Modules.html | 2 +- docs/types/_internal_.MoreInfoRightPanel.html | 2 +- docs/types/_internal_.MoreInfoRightPanelContent.html | 2 +- docs/types/_internal_.MoreInfoRightPanelOptions.html | 2 +- docs/types/_internal_.MultiSelectDialogue.html | 2 +- .../types/_internal_.MultiSelectDialogueContent.html | 2 +- .../types/_internal_.MultiSelectDialogueOptions.html | 2 +- docs/types/_internal_.OSDCenterPanel.html | 1 - docs/types/_internal_.OSDCenterPanelContent.html | 1 - docs/types/_internal_.OSDDownloadDialogue.html | 2 +- .../types/_internal_.OSDDownloadDialogueContent.html | 2 +- .../types/_internal_.OSDDownloadDialogueOptions.html | 2 +- docs/types/_internal_.OSDSettingsDialogue.html | 2 +- .../types/_internal_.OSDSettingsDialogueContent.html | 2 +- .../types/_internal_.OSDSettingsDialogueOptions.html | 2 +- docs/types/_internal_.OSDShareDialogue.html | 2 +- docs/types/_internal_.OSDShareDialogueContent.html | 2 +- docs/types/_internal_.OSDShareDialogueOptions.html | 2 +- docs/types/_internal_.OpenSeadragonCenterPanel.html | 1 + .../_internal_.OpenSeadragonCenterPanelContent.html | 1 + ... _internal_.OpenSeadragonCenterPanelOptions.html} | 4 ++-- docs/types/_internal_.Options.html | 2 +- docs/types/_internal_.PDFCenterPanel.html | 2 +- docs/types/_internal_.PDFCenterPanelContent.html | 2 +- docs/types/_internal_.PDFCenterPanelOptions.html | 2 +- docs/types/_internal_.PDFDownloadDialogue.html | 2 +- .../types/_internal_.PDFDownloadDialogueContent.html | 2 +- .../types/_internal_.PDFDownloadDialogueOptions.html | 2 +- docs/types/_internal_.PDFHeaderPanel.html | 2 +- docs/types/_internal_.PDFHeaderPanelContent.html | 2 +- docs/types/_internal_.PDFHeaderPanelOptions.html | 2 +- docs/types/_internal_.PDFSettingsDialogue.html | 2 +- .../types/_internal_.PDFSettingsDialogueContent.html | 2 +- .../types/_internal_.PDFSettingsDialogueOptions.html | 2 +- docs/types/_internal_.PDFShareDialogue.html | 2 +- docs/types/_internal_.PDFShareDialogueContent.html | 2 +- docs/types/_internal_.PDFShareDialogueOptions.html | 2 +- docs/types/_internal_.PagingHeaderPanel.html | 2 +- docs/types/_internal_.PagingHeaderPanelContent.html | 2 +- docs/types/_internal_.PagingHeaderPanelOptions.html | 2 +- docs/types/_internal_.RestrictedDialogue.html | 2 +- docs/types/_internal_.RestrictedDialogueContent.html | 2 +- docs/types/_internal_.RestrictedDialogueOptions.html | 2 +- docs/types/_internal_.SearchFooterPanel.html | 2 +- docs/types/_internal_.SearchFooterPanelContent.html | 2 +- docs/types/_internal_.SearchFooterPanelOptions.html | 2 +- docs/types/_internal_.SettingsDialogue.html | 2 +- docs/types/_internal_.SettingsDialogueContent.html | 2 +- docs/types/_internal_.SettingsDialogueOptions.html | 2 +- docs/types/_internal_.ShareDialogue.html | 2 +- docs/types/_internal_.ShareDialogueContent.html | 2 +- docs/types/_internal_.ShareDialogueOptions.html | 2 +- docs/types/_internal_.ThumbsCacheInvalidation.html | 2 +- 201 files changed, 209 insertions(+), 206 deletions(-) delete mode 100644 docs/CNAME delete mode 100644 docs/types/_internal_.DefaultCenterPanel.html delete mode 100644 docs/types/_internal_.DefaultCenterPanelContent.html delete mode 100644 docs/types/_internal_.DefaultCenterPanelOptions.html create mode 100644 docs/types/_internal_.FileLinkCenterPanel.html create mode 100644 docs/types/_internal_.FileLinkCenterPanelContent.html create mode 100644 docs/types/_internal_.FileLinkCenterPanelOptions.html delete mode 100644 docs/types/_internal_.OSDCenterPanel.html delete mode 100644 docs/types/_internal_.OSDCenterPanelContent.html create mode 100644 docs/types/_internal_.OpenSeadragonCenterPanel.html create mode 100644 docs/types/_internal_.OpenSeadragonCenterPanelContent.html rename docs/types/{_internal_.OSDCenterPanelOptions.html => _internal_.OpenSeadragonCenterPanelOptions.html} (79%) diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 59407a5c6..000000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.universalviewer.io \ No newline at end of file diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html index fef54ca72..e9ec85b47 100644 --- a/docs/classes/_internal_.Metric.html +++ b/docs/classes/_internal_.Metric.html @@ -1,4 +1,4 @@ -Metric | universalviewer

Constructors

constructor +Metric | universalviewer

Constructors

Properties

Constructors

Properties

minWidth: number
type: string

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

minWidth: number
type: string

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 51f7216a2..f29c90ff6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -41,9 +41,13 @@

Un
  • Accessibility Statement
  • Feedback
  • -

    🌐 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.

    +

    🌐 Website

    Visit the UV demo page to try it out.

    + + +

    📖 Getting Started

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

    +

    Read the docs to learn about the various UV configuration options.

    💻 Contributing

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

    -

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/modules/_internal_.html b/docs/modules/_internal_.html index fa0a4989e..62b2d1fbd 100644 --- a/docs/modules/_internal_.html +++ b/docs/modules/_internal_.html @@ -49,9 +49,6 @@ ContentLeftPanel ContentLeftPanelContent ContentLeftPanelOptions -DefaultCenterPanel -DefaultCenterPanelContent -DefaultCenterPanelOptions DefaultDownloadDialogue DefaultDownloadDialogueContent DefaultDownloadDialogueOptions @@ -85,6 +82,9 @@ ExpandPanel ExpandPanelContent ExpandPanelOptions +FileLinkCenterPanel +FileLinkCenterPanelContent +FileLinkCenterPanelOptions FooterPanel FooterPanelContent FooterPanelOptions @@ -147,9 +147,6 @@ MultiSelectDialogue MultiSelectDialogueContent MultiSelectDialogueOptions -OSDCenterPanel -OSDCenterPanelContent -OSDCenterPanelOptions OSDDownloadDialogue OSDDownloadDialogueContent OSDDownloadDialogueOptions @@ -159,6 +156,9 @@ OSDShareDialogue OSDShareDialogueContent OSDShareDialogueOptions +OpenSeadragonCenterPanel +OpenSeadragonCenterPanelContent +OpenSeadragonCenterPanelOptions Options PDFCenterPanel PDFCenterPanelContent diff --git a/docs/types/IIIFContentHandlerConfig.html b/docs/types/IIIFContentHandlerConfig.html index 50ce6893d..1519b8dfa 100644 --- a/docs/types/IIIFContentHandlerConfig.html +++ b/docs/types/IIIFContentHandlerConfig.html @@ -1 +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 +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 index 1b1d0847e..dad3a7433 100644 --- a/docs/types/_internal_.AVCenterPanel.html +++ b/docs/types/_internal_.AVCenterPanel.html @@ -1 +1 @@ -AVCenterPanel | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVCenterPanel | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html index 0ac8f2bd8..62d456762 100644 --- a/docs/types/_internal_.AVCenterPanelContent.html +++ b/docs/types/_internal_.AVCenterPanelContent.html @@ -1 +1 @@ -AVCenterPanelContent | universalviewer

    Type alias AVCenterPanelContent

    AVCenterPanelContent: CenterPanelContent & {
        delimiter: string;
    }

    Type declaration

    • delimiter: string

    Generated using TypeDoc

    \ No newline at end of file +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 index f740e06af..37344d745 100644 --- a/docs/types/_internal_.AVCenterPanelOptions.html +++ b/docs/types/_internal_.AVCenterPanelOptions.html @@ -8,4 +8,4 @@
  • 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 +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html index 302da8bba..cf8ac9b53 100644 --- a/docs/types/_internal_.AVDownloadDialogue.html +++ b/docs/types/_internal_.AVDownloadDialogue.html @@ -1 +1 @@ -AVDownloadDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVDownloadDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html index 8f952011c..72e870676 100644 --- a/docs/types/_internal_.AVDownloadDialogueContent.html +++ b/docs/types/_internal_.AVDownloadDialogueContent.html @@ -1 +1 @@ -AVDownloadDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVDownloadDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html index 7970e420b..52542777f 100644 --- a/docs/types/_internal_.AVDownloadDialogueOptions.html +++ b/docs/types/_internal_.AVDownloadDialogueOptions.html @@ -1 +1 @@ -AVDownloadDialogueOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVDownloadDialogueOptions | universalviewer

    Generated using TypeDoc

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

    Generated using TypeDoc

    \ No newline at end of file +AVSettingsDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html index f49745bda..10c2b449d 100644 --- a/docs/types/_internal_.AVSettingsDialogueContent.html +++ b/docs/types/_internal_.AVSettingsDialogueContent.html @@ -1 +1 @@ -AVSettingsDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVSettingsDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html index c8332f533..d1874a8ee 100644 --- a/docs/types/_internal_.AVSettingsDialogueOptions.html +++ b/docs/types/_internal_.AVSettingsDialogueOptions.html @@ -1 +1 @@ -AVSettingsDialogueOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVSettingsDialogueOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html index 6cab0beea..3137580cb 100644 --- a/docs/types/_internal_.AVShareDialogue.html +++ b/docs/types/_internal_.AVShareDialogue.html @@ -1 +1 @@ -AVShareDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVShareDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html index 2fb070fd9..c8ff9daed 100644 --- a/docs/types/_internal_.AVShareDialogueContent.html +++ b/docs/types/_internal_.AVShareDialogueContent.html @@ -1 +1 @@ -AVShareDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVShareDialogueContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html index 4144933e9..9eb77a6e4 100644 --- a/docs/types/_internal_.AVShareDialogueOptions.html +++ b/docs/types/_internal_.AVShareDialogueOptions.html @@ -1 +1 @@ -AVShareDialogueOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AVShareDialogueOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html index c5186fe9f..1b89bfc71 100644 --- a/docs/types/_internal_.AlephCenterPanel.html +++ b/docs/types/_internal_.AlephCenterPanel.html @@ -1 +1 @@ -AlephCenterPanel | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AlephCenterPanel | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html index 31b4bf4c5..71b2e3001 100644 --- a/docs/types/_internal_.AlephCenterPanelContent.html +++ b/docs/types/_internal_.AlephCenterPanelContent.html @@ -1 +1 @@ -AlephCenterPanelContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AlephCenterPanelContent | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html index 7c9959fe2..de23fd3b9 100644 --- a/docs/types/_internal_.AlephCenterPanelOptions.html +++ b/docs/types/_internal_.AlephCenterPanelOptions.html @@ -1 +1 @@ -AlephCenterPanelOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AlephCenterPanelOptions | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html index 5902b20ef..b3ec459fa 100644 --- a/docs/types/_internal_.AlephDownloadDialogue.html +++ b/docs/types/_internal_.AlephDownloadDialogue.html @@ -1 +1 @@ -AlephDownloadDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file +AlephDownloadDialogue | universalviewer

    Generated using TypeDoc

    \ No newline at end of file diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html index 03c2de06f..b1d82eeea 100644 --- a/docs/types/_internal_.AlephDownloadDialogueContent.html +++ b/docs/types/_internal_.AlephDownloadDialogueContent.html @@ -1 +1 @@ -AlephDownloadDialogueContent | universalviewer

    Type alias AlephDownloadDialogueContent

    AlephDownloadDialogueContent: DownloadDialogueContent & {}

    Type declaration

      Generated using TypeDoc

      \ No newline at end of file +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 index 23ae80386..86678e2a3 100644 --- a/docs/types/_internal_.AlephDownloadDialogueOptions.html +++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html @@ -1 +1 @@ -AlephDownloadDialogueOptions | universalviewer

        Type alias AlephDownloadDialogueOptions

        AlephDownloadDialogueOptions: DownloadDialogueOptions & {}

        Type declaration

          Generated using TypeDoc

          \ No newline at end of file +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 index c600d9374..3bddb4f07 100644 --- a/docs/types/_internal_.AlephLeftPanel.html +++ b/docs/types/_internal_.AlephLeftPanel.html @@ -1 +1 @@ -AlephLeftPanel | universalviewer

            Generated using TypeDoc

            \ No newline at end of file +AlephLeftPanel | universalviewer

            Generated using TypeDoc

            \ No newline at end of file diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html index b2b4217da..3670ea956 100644 --- a/docs/types/_internal_.AlephLeftPanelContent.html +++ b/docs/types/_internal_.AlephLeftPanelContent.html @@ -1 +1 @@ -AlephLeftPanelContent | universalviewer

            Type alias AlephLeftPanelContent

            AlephLeftPanelContent: ExpandPanelContent & {
                title: string;
            }

            Type declaration

            • title: string

            Generated using TypeDoc

            \ No newline at end of file +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 index 009fa7731..a788813d8 100644 --- a/docs/types/_internal_.AlephLeftPanelOptions.html +++ b/docs/types/_internal_.AlephLeftPanelOptions.html @@ -2,4 +2,4 @@
          • 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 +

            Generated using TypeDoc

            \ No newline at end of file diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html index 29bee72f6..df96c4afb 100644 --- a/docs/types/_internal_.AlephSettingsDialogue.html +++ b/docs/types/_internal_.AlephSettingsDialogue.html @@ -1 +1 @@ -AlephSettingsDialogue | universalviewer

            Generated using TypeDoc

            \ No newline at end of file +AlephSettingsDialogue | universalviewer

            Generated using TypeDoc

            \ No newline at end of file diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html index bb8de0250..807fcb0a9 100644 --- a/docs/types/_internal_.AlephSettingsDialogueContent.html +++ b/docs/types/_internal_.AlephSettingsDialogueContent.html @@ -1 +1 @@ -AlephSettingsDialogueContent | universalviewer

            Type alias AlephSettingsDialogueContent

            AlephSettingsDialogueContent: SettingsDialogueContent & {}

            Type declaration

              Generated using TypeDoc

              \ No newline at end of file +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 index eb6b6524b..472b8d2c4 100644 --- a/docs/types/_internal_.AlephSettingsDialogueOptions.html +++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html @@ -1 +1 @@ -AlephSettingsDialogueOptions | universalviewer

                Type alias AlephSettingsDialogueOptions

                AlephSettingsDialogueOptions: SettingsDialogueOptions & {}

                Type declaration

                  Generated using TypeDoc

                  \ No newline at end of file +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 index 559fdc540..2843d7997 100644 --- a/docs/types/_internal_.AlephShareDialogue.html +++ b/docs/types/_internal_.AlephShareDialogue.html @@ -1 +1 @@ -AlephShareDialogue | universalviewer

                    Generated using TypeDoc

                    \ No newline at end of file +AlephShareDialogue | universalviewer

                    Generated using TypeDoc

                    \ No newline at end of file diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html index 1c83856f2..7450a58e1 100644 --- a/docs/types/_internal_.AlephShareDialogueContent.html +++ b/docs/types/_internal_.AlephShareDialogueContent.html @@ -1 +1 @@ -AlephShareDialogueContent | universalviewer

                    Generated using TypeDoc

                    \ No newline at end of file +AlephShareDialogueContent | universalviewer

                    Generated using TypeDoc

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

                    Generated using TypeDoc

                    \ No newline at end of file +AlephShareDialogueOptions | universalviewer

                    Generated using TypeDoc

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

                    Type declaration

                    Generated using TypeDoc

                    \ No newline at end of file +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 index 06620569c..e41af8b12 100644 --- a/docs/types/_internal_.AuthDialogueContent.html +++ b/docs/types/_internal_.AuthDialogueContent.html @@ -1 +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 +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 index bc9e23363..288fd845c 100644 --- a/docs/types/_internal_.AuthDialogueOptions.html +++ b/docs/types/_internal_.AuthDialogueOptions.html @@ -1 +1 @@ -AuthDialogueOptions | universalviewer

                    Type alias AuthDialogueOptions

                    AuthDialogueOptions: DialogueOptions & {}

                    Type declaration

                      Generated using TypeDoc

                      \ No newline at end of file +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 index e88bfd94f..c272ae2ba 100644 --- a/docs/types/_internal_.BaseConfig.html +++ b/docs/types/_internal_.BaseConfig.html @@ -1 +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 +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;
                                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 index 4f9b5ee03..7481e1a15 100644 --- a/docs/types/_internal_.CenterPanel.html +++ b/docs/types/_internal_.CenterPanel.html @@ -1 +1 @@ -CenterPanel | universalviewer
                        CenterPanel: ModuleConfig & {
                            content: CenterPanelContent;
                            options: CenterPanelOptions;
                        }

                        Type declaration

                        Generated using TypeDoc

                        \ No newline at end of file +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 index 6198bd36c..1e2871abc 100644 --- a/docs/types/_internal_.CenterPanelContent.html +++ b/docs/types/_internal_.CenterPanelContent.html @@ -1 +1 @@ -CenterPanelContent | universalviewer

                        Type alias CenterPanelContent

                        CenterPanelContent: {
                            attribution: string;
                        }

                        Type declaration

                        • attribution: string

                        Generated using TypeDoc

                        \ No newline at end of file +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 index 36332619b..7238c2c0a 100644 --- a/docs/types/_internal_.CenterPanelOptions.html +++ b/docs/types/_internal_.CenterPanelOptions.html @@ -1 +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 +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 index 0381f68cf..70244ab66 100644 --- a/docs/types/_internal_.ClickThroughDialogue.html +++ b/docs/types/_internal_.ClickThroughDialogue.html @@ -1 +1 @@ -ClickThroughDialogue | universalviewer

                        Type alias ClickThroughDialogue

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

                        Generated using TypeDoc

                        \ No newline at end of file +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 index 5bf2447a9..3b4d83e51 100644 --- a/docs/types/_internal_.ClickThroughDialogueContent.html +++ b/docs/types/_internal_.ClickThroughDialogueContent.html @@ -1 +1 @@ -ClickThroughDialogueContent | universalviewer

                        Type alias ClickThroughDialogueContent

                        ClickThroughDialogueContent: DialogueContent & {
                            viewTerms: string;
                        }

                        Type declaration

                        • viewTerms: string

                        Generated using TypeDoc

                        \ No newline at end of file +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 index 20ed4edb9..61289faf9 100644 --- a/docs/types/_internal_.ClickThroughDialogueOptions.html +++ b/docs/types/_internal_.ClickThroughDialogueOptions.html @@ -1 +1 @@ -ClickThroughDialogueOptions | universalviewer

                        Type alias ClickThroughDialogueOptions

                        ClickThroughDialogueOptions: DialogueOptions & {}

                        Type declaration

                          Generated using TypeDoc

                          \ No newline at end of file +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 index b3cfa6a77..5ea2e2c36 100644 --- a/docs/types/_internal_.Config-1.html +++ b/docs/types/_internal_.Config-1.html @@ -1 +1 @@ -Config | universalviewer
                            Config: BaseConfig & {
                                modules: Modules;
                            }

                            Type declaration

                            Generated using TypeDoc

                            \ No newline at end of file +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 index 9cba2f6a6..3e47348c6 100644 --- a/docs/types/_internal_.Config-2.html +++ b/docs/types/_internal_.Config-2.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            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 index 32695a9ff..6be698012 100644 --- a/docs/types/_internal_.Config-3.html +++ b/docs/types/_internal_.Config-3.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            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 index 6ab41b7fc..10f1a678d 100644 --- a/docs/types/_internal_.Config-4.html +++ b/docs/types/_internal_.Config-4.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            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 index cec1001ee..f4b3db679 100644 --- a/docs/types/_internal_.Config-5.html +++ b/docs/types/_internal_.Config-5.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            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 index 3f61fa33b..c326b5799 100644 --- a/docs/types/_internal_.Config-6.html +++ b/docs/types/_internal_.Config-6.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            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 index 44dc9594f..e7fbf07cd 100644 --- a/docs/types/_internal_.Config-7.html +++ b/docs/types/_internal_.Config-7.html @@ -1 +1 @@ -Config | universalviewer
                            Config: BaseConfig & {
                                modules: Modules;
                            }

                            Type declaration

                            Generated using TypeDoc

                            \ No newline at end of file +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 index 8002d22b9..117f97d45 100644 --- a/docs/types/_internal_.Config.html +++ b/docs/types/_internal_.Config.html @@ -1 +1 @@ -Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +Config | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html index 7c78ef60e..44b10b4db 100644 --- a/docs/types/_internal_.Content.html +++ b/docs/types/_internal_.Content.html @@ -1 +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 +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 index 242ad0a4e..8aef5f98a 100644 --- a/docs/types/_internal_.ContentLeftPanel.html +++ b/docs/types/_internal_.ContentLeftPanel.html @@ -1 +1 @@ -ContentLeftPanel | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +ContentLeftPanel | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html index fb8461985..444e0aa74 100644 --- a/docs/types/_internal_.ContentLeftPanelContent.html +++ b/docs/types/_internal_.ContentLeftPanelContent.html @@ -1 +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 +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 index 6316aba6d..606ac841b 100644 --- a/docs/types/_internal_.ContentLeftPanelOptions.html +++ b/docs/types/_internal_.ContentLeftPanelOptions.html @@ -21,4 +21,4 @@
                          • 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 +

                            Generated using TypeDoc

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

                            Generated using TypeDoc

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

                            Generated using TypeDoc

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

                            Generated using TypeDoc

                            \ No newline at end of file diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html index 9dd6184d7..cd1492fbe 100644 --- a/docs/types/_internal_.DefaultDownloadDialogue.html +++ b/docs/types/_internal_.DefaultDownloadDialogue.html @@ -1 +1 @@ -DefaultDownloadDialogue | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file +DefaultDownloadDialogue | universalviewer

                            Generated using TypeDoc

                            \ No newline at end of file diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html index 5b67e4d60..686f6ccd1 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueContent.html +++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html @@ -1 +1 @@ -DefaultDownloadDialogueContent | universalviewer

                            Type alias DefaultDownloadDialogueContent

                            DefaultDownloadDialogueContent: DownloadDialogueContent & {}

                            Type declaration

                              Generated using TypeDoc

                              \ No newline at end of file +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 index d73d32e79..e17ae086e 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueOptions.html +++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html @@ -1 +1 @@ -DefaultDownloadDialogueOptions | universalviewer

                                Type alias DefaultDownloadDialogueOptions

                                DefaultDownloadDialogueOptions: DownloadDialogueOptions & {}

                                Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +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 index 7e703832d..30e0157fc 100644 --- a/docs/types/_internal_.DefaultSettingsDialogue.html +++ b/docs/types/_internal_.DefaultSettingsDialogue.html @@ -1 +1 @@ -DefaultSettingsDialogue | universalviewer

                                    Generated using TypeDoc

                                    \ No newline at end of file +DefaultSettingsDialogue | universalviewer

                                    Generated using TypeDoc

                                    \ No newline at end of file diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html index eb1f13fd0..c28068ff1 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueContent.html +++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html @@ -1 +1 @@ -DefaultSettingsDialogueContent | universalviewer

                                    Type alias DefaultSettingsDialogueContent

                                    DefaultSettingsDialogueContent: SettingsDialogueContent & {}

                                    Type declaration

                                      Generated using TypeDoc

                                      \ No newline at end of file +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 index c3fab4664..ed4e4718b 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueOptions.html +++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html @@ -1 +1 @@ -DefaultSettingsDialogueOptions | universalviewer

                                        Type alias DefaultSettingsDialogueOptions

                                        DefaultSettingsDialogueOptions: SettingsDialogueOptions & {}

                                        Type declaration

                                          Generated using TypeDoc

                                          \ No newline at end of file +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 index 2d4bb0d4f..49fc26a7e 100644 --- a/docs/types/_internal_.DefaultShareDialogue.html +++ b/docs/types/_internal_.DefaultShareDialogue.html @@ -1 +1 @@ -DefaultShareDialogue | universalviewer

                                            Generated using TypeDoc

                                            \ No newline at end of file +DefaultShareDialogue | universalviewer

                                            Generated using TypeDoc

                                            \ No newline at end of file diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html index 65ee7f5be..fb0ff9c04 100644 --- a/docs/types/_internal_.DefaultShareDialogueContent.html +++ b/docs/types/_internal_.DefaultShareDialogueContent.html @@ -1 +1 @@ -DefaultShareDialogueContent | universalviewer

                                            Generated using TypeDoc

                                            \ No newline at end of file +DefaultShareDialogueContent | universalviewer

                                            Generated using TypeDoc

                                            \ No newline at end of file diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html index 2501143d1..80f8f1403 100644 --- a/docs/types/_internal_.DefaultShareDialogueOptions.html +++ b/docs/types/_internal_.DefaultShareDialogueOptions.html @@ -1 +1 @@ -DefaultShareDialogueOptions | universalviewer

                                            Generated using TypeDoc

                                            \ No newline at end of file +DefaultShareDialogueOptions | universalviewer

                                            Generated using TypeDoc

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

                                            Type declaration

                                            Generated using TypeDoc

                                            \ No newline at end of file +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 index 57772ddb5..d298fe919 100644 --- a/docs/types/_internal_.DialogueContent.html +++ b/docs/types/_internal_.DialogueContent.html @@ -1 +1 @@ -DialogueContent | universalviewer
                                            DialogueContent: {
                                                close: string;
                                            }

                                            Type declaration

                                            • close: string

                                            Generated using TypeDoc

                                            \ No newline at end of file +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 index 6e874fb5e..127c000ab 100644 --- a/docs/types/_internal_.DialogueOptions.html +++ b/docs/types/_internal_.DialogueOptions.html @@ -1 +1 @@ -DialogueOptions | universalviewer
                                            DialogueOptions: {
                                                topCloseButtonEnabled: boolean;
                                            }

                                            Type declaration

                                            • topCloseButtonEnabled: boolean

                                            Generated using TypeDoc

                                            \ No newline at end of file +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 index ddc3ee481..bad1b917e 100644 --- a/docs/types/_internal_.DownloadDialogue.html +++ b/docs/types/_internal_.DownloadDialogue.html @@ -1 +1 @@ -DownloadDialogue | universalviewer
                                            DownloadDialogue: ModuleConfig & {
                                                content: DownloadDialogueContent;
                                                options: DownloadDialogueOptions;
                                            }

                                            Type declaration

                                            Generated using TypeDoc

                                            \ No newline at end of file +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 index b755c3d33..7cf11d323 100644 --- a/docs/types/_internal_.DownloadDialogueContent.html +++ b/docs/types/_internal_.DownloadDialogueContent.html @@ -1 +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 +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 index 56b3e751c..13bc32e7f 100644 --- a/docs/types/_internal_.DownloadDialogueOptions.html +++ b/docs/types/_internal_.DownloadDialogueOptions.html @@ -1 +1 @@ -DownloadDialogueOptions | universalviewer

                                            Type alias DownloadDialogueOptions

                                            DownloadDialogueOptions: DialogueOptions & {}

                                            Type declaration

                                              Generated using TypeDoc

                                              \ No newline at end of file +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 index 2040188ac..bdd40ca80 100644 --- a/docs/types/_internal_.EbookCenterPanel.html +++ b/docs/types/_internal_.EbookCenterPanel.html @@ -1 +1 @@ -EbookCenterPanel | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file +EbookCenterPanel | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html index 242ab5adf..e40c23562 100644 --- a/docs/types/_internal_.EbookCenterPanelContent.html +++ b/docs/types/_internal_.EbookCenterPanelContent.html @@ -1 +1 @@ -EbookCenterPanelContent | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file +EbookCenterPanelContent | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html index dc194dba9..4c2741917 100644 --- a/docs/types/_internal_.EbookCenterPanelOptions.html +++ b/docs/types/_internal_.EbookCenterPanelOptions.html @@ -1 +1 @@ -EbookCenterPanelOptions | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file +EbookCenterPanelOptions | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html index ec987017e..dbd3848bd 100644 --- a/docs/types/_internal_.EbookDownloadDialogue.html +++ b/docs/types/_internal_.EbookDownloadDialogue.html @@ -1 +1 @@ -EbookDownloadDialogue | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file +EbookDownloadDialogue | universalviewer

                                                Generated using TypeDoc

                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html index 5ce3da22f..dedffa0b2 100644 --- a/docs/types/_internal_.EbookDownloadDialogueContent.html +++ b/docs/types/_internal_.EbookDownloadDialogueContent.html @@ -1 +1 @@ -EbookDownloadDialogueContent | universalviewer

                                                Type alias EbookDownloadDialogueContent

                                                EbookDownloadDialogueContent: DownloadDialogueContent & {}

                                                Type declaration

                                                  Generated using TypeDoc

                                                  \ No newline at end of file +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 index 209e6dc9f..c588585a4 100644 --- a/docs/types/_internal_.EbookDownloadDialogueOptions.html +++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html @@ -1 +1 @@ -EbookDownloadDialogueOptions | universalviewer

                                                    Type alias EbookDownloadDialogueOptions

                                                    EbookDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                    Type declaration

                                                      Generated using TypeDoc

                                                      \ No newline at end of file +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 index 8e8884044..3ac6f4232 100644 --- a/docs/types/_internal_.EbookLeftPanel.html +++ b/docs/types/_internal_.EbookLeftPanel.html @@ -1 +1 @@ -EbookLeftPanel | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookLeftPanel | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html index c5fb25e76..b13a158d0 100644 --- a/docs/types/_internal_.EbookLeftPanelContent.html +++ b/docs/types/_internal_.EbookLeftPanelContent.html @@ -1 +1 @@ -EbookLeftPanelContent | universalviewer

                                                        Type alias EbookLeftPanelContent

                                                        EbookLeftPanelContent: ExpandPanelContent & {
                                                            title: string;
                                                        }

                                                        Type declaration

                                                        • title: string

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +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 index a79041be9..d361e0bd1 100644 --- a/docs/types/_internal_.EbookLeftPanelOptions.html +++ b/docs/types/_internal_.EbookLeftPanelOptions.html @@ -1 +1 @@ -EbookLeftPanelOptions | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookLeftPanelOptions | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html index 5578e84f9..40a5d0f9e 100644 --- a/docs/types/_internal_.EbookSettingsDialogue.html +++ b/docs/types/_internal_.EbookSettingsDialogue.html @@ -1 +1 @@ -EbookSettingsDialogue | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookSettingsDialogue | universalviewer

                                                        Generated using TypeDoc

                                                        \ No newline at end of file diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html index f64b237f8..a2ad9c53e 100644 --- a/docs/types/_internal_.EbookSettingsDialogueContent.html +++ b/docs/types/_internal_.EbookSettingsDialogueContent.html @@ -1 +1 @@ -EbookSettingsDialogueContent | universalviewer

                                                        Type alias EbookSettingsDialogueContent

                                                        EbookSettingsDialogueContent: SettingsDialogueContent & {}

                                                        Type declaration

                                                          Generated using TypeDoc

                                                          \ No newline at end of file +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 index 6a960d6d2..d46eacb57 100644 --- a/docs/types/_internal_.EbookSettingsDialogueOptions.html +++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html @@ -1 +1 @@ -EbookSettingsDialogueOptions | universalviewer

                                                            Type alias EbookSettingsDialogueOptions

                                                            EbookSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                            Type declaration

                                                              Generated using TypeDoc

                                                              \ No newline at end of file +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 index 50afc6cd3..f0535e1ca 100644 --- a/docs/types/_internal_.EbookShareDialogue.html +++ b/docs/types/_internal_.EbookShareDialogue.html @@ -1 +1 @@ -EbookShareDialogue | universalviewer

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +EbookShareDialogue | universalviewer

                                                                Generated using TypeDoc

                                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html index 8e6a792b6..1de7a909c 100644 --- a/docs/types/_internal_.EbookShareDialogueContent.html +++ b/docs/types/_internal_.EbookShareDialogueContent.html @@ -1 +1 @@ -EbookShareDialogueContent | universalviewer

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +EbookShareDialogueContent | universalviewer

                                                                Generated using TypeDoc

                                                                \ No newline at end of file diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html index f44cd54d3..543b5cd3b 100644 --- a/docs/types/_internal_.EbookShareDialogueOptions.html +++ b/docs/types/_internal_.EbookShareDialogueOptions.html @@ -1 +1 @@ -EbookShareDialogueOptions | universalviewer

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +EbookShareDialogueOptions | universalviewer

                                                                Generated using TypeDoc

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

                                                                Type declaration

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +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 index c9ed5c34a..f55ed4875 100644 --- a/docs/types/_internal_.ExpandPanelContent.html +++ b/docs/types/_internal_.ExpandPanelContent.html @@ -1 +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 +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 index 5470dc971..28d4aa69e 100644 --- a/docs/types/_internal_.ExpandPanelOptions.html +++ b/docs/types/_internal_.ExpandPanelOptions.html @@ -3,4 +3,4 @@
                                                              • 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 +

                                                                Generated using TypeDoc

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

                                                                Generated using TypeDoc

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

                                                                Generated using TypeDoc

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

                                                                Generated using TypeDoc

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

                                                                Type declaration

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +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 index 25aea25e2..dccbb603d 100644 --- a/docs/types/_internal_.FooterPanelContent.html +++ b/docs/types/_internal_.FooterPanelContent.html @@ -1 +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 +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 index 6f1d33782..f5ce498ea 100644 --- a/docs/types/_internal_.FooterPanelOptions.html +++ b/docs/types/_internal_.FooterPanelOptions.html @@ -8,4 +8,4 @@
                                                              • 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 +

                                                                Generated using TypeDoc

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

                                                                Type declaration

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +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 index a2fa021bd..d3f33b92d 100644 --- a/docs/types/_internal_.GenericDialogueContent.html +++ b/docs/types/_internal_.GenericDialogueContent.html @@ -1 +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 +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 index 206958b2f..347c2aa77 100644 --- a/docs/types/_internal_.GenericDialogueOptions.html +++ b/docs/types/_internal_.GenericDialogueOptions.html @@ -1 +1 @@ -GenericDialogueOptions | universalviewer

                                                                Type alias GenericDialogueOptions

                                                                GenericDialogueOptions: DialogueOptions & {}

                                                                Type declaration

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +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 index 69017f783..25de9c440 100644 --- a/docs/types/_internal_.HeaderPanel.html +++ b/docs/types/_internal_.HeaderPanel.html @@ -1 +1 @@ -HeaderPanel | universalviewer
                                                                    HeaderPanel: ModuleConfig & {
                                                                        content: HeaderPanelContent;
                                                                        options: HeaderPanelOptions;
                                                                    }

                                                                    Type declaration

                                                                    Generated using TypeDoc

                                                                    \ No newline at end of file +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 index 24f10b022..b071ca671 100644 --- a/docs/types/_internal_.HeaderPanelContent.html +++ b/docs/types/_internal_.HeaderPanelContent.html @@ -1 +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 +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 index 58350d0f2..4ece92b51 100644 --- a/docs/types/_internal_.HeaderPanelOptions.html +++ b/docs/types/_internal_.HeaderPanelOptions.html @@ -1,4 +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 +

                                                                    Generated using TypeDoc

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

                                                                    Type declaration

                                                                    Generated using TypeDoc

                                                                    \ No newline at end of file +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 index e25b6ab9b..2848d7c4d 100644 --- a/docs/types/_internal_.HelpDialogueContent.html +++ b/docs/types/_internal_.HelpDialogueContent.html @@ -1 +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 +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 index 1b505c1bc..5e06dd9bd 100644 --- a/docs/types/_internal_.HelpDialogueOptions.html +++ b/docs/types/_internal_.HelpDialogueOptions.html @@ -1 +1 @@ -HelpDialogueOptions | universalviewer

                                                                    Type alias HelpDialogueOptions

                                                                    HelpDialogueOptions: DialogueOptions & {}

                                                                    Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +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 index 7e7f6c218..d8d9e9ccb 100644 --- a/docs/types/_internal_.LeftPanel.html +++ b/docs/types/_internal_.LeftPanel.html @@ -1 +1 @@ -LeftPanel | universalviewer
                                                                        LeftPanel: ExpandPanel & {}

                                                                        Type declaration

                                                                          Generated using TypeDoc

                                                                          \ No newline at end of file +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 index 83f963334..b3693e2c5 100644 --- a/docs/types/_internal_.Locale.html +++ b/docs/types/_internal_.Locale.html @@ -1 +1 @@ -Locale | universalviewer
                                                                            Locale: {
                                                                                label: string;
                                                                                name: string;
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • name: string

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +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 index 0ee7f0e52..95ce2bf24 100644 --- a/docs/types/_internal_.Localisation.html +++ b/docs/types/_internal_.Localisation.html @@ -1 +1 @@ -Localisation | universalviewer
                                                                            Localisation: {
                                                                                label: string;
                                                                                locales: Locale[];
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • locales: Locale[]

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +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 index b6116749f..2030887d0 100644 --- a/docs/types/_internal_.LoginDialogue.html +++ b/docs/types/_internal_.LoginDialogue.html @@ -1 +1 @@ -LoginDialogue | universalviewer
                                                                            LoginDialogue: ModuleConfig & {
                                                                                content: LoginDialogueContent;
                                                                                options: LoginDialogueOptions;
                                                                            }

                                                                            Type declaration

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +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 index 505376d39..9a70868d5 100644 --- a/docs/types/_internal_.LoginDialogueContent.html +++ b/docs/types/_internal_.LoginDialogueContent.html @@ -1 +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 +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 index 21b8e2c68..c9d93a589 100644 --- a/docs/types/_internal_.LoginDialogueOptions.html +++ b/docs/types/_internal_.LoginDialogueOptions.html @@ -1 +1 @@ -LoginDialogueOptions | universalviewer

                                                                            Type alias LoginDialogueOptions

                                                                            LoginDialogueOptions: DialogueOptions & {}

                                                                            Type declaration

                                                                              Generated using TypeDoc

                                                                              \ No newline at end of file +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 index 48b11e1cb..b82e454c8 100644 --- a/docs/types/_internal_.MediaElementCenterPanel.html +++ b/docs/types/_internal_.MediaElementCenterPanel.html @@ -1 +1 @@ -MediaElementCenterPanel | universalviewer

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file +MediaElementCenterPanel | universalviewer

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html index 23ca16fa6..3ab5f581b 100644 --- a/docs/types/_internal_.MediaElementCenterPanelContent.html +++ b/docs/types/_internal_.MediaElementCenterPanelContent.html @@ -1 +1 @@ -MediaElementCenterPanelContent | universalviewer

                                                                                Type alias MediaElementCenterPanelContent

                                                                                MediaElementCenterPanelContent: CenterPanelContent & {}

                                                                                Type declaration

                                                                                  Generated using TypeDoc

                                                                                  \ No newline at end of file +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 index a9382021f..06463fd57 100644 --- a/docs/types/_internal_.MediaElementCenterPanelOptions.html +++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html @@ -1 +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 +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 index 65ce28ae7..66517ae98 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogue.html +++ b/docs/types/_internal_.MediaElementDownloadDialogue.html @@ -1 +1 @@ -MediaElementDownloadDialogue | universalviewer

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file +MediaElementDownloadDialogue | universalviewer

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html index 1ef4a0585..36981eab9 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueContent.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html @@ -1 +1 @@ -MediaElementDownloadDialogueContent | universalviewer

                                                                                    Type alias MediaElementDownloadDialogueContent

                                                                                    MediaElementDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                    Type declaration

                                                                                      Generated using TypeDoc

                                                                                      \ No newline at end of file +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 index 9cc6169e5..d8e3b450e 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html @@ -1 +1 @@ -MediaElementDownloadDialogueOptions | universalviewer

                                                                                        Type alias MediaElementDownloadDialogueOptions

                                                                                        MediaElementDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                        Type declaration

                                                                                          Generated using TypeDoc

                                                                                          \ No newline at end of file +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 index c10318195..edb8f5603 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogue.html +++ b/docs/types/_internal_.MediaElementSettingsDialogue.html @@ -1 +1 @@ -MediaElementSettingsDialogue | universalviewer

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file +MediaElementSettingsDialogue | universalviewer

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html index 32e6cedcc..59bfa6016 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueContent.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html @@ -1 +1 @@ -MediaElementSettingsDialogueContent | universalviewer

                                                                                            Type alias MediaElementSettingsDialogueContent

                                                                                            MediaElementSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                            Type declaration

                                                                                              Generated using TypeDoc

                                                                                              \ No newline at end of file +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 index b5aaa0d9f..c15559ef9 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html @@ -1 +1 @@ -MediaElementSettingsDialogueOptions | universalviewer

                                                                                                Type alias MediaElementSettingsDialogueOptions

                                                                                                MediaElementSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                Type declaration

                                                                                                  Generated using TypeDoc

                                                                                                  \ No newline at end of file +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 index b52473755..4ebc5a42a 100644 --- a/docs/types/_internal_.MediaElementShareDialogue.html +++ b/docs/types/_internal_.MediaElementShareDialogue.html @@ -1 +1 @@ -MediaElementShareDialogue | universalviewer

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file +MediaElementShareDialogue | universalviewer

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html index e8c7fe815..17ebbc87d 100644 --- a/docs/types/_internal_.MediaElementShareDialogueContent.html +++ b/docs/types/_internal_.MediaElementShareDialogueContent.html @@ -1 +1 @@ -MediaElementShareDialogueContent | universalviewer

                                                                                                    Type alias MediaElementShareDialogueContent

                                                                                                    MediaElementShareDialogueContent: ShareDialogueContent & {}

                                                                                                    Type declaration

                                                                                                      Generated using TypeDoc

                                                                                                      \ No newline at end of file +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 index 5cb2b3ece..14e929f7c 100644 --- a/docs/types/_internal_.MediaElementShareDialogueOptions.html +++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html @@ -1 +1 @@ -MediaElementShareDialogueOptions | universalviewer

                                                                                                        Type alias MediaElementShareDialogueOptions

                                                                                                        MediaElementShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                        Type declaration

                                                                                                          Generated using TypeDoc

                                                                                                          \ No newline at end of file +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 index 6f6ec8b29..7597f42e6 100644 --- a/docs/types/_internal_.MobileFooterPanel.html +++ b/docs/types/_internal_.MobileFooterPanel.html @@ -1 +1 @@ -MobileFooterPanel | universalviewer

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file +MobileFooterPanel | universalviewer

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html index 0a9091133..ee7d7cbb7 100644 --- a/docs/types/_internal_.MobileFooterPanelContent.html +++ b/docs/types/_internal_.MobileFooterPanelContent.html @@ -1 +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 +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 index ad0c54baa..8178c0a78 100644 --- a/docs/types/_internal_.MobileFooterPanelOptions.html +++ b/docs/types/_internal_.MobileFooterPanelOptions.html @@ -1 +1 @@ -MobileFooterPanelOptions | universalviewer

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file +MobileFooterPanelOptions | universalviewer

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html index 7f5f1e736..00a178a14 100644 --- a/docs/types/_internal_.ModelViewerCenterPanel.html +++ b/docs/types/_internal_.ModelViewerCenterPanel.html @@ -1 +1 @@ -ModelViewerCenterPanel | universalviewer

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file +ModelViewerCenterPanel | universalviewer

                                                                                                            Generated using TypeDoc

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

                                                                                                            Type alias ModelViewerCenterPanelContent

                                                                                                            ModelViewerCenterPanelContent: CenterPanelContent & {}

                                                                                                            Type declaration

                                                                                                              Generated using TypeDoc

                                                                                                              \ No newline at end of file +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 index 95932fcd5..66f8c26fd 100644 --- a/docs/types/_internal_.ModelViewerCenterPanelOptions.html +++ b/docs/types/_internal_.ModelViewerCenterPanelOptions.html @@ -2,4 +2,4 @@
                                                                                                              • 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 +

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html index 79a0541d6..aa1e38755 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogue.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html @@ -1 +1 @@ -ModelViewerDownloadDialogue | universalviewer

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +ModelViewerDownloadDialogue | universalviewer

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html index 4ced694ad..dd40accf3 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html @@ -1 +1 @@ -ModelViewerDownloadDialogueContent | universalviewer

                                                                                                                Type alias ModelViewerDownloadDialogueContent

                                                                                                                ModelViewerDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                                                Type declaration

                                                                                                                  Generated using TypeDoc

                                                                                                                  \ No newline at end of file +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 index 532b4f46f..af4dd45d2 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html @@ -1 +1 @@ -ModelViewerDownloadDialogueOptions | universalviewer

                                                                                                                    Type alias ModelViewerDownloadDialogueOptions

                                                                                                                    ModelViewerDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                                                    Type declaration

                                                                                                                      Generated using TypeDoc

                                                                                                                      \ No newline at end of file +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 index 5565e72fe..452f0c70f 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogue.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html @@ -1 +1 @@ -ModelViewerSettingsDialogue | universalviewer

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +ModelViewerSettingsDialogue | universalviewer

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html index c3a2030fc..e9cbecee2 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html @@ -1 +1 @@ -ModelViewerSettingsDialogueContent | universalviewer

                                                                                                                        Type alias ModelViewerSettingsDialogueContent

                                                                                                                        ModelViewerSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                                        Type declaration

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file +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 index 1984fb0d4..57ffd7599 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html @@ -1 +1 @@ -ModelViewerSettingsDialogueOptions | universalviewer

                                                                                                                            Type alias ModelViewerSettingsDialogueOptions

                                                                                                                            ModelViewerSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                                            Type declaration

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file +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 index 48be31c9e..b3b221b55 100644 --- a/docs/types/_internal_.ModelViewerShareDialogue.html +++ b/docs/types/_internal_.ModelViewerShareDialogue.html @@ -1 +1 @@ -ModelViewerShareDialogue | universalviewer

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file +ModelViewerShareDialogue | universalviewer

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html index 118dfa2f0..20045559a 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueContent.html +++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html @@ -1 +1 @@ -ModelViewerShareDialogueContent | universalviewer

                                                                                                                                Type alias ModelViewerShareDialogueContent

                                                                                                                                ModelViewerShareDialogueContent: ShareDialogueContent & {}

                                                                                                                                Type declaration

                                                                                                                                  Generated using TypeDoc

                                                                                                                                  \ No newline at end of file +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 index 79a04da60..f8cab470d 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html @@ -1 +1 @@ -ModelViewerShareDialogueOptions | universalviewer

                                                                                                                                    Type alias ModelViewerShareDialogueOptions

                                                                                                                                    ModelViewerShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                                                    Type declaration

                                                                                                                                      Generated using TypeDoc

                                                                                                                                      \ No newline at end of file +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 index b2b1a6a65..53e3711ef 100644 --- a/docs/types/_internal_.ModuleConfig.html +++ b/docs/types/_internal_.ModuleConfig.html @@ -1 +1 @@ -ModuleConfig | universalviewer
                                                                                                                                        ModuleConfig: {
                                                                                                                                            content: ModuleContent;
                                                                                                                                            options: ModuleOptions;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +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 index 19b3ca26f..e5fddb450 100644 --- a/docs/types/_internal_.ModuleContent.html +++ b/docs/types/_internal_.ModuleContent.html @@ -1 +1 @@ -ModuleContent | universalviewer
                                                                                                                                        ModuleContent: {}

                                                                                                                                        Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +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 index 1ed7bebb9..cfcd37782 100644 --- a/docs/types/_internal_.ModuleOptions.html +++ b/docs/types/_internal_.ModuleOptions.html @@ -1 +1 @@ -ModuleOptions | universalviewer
                                                                                                                                            ModuleOptions: {}

                                                                                                                                            Type declaration

                                                                                                                                              Generated using TypeDoc

                                                                                                                                              \ No newline at end of file +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 index b043da04b..5d04638c2 100644 --- a/docs/types/_internal_.Modules-1.html +++ b/docs/types/_internal_.Modules-1.html @@ -1 +1 @@ -Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    centerPanel: AVCenterPanel;
                                                                                                                                                    downloadDialogue: AVDownloadDialogue;
                                                                                                                                                    settingsDialogue: AVSettingsDialogue;
                                                                                                                                                    shareDialogue: AVShareDialogue;
                                                                                                                                                }

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    avCenterPanel: 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 index 7fcd288bd..95f0fa50e 100644 --- a/docs/types/_internal_.Modules-2.html +++ b/docs/types/_internal_.Modules-2.html @@ -1 +1 @@ -Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    centerPanel: DefaultCenterPanel;
                                                                                                                                                    downloadDialogue: DefaultDownloadDialogue;
                                                                                                                                                    settingsDialogue: DefaultSettingsDialogue;
                                                                                                                                                    shareDialogue: DefaultShareDialogue;
                                                                                                                                                }

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    downloadDialogue: DefaultDownloadDialogue;
                                                                                                                                                    fileLinkCenterPanel: FileLinkCenterPanel;
                                                                                                                                                    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 index 3d4e9695c..49c7a5576 100644 --- a/docs/types/_internal_.Modules-3.html +++ b/docs/types/_internal_.Modules-3.html @@ -1 +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 +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    downloadDialogue: EbookDownloadDialogue;
                                                                                                                                                    ebookCenterPanel: EbookCenterPanel;
                                                                                                                                                    ebookLeftPanel: 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 index 3b191f4b9..99add43f1 100644 --- a/docs/types/_internal_.Modules-4.html +++ b/docs/types/_internal_.Modules-4.html @@ -1 +1 @@ -Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    centerPanel: MediaElementCenterPanel;
                                                                                                                                                    downloadDialogue: MediaElementDownloadDialogue;
                                                                                                                                                    settingsDialogue: MediaElementSettingsDialogue;
                                                                                                                                                    shareDialogue: MediaElementShareDialogue;
                                                                                                                                                }

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    downloadDialogue: MediaElementDownloadDialogue;
                                                                                                                                                    mediaelementCenterPanel: MediaElementCenterPanel;
                                                                                                                                                    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 index 51a75caae..c4e8a9484 100644 --- a/docs/types/_internal_.Modules-5.html +++ b/docs/types/_internal_.Modules-5.html @@ -1 +1 @@ -Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    centerPanel: ModelViewerCenterPanel;
                                                                                                                                                    downloadDialogue: ModelViewerDownloadDialogue;
                                                                                                                                                    settingsDialogue: ModelViewerSettingsDialogue;
                                                                                                                                                    shareDialogue: ModelViewerShareDialogue;
                                                                                                                                                }

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    downloadDialogue: ModelViewerDownloadDialogue;
                                                                                                                                                    modelViewerCenterPanel: ModelViewerCenterPanel;
                                                                                                                                                    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 index c85b06836..17dffac65 100644 --- a/docs/types/_internal_.Modules-6.html +++ b/docs/types/_internal_.Modules-6.html @@ -1 +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 +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    contentLeftPanel: ContentLeftPanel;
                                                                                                                                                    downloadDialogue: OSDDownloadDialogue;
                                                                                                                                                    mobileFooterPanel: MobileFooterPanel;
                                                                                                                                                    multiSelectDialogue: MultiSelectDialogue;
                                                                                                                                                    openSeadragonCenterPanel: OpenSeadragonCenterPanel;
                                                                                                                                                    pagingHeaderPanel: PagingHeaderPanel;
                                                                                                                                                    searchFooterPanel: SearchFooterPanel;
                                                                                                                                                    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 index 812bbcc34..1b6d91a29 100644 --- a/docs/types/_internal_.Modules-7.html +++ b/docs/types/_internal_.Modules-7.html @@ -1 +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 +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    downloadDialogue: PDFDownloadDialogue;
                                                                                                                                                    pdfCenterPanel: PDFCenterPanel;
                                                                                                                                                    pdfHeaderPanel: 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 index 55208da92..c03d58a7a 100644 --- a/docs/types/_internal_.Modules.html +++ b/docs/types/_internal_.Modules.html @@ -1 +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 +Modules | universalviewer
                                                                                                                                                Modules: {
                                                                                                                                                    alephCenterPanel: AlephCenterPanel;
                                                                                                                                                    alephLeftPanel: AlephLeftPanel;
                                                                                                                                                    downloadDialogue: AlephDownloadDialogue;
                                                                                                                                                    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 index d7e420996..5ef4649f9 100644 --- a/docs/types/_internal_.MoreInfoRightPanel.html +++ b/docs/types/_internal_.MoreInfoRightPanel.html @@ -1 +1 @@ -MoreInfoRightPanel | universalviewer

                                                                                                                                                Type alias MoreInfoRightPanel

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

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +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 index 80c319cfb..35cabc3cc 100644 --- a/docs/types/_internal_.MoreInfoRightPanelContent.html +++ b/docs/types/_internal_.MoreInfoRightPanelContent.html @@ -1 +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 +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 index 71b73911b..a00e79b2c 100644 --- a/docs/types/_internal_.MoreInfoRightPanelOptions.html +++ b/docs/types/_internal_.MoreInfoRightPanelOptions.html @@ -8,4 +8,4 @@
                                                                                                                                              • 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 +

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html index e4e6254e7..9ffcb5895 100644 --- a/docs/types/_internal_.MultiSelectDialogue.html +++ b/docs/types/_internal_.MultiSelectDialogue.html @@ -1 +1 @@ -MultiSelectDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +MultiSelectDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html index 372f80252..11f20b84c 100644 --- a/docs/types/_internal_.MultiSelectDialogueContent.html +++ b/docs/types/_internal_.MultiSelectDialogueContent.html @@ -1 +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 +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 index 383e779f0..7dabb1eb5 100644 --- a/docs/types/_internal_.MultiSelectDialogueOptions.html +++ b/docs/types/_internal_.MultiSelectDialogueOptions.html @@ -4,4 +4,4 @@
                                                                                                                                              • 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 +

                                                                                                                                                Generated using TypeDoc

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

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDCenterPanelContent.html b/docs/types/_internal_.OSDCenterPanelContent.html deleted file mode 100644 index 3ace1fcd6..000000000 --- a/docs/types/_internal_.OSDCenterPanelContent.html +++ /dev/null @@ -1 +0,0 @@ -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_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html index bc6e937e4..79b70510b 100644 --- a/docs/types/_internal_.OSDDownloadDialogue.html +++ b/docs/types/_internal_.OSDDownloadDialogue.html @@ -1 +1 @@ -OSDDownloadDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDDownloadDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html index 35651ef91..bd8321a29 100644 --- a/docs/types/_internal_.OSDDownloadDialogueContent.html +++ b/docs/types/_internal_.OSDDownloadDialogueContent.html @@ -1 +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 +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 index 0e3e6c0c0..9db975dfa 100644 --- a/docs/types/_internal_.OSDDownloadDialogueOptions.html +++ b/docs/types/_internal_.OSDDownloadDialogueOptions.html @@ -6,4 +6,4 @@
                                                                                                                                              • 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 +

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html index a0b8b8517..df9ad092d 100644 --- a/docs/types/_internal_.OSDSettingsDialogue.html +++ b/docs/types/_internal_.OSDSettingsDialogue.html @@ -1 +1 @@ -OSDSettingsDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDSettingsDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html index 05ec1ad3d..716416ab0 100644 --- a/docs/types/_internal_.OSDSettingsDialogueContent.html +++ b/docs/types/_internal_.OSDSettingsDialogueContent.html @@ -1 +1 @@ -OSDSettingsDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDSettingsDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html index 94b9c94e1..05298134f 100644 --- a/docs/types/_internal_.OSDSettingsDialogueOptions.html +++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html @@ -1 +1 @@ -OSDSettingsDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDSettingsDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html index f41c045cf..4419e7644 100644 --- a/docs/types/_internal_.OSDShareDialogue.html +++ b/docs/types/_internal_.OSDShareDialogue.html @@ -1 +1 @@ -OSDShareDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDShareDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html index 8202148fd..4da37cad7 100644 --- a/docs/types/_internal_.OSDShareDialogueContent.html +++ b/docs/types/_internal_.OSDShareDialogueContent.html @@ -1 +1 @@ -OSDShareDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDShareDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html index f6255efc9..b9929b33c 100644 --- a/docs/types/_internal_.OSDShareDialogueOptions.html +++ b/docs/types/_internal_.OSDShareDialogueOptions.html @@ -1 +1 @@ -OSDShareDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +OSDShareDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

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

                                                                                                                                                Generated using TypeDoc

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

                                                                                                                                                Type alias OpenSeadragonCenterPanelContent

                                                                                                                                                OpenSeadragonCenterPanelContent: 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_.OpenSeadragonCenterPanelOptions.html similarity index 79% rename from docs/types/_internal_.OSDCenterPanelOptions.html rename to docs/types/_internal_.OpenSeadragonCenterPanelOptions.html index 205293bc2..e709b6be1 100644 --- a/docs/types/_internal_.OSDCenterPanelOptions.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html @@ -1,4 +1,4 @@ -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

                                                                                                                                                  +OpenSeadragonCenterPanelOptions | universalviewer

                                                                                                                                                  Type alias OpenSeadragonCenterPanelOptions

                                                                                                                                                  OpenSeadragonCenterPanelOptions: 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

                                                                                                                                                    @@ -15,4 +15,4 @@
                                                                                                                                                  • 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 +

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.Options.html b/docs/types/_internal_.Options.html index 60fb7f731..e3f9bc941 100644 --- a/docs/types/_internal_.Options.html +++ b/docs/types/_internal_.Options.html @@ -28,4 +28,4 @@
                                                                                                                                              • 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 +

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanel.html b/docs/types/_internal_.PDFCenterPanel.html index bf07acf06..4a594a098 100644 --- a/docs/types/_internal_.PDFCenterPanel.html +++ b/docs/types/_internal_.PDFCenterPanel.html @@ -1 +1 @@ -PDFCenterPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFCenterPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html index 246e797a5..ba26ddcd7 100644 --- a/docs/types/_internal_.PDFCenterPanelContent.html +++ b/docs/types/_internal_.PDFCenterPanelContent.html @@ -1 +1 @@ -PDFCenterPanelContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFCenterPanelContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFCenterPanelOptions.html b/docs/types/_internal_.PDFCenterPanelOptions.html index c0a3c7013..5a60e4e8f 100644 --- a/docs/types/_internal_.PDFCenterPanelOptions.html +++ b/docs/types/_internal_.PDFCenterPanelOptions.html @@ -1,2 +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 +

                                                                                                                                                Generated using TypeDoc

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

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFDownloadDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html index 61269cfa9..37e366fcd 100644 --- a/docs/types/_internal_.PDFDownloadDialogueContent.html +++ b/docs/types/_internal_.PDFDownloadDialogueContent.html @@ -1 +1 @@ -PDFDownloadDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFDownloadDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html index 6594dac86..c0a007326 100644 --- a/docs/types/_internal_.PDFDownloadDialogueOptions.html +++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html @@ -1 +1 @@ -PDFDownloadDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFDownloadDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html index 26b0a14a6..ed0f4f2f5 100644 --- a/docs/types/_internal_.PDFHeaderPanel.html +++ b/docs/types/_internal_.PDFHeaderPanel.html @@ -1 +1 @@ -PDFHeaderPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFHeaderPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html index 671a5ed69..5c9801c29 100644 --- a/docs/types/_internal_.PDFHeaderPanelContent.html +++ b/docs/types/_internal_.PDFHeaderPanelContent.html @@ -1 +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 +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 index a4f746b3f..d903d2263 100644 --- a/docs/types/_internal_.PDFHeaderPanelOptions.html +++ b/docs/types/_internal_.PDFHeaderPanelOptions.html @@ -1 +1 @@ -PDFHeaderPanelOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFHeaderPanelOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html index 904399a2b..00cf596f3 100644 --- a/docs/types/_internal_.PDFSettingsDialogue.html +++ b/docs/types/_internal_.PDFSettingsDialogue.html @@ -1 +1 @@ -PDFSettingsDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFSettingsDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html index cc02c6116..6fe3eff96 100644 --- a/docs/types/_internal_.PDFSettingsDialogueContent.html +++ b/docs/types/_internal_.PDFSettingsDialogueContent.html @@ -1 +1 @@ -PDFSettingsDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFSettingsDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html index c3aa560db..b4ee1d63d 100644 --- a/docs/types/_internal_.PDFSettingsDialogueOptions.html +++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html @@ -1 +1 @@ -PDFSettingsDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFSettingsDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html index d6a016f3f..c45608520 100644 --- a/docs/types/_internal_.PDFShareDialogue.html +++ b/docs/types/_internal_.PDFShareDialogue.html @@ -1 +1 @@ -PDFShareDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFShareDialogue | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html index 06263907c..a24f80213 100644 --- a/docs/types/_internal_.PDFShareDialogueContent.html +++ b/docs/types/_internal_.PDFShareDialogueContent.html @@ -1 +1 @@ -PDFShareDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFShareDialogueContent | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html index 6e63b4fc3..d648a463d 100644 --- a/docs/types/_internal_.PDFShareDialogueOptions.html +++ b/docs/types/_internal_.PDFShareDialogueOptions.html @@ -1 +1 @@ -PDFShareDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PDFShareDialogueOptions | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html index c0d16faa5..06a00e45a 100644 --- a/docs/types/_internal_.PagingHeaderPanel.html +++ b/docs/types/_internal_.PagingHeaderPanel.html @@ -1 +1 @@ -PagingHeaderPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +PagingHeaderPanel | universalviewer

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html index 537266ae5..ae800da8d 100644 --- a/docs/types/_internal_.PagingHeaderPanelContent.html +++ b/docs/types/_internal_.PagingHeaderPanelContent.html @@ -1 +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 +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 index b40596041..64ebd75ee 100644 --- a/docs/types/_internal_.PagingHeaderPanelOptions.html +++ b/docs/types/_internal_.PagingHeaderPanelOptions.html @@ -6,4 +6,4 @@
                                                                                                                                              • 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 +

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html index 51fabe505..04b0ac621 100644 --- a/docs/types/_internal_.RestrictedDialogue.html +++ b/docs/types/_internal_.RestrictedDialogue.html @@ -1 +1 @@ -RestrictedDialogue | universalviewer

                                                                                                                                                Type alias RestrictedDialogue

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

                                                                                                                                                Type declaration

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +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 index 42e8a6e20..f7033509a 100644 --- a/docs/types/_internal_.RestrictedDialogueContent.html +++ b/docs/types/_internal_.RestrictedDialogueContent.html @@ -1 +1 @@ -RestrictedDialogueContent | universalviewer

                                                                                                                                                Type alias RestrictedDialogueContent

                                                                                                                                                RestrictedDialogueContent: DialogueContent & {
                                                                                                                                                    cancel: string;
                                                                                                                                                }

                                                                                                                                                Type declaration

                                                                                                                                                • cancel: string

                                                                                                                                                Generated using TypeDoc

                                                                                                                                                \ No newline at end of file +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 index ffae123e2..5e709fbb4 100644 --- a/docs/types/_internal_.RestrictedDialogueOptions.html +++ b/docs/types/_internal_.RestrictedDialogueOptions.html @@ -1 +1 @@ -RestrictedDialogueOptions | universalviewer

                                                                                                                                                Type alias RestrictedDialogueOptions

                                                                                                                                                RestrictedDialogueOptions: DialogueOptions & {}

                                                                                                                                                Type declaration

                                                                                                                                                  Generated using TypeDoc

                                                                                                                                                  \ No newline at end of file +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 index af28ca65b..5e32aee52 100644 --- a/docs/types/_internal_.SearchFooterPanel.html +++ b/docs/types/_internal_.SearchFooterPanel.html @@ -1 +1 @@ -SearchFooterPanel | universalviewer

                                                                                                                                                    Generated using TypeDoc

                                                                                                                                                    \ No newline at end of file +SearchFooterPanel | universalviewer

                                                                                                                                                    Generated using TypeDoc

                                                                                                                                                    \ No newline at end of file diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html index 5a9be5afd..3117584d5 100644 --- a/docs/types/_internal_.SearchFooterPanelContent.html +++ b/docs/types/_internal_.SearchFooterPanelContent.html @@ -1 +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 +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 index 1442d1589..6ce565d86 100644 --- a/docs/types/_internal_.SearchFooterPanelOptions.html +++ b/docs/types/_internal_.SearchFooterPanelOptions.html @@ -4,4 +4,4 @@
                                                                                                                                                  • 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 +

                                                                                                                                                    Generated using TypeDoc

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

                                                                                                                                                    Type declaration

                                                                                                                                                    Generated using TypeDoc

                                                                                                                                                    \ No newline at end of file +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 index 9b5685634..affab1f09 100644 --- a/docs/types/_internal_.SettingsDialogueContent.html +++ b/docs/types/_internal_.SettingsDialogueContent.html @@ -1 +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 +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 index a5ec66f73..45953405c 100644 --- a/docs/types/_internal_.SettingsDialogueOptions.html +++ b/docs/types/_internal_.SettingsDialogueOptions.html @@ -1 +1 @@ -SettingsDialogueOptions | universalviewer

                                                                                                                                                    Type alias SettingsDialogueOptions

                                                                                                                                                    SettingsDialogueOptions: DialogueOptions & {}

                                                                                                                                                    Type declaration

                                                                                                                                                      Generated using TypeDoc

                                                                                                                                                      \ No newline at end of file +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 index 50a7d89cf..1fbbf0f59 100644 --- a/docs/types/_internal_.ShareDialogue.html +++ b/docs/types/_internal_.ShareDialogue.html @@ -1 +1 @@ -ShareDialogue | universalviewer
                                                                                                                                                        ShareDialogue: ModuleConfig & {
                                                                                                                                                            content: ShareDialogueContent;
                                                                                                                                                            options: ShareDialogueOptions;
                                                                                                                                                        }

                                                                                                                                                        Type declaration

                                                                                                                                                        Generated using TypeDoc

                                                                                                                                                        \ No newline at end of file +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 index 0c9b73c0c..f0a677c44 100644 --- a/docs/types/_internal_.ShareDialogueContent.html +++ b/docs/types/_internal_.ShareDialogueContent.html @@ -1 +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 +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 index 8f66c8ac3..1ba0c4ea0 100644 --- a/docs/types/_internal_.ShareDialogueOptions.html +++ b/docs/types/_internal_.ShareDialogueOptions.html @@ -4,4 +4,4 @@
                                                                                                                                                      • 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 +

                                                                                                                                                        Generated using TypeDoc

                                                                                                                                                        \ No newline at end of file diff --git a/docs/types/_internal_.ThumbsCacheInvalidation.html b/docs/types/_internal_.ThumbsCacheInvalidation.html index fdfed25fa..584e36464 100644 --- a/docs/types/_internal_.ThumbsCacheInvalidation.html +++ b/docs/types/_internal_.ThumbsCacheInvalidation.html @@ -1,3 +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 +

                                                                                                                                                        Generated using TypeDoc

                                                                                                                                                        \ No newline at end of file From 393fe63185a2e69b4073391d62439566d3ef6508 Mon Sep 17 00:00:00 2001 From: Nicolas Franck Date: Thu, 14 Mar 2024 15:58:19 +0100 Subject: [PATCH 06/11] Fix problem with "current view" breaking for v3 images (#971) --- .../iiif/extensions/uv-openseadragon-extension/Extension.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts index 70fc7cae1..5c7ddd935 100644 --- a/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts +++ b/src/content-handlers/iiif/extensions/uv-openseadragon-extension/Extension.ts @@ -1281,7 +1281,7 @@ export default class OpenSeadragonExtension extends BaseExtension { getImageId(canvas: Canvas): string | null { if (canvas.externalResource) { - const id: string | undefined = canvas.externalResource.data["@id"]; + const id: string | undefined = canvas.externalResource.data["@id"] || canvas.externalResource.data.id; if (id) { return id.substr(id.lastIndexOf("/") + 1); @@ -1339,7 +1339,7 @@ export default class OpenSeadragonExtension extends BaseExtension { id += "/"; } - if (Utils.isImageProfile(service.getProfile())) { + if (Utils.isImageProfile(service.getProfile()) || Utils.isImageServiceType(service.getIIIFResourceType())) { infoUri = id + "info.json"; } } From 47fb6970025f5eb929c20a5c5336db66e108fedd Mon Sep 17 00:00:00 2001 From: Edward Silverton Date: Wed, 10 Apr 2024 10:50:48 +0100 Subject: [PATCH 07/11] added (dev) --- src/index.html | 1192 +++++++++++++++++++++++++----------------------- 1 file changed, 615 insertions(+), 577 deletions(-) diff --git a/src/index.html b/src/index.html index f6c9ed0e4..5132f35bc 100644 --- a/src/index.html +++ b/src/index.html @@ -1,15 +1,18 @@ - - - Universal Viewer Examples - - - - - + + + + - <%= htmlWebpackPlugin.tags.headTags %> + <%= htmlWebpackPlugin.tags.headTags %>