From 38798574e366332492695b9c34c6e2ad5b9cc595 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Thu, 12 Dec 2024 07:12:01 -0500 Subject: [PATCH 1/7] Revise release process following discussion with @edsilv. --- CONTRIBUTING.md | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ab4de40fd..628c3f7ac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,15 +62,17 @@ npm test ## Project branch strategy -This project follows the [Gitflow workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow). To summarize: +This project's branch strategy is based on the [Gitflow workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow). To summarize: - Every feature should be developed in its own branch. -- Completed features should be merged into the dev branch, which represents the bleeding edge of stable development. -- When a release is made, the dev branch is merged into the main branch. Main represents the most recent release of the project. +- Completed features should be merged into the `dev` branch, which represents the bleeding edge of stable development. +- While a release is in testing, a short-lived `release-X.Y.Z` branch is created to isolate fixes from new feature development. +- When a release is completed, the `release-X.Y.Z` branch is merged into `dev` and the corresponding `release-X.Y` branch, then the `dev` branch is merged into the `main` branch, which represents the most recent stable release of the project. +- Long-lived `release-X.Y` branches are retained to allow backporting of fixes. -The project also makes use of `release-X.Y` branches to track previous lines of development; see the release process below for more details. +See the release process below for more details. -Please target the dev branch when opening pull requests against the project. +Please target the `dev` branch when opening pull requests against the project, except when contributing a bug fix to an active `release-X.Y.Z` branch. ### Creating a branch and committing @@ -98,9 +100,9 @@ Before a release can be made, some planning and testing are required: 1. The [Universal Viewer Steering Group](https://github.com/UniversalViewer/universalviewer/wiki/Steering-Group) is responsible for determining when a new release is needed (for example, because a sprint has completed, or because a major fix or feature has been contributed) and for identifying a Release Manager (any Steering Group member with rights to bypass GitHub branch protection rules) to manage the technical parts of the process. The community is welcome to reach out to members of the Steering Group to propose/request a release at any time. 2. Once a release is decided upon, its version number must be determined. The project uses [semantic versioning](https://semver.org/), so given version X.Y.Z, we will increment Z for fixes (patch release), Y for new features (minor release), or X for backward-incompatible changes (major release). 3. If outstanding work must be completed to ensure a stable release, a milestone for the new version will be created in GitHub and all relevant outstanding issues/PRs assigned to it, so that estimation can be performed to set a realistic release date (this could be done at steering group and/or community call meetings). If work is already complete, the release can proceed immediately. -4. When it's time to begin the release process, the Release Manager will create a pull request against the `dev` branch containing the result of running the `npm version X.Y.Z-rc1` command (where X.Y.Z is replaced with the new version determined in step 2). This will create a release candidate that can be easily tested online and/or locally built. The description of this pull request should highlight major changes and areas where testing is needed. -5. Once the release candidate is built, the Steering Group will announce it and offer an appropriate testing window (usually 1-2 weeks, depending on scope/complexity of changes) for community feedback. During this window, community members are encouraged to build the new version, try it out in their environments, and raise issues/pull requests if they encounter problems. -6. When the testing window ends, the pull request from step 4 will be merged. +4. When it's time to begin the release process, the Release Manager will create a `release-X.Y.Z` branch off of `dev` and then target a pull request against the new branch containing the result of running the `npm version X.Y.Z-rc1` command (where X.Y.Z is replaced with the new version determined in step 2). This PR can be merged immediately; its purpose is to create an easily accessible public preview and a public forum for discussion of the RC. The description of this pull request should highlight major changes and areas where testing is needed. +5. The release tag created during step 4 should be pushed to the main GitHub repository to trigger publishing of the release candidate to NPM. +6. Next, the Steering Group will announce the release candidate and offer an appropriate testing window (usually 1-2 weeks, depending on scope/complexity of changes) for community feedback. During this window, community members are encouraged to build the new version, try it out in their environments, and raise issues/pull requests if they encounter problems. 7. If problems were found during the testing window, they will be evaluated by the Steering Group, and as soon as any critical bugs are fixed, steps 4-6 will be repeated with an incremented "rc" number (e.g. X.Y.Z-rc2) to ensure that no problems remain. 8. Once the release candidate is deemed stable by the Steering Group, it will be promoted to the formal release. After the RC pull request is merged, the full release can be published. @@ -108,10 +110,10 @@ Before a release can be made, some planning and testing are required: Once a stable release is ready to be published, these steps can be followed by the Release Manager: -1. On the `dev` branch, run `npm version X.Y.Z` (replacing "X.Y.Z" with the actual number of the new version) to appropriately update `package.json` and create a git tag. -2. If the new release will be a major or minor version (but NOT if it will be a patch release), a new `release-X.Y` branch needs to be created from the `main` branch before anything is merged. This release branch will make it easier to backport fixes to earlier versions if critical bugs or security issues are discovered later. For example, if the current version is 4.0.25 and 4.1.0 is about to be released, a new `release-4.0` branch would be created from the `main` branch to continue tracking the development of the 4.0.x line of code. -3. Whether or not a release branch needed to be created, it is now time to merge the `dev` branch into the `main` branch to ensure that `main` always represents the most recently released version. -4. All changed branches and newly-created release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.0` (for a new major release) or `git push origin main dev v4.1.1` (for a new minor release). +1. On the `release-X.Y.Z` branch, run `npm version X.Y.Z` (replacing "X.Y.Z" with the actual number of the new version) to appropriately update `package.json` and create a Git tag. +2. Merge the `release-X.Y.Z` branch into both `dev` and the matching `release-X.Y` branch. Create the `release-X.Y` branch if it does not already exist. The `release-X.Y` branch will be long-lived, used to create backported patch releases as needed; the `release-X.Y.Z` will be deleted as part of the release process, as it is no longer needed. +3. Merge the `dev` branch into the `main` branch, so that `main` continues to point to the most recent stable release. +4. All changed branches and newly-created/deleted release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.1 :release-4.1.0`. (Note the colon on `:release-4.1.0` -- this deletes the short-lived release branch while updating all of the long-lived branches). 5. At this point, a GitHub action will recognize the new version tag and publish the package to NPM. ### Backporting a Bug Fix From 321f3f0eba86d0f3a6ab734d7bbaa63b30cfdd94 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:12:58 +0000 Subject: [PATCH 2/7] Commit from GitHub Actions (Update Documentation) --- docs/classes/_internal_.Metric.html | 4 ++-- 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_.AdjustImageDialogue.html | 2 +- docs/types/_internal_.AdjustImageDialogueContent.html | 2 +- docs/types/_internal_.AdjustImageDialogueOptions.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 +- docs/types/_internal_.AlephDownloadDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.AlephSettingsDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.ClickThroughDialogueContent.html | 2 +- docs/types/_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_.DefaultDownloadDialogue.html | 2 +- docs/types/_internal_.DefaultDownloadDialogueContent.html | 2 +- docs/types/_internal_.DefaultDownloadDialogueOptions.html | 2 +- docs/types/_internal_.DefaultSettingsDialogue.html | 2 +- docs/types/_internal_.DefaultSettingsDialogueContent.html | 2 +- docs/types/_internal_.DefaultSettingsDialogueOptions.html | 2 +- docs/types/_internal_.DefaultShareDialogue.html | 2 +- docs/types/_internal_.DefaultShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.EbookDownloadDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.EbookSettingsDialogueContent.html | 2 +- docs/types/_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 | 2 +- docs/types/_internal_.FileLinkCenterPanelContent.html | 2 +- docs/types/_internal_.FileLinkCenterPanelOptions.html | 2 +- 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 +- docs/types/_internal_.MediaElementCenterPanelContent.html | 2 +- docs/types/_internal_.MediaElementCenterPanelOptions.html | 2 +- docs/types/_internal_.MediaElementDownloadDialogue.html | 2 +- .../types/_internal_.MediaElementDownloadDialogueContent.html | 2 +- .../types/_internal_.MediaElementDownloadDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementSettingsDialogue.html | 2 +- .../types/_internal_.MediaElementSettingsDialogueContent.html | 2 +- .../types/_internal_.MediaElementSettingsDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementShareDialogue.html | 2 +- docs/types/_internal_.MediaElementShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.ModelViewerCenterPanelContent.html | 2 +- docs/types/_internal_.ModelViewerCenterPanelOptions.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogue.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogueContent.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogueOptions.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogue.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogueContent.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogueOptions.html | 2 +- docs/types/_internal_.ModelViewerShareDialogue.html | 2 +- docs/types/_internal_.ModelViewerShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.MultiSelectDialogueContent.html | 2 +- docs/types/_internal_.MultiSelectDialogueOptions.html | 2 +- docs/types/_internal_.OSDDownloadDialogue.html | 2 +- docs/types/_internal_.OSDDownloadDialogueContent.html | 2 +- docs/types/_internal_.OSDDownloadDialogueOptions.html | 2 +- docs/types/_internal_.OSDSettingsDialogue.html | 2 +- docs/types/_internal_.OSDSettingsDialogueContent.html | 2 +- docs/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 | 2 +- docs/types/_internal_.OpenSeadragonCenterPanelContent.html | 2 +- docs/types/_internal_.OpenSeadragonCenterPanelOptions.html | 2 +- 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 +- docs/types/_internal_.PDFDownloadDialogueContent.html | 2 +- docs/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 +- docs/types/_internal_.PDFSettingsDialogueContent.html | 2 +- docs/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 +- 196 files changed, 197 insertions(+), 197 deletions(-) diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html index 53d5a2d33..fa4eda0b7 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
+

Constructors

Properties

minWidth: number
type: string
diff --git a/docs/types/IIIFContentHandlerConfig.html b/docs/types/IIIFContentHandlerConfig.html index ad8b73159..62a8c7b1e 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;
}
+IIIFContentHandlerConfig | universalviewer

Type Alias IIIFContentHandlerConfig

IIIFContentHandlerConfig: {
    aleph: Config;
    av: Config;
    default: Config;
    ebook: Config;
    mediaelement: Config;
    modelViewer: Config;
    osd: Config;
    pdf: Config;
}
diff --git a/docs/types/_internal_.AVCenterPanel.html b/docs/types/_internal_.AVCenterPanel.html index 01a003c0b..4fffc6409 100644 --- a/docs/types/_internal_.AVCenterPanel.html +++ b/docs/types/_internal_.AVCenterPanel.html @@ -1 +1 @@ -AVCenterPanel | universalviewer
+AVCenterPanel | universalviewer
diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html index f20a50c1d..9c4e472ac 100644 --- a/docs/types/_internal_.AVCenterPanelContent.html +++ b/docs/types/_internal_.AVCenterPanelContent.html @@ -1 +1 @@ -AVCenterPanelContent | universalviewer
+AVCenterPanelContent | universalviewer
diff --git a/docs/types/_internal_.AVCenterPanelOptions.html b/docs/types/_internal_.AVCenterPanelOptions.html index 6b730afe1..ed4b5f23c 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

    -
  • +
    diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html index 19664f5fd..583799ad8 100644 --- a/docs/types/_internal_.AVDownloadDialogue.html +++ b/docs/types/_internal_.AVDownloadDialogue.html @@ -1 +1 @@ -AVDownloadDialogue | universalviewer
    +AVDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html index b7e6f51e0..327071680 100644 --- a/docs/types/_internal_.AVDownloadDialogueContent.html +++ b/docs/types/_internal_.AVDownloadDialogueContent.html @@ -1 +1 @@ -AVDownloadDialogueContent | universalviewer
    +AVDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html index e27eb0465..adfaf9eb0 100644 --- a/docs/types/_internal_.AVDownloadDialogueOptions.html +++ b/docs/types/_internal_.AVDownloadDialogueOptions.html @@ -1 +1 @@ -AVDownloadDialogueOptions | universalviewer
    +AVDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogue.html b/docs/types/_internal_.AVSettingsDialogue.html index 394d390a9..8cb351d2a 100644 --- a/docs/types/_internal_.AVSettingsDialogue.html +++ b/docs/types/_internal_.AVSettingsDialogue.html @@ -1 +1 @@ -AVSettingsDialogue | universalviewer
    +AVSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html index f9ed3dc2a..bf7ee8580 100644 --- a/docs/types/_internal_.AVSettingsDialogueContent.html +++ b/docs/types/_internal_.AVSettingsDialogueContent.html @@ -1 +1 @@ -AVSettingsDialogueContent | universalviewer
    +AVSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html index a8817bf9a..aca54dbae 100644 --- a/docs/types/_internal_.AVSettingsDialogueOptions.html +++ b/docs/types/_internal_.AVSettingsDialogueOptions.html @@ -1 +1 @@ -AVSettingsDialogueOptions | universalviewer
    +AVSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html index 60200c41d..483c5dd16 100644 --- a/docs/types/_internal_.AVShareDialogue.html +++ b/docs/types/_internal_.AVShareDialogue.html @@ -1 +1 @@ -AVShareDialogue | universalviewer
    +AVShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html index 9f738dfab..e40243bb6 100644 --- a/docs/types/_internal_.AVShareDialogueContent.html +++ b/docs/types/_internal_.AVShareDialogueContent.html @@ -1 +1 @@ -AVShareDialogueContent | universalviewer
    +AVShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html index a9873b7e1..4e895ebde 100644 --- a/docs/types/_internal_.AVShareDialogueOptions.html +++ b/docs/types/_internal_.AVShareDialogueOptions.html @@ -1 +1 @@ -AVShareDialogueOptions | universalviewer
    +AVShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AdjustImageDialogue.html b/docs/types/_internal_.AdjustImageDialogue.html index 51a2b6860..f3b1b36a6 100644 --- a/docs/types/_internal_.AdjustImageDialogue.html +++ b/docs/types/_internal_.AdjustImageDialogue.html @@ -1 +1 @@ -AdjustImageDialogue | universalviewer

    Type Alias AdjustImageDialogue

    AdjustImageDialogue: ModuleConfig & {
        content: AdjustImageDialogueContent;
        options: AdjustImageDialogueOptions;
    }
    +AdjustImageDialogue | universalviewer

    Type Alias AdjustImageDialogue

    AdjustImageDialogue: ModuleConfig & {
        content: AdjustImageDialogueContent;
        options: AdjustImageDialogueOptions;
    }
    diff --git a/docs/types/_internal_.AdjustImageDialogueContent.html b/docs/types/_internal_.AdjustImageDialogueContent.html index 48b1562e1..90d262f42 100644 --- a/docs/types/_internal_.AdjustImageDialogueContent.html +++ b/docs/types/_internal_.AdjustImageDialogueContent.html @@ -1 +1 @@ -AdjustImageDialogueContent | universalviewer

    Type Alias AdjustImageDialogueContent

    AdjustImageDialogueContent: DialogueContent & {
        brightness: string;
        contrast: string;
        remember: string;
        reset: string;
        saturation: string;
        title: string;
    }
    +AdjustImageDialogueContent | universalviewer

    Type Alias AdjustImageDialogueContent

    AdjustImageDialogueContent: DialogueContent & {
        brightness: string;
        contrast: string;
        remember: string;
        reset: string;
        saturation: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.AdjustImageDialogueOptions.html b/docs/types/_internal_.AdjustImageDialogueOptions.html index bfa9fc07a..25f69fa19 100644 --- a/docs/types/_internal_.AdjustImageDialogueOptions.html +++ b/docs/types/_internal_.AdjustImageDialogueOptions.html @@ -1 +1 @@ -AdjustImageDialogueOptions | universalviewer

    Type Alias AdjustImageDialogueOptions

    AdjustImageDialogueOptions: DialogueOptions & {}
    +AdjustImageDialogueOptions | universalviewer

    Type Alias AdjustImageDialogueOptions

    AdjustImageDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html index 63cf5f8c2..ce2914127 100644 --- a/docs/types/_internal_.AlephCenterPanel.html +++ b/docs/types/_internal_.AlephCenterPanel.html @@ -1 +1 @@ -AlephCenterPanel | universalviewer
    +AlephCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html index 228c80143..0b5e135e5 100644 --- a/docs/types/_internal_.AlephCenterPanelContent.html +++ b/docs/types/_internal_.AlephCenterPanelContent.html @@ -1 +1 @@ -AlephCenterPanelContent | universalviewer
    +AlephCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html index 8ffce668e..c3770b827 100644 --- a/docs/types/_internal_.AlephCenterPanelOptions.html +++ b/docs/types/_internal_.AlephCenterPanelOptions.html @@ -1 +1 @@ -AlephCenterPanelOptions | universalviewer
    +AlephCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html index 5af7dca61..eb0dfaee3 100644 --- a/docs/types/_internal_.AlephDownloadDialogue.html +++ b/docs/types/_internal_.AlephDownloadDialogue.html @@ -1 +1 @@ -AlephDownloadDialogue | universalviewer
    +AlephDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html index 12ab8e254..322a4afa2 100644 --- a/docs/types/_internal_.AlephDownloadDialogueContent.html +++ b/docs/types/_internal_.AlephDownloadDialogueContent.html @@ -1 +1 @@ -AlephDownloadDialogueContent | universalviewer
    +AlephDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogueOptions.html b/docs/types/_internal_.AlephDownloadDialogueOptions.html index 649550fb1..4b89c9e61 100644 --- a/docs/types/_internal_.AlephDownloadDialogueOptions.html +++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html @@ -1 +1 @@ -AlephDownloadDialogueOptions | universalviewer
    +AlephDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanel.html b/docs/types/_internal_.AlephLeftPanel.html index 88c336421..3f8544209 100644 --- a/docs/types/_internal_.AlephLeftPanel.html +++ b/docs/types/_internal_.AlephLeftPanel.html @@ -1 +1 @@ -AlephLeftPanel | universalviewer
    +AlephLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html index 13d260ae5..385d00b32 100644 --- a/docs/types/_internal_.AlephLeftPanelContent.html +++ b/docs/types/_internal_.AlephLeftPanelContent.html @@ -1 +1 @@ -AlephLeftPanelContent | universalviewer
    +AlephLeftPanelContent | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanelOptions.html b/docs/types/_internal_.AlephLeftPanelOptions.html index 1f3e69e12..1b2280c2e 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

    -
  • +
    diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html index 2c2be7915..9643845fb 100644 --- a/docs/types/_internal_.AlephSettingsDialogue.html +++ b/docs/types/_internal_.AlephSettingsDialogue.html @@ -1 +1 @@ -AlephSettingsDialogue | universalviewer
    +AlephSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html index 21d8c076d..2c9f0540a 100644 --- a/docs/types/_internal_.AlephSettingsDialogueContent.html +++ b/docs/types/_internal_.AlephSettingsDialogueContent.html @@ -1 +1 @@ -AlephSettingsDialogueContent | universalviewer
    +AlephSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephSettingsDialogueOptions.html b/docs/types/_internal_.AlephSettingsDialogueOptions.html index 82b46bebf..d5ef87561 100644 --- a/docs/types/_internal_.AlephSettingsDialogueOptions.html +++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html @@ -1 +1 @@ -AlephSettingsDialogueOptions | universalviewer
    +AlephSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogue.html b/docs/types/_internal_.AlephShareDialogue.html index 60797fcac..137e9f51d 100644 --- a/docs/types/_internal_.AlephShareDialogue.html +++ b/docs/types/_internal_.AlephShareDialogue.html @@ -1 +1 @@ -AlephShareDialogue | universalviewer
    +AlephShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html index 8836bccbc..b37604ca4 100644 --- a/docs/types/_internal_.AlephShareDialogueContent.html +++ b/docs/types/_internal_.AlephShareDialogueContent.html @@ -1 +1 @@ -AlephShareDialogueContent | universalviewer
    +AlephShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogueOptions.html b/docs/types/_internal_.AlephShareDialogueOptions.html index 46d9090fc..be961ca89 100644 --- a/docs/types/_internal_.AlephShareDialogueOptions.html +++ b/docs/types/_internal_.AlephShareDialogueOptions.html @@ -1 +1 @@ -AlephShareDialogueOptions | universalviewer
    +AlephShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AuthDialogue.html b/docs/types/_internal_.AuthDialogue.html index d3a1ea4d5..605e24133 100644 --- a/docs/types/_internal_.AuthDialogue.html +++ b/docs/types/_internal_.AuthDialogue.html @@ -1 +1 @@ -AuthDialogue | universalviewer
    AuthDialogue: ModuleConfig & {
        content: AuthDialogueContent;
        options: AuthDialogueOptions;
    }
    +AuthDialogue | universalviewer
    AuthDialogue: ModuleConfig & {
        content: AuthDialogueContent;
        options: AuthDialogueOptions;
    }
    diff --git a/docs/types/_internal_.AuthDialogueContent.html b/docs/types/_internal_.AuthDialogueContent.html index cd9863b0a..df3c91751 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 }
    +AuthDialogueContent | universalviewer

    Type Alias AuthDialogueContent

    AuthDialogueContent: DialogueContent & { cancel: string; confirm: string }
    diff --git a/docs/types/_internal_.AuthDialogueOptions.html b/docs/types/_internal_.AuthDialogueOptions.html index 7c1a968d4..d99ed2563 100644 --- a/docs/types/_internal_.AuthDialogueOptions.html +++ b/docs/types/_internal_.AuthDialogueOptions.html @@ -1 +1 @@ -AuthDialogueOptions | universalviewer
    +AuthDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.BaseConfig.html b/docs/types/_internal_.BaseConfig.html index 29ad1232d..7cd036099 100644 --- a/docs/types/_internal_.BaseConfig.html +++ b/docs/types/_internal_.BaseConfig.html @@ -1 +1 @@ -BaseConfig | universalviewer
    BaseConfig: {
        content: Content;
        localisation: Localisation;
        modules: {
            adjustImageDialogue: AdjustImageDialogue;
            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;
    }
    +BaseConfig | universalviewer
    BaseConfig: {
        content: Content;
        localisation: Localisation;
        modules: {
            adjustImageDialogue: AdjustImageDialogue;
            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;
    }
    diff --git a/docs/types/_internal_.CenterPanel.html b/docs/types/_internal_.CenterPanel.html index dc01100fe..426a3cdf8 100644 --- a/docs/types/_internal_.CenterPanel.html +++ b/docs/types/_internal_.CenterPanel.html @@ -1 +1 @@ -CenterPanel | universalviewer
    CenterPanel: ModuleConfig & {
        content: CenterPanelContent;
        options: CenterPanelOptions;
    }
    +CenterPanel | universalviewer
    CenterPanel: ModuleConfig & {
        content: CenterPanelContent;
        options: CenterPanelOptions;
    }
    diff --git a/docs/types/_internal_.CenterPanelContent.html b/docs/types/_internal_.CenterPanelContent.html index 0961a4e3a..6e929ac30 100644 --- a/docs/types/_internal_.CenterPanelContent.html +++ b/docs/types/_internal_.CenterPanelContent.html @@ -1 +1 @@ -CenterPanelContent | universalviewer

    Type Alias CenterPanelContent

    CenterPanelContent: {
        attribution: string;
        close: string;
        closeAttribution: string;
    }
    +CenterPanelContent | universalviewer

    Type Alias CenterPanelContent

    CenterPanelContent: {
        attribution: string;
        close: string;
        closeAttribution: string;
    }
    diff --git a/docs/types/_internal_.CenterPanelOptions.html b/docs/types/_internal_.CenterPanelOptions.html index 6fc87ec6e..cd6697951 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;
    }
    +CenterPanelOptions | universalviewer

    Type Alias CenterPanelOptions

    CenterPanelOptions: {
        mostSpecificRequiredStatement: boolean;
        requiredStatementEnabled: boolean;
        subtitleEnabled: boolean;
        titleEnabled: boolean;
    }
    diff --git a/docs/types/_internal_.ClickThroughDialogue.html b/docs/types/_internal_.ClickThroughDialogue.html index 6600d3b1b..cf56823e8 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;
    }
    +ClickThroughDialogue | universalviewer

    Type Alias ClickThroughDialogue

    ClickThroughDialogue: ModuleConfig & {
        content: ClickThroughDialogueContent;
        options: ClickThroughDialogueOptions;
    }
    diff --git a/docs/types/_internal_.ClickThroughDialogueContent.html b/docs/types/_internal_.ClickThroughDialogueContent.html index ed6d798e0..2fe6f0850 100644 --- a/docs/types/_internal_.ClickThroughDialogueContent.html +++ b/docs/types/_internal_.ClickThroughDialogueContent.html @@ -1 +1 @@ -ClickThroughDialogueContent | universalviewer

    Type Alias ClickThroughDialogueContent

    ClickThroughDialogueContent: DialogueContent & { viewTerms: string }
    +ClickThroughDialogueContent | universalviewer

    Type Alias ClickThroughDialogueContent

    ClickThroughDialogueContent: DialogueContent & { viewTerms: string }
    diff --git a/docs/types/_internal_.ClickThroughDialogueOptions.html b/docs/types/_internal_.ClickThroughDialogueOptions.html index 377a30236..515579d3f 100644 --- a/docs/types/_internal_.ClickThroughDialogueOptions.html +++ b/docs/types/_internal_.ClickThroughDialogueOptions.html @@ -1 +1 @@ -ClickThroughDialogueOptions | universalviewer

    Type Alias ClickThroughDialogueOptions

    ClickThroughDialogueOptions: DialogueOptions & {}
    +ClickThroughDialogueOptions | universalviewer

    Type Alias ClickThroughDialogueOptions

    ClickThroughDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.Config-1.html b/docs/types/_internal_.Config-1.html index 5857febd5..49eca5098 100644 --- a/docs/types/_internal_.Config-1.html +++ b/docs/types/_internal_.Config-1.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-2.html b/docs/types/_internal_.Config-2.html index 1b79460e4..bf9715588 100644 --- a/docs/types/_internal_.Config-2.html +++ b/docs/types/_internal_.Config-2.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-3.html b/docs/types/_internal_.Config-3.html index 3ef225f70..1a006c4e1 100644 --- a/docs/types/_internal_.Config-3.html +++ b/docs/types/_internal_.Config-3.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-4.html b/docs/types/_internal_.Config-4.html index a1520d10d..9ec9062ac 100644 --- a/docs/types/_internal_.Config-4.html +++ b/docs/types/_internal_.Config-4.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-5.html b/docs/types/_internal_.Config-5.html index 2bb6eba59..e19f428dc 100644 --- a/docs/types/_internal_.Config-5.html +++ b/docs/types/_internal_.Config-5.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-6.html b/docs/types/_internal_.Config-6.html index a2338ebd1..19050c110 100644 --- a/docs/types/_internal_.Config-6.html +++ b/docs/types/_internal_.Config-6.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-7.html b/docs/types/_internal_.Config-7.html index 5aa64b079..482cd30ba 100644 --- a/docs/types/_internal_.Config-7.html +++ b/docs/types/_internal_.Config-7.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config.html b/docs/types/_internal_.Config.html index 7a71d4ae5..9ac29da8a 100644 --- a/docs/types/_internal_.Config.html +++ b/docs/types/_internal_.Config.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html index 34f3febdc..188660d9f 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;
    }
    +Content | universalviewer
    Content: {
        authCORSError: string;
        authorisationFailedMessage: string;
        canvasIndexOutOfRange: string;
        fallbackDegradedLabel: string;
        fallbackDegradedMessage: string;
        forbiddenResourceMessage: string;
        mediaViewer: string;
        skipToDownload: string;
        termsOfUse: string;
    }
    diff --git a/docs/types/_internal_.ContentLeftPanel.html b/docs/types/_internal_.ContentLeftPanel.html index e98b7a3e1..ad28845be 100644 --- a/docs/types/_internal_.ContentLeftPanel.html +++ b/docs/types/_internal_.ContentLeftPanel.html @@ -1 +1 @@ -ContentLeftPanel | universalviewer
    +ContentLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html index 5f37d76f8..5917c78e7 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.ContentLeftPanelOptions.html b/docs/types/_internal_.ContentLeftPanelOptions.html index f6cd7b536..27509eaef 100644 --- a/docs/types/_internal_.ContentLeftPanelOptions.html +++ b/docs/types/_internal_.ContentLeftPanelOptions.html @@ -22,4 +22,4 @@
  • treeEnabled: boolean

    Determines if tree is enabled

  • twoColThumbHeight: number

    Height of the two column thumbnail

  • twoColThumbWidth: number

    Width of the two column thumbnail

    -
  • +
    diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html index 435ad7c8c..b963b2d8f 100644 --- a/docs/types/_internal_.DefaultDownloadDialogue.html +++ b/docs/types/_internal_.DefaultDownloadDialogue.html @@ -1 +1 @@ -DefaultDownloadDialogue | universalviewer
    +DefaultDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html index dfd2c4cce..a07e2dfc8 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueContent.html +++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html @@ -1 +1 @@ -DefaultDownloadDialogueContent | universalviewer
    +DefaultDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultDownloadDialogueOptions.html b/docs/types/_internal_.DefaultDownloadDialogueOptions.html index ad898c212..f6f773f7a 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueOptions.html +++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html @@ -1 +1 @@ -DefaultDownloadDialogueOptions | universalviewer
    +DefaultDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogue.html b/docs/types/_internal_.DefaultSettingsDialogue.html index 42629f998..447de4149 100644 --- a/docs/types/_internal_.DefaultSettingsDialogue.html +++ b/docs/types/_internal_.DefaultSettingsDialogue.html @@ -1 +1 @@ -DefaultSettingsDialogue | universalviewer
    +DefaultSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html index 976eee3e5..5907472b1 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueContent.html +++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html @@ -1 +1 @@ -DefaultSettingsDialogueContent | universalviewer
    +DefaultSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogueOptions.html b/docs/types/_internal_.DefaultSettingsDialogueOptions.html index bcf1900a3..271ebb874 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueOptions.html +++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html @@ -1 +1 @@ -DefaultSettingsDialogueOptions | universalviewer
    +DefaultSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogue.html b/docs/types/_internal_.DefaultShareDialogue.html index cf19b7a8e..6076a212e 100644 --- a/docs/types/_internal_.DefaultShareDialogue.html +++ b/docs/types/_internal_.DefaultShareDialogue.html @@ -1 +1 @@ -DefaultShareDialogue | universalviewer
    +DefaultShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html index 0a5f108d5..e46620812 100644 --- a/docs/types/_internal_.DefaultShareDialogueContent.html +++ b/docs/types/_internal_.DefaultShareDialogueContent.html @@ -1 +1 @@ -DefaultShareDialogueContent | universalviewer
    +DefaultShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html index eb30a6176..b934b3afb 100644 --- a/docs/types/_internal_.DefaultShareDialogueOptions.html +++ b/docs/types/_internal_.DefaultShareDialogueOptions.html @@ -1 +1 @@ -DefaultShareDialogueOptions | universalviewer
    +DefaultShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.Dialogue.html b/docs/types/_internal_.Dialogue.html index 089f37e2e..b690113a6 100644 --- a/docs/types/_internal_.Dialogue.html +++ b/docs/types/_internal_.Dialogue.html @@ -1 +1 @@ -Dialogue | universalviewer
    +Dialogue | universalviewer
    diff --git a/docs/types/_internal_.DialogueContent.html b/docs/types/_internal_.DialogueContent.html index 5450f9a6d..dd46d103e 100644 --- a/docs/types/_internal_.DialogueContent.html +++ b/docs/types/_internal_.DialogueContent.html @@ -1 +1 @@ -DialogueContent | universalviewer
    DialogueContent: { close: string }
    +DialogueContent | universalviewer
    DialogueContent: { close: string }
    diff --git a/docs/types/_internal_.DialogueOptions.html b/docs/types/_internal_.DialogueOptions.html index 7b5e7d8a0..dc5724fc5 100644 --- a/docs/types/_internal_.DialogueOptions.html +++ b/docs/types/_internal_.DialogueOptions.html @@ -1 +1 @@ -DialogueOptions | universalviewer
    DialogueOptions: { topCloseButtonEnabled: boolean }
    +DialogueOptions | universalviewer
    DialogueOptions: { topCloseButtonEnabled: boolean }
    diff --git a/docs/types/_internal_.DownloadDialogue.html b/docs/types/_internal_.DownloadDialogue.html index b6edba0b0..6149dfc93 100644 --- a/docs/types/_internal_.DownloadDialogue.html +++ b/docs/types/_internal_.DownloadDialogue.html @@ -1 +1 @@ -DownloadDialogue | universalviewer
    DownloadDialogue: ModuleConfig & {
        content: DownloadDialogueContent;
        options: DownloadDialogueOptions;
    }
    +DownloadDialogue | universalviewer
    DownloadDialogue: ModuleConfig & {
        content: DownloadDialogueContent;
        options: DownloadDialogueOptions;
    }
    diff --git a/docs/types/_internal_.DownloadDialogueContent.html b/docs/types/_internal_.DownloadDialogueContent.html index d29270cfa..18f7c0786 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;
    }
    +DownloadDialogueContent | universalviewer

    Type Alias DownloadDialogueContent

    DownloadDialogueContent: DialogueContent & {
        download: string;
        entireDocument: string;
        entireFileAsOriginal: string;
        entireFileAsOriginalWithFormat: string;
        noneAvailable: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.DownloadDialogueOptions.html b/docs/types/_internal_.DownloadDialogueOptions.html index 85c34675c..cdc24cbe1 100644 --- a/docs/types/_internal_.DownloadDialogueOptions.html +++ b/docs/types/_internal_.DownloadDialogueOptions.html @@ -1 +1 @@ -DownloadDialogueOptions | universalviewer

    Type Alias DownloadDialogueOptions

    DownloadDialogueOptions: DialogueOptions & {}
    +DownloadDialogueOptions | universalviewer

    Type Alias DownloadDialogueOptions

    DownloadDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.EbookCenterPanel.html b/docs/types/_internal_.EbookCenterPanel.html index ad728d7e2..04a544f6a 100644 --- a/docs/types/_internal_.EbookCenterPanel.html +++ b/docs/types/_internal_.EbookCenterPanel.html @@ -1 +1 @@ -EbookCenterPanel | universalviewer
    +EbookCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html index 48216ef01..905d4802b 100644 --- a/docs/types/_internal_.EbookCenterPanelContent.html +++ b/docs/types/_internal_.EbookCenterPanelContent.html @@ -1 +1 @@ -EbookCenterPanelContent | universalviewer
    +EbookCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html index 8056ebf8b..753f06aca 100644 --- a/docs/types/_internal_.EbookCenterPanelOptions.html +++ b/docs/types/_internal_.EbookCenterPanelOptions.html @@ -1 +1 @@ -EbookCenterPanelOptions | universalviewer
    +EbookCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html index efcffb579..02b27fd40 100644 --- a/docs/types/_internal_.EbookDownloadDialogue.html +++ b/docs/types/_internal_.EbookDownloadDialogue.html @@ -1 +1 @@ -EbookDownloadDialogue | universalviewer
    +EbookDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html index 27162926b..c745c4ae2 100644 --- a/docs/types/_internal_.EbookDownloadDialogueContent.html +++ b/docs/types/_internal_.EbookDownloadDialogueContent.html @@ -1 +1 @@ -EbookDownloadDialogueContent | universalviewer
    +EbookDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogueOptions.html b/docs/types/_internal_.EbookDownloadDialogueOptions.html index ff7041a8d..02fe289fe 100644 --- a/docs/types/_internal_.EbookDownloadDialogueOptions.html +++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html @@ -1 +1 @@ -EbookDownloadDialogueOptions | universalviewer
    +EbookDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanel.html b/docs/types/_internal_.EbookLeftPanel.html index 67be67c5f..8b8d11699 100644 --- a/docs/types/_internal_.EbookLeftPanel.html +++ b/docs/types/_internal_.EbookLeftPanel.html @@ -1 +1 @@ -EbookLeftPanel | universalviewer
    +EbookLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html index d5e19f0af..126014fc9 100644 --- a/docs/types/_internal_.EbookLeftPanelContent.html +++ b/docs/types/_internal_.EbookLeftPanelContent.html @@ -1 +1 @@ -EbookLeftPanelContent | universalviewer
    +EbookLeftPanelContent | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanelOptions.html b/docs/types/_internal_.EbookLeftPanelOptions.html index 9acf782ca..d2bb2c1bb 100644 --- a/docs/types/_internal_.EbookLeftPanelOptions.html +++ b/docs/types/_internal_.EbookLeftPanelOptions.html @@ -1 +1 @@ -EbookLeftPanelOptions | universalviewer
    +EbookLeftPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html index 4db6d02a7..5887e78a5 100644 --- a/docs/types/_internal_.EbookSettingsDialogue.html +++ b/docs/types/_internal_.EbookSettingsDialogue.html @@ -1 +1 @@ -EbookSettingsDialogue | universalviewer
    +EbookSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html index 27a2451e3..7188cd399 100644 --- a/docs/types/_internal_.EbookSettingsDialogueContent.html +++ b/docs/types/_internal_.EbookSettingsDialogueContent.html @@ -1 +1 @@ -EbookSettingsDialogueContent | universalviewer
    +EbookSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogueOptions.html b/docs/types/_internal_.EbookSettingsDialogueOptions.html index 0c3fdb0e4..116ab2a01 100644 --- a/docs/types/_internal_.EbookSettingsDialogueOptions.html +++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html @@ -1 +1 @@ -EbookSettingsDialogueOptions | universalviewer
    +EbookSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogue.html b/docs/types/_internal_.EbookShareDialogue.html index 377a5dd86..5eaf20124 100644 --- a/docs/types/_internal_.EbookShareDialogue.html +++ b/docs/types/_internal_.EbookShareDialogue.html @@ -1 +1 @@ -EbookShareDialogue | universalviewer
    +EbookShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html index c0d76435f..26e63b50c 100644 --- a/docs/types/_internal_.EbookShareDialogueContent.html +++ b/docs/types/_internal_.EbookShareDialogueContent.html @@ -1 +1 @@ -EbookShareDialogueContent | universalviewer
    +EbookShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html index 1e59bb34f..596a8cd31 100644 --- a/docs/types/_internal_.EbookShareDialogueOptions.html +++ b/docs/types/_internal_.EbookShareDialogueOptions.html @@ -1 +1 @@ -EbookShareDialogueOptions | universalviewer
    +EbookShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ExpandPanel.html b/docs/types/_internal_.ExpandPanel.html index 0e21778e3..941d93a15 100644 --- a/docs/types/_internal_.ExpandPanel.html +++ b/docs/types/_internal_.ExpandPanel.html @@ -1 +1 @@ -ExpandPanel | universalviewer
    +ExpandPanel | universalviewer
    diff --git a/docs/types/_internal_.ExpandPanelContent.html b/docs/types/_internal_.ExpandPanelContent.html index ed0cf931d..44d6dfc58 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;
    }
    +ExpandPanelContent | universalviewer

    Type Alias ExpandPanelContent

    ExpandPanelContent: {
        collapse: string;
        collapseFull: string;
        expand: string;
        expandFull: string;
    }
    diff --git a/docs/types/_internal_.ExpandPanelOptions.html b/docs/types/_internal_.ExpandPanelOptions.html index 635036778..dad6db945 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

    -
  • +
    diff --git a/docs/types/_internal_.FileLinkCenterPanel.html b/docs/types/_internal_.FileLinkCenterPanel.html index 14b59fadd..cd88f84c6 100644 --- a/docs/types/_internal_.FileLinkCenterPanel.html +++ b/docs/types/_internal_.FileLinkCenterPanel.html @@ -1 +1 @@ -FileLinkCenterPanel | universalviewer
    +FileLinkCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.FileLinkCenterPanelContent.html b/docs/types/_internal_.FileLinkCenterPanelContent.html index 17cdb552c..06805a4b5 100644 --- a/docs/types/_internal_.FileLinkCenterPanelContent.html +++ b/docs/types/_internal_.FileLinkCenterPanelContent.html @@ -1 +1 @@ -FileLinkCenterPanelContent | universalviewer
    +FileLinkCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.FileLinkCenterPanelOptions.html b/docs/types/_internal_.FileLinkCenterPanelOptions.html index b2f98d15e..aaeea534e 100644 --- a/docs/types/_internal_.FileLinkCenterPanelOptions.html +++ b/docs/types/_internal_.FileLinkCenterPanelOptions.html @@ -1 +1 @@ -FileLinkCenterPanelOptions | universalviewer
    +FileLinkCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.FooterPanel.html b/docs/types/_internal_.FooterPanel.html index b8c3c9f25..c5186bc20 100644 --- a/docs/types/_internal_.FooterPanel.html +++ b/docs/types/_internal_.FooterPanel.html @@ -1 +1 @@ -FooterPanel | universalviewer
    FooterPanel: ModuleConfig & {
        content: FooterPanelContent;
        options: FooterPanelOptions;
    }
    +FooterPanel | universalviewer
    FooterPanel: ModuleConfig & {
        content: FooterPanelContent;
        options: FooterPanelOptions;
    }
    diff --git a/docs/types/_internal_.FooterPanelContent.html b/docs/types/_internal_.FooterPanelContent.html index 86e72d6bf..c12afbf31 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;
    }
    +FooterPanelContent | universalviewer

    Type Alias FooterPanelContent

    FooterPanelContent: {
        bookmark: string;
        download: string;
        embed: string;
        exitFullScreen: string;
        feedback: string;
        fullScreen: string;
        moreInfo: string;
        open: string;
        share: string;
    }
    diff --git a/docs/types/_internal_.FooterPanelOptions.html b/docs/types/_internal_.FooterPanelOptions.html index 4b517eb8e..c42163a91 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

    -
  • +
    diff --git a/docs/types/_internal_.GenericDialogue.html b/docs/types/_internal_.GenericDialogue.html index e11609f36..93076af44 100644 --- a/docs/types/_internal_.GenericDialogue.html +++ b/docs/types/_internal_.GenericDialogue.html @@ -1 +1 @@ -GenericDialogue | universalviewer
    GenericDialogue: ModuleConfig & {
        content: GenericDialogueContent;
        options: GenericDialogueOptions;
    }
    +GenericDialogue | universalviewer
    GenericDialogue: ModuleConfig & {
        content: GenericDialogueContent;
        options: GenericDialogueOptions;
    }
    diff --git a/docs/types/_internal_.GenericDialogueContent.html b/docs/types/_internal_.GenericDialogueContent.html index dd56ed388..b022e9bc5 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;
    }
    +GenericDialogueContent | universalviewer

    Type Alias GenericDialogueContent

    GenericDialogueContent: DialogueContent & {
        emptyValue: string;
        invalidNumber: string;
        noMatches: string;
        ok: string;
        pageNotFound: string;
        refresh: string;
    }
    diff --git a/docs/types/_internal_.GenericDialogueOptions.html b/docs/types/_internal_.GenericDialogueOptions.html index cabdd420d..6582d867d 100644 --- a/docs/types/_internal_.GenericDialogueOptions.html +++ b/docs/types/_internal_.GenericDialogueOptions.html @@ -1 +1 @@ -GenericDialogueOptions | universalviewer

    Type Alias GenericDialogueOptions

    GenericDialogueOptions: DialogueOptions & {}
    +GenericDialogueOptions | universalviewer

    Type Alias GenericDialogueOptions

    GenericDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.HeaderPanel.html b/docs/types/_internal_.HeaderPanel.html index 9dae667d2..5e00104b0 100644 --- a/docs/types/_internal_.HeaderPanel.html +++ b/docs/types/_internal_.HeaderPanel.html @@ -1 +1 @@ -HeaderPanel | universalviewer
    HeaderPanel: ModuleConfig & {
        content: HeaderPanelContent;
        options: HeaderPanelOptions;
    }
    +HeaderPanel | universalviewer
    HeaderPanel: ModuleConfig & {
        content: HeaderPanelContent;
        options: HeaderPanelOptions;
    }
    diff --git a/docs/types/_internal_.HeaderPanelContent.html b/docs/types/_internal_.HeaderPanelContent.html index 19bac9475..7bf6abc70 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 }
    +HeaderPanelContent | universalviewer

    Type Alias HeaderPanelContent

    HeaderPanelContent: { close: string; settings: string }
    diff --git a/docs/types/_internal_.HeaderPanelOptions.html b/docs/types/_internal_.HeaderPanelOptions.html index ad6e53297..48d2bd5b5 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

      -
    +
    diff --git a/docs/types/_internal_.HelpDialogue.html b/docs/types/_internal_.HelpDialogue.html index a66cc6bbf..44f3664fb 100644 --- a/docs/types/_internal_.HelpDialogue.html +++ b/docs/types/_internal_.HelpDialogue.html @@ -1 +1 @@ -HelpDialogue | universalviewer
    HelpDialogue: ModuleConfig & {
        content: HelpDialogueContent;
        options: HelpDialogueOptions;
    }
    +HelpDialogue | universalviewer
    HelpDialogue: ModuleConfig & {
        content: HelpDialogueContent;
        options: HelpDialogueOptions;
    }
    diff --git a/docs/types/_internal_.HelpDialogueContent.html b/docs/types/_internal_.HelpDialogueContent.html index 5c9e6b65d..7886cdbbd 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 }
    +HelpDialogueContent | universalviewer

    Type Alias HelpDialogueContent

    HelpDialogueContent: DialogueContent & { text: string; title: string }
    diff --git a/docs/types/_internal_.HelpDialogueOptions.html b/docs/types/_internal_.HelpDialogueOptions.html index 18e9b9a7c..d2f4eda48 100644 --- a/docs/types/_internal_.HelpDialogueOptions.html +++ b/docs/types/_internal_.HelpDialogueOptions.html @@ -1 +1 @@ -HelpDialogueOptions | universalviewer
    +HelpDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.LeftPanel.html b/docs/types/_internal_.LeftPanel.html index 23b7e6fc4..e059dd628 100644 --- a/docs/types/_internal_.LeftPanel.html +++ b/docs/types/_internal_.LeftPanel.html @@ -1 +1 @@ -LeftPanel | universalviewer
    +LeftPanel | universalviewer
    diff --git a/docs/types/_internal_.Locale.html b/docs/types/_internal_.Locale.html index 97e5e4e61..05b6562bc 100644 --- a/docs/types/_internal_.Locale.html +++ b/docs/types/_internal_.Locale.html @@ -1 +1 @@ -Locale | universalviewer
    Locale: { label: string; name: string }
    +Locale | universalviewer
    Locale: { label: string; name: string }
    diff --git a/docs/types/_internal_.Localisation.html b/docs/types/_internal_.Localisation.html index 6eef1482d..bc8042635 100644 --- a/docs/types/_internal_.Localisation.html +++ b/docs/types/_internal_.Localisation.html @@ -1 +1 @@ -Localisation | universalviewer
    Localisation: { label: string; locales: Locale[] }
    +Localisation | universalviewer
    Localisation: { label: string; locales: Locale[] }
    diff --git a/docs/types/_internal_.LoginDialogue.html b/docs/types/_internal_.LoginDialogue.html index 1ed4d129e..356f15faf 100644 --- a/docs/types/_internal_.LoginDialogue.html +++ b/docs/types/_internal_.LoginDialogue.html @@ -1 +1 @@ -LoginDialogue | universalviewer
    LoginDialogue: ModuleConfig & {
        content: LoginDialogueContent;
        options: LoginDialogueOptions;
    }
    +LoginDialogue | universalviewer
    LoginDialogue: ModuleConfig & {
        content: LoginDialogueContent;
        options: LoginDialogueOptions;
    }
    diff --git a/docs/types/_internal_.LoginDialogueContent.html b/docs/types/_internal_.LoginDialogueContent.html index 3f63b30f7..cb0b560cc 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;
    }
    +LoginDialogueContent | universalviewer

    Type Alias LoginDialogueContent

    LoginDialogueContent: DialogueContent & {
        cancel: string;
        login: string;
        logout: string;
    }
    diff --git a/docs/types/_internal_.LoginDialogueOptions.html b/docs/types/_internal_.LoginDialogueOptions.html index 49550fb5e..36f8a9283 100644 --- a/docs/types/_internal_.LoginDialogueOptions.html +++ b/docs/types/_internal_.LoginDialogueOptions.html @@ -1 +1 @@ -LoginDialogueOptions | universalviewer

    Type Alias LoginDialogueOptions

    LoginDialogueOptions: DialogueOptions & {}
    +LoginDialogueOptions | universalviewer

    Type Alias LoginDialogueOptions

    LoginDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.MediaElementCenterPanel.html b/docs/types/_internal_.MediaElementCenterPanel.html index 7a51c2bf6..1ca63f178 100644 --- a/docs/types/_internal_.MediaElementCenterPanel.html +++ b/docs/types/_internal_.MediaElementCenterPanel.html @@ -1 +1 @@ -MediaElementCenterPanel | universalviewer
    +MediaElementCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html index 000d9e040..f6efa60d7 100644 --- a/docs/types/_internal_.MediaElementCenterPanelContent.html +++ b/docs/types/_internal_.MediaElementCenterPanelContent.html @@ -1 +1 @@ -MediaElementCenterPanelContent | universalviewer
    +MediaElementCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementCenterPanelOptions.html b/docs/types/_internal_.MediaElementCenterPanelOptions.html index 3962da277..d8781f633 100644 --- a/docs/types/_internal_.MediaElementCenterPanelOptions.html +++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html @@ -1 +1 @@ -MediaElementCenterPanelOptions | universalviewer

    Type Alias MediaElementCenterPanelOptions

    MediaElementCenterPanelOptions: CenterPanelOptions & {
        autoPlayOnSetTarget: boolean;
        defaultHeight: number;
        defaultWidth: number;
    }
    +MediaElementCenterPanelOptions | universalviewer

    Type Alias MediaElementCenterPanelOptions

    MediaElementCenterPanelOptions: CenterPanelOptions & {
        autoPlayOnSetTarget: boolean;
        defaultHeight: number;
        defaultWidth: number;
    }
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogue.html b/docs/types/_internal_.MediaElementDownloadDialogue.html index 475c23280..26bc068ee 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogue.html +++ b/docs/types/_internal_.MediaElementDownloadDialogue.html @@ -1 +1 @@ -MediaElementDownloadDialogue | universalviewer
    +MediaElementDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html index 7041c5f8f..b35e624f1 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueContent.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html @@ -1 +1 @@ -MediaElementDownloadDialogueContent | universalviewer
    +MediaElementDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html index 3446ad506..306b58db6 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html @@ -1 +1 @@ -MediaElementDownloadDialogueOptions | universalviewer
    +MediaElementDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogue.html b/docs/types/_internal_.MediaElementSettingsDialogue.html index 6035f5e5a..7c843895b 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogue.html +++ b/docs/types/_internal_.MediaElementSettingsDialogue.html @@ -1 +1 @@ -MediaElementSettingsDialogue | universalviewer
    +MediaElementSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html index 835faf836..22b312a40 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueContent.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html @@ -1 +1 @@ -MediaElementSettingsDialogueContent | universalviewer
    +MediaElementSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html index 17094e4a2..63293f9d2 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html @@ -1 +1 @@ -MediaElementSettingsDialogueOptions | universalviewer
    +MediaElementSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogue.html b/docs/types/_internal_.MediaElementShareDialogue.html index 4f8b87b65..9bd3dbb19 100644 --- a/docs/types/_internal_.MediaElementShareDialogue.html +++ b/docs/types/_internal_.MediaElementShareDialogue.html @@ -1 +1 @@ -MediaElementShareDialogue | universalviewer
    +MediaElementShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html index b05394ff2..1f960c41a 100644 --- a/docs/types/_internal_.MediaElementShareDialogueContent.html +++ b/docs/types/_internal_.MediaElementShareDialogueContent.html @@ -1 +1 @@ -MediaElementShareDialogueContent | universalviewer
    +MediaElementShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogueOptions.html b/docs/types/_internal_.MediaElementShareDialogueOptions.html index c67aab57b..da7841ebd 100644 --- a/docs/types/_internal_.MediaElementShareDialogueOptions.html +++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html @@ -1 +1 @@ -MediaElementShareDialogueOptions | universalviewer
    +MediaElementShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MobileFooterPanel.html b/docs/types/_internal_.MobileFooterPanel.html index 4c0a4cc5d..4dba726a0 100644 --- a/docs/types/_internal_.MobileFooterPanel.html +++ b/docs/types/_internal_.MobileFooterPanel.html @@ -1 +1 @@ -MobileFooterPanel | universalviewer
    +MobileFooterPanel | universalviewer
    diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html index 90f563699..e1e871d19 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;
    }
    +MobileFooterPanelContent | universalviewer

    Type Alias MobileFooterPanelContent

    MobileFooterPanelContent: FooterPanelContent & {
        moreInfo: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    diff --git a/docs/types/_internal_.MobileFooterPanelOptions.html b/docs/types/_internal_.MobileFooterPanelOptions.html index 0513ac678..d09d87903 100644 --- a/docs/types/_internal_.MobileFooterPanelOptions.html +++ b/docs/types/_internal_.MobileFooterPanelOptions.html @@ -1 +1 @@ -MobileFooterPanelOptions | universalviewer
    +MobileFooterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html index 83972c42b..b9c917805 100644 --- a/docs/types/_internal_.ModelViewerCenterPanel.html +++ b/docs/types/_internal_.ModelViewerCenterPanel.html @@ -1 +1 @@ -ModelViewerCenterPanel | universalviewer
    +ModelViewerCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanelContent.html b/docs/types/_internal_.ModelViewerCenterPanelContent.html index a46813cef..1b45119ae 100644 --- a/docs/types/_internal_.ModelViewerCenterPanelContent.html +++ b/docs/types/_internal_.ModelViewerCenterPanelContent.html @@ -1 +1 @@ -ModelViewerCenterPanelContent | universalviewer
    +ModelViewerCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanelOptions.html b/docs/types/_internal_.ModelViewerCenterPanelOptions.html index 862deaeea..3893d7a2c 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

    -
  • +
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html index f6e055b59..1819ea018 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogue.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html @@ -1 +1 @@ -ModelViewerDownloadDialogue | universalviewer
    +ModelViewerDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html index 02ba8fd64..1e7375dce 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html @@ -1 +1 @@ -ModelViewerDownloadDialogueContent | universalviewer
    +ModelViewerDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html index 92eef21eb..c62f9f41e 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html @@ -1 +1 @@ -ModelViewerDownloadDialogueOptions | universalviewer
    +ModelViewerDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogue.html b/docs/types/_internal_.ModelViewerSettingsDialogue.html index 9f49ca1c0..54ae2a25a 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogue.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html @@ -1 +1 @@ -ModelViewerSettingsDialogue | universalviewer
    +ModelViewerSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html index db4114160..4ffc1f4ad 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html @@ -1 +1 @@ -ModelViewerSettingsDialogueContent | universalviewer
    +ModelViewerSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html index 7a76004fb..d7305a5f3 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html @@ -1 +1 @@ -ModelViewerSettingsDialogueOptions | universalviewer
    +ModelViewerSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogue.html b/docs/types/_internal_.ModelViewerShareDialogue.html index dec9a0512..0c473fb91 100644 --- a/docs/types/_internal_.ModelViewerShareDialogue.html +++ b/docs/types/_internal_.ModelViewerShareDialogue.html @@ -1 +1 @@ -ModelViewerShareDialogue | universalviewer
    +ModelViewerShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html index 063dd8920..710e1f280 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueContent.html +++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html @@ -1 +1 @@ -ModelViewerShareDialogueContent | universalviewer
    +ModelViewerShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogueOptions.html b/docs/types/_internal_.ModelViewerShareDialogueOptions.html index 1a9114daa..c39535fd0 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html @@ -1 +1 @@ -ModelViewerShareDialogueOptions | universalviewer
    +ModelViewerShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModuleConfig.html b/docs/types/_internal_.ModuleConfig.html index 45f00e21a..ec4824cff 100644 --- a/docs/types/_internal_.ModuleConfig.html +++ b/docs/types/_internal_.ModuleConfig.html @@ -1 +1 @@ -ModuleConfig | universalviewer
    ModuleConfig: { content: ModuleContent; options: ModuleOptions }
    +ModuleConfig | universalviewer
    ModuleConfig: { content: ModuleContent; options: ModuleOptions }
    diff --git a/docs/types/_internal_.ModuleContent.html b/docs/types/_internal_.ModuleContent.html index 4d1b7607b..a0c71e26d 100644 --- a/docs/types/_internal_.ModuleContent.html +++ b/docs/types/_internal_.ModuleContent.html @@ -1 +1 @@ -ModuleContent | universalviewer
    +ModuleContent | universalviewer
    diff --git a/docs/types/_internal_.ModuleOptions.html b/docs/types/_internal_.ModuleOptions.html index 5c3a8eef3..793a66c9f 100644 --- a/docs/types/_internal_.ModuleOptions.html +++ b/docs/types/_internal_.ModuleOptions.html @@ -1 +1 @@ -ModuleOptions | universalviewer
    +ModuleOptions | universalviewer
    diff --git a/docs/types/_internal_.Modules-1.html b/docs/types/_internal_.Modules-1.html index 7c4876f58..a4a02bf16 100644 --- a/docs/types/_internal_.Modules-1.html +++ b/docs/types/_internal_.Modules-1.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        avCenterPanel: AVCenterPanel;
        downloadDialogue: AVDownloadDialogue;
        settingsDialogue: AVSettingsDialogue;
        shareDialogue: AVShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        avCenterPanel: AVCenterPanel;
        downloadDialogue: AVDownloadDialogue;
        settingsDialogue: AVSettingsDialogue;
        shareDialogue: AVShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-2.html b/docs/types/_internal_.Modules-2.html index 828c9d114..ed3000908 100644 --- a/docs/types/_internal_.Modules-2.html +++ b/docs/types/_internal_.Modules-2.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: DefaultDownloadDialogue;
        fileLinkCenterPanel: FileLinkCenterPanel;
        settingsDialogue: DefaultSettingsDialogue;
        shareDialogue: DefaultShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: DefaultDownloadDialogue;
        fileLinkCenterPanel: FileLinkCenterPanel;
        settingsDialogue: DefaultSettingsDialogue;
        shareDialogue: DefaultShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-3.html b/docs/types/_internal_.Modules-3.html index 7e1083f4a..85f4026df 100644 --- a/docs/types/_internal_.Modules-3.html +++ b/docs/types/_internal_.Modules-3.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: EbookDownloadDialogue;
        ebookCenterPanel: EbookCenterPanel;
        ebookLeftPanel: EbookLeftPanel;
        settingsDialogue: EbookSettingsDialogue;
        shareDialogue: EbookShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: EbookDownloadDialogue;
        ebookCenterPanel: EbookCenterPanel;
        ebookLeftPanel: EbookLeftPanel;
        settingsDialogue: EbookSettingsDialogue;
        shareDialogue: EbookShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-4.html b/docs/types/_internal_.Modules-4.html index 303ab8c98..ca49c4632 100644 --- a/docs/types/_internal_.Modules-4.html +++ b/docs/types/_internal_.Modules-4.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: MediaElementDownloadDialogue;
        mediaelementCenterPanel: MediaElementCenterPanel;
        settingsDialogue: MediaElementSettingsDialogue;
        shareDialogue: MediaElementShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: MediaElementDownloadDialogue;
        mediaelementCenterPanel: MediaElementCenterPanel;
        settingsDialogue: MediaElementSettingsDialogue;
        shareDialogue: MediaElementShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-5.html b/docs/types/_internal_.Modules-5.html index 5476dd4c6..cedbb6fd0 100644 --- a/docs/types/_internal_.Modules-5.html +++ b/docs/types/_internal_.Modules-5.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: ModelViewerDownloadDialogue;
        modelViewerCenterPanel: ModelViewerCenterPanel;
        settingsDialogue: ModelViewerSettingsDialogue;
        shareDialogue: ModelViewerShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: ModelViewerDownloadDialogue;
        modelViewerCenterPanel: ModelViewerCenterPanel;
        settingsDialogue: ModelViewerSettingsDialogue;
        shareDialogue: ModelViewerShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-6.html b/docs/types/_internal_.Modules-6.html index eb2d7188d..fc3478886 100644 --- a/docs/types/_internal_.Modules-6.html +++ b/docs/types/_internal_.Modules-6.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        adjustImageDialogue: AdjustImageDialogue;
        contentLeftPanel: ContentLeftPanel;
        downloadDialogue: OSDDownloadDialogue;
        mobileFooterPanel: MobileFooterPanel;
        multiSelectDialogue: MultiSelectDialogue;
        openSeadragonCenterPanel: OpenSeadragonCenterPanel;
        pagingHeaderPanel: PagingHeaderPanel;
        searchFooterPanel: SearchFooterPanel;
        settingsDialogue: OSDSettingsDialogue;
        shareDialogue: OSDShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        adjustImageDialogue: AdjustImageDialogue;
        contentLeftPanel: ContentLeftPanel;
        downloadDialogue: OSDDownloadDialogue;
        mobileFooterPanel: MobileFooterPanel;
        multiSelectDialogue: MultiSelectDialogue;
        openSeadragonCenterPanel: OpenSeadragonCenterPanel;
        pagingHeaderPanel: PagingHeaderPanel;
        searchFooterPanel: SearchFooterPanel;
        settingsDialogue: OSDSettingsDialogue;
        shareDialogue: OSDShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-7.html b/docs/types/_internal_.Modules-7.html index bd26ed62c..342ddde65 100644 --- a/docs/types/_internal_.Modules-7.html +++ b/docs/types/_internal_.Modules-7.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: PDFDownloadDialogue;
        pdfCenterPanel: PDFCenterPanel;
        pdfHeaderPanel: PDFHeaderPanel;
        settingsDialogue: PDFSettingsDialogue;
        shareDialogue: PDFShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: PDFDownloadDialogue;
        pdfCenterPanel: PDFCenterPanel;
        pdfHeaderPanel: PDFHeaderPanel;
        settingsDialogue: PDFSettingsDialogue;
        shareDialogue: PDFShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules.html b/docs/types/_internal_.Modules.html index f2825b52f..a5510bd86 100644 --- a/docs/types/_internal_.Modules.html +++ b/docs/types/_internal_.Modules.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        alephCenterPanel: AlephCenterPanel;
        alephLeftPanel: AlephLeftPanel;
        downloadDialogue: AlephDownloadDialogue;
        settingsDialogue: AlephSettingsDialogue;
        shareDialogue: AlephShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        alephCenterPanel: AlephCenterPanel;
        alephLeftPanel: AlephLeftPanel;
        downloadDialogue: AlephDownloadDialogue;
        settingsDialogue: AlephSettingsDialogue;
        shareDialogue: AlephShareDialogue;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanel.html b/docs/types/_internal_.MoreInfoRightPanel.html index d450318ef..16a6907ae 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;
    }
    +MoreInfoRightPanel | universalviewer

    Type Alias MoreInfoRightPanel

    MoreInfoRightPanel: ModuleConfig & {
        content: MoreInfoRightPanelContent;
        options: MoreInfoRightPanelOptions;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanelContent.html b/docs/types/_internal_.MoreInfoRightPanelContent.html index 00037b238..caa6228f6 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanelOptions.html b/docs/types/_internal_.MoreInfoRightPanelOptions.html index dcb08bc28..187931dc5 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

    -
  • +
    diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html index 7ba1b23ca..8d707a99f 100644 --- a/docs/types/_internal_.MultiSelectDialogue.html +++ b/docs/types/_internal_.MultiSelectDialogue.html @@ -1 +1 @@ -MultiSelectDialogue | universalviewer
    +MultiSelectDialogue | universalviewer
    diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html index b69b0ee85..67790fefe 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;
    }
    +MultiSelectDialogueContent | universalviewer

    Type Alias MultiSelectDialogueContent

    MultiSelectDialogueContent: DialogueContent & {
        select: string;
        selectAll: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.MultiSelectDialogueOptions.html b/docs/types/_internal_.MultiSelectDialogueOptions.html index 61a319e7a..a3075d950 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

    -
  • +
    diff --git a/docs/types/_internal_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html index b1009d1e2..0fec3a2a3 100644 --- a/docs/types/_internal_.OSDDownloadDialogue.html +++ b/docs/types/_internal_.OSDDownloadDialogue.html @@ -1 +1 @@ -OSDDownloadDialogue | universalviewer
    +OSDDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html index c00a72d1d..d0991b2d7 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.OSDDownloadDialogueOptions.html b/docs/types/_internal_.OSDDownloadDialogueOptions.html index baede60d5..ac6d79a01 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

    -
  • +
    diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html index b1b823a8e..acac9bea6 100644 --- a/docs/types/_internal_.OSDSettingsDialogue.html +++ b/docs/types/_internal_.OSDSettingsDialogue.html @@ -1 +1 @@ -OSDSettingsDialogue | universalviewer
    +OSDSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html index 37f1b9f47..222cf1049 100644 --- a/docs/types/_internal_.OSDSettingsDialogueContent.html +++ b/docs/types/_internal_.OSDSettingsDialogueContent.html @@ -1 +1 @@ -OSDSettingsDialogueContent | universalviewer
    +OSDSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html index d765dfddc..775481026 100644 --- a/docs/types/_internal_.OSDSettingsDialogueOptions.html +++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html @@ -1 +1 @@ -OSDSettingsDialogueOptions | universalviewer
    +OSDSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html index c9639fc46..d26453795 100644 --- a/docs/types/_internal_.OSDShareDialogue.html +++ b/docs/types/_internal_.OSDShareDialogue.html @@ -1 +1 @@ -OSDShareDialogue | universalviewer
    +OSDShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html index 1f83dbc41..3f3e6c343 100644 --- a/docs/types/_internal_.OSDShareDialogueContent.html +++ b/docs/types/_internal_.OSDShareDialogueContent.html @@ -1 +1 @@ -OSDShareDialogueContent | universalviewer
    +OSDShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html index 2641bae06..684f5057a 100644 --- a/docs/types/_internal_.OSDShareDialogueOptions.html +++ b/docs/types/_internal_.OSDShareDialogueOptions.html @@ -1 +1 @@ -OSDShareDialogueOptions | universalviewer
    +OSDShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanel.html b/docs/types/_internal_.OpenSeadragonCenterPanel.html index 3c8118e22..b6ed4602d 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanel.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanel.html @@ -1 +1 @@ -OpenSeadragonCenterPanel | universalviewer
    +OpenSeadragonCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html index 853bd60fe..fd08864a7 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html @@ -1 +1 @@ -OpenSeadragonCenterPanelContent | universalviewer

    Type Alias OpenSeadragonCenterPanelContent

    OpenSeadragonCenterPanelContent: CenterPanelContent & {
        adjustImage: string;
        attribution: string;
        goHome: string;
        imageUnavailable: string;
        nextImage: string;
        previousImage: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    +OpenSeadragonCenterPanelContent | universalviewer

    Type Alias OpenSeadragonCenterPanelContent

    OpenSeadragonCenterPanelContent: CenterPanelContent & {
        adjustImage: string;
        attribution: string;
        goHome: string;
        imageUnavailable: string;
        nextImage: string;
        previousImage: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html index 7e49bf9c2..714fcf7a6 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html @@ -17,4 +17,4 @@
  • trimAttributionCount: number

    Number of attributions to trim

  • visibilityRatio: number

    Ratio of visibility

  • zoomToInitialAnnotation: boolean

    Whether to zoom in to first annotation on load

    -
  • +
    diff --git a/docs/types/_internal_.Options.html b/docs/types/_internal_.Options.html index 666218421..23950065c 100644 --- a/docs/types/_internal_.Options.html +++ b/docs/types/_internal_.Options.html @@ -29,4 +29,4 @@
  • OptionaluseArrowKeysToNavigate?: boolean

    Determines if arrow keys can be used to navigate

  • OptionalzoomToBoundsEnabled?: boolean

    Determines if zoom to bounds is enabled

  • OptionalzoomToSearchResultEnabled?: boolean

    Determines if zoom to search result is enabled

    -
  • +
    diff --git a/docs/types/_internal_.PDFCenterPanel.html b/docs/types/_internal_.PDFCenterPanel.html index 07d08b64a..a111a1f9f 100644 --- a/docs/types/_internal_.PDFCenterPanel.html +++ b/docs/types/_internal_.PDFCenterPanel.html @@ -1 +1 @@ -PDFCenterPanel | universalviewer
    +PDFCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html index 0afcd2ad5..42f6a4af7 100644 --- a/docs/types/_internal_.PDFCenterPanelContent.html +++ b/docs/types/_internal_.PDFCenterPanelContent.html @@ -1 +1 @@ -PDFCenterPanelContent | universalviewer

    Type Alias PDFCenterPanelContent

    PDFCenterPanelContent: CenterPanelContent & { next: string; previous: string }
    +PDFCenterPanelContent | universalviewer

    Type Alias PDFCenterPanelContent

    PDFCenterPanelContent: CenterPanelContent & { next: string; previous: string }
    diff --git a/docs/types/_internal_.PDFCenterPanelOptions.html b/docs/types/_internal_.PDFCenterPanelOptions.html index 9212d57db..41ed3b736 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

      -
    +
    diff --git a/docs/types/_internal_.PDFDownloadDialogue.html b/docs/types/_internal_.PDFDownloadDialogue.html index fe325fe86..c06a91385 100644 --- a/docs/types/_internal_.PDFDownloadDialogue.html +++ b/docs/types/_internal_.PDFDownloadDialogue.html @@ -1 +1 @@ -PDFDownloadDialogue | universalviewer
    +PDFDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html index d2a6f13c6..23b747266 100644 --- a/docs/types/_internal_.PDFDownloadDialogueContent.html +++ b/docs/types/_internal_.PDFDownloadDialogueContent.html @@ -1 +1 @@ -PDFDownloadDialogueContent | universalviewer
    +PDFDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html index b57552201..bb640e594 100644 --- a/docs/types/_internal_.PDFDownloadDialogueOptions.html +++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html @@ -1 +1 @@ -PDFDownloadDialogueOptions | universalviewer
    +PDFDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html index c5b0aa74f..f46db2d02 100644 --- a/docs/types/_internal_.PDFHeaderPanel.html +++ b/docs/types/_internal_.PDFHeaderPanel.html @@ -1 +1 @@ -PDFHeaderPanel | universalviewer
    +PDFHeaderPanel | universalviewer
    diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html index 4575249b5..2a7ab7257 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;
    }
    +PDFHeaderPanelContent | universalviewer

    Type Alias PDFHeaderPanelContent

    PDFHeaderPanelContent: HeaderPanelContent & {
        emptyValue: string;
        first: string;
        go: string;
        last: string;
        next: string;
        of: string;
        pageSearchLabel: string;
        previous: string;
    }
    diff --git a/docs/types/_internal_.PDFHeaderPanelOptions.html b/docs/types/_internal_.PDFHeaderPanelOptions.html index b3bcb75ae..e71070f6b 100644 --- a/docs/types/_internal_.PDFHeaderPanelOptions.html +++ b/docs/types/_internal_.PDFHeaderPanelOptions.html @@ -1 +1 @@ -PDFHeaderPanelOptions | universalviewer
    +PDFHeaderPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html index 1c306cd92..4569f46c2 100644 --- a/docs/types/_internal_.PDFSettingsDialogue.html +++ b/docs/types/_internal_.PDFSettingsDialogue.html @@ -1 +1 @@ -PDFSettingsDialogue | universalviewer
    +PDFSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html index a21059d0e..10ca6c569 100644 --- a/docs/types/_internal_.PDFSettingsDialogueContent.html +++ b/docs/types/_internal_.PDFSettingsDialogueContent.html @@ -1 +1 @@ -PDFSettingsDialogueContent | universalviewer
    +PDFSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html index c54c86e96..8a8d42684 100644 --- a/docs/types/_internal_.PDFSettingsDialogueOptions.html +++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html @@ -1 +1 @@ -PDFSettingsDialogueOptions | universalviewer
    +PDFSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html index e7c5f6e52..6d0f80e0a 100644 --- a/docs/types/_internal_.PDFShareDialogue.html +++ b/docs/types/_internal_.PDFShareDialogue.html @@ -1 +1 @@ -PDFShareDialogue | universalviewer
    +PDFShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html index b1ae253cc..931125ab6 100644 --- a/docs/types/_internal_.PDFShareDialogueContent.html +++ b/docs/types/_internal_.PDFShareDialogueContent.html @@ -1 +1 @@ -PDFShareDialogueContent | universalviewer
    +PDFShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html index a4ff7e302..ad15464a6 100644 --- a/docs/types/_internal_.PDFShareDialogueOptions.html +++ b/docs/types/_internal_.PDFShareDialogueOptions.html @@ -1 +1 @@ -PDFShareDialogueOptions | universalviewer
    +PDFShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html index ffd13b56a..c52434c71 100644 --- a/docs/types/_internal_.PagingHeaderPanel.html +++ b/docs/types/_internal_.PagingHeaderPanel.html @@ -1 +1 @@ -PagingHeaderPanel | universalviewer
    +PagingHeaderPanel | universalviewer
    diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html index e1bc5cad2..c0a84899b 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.PagingHeaderPanelOptions.html b/docs/types/_internal_.PagingHeaderPanelOptions.html index c2129ad74..94bd3fb6a 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

    -
  • +
    diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html index a3eda76d9..13441be9a 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;
    }
    +RestrictedDialogue | universalviewer

    Type Alias RestrictedDialogue

    RestrictedDialogue: ModuleConfig & {
        content: RestrictedDialogueContent;
        options: RestrictedDialogueOptions;
    }
    diff --git a/docs/types/_internal_.RestrictedDialogueContent.html b/docs/types/_internal_.RestrictedDialogueContent.html index 6a483cea1..eb625dc26 100644 --- a/docs/types/_internal_.RestrictedDialogueContent.html +++ b/docs/types/_internal_.RestrictedDialogueContent.html @@ -1 +1 @@ -RestrictedDialogueContent | universalviewer

    Type Alias RestrictedDialogueContent

    RestrictedDialogueContent: DialogueContent & { cancel: string }
    +RestrictedDialogueContent | universalviewer

    Type Alias RestrictedDialogueContent

    RestrictedDialogueContent: DialogueContent & { cancel: string }
    diff --git a/docs/types/_internal_.RestrictedDialogueOptions.html b/docs/types/_internal_.RestrictedDialogueOptions.html index e5497f3ca..414efd990 100644 --- a/docs/types/_internal_.RestrictedDialogueOptions.html +++ b/docs/types/_internal_.RestrictedDialogueOptions.html @@ -1 +1 @@ -RestrictedDialogueOptions | universalviewer

    Type Alias RestrictedDialogueOptions

    RestrictedDialogueOptions: DialogueOptions & {}
    +RestrictedDialogueOptions | universalviewer

    Type Alias RestrictedDialogueOptions

    RestrictedDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.SearchFooterPanel.html b/docs/types/_internal_.SearchFooterPanel.html index 80707fb67..9f3cd4084 100644 --- a/docs/types/_internal_.SearchFooterPanel.html +++ b/docs/types/_internal_.SearchFooterPanel.html @@ -1 +1 @@ -SearchFooterPanel | universalviewer
    +SearchFooterPanel | universalviewer
    diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html index b428d90c2..70722dd1c 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.SearchFooterPanelOptions.html b/docs/types/_internal_.SearchFooterPanelOptions.html index 056af9aac..b7f305bd2 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

    -
  • +
    diff --git a/docs/types/_internal_.SettingsDialogue.html b/docs/types/_internal_.SettingsDialogue.html index 5ff758433..0fef10098 100644 --- a/docs/types/_internal_.SettingsDialogue.html +++ b/docs/types/_internal_.SettingsDialogue.html @@ -1 +1 @@ -SettingsDialogue | universalviewer
    SettingsDialogue: ModuleConfig & {
        content: SettingsDialogueContent;
        options: SettingsDialogueOptions;
    }
    +SettingsDialogue | universalviewer
    SettingsDialogue: ModuleConfig & {
        content: SettingsDialogueContent;
        options: SettingsDialogueOptions;
    }
    diff --git a/docs/types/_internal_.SettingsDialogueContent.html b/docs/types/_internal_.SettingsDialogueContent.html index d68c37c7e..11510b922 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;
        truncateThumbnailLabels: string;
        website: string;
    }
    +SettingsDialogueContent | universalviewer

    Type Alias SettingsDialogueContent

    SettingsDialogueContent: DialogueContent & {
        clickToZoomEnabled: string;
        locale: string;
        navigatorEnabled: string;
        pagingEnabled: string;
        preserveViewport: string;
        reducedMotion: string;
        title: string;
        truncateThumbnailLabels: string;
        website: string;
    }
    diff --git a/docs/types/_internal_.SettingsDialogueOptions.html b/docs/types/_internal_.SettingsDialogueOptions.html index 0921db5ea..5f2757b86 100644 --- a/docs/types/_internal_.SettingsDialogueOptions.html +++ b/docs/types/_internal_.SettingsDialogueOptions.html @@ -1 +1 @@ -SettingsDialogueOptions | universalviewer

    Type Alias SettingsDialogueOptions

    SettingsDialogueOptions: DialogueOptions & {}
    +SettingsDialogueOptions | universalviewer

    Type Alias SettingsDialogueOptions

    SettingsDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.ShareDialogue.html b/docs/types/_internal_.ShareDialogue.html index 95f24d584..5edbeee55 100644 --- a/docs/types/_internal_.ShareDialogue.html +++ b/docs/types/_internal_.ShareDialogue.html @@ -1 +1 @@ -ShareDialogue | universalviewer
    ShareDialogue: ModuleConfig & {
        content: ShareDialogueContent;
        options: ShareDialogueOptions;
    }
    +ShareDialogue | universalviewer
    ShareDialogue: ModuleConfig & {
        content: ShareDialogueContent;
        options: ShareDialogueOptions;
    }
    diff --git a/docs/types/_internal_.ShareDialogueContent.html b/docs/types/_internal_.ShareDialogueContent.html index 1a316dedb..3760f0afd 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.ShareDialogueOptions.html b/docs/types/_internal_.ShareDialogueOptions.html index 5380664aa..429dbec49 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

    -
  • +
    diff --git a/docs/types/_internal_.ThumbsCacheInvalidation.html b/docs/types/_internal_.ThumbsCacheInvalidation.html index e390f41f2..1cce5a653 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

      -
    +
    From a4015a0b3532e732037b9c981d5867d2126c9194 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Thu, 12 Dec 2024 07:30:19 -0500 Subject: [PATCH 3/7] Improve documentation generation workflow. --- .github/workflows/update-docs.yml | 3 --- package.json | 2 +- typedoc.json | 1 + 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index 8ace79929..9200a9104 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -22,9 +22,6 @@ jobs: - name: Build documentation run: npm run docs - - name: Regenerate CNAME file - run: echo docs.universalviewer.io > docs/CNAME - - name: Auto-commit fixes uses: EndBug/add-and-commit@v9 with: diff --git a/package.json b/package.json index 6ed695c58..8f76db6b4 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "build-es": "node ./esbuild.mjs", "build-tsc": "tsc --skipLibCheck --module CommonJS --esModuleInterop --declarationDir ./dist/cjs --declaration --outDir ./dist/cjs -p . && npm run copy-files", "copy-files": "copyfiles -u 1 src/**/*.svg dist/cjs && copyfiles -u 1 src/**/*.gif dist/cjs && copyfiles -u 1 src/**/*.less dist/cjs && copyfiles -u 1 src/extensions/**/*.less dist/cjs && copyfiles -u 1 src/**/*.css dist/cjs", - "docs": "typedoc --plugin typedoc-plugin-missing-exports --gitRevision dev", + "docs": "typedoc --plugin typedoc-plugin-missing-exports ; echo docs.universalviewer.io > docs/CNAME", "test": "jest", "prepublishOnly": "npm run build && npm run build-tsc && npm run build-es" }, diff --git a/typedoc.json b/typedoc.json index dca1eca4c..173a34a05 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,4 +1,5 @@ { "entryPoints": ["src/content-handlers/iiif/Docs.ts"], + "sourceLinkTemplate": "https://github.com/UniversalViewer/universalviewer/blob/dev/{path}#L{line}", "out": "docs" } From 98f0f3956539b9d145e1057c4ee05f567fba7363 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:36:22 +0000 Subject: [PATCH 4/7] Commit from GitHub Actions (Update Documentation) --- docs/classes/_internal_.Metric.html | 4 ++-- 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_.AdjustImageDialogue.html | 2 +- docs/types/_internal_.AdjustImageDialogueContent.html | 2 +- docs/types/_internal_.AdjustImageDialogueOptions.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 +- docs/types/_internal_.AlephDownloadDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.AlephSettingsDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.ClickThroughDialogueContent.html | 2 +- docs/types/_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_.DefaultDownloadDialogue.html | 2 +- docs/types/_internal_.DefaultDownloadDialogueContent.html | 2 +- docs/types/_internal_.DefaultDownloadDialogueOptions.html | 2 +- docs/types/_internal_.DefaultSettingsDialogue.html | 2 +- docs/types/_internal_.DefaultSettingsDialogueContent.html | 2 +- docs/types/_internal_.DefaultSettingsDialogueOptions.html | 2 +- docs/types/_internal_.DefaultShareDialogue.html | 2 +- docs/types/_internal_.DefaultShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.EbookDownloadDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.EbookSettingsDialogueContent.html | 2 +- docs/types/_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 | 2 +- docs/types/_internal_.FileLinkCenterPanelContent.html | 2 +- docs/types/_internal_.FileLinkCenterPanelOptions.html | 2 +- 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 +- docs/types/_internal_.MediaElementCenterPanelContent.html | 2 +- docs/types/_internal_.MediaElementCenterPanelOptions.html | 2 +- docs/types/_internal_.MediaElementDownloadDialogue.html | 2 +- .../types/_internal_.MediaElementDownloadDialogueContent.html | 2 +- .../types/_internal_.MediaElementDownloadDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementSettingsDialogue.html | 2 +- .../types/_internal_.MediaElementSettingsDialogueContent.html | 2 +- .../types/_internal_.MediaElementSettingsDialogueOptions.html | 2 +- docs/types/_internal_.MediaElementShareDialogue.html | 2 +- docs/types/_internal_.MediaElementShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.ModelViewerCenterPanelContent.html | 2 +- docs/types/_internal_.ModelViewerCenterPanelOptions.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogue.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogueContent.html | 2 +- docs/types/_internal_.ModelViewerDownloadDialogueOptions.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogue.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogueContent.html | 2 +- docs/types/_internal_.ModelViewerSettingsDialogueOptions.html | 2 +- docs/types/_internal_.ModelViewerShareDialogue.html | 2 +- docs/types/_internal_.ModelViewerShareDialogueContent.html | 2 +- docs/types/_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 +- docs/types/_internal_.MultiSelectDialogueContent.html | 2 +- docs/types/_internal_.MultiSelectDialogueOptions.html | 2 +- docs/types/_internal_.OSDDownloadDialogue.html | 2 +- docs/types/_internal_.OSDDownloadDialogueContent.html | 2 +- docs/types/_internal_.OSDDownloadDialogueOptions.html | 2 +- docs/types/_internal_.OSDSettingsDialogue.html | 2 +- docs/types/_internal_.OSDSettingsDialogueContent.html | 2 +- docs/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 | 2 +- docs/types/_internal_.OpenSeadragonCenterPanelContent.html | 2 +- docs/types/_internal_.OpenSeadragonCenterPanelOptions.html | 2 +- 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 +- docs/types/_internal_.PDFDownloadDialogueContent.html | 2 +- docs/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 +- docs/types/_internal_.PDFSettingsDialogueContent.html | 2 +- docs/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 +- 196 files changed, 197 insertions(+), 197 deletions(-) diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html index fa4eda0b7..53d5a2d33 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
    +

    Constructors

    Properties

    minWidth: number
    type: string
    diff --git a/docs/types/IIIFContentHandlerConfig.html b/docs/types/IIIFContentHandlerConfig.html index 62a8c7b1e..ad8b73159 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;
    }
    +IIIFContentHandlerConfig | universalviewer

    Type Alias IIIFContentHandlerConfig

    IIIFContentHandlerConfig: {
        aleph: Config;
        av: Config;
        default: Config;
        ebook: Config;
        mediaelement: Config;
        modelViewer: Config;
        osd: Config;
        pdf: Config;
    }
    diff --git a/docs/types/_internal_.AVCenterPanel.html b/docs/types/_internal_.AVCenterPanel.html index 4fffc6409..01a003c0b 100644 --- a/docs/types/_internal_.AVCenterPanel.html +++ b/docs/types/_internal_.AVCenterPanel.html @@ -1 +1 @@ -AVCenterPanel | universalviewer
    +AVCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html index 9c4e472ac..f20a50c1d 100644 --- a/docs/types/_internal_.AVCenterPanelContent.html +++ b/docs/types/_internal_.AVCenterPanelContent.html @@ -1 +1 @@ -AVCenterPanelContent | universalviewer
    +AVCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.AVCenterPanelOptions.html b/docs/types/_internal_.AVCenterPanelOptions.html index ed4b5f23c..6b730afe1 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

    -
  • +
    diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html index 583799ad8..19664f5fd 100644 --- a/docs/types/_internal_.AVDownloadDialogue.html +++ b/docs/types/_internal_.AVDownloadDialogue.html @@ -1 +1 @@ -AVDownloadDialogue | universalviewer
    +AVDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html index 327071680..b7e6f51e0 100644 --- a/docs/types/_internal_.AVDownloadDialogueContent.html +++ b/docs/types/_internal_.AVDownloadDialogueContent.html @@ -1 +1 @@ -AVDownloadDialogueContent | universalviewer
    +AVDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html index adfaf9eb0..e27eb0465 100644 --- a/docs/types/_internal_.AVDownloadDialogueOptions.html +++ b/docs/types/_internal_.AVDownloadDialogueOptions.html @@ -1 +1 @@ -AVDownloadDialogueOptions | universalviewer
    +AVDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogue.html b/docs/types/_internal_.AVSettingsDialogue.html index 8cb351d2a..394d390a9 100644 --- a/docs/types/_internal_.AVSettingsDialogue.html +++ b/docs/types/_internal_.AVSettingsDialogue.html @@ -1 +1 @@ -AVSettingsDialogue | universalviewer
    +AVSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html index bf7ee8580..f9ed3dc2a 100644 --- a/docs/types/_internal_.AVSettingsDialogueContent.html +++ b/docs/types/_internal_.AVSettingsDialogueContent.html @@ -1 +1 @@ -AVSettingsDialogueContent | universalviewer
    +AVSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html index aca54dbae..a8817bf9a 100644 --- a/docs/types/_internal_.AVSettingsDialogueOptions.html +++ b/docs/types/_internal_.AVSettingsDialogueOptions.html @@ -1 +1 @@ -AVSettingsDialogueOptions | universalviewer
    +AVSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html index 483c5dd16..60200c41d 100644 --- a/docs/types/_internal_.AVShareDialogue.html +++ b/docs/types/_internal_.AVShareDialogue.html @@ -1 +1 @@ -AVShareDialogue | universalviewer
    +AVShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html index e40243bb6..9f738dfab 100644 --- a/docs/types/_internal_.AVShareDialogueContent.html +++ b/docs/types/_internal_.AVShareDialogueContent.html @@ -1 +1 @@ -AVShareDialogueContent | universalviewer
    +AVShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html index 4e895ebde..a9873b7e1 100644 --- a/docs/types/_internal_.AVShareDialogueOptions.html +++ b/docs/types/_internal_.AVShareDialogueOptions.html @@ -1 +1 @@ -AVShareDialogueOptions | universalviewer
    +AVShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AdjustImageDialogue.html b/docs/types/_internal_.AdjustImageDialogue.html index f3b1b36a6..51a2b6860 100644 --- a/docs/types/_internal_.AdjustImageDialogue.html +++ b/docs/types/_internal_.AdjustImageDialogue.html @@ -1 +1 @@ -AdjustImageDialogue | universalviewer

    Type Alias AdjustImageDialogue

    AdjustImageDialogue: ModuleConfig & {
        content: AdjustImageDialogueContent;
        options: AdjustImageDialogueOptions;
    }
    +AdjustImageDialogue | universalviewer

    Type Alias AdjustImageDialogue

    AdjustImageDialogue: ModuleConfig & {
        content: AdjustImageDialogueContent;
        options: AdjustImageDialogueOptions;
    }
    diff --git a/docs/types/_internal_.AdjustImageDialogueContent.html b/docs/types/_internal_.AdjustImageDialogueContent.html index 90d262f42..48b1562e1 100644 --- a/docs/types/_internal_.AdjustImageDialogueContent.html +++ b/docs/types/_internal_.AdjustImageDialogueContent.html @@ -1 +1 @@ -AdjustImageDialogueContent | universalviewer

    Type Alias AdjustImageDialogueContent

    AdjustImageDialogueContent: DialogueContent & {
        brightness: string;
        contrast: string;
        remember: string;
        reset: string;
        saturation: string;
        title: string;
    }
    +AdjustImageDialogueContent | universalviewer

    Type Alias AdjustImageDialogueContent

    AdjustImageDialogueContent: DialogueContent & {
        brightness: string;
        contrast: string;
        remember: string;
        reset: string;
        saturation: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.AdjustImageDialogueOptions.html b/docs/types/_internal_.AdjustImageDialogueOptions.html index 25f69fa19..bfa9fc07a 100644 --- a/docs/types/_internal_.AdjustImageDialogueOptions.html +++ b/docs/types/_internal_.AdjustImageDialogueOptions.html @@ -1 +1 @@ -AdjustImageDialogueOptions | universalviewer

    Type Alias AdjustImageDialogueOptions

    AdjustImageDialogueOptions: DialogueOptions & {}
    +AdjustImageDialogueOptions | universalviewer

    Type Alias AdjustImageDialogueOptions

    AdjustImageDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html index ce2914127..63cf5f8c2 100644 --- a/docs/types/_internal_.AlephCenterPanel.html +++ b/docs/types/_internal_.AlephCenterPanel.html @@ -1 +1 @@ -AlephCenterPanel | universalviewer
    +AlephCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html index 0b5e135e5..228c80143 100644 --- a/docs/types/_internal_.AlephCenterPanelContent.html +++ b/docs/types/_internal_.AlephCenterPanelContent.html @@ -1 +1 @@ -AlephCenterPanelContent | universalviewer
    +AlephCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html index c3770b827..8ffce668e 100644 --- a/docs/types/_internal_.AlephCenterPanelOptions.html +++ b/docs/types/_internal_.AlephCenterPanelOptions.html @@ -1 +1 @@ -AlephCenterPanelOptions | universalviewer
    +AlephCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html index eb0dfaee3..5af7dca61 100644 --- a/docs/types/_internal_.AlephDownloadDialogue.html +++ b/docs/types/_internal_.AlephDownloadDialogue.html @@ -1 +1 @@ -AlephDownloadDialogue | universalviewer
    +AlephDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html index 322a4afa2..12ab8e254 100644 --- a/docs/types/_internal_.AlephDownloadDialogueContent.html +++ b/docs/types/_internal_.AlephDownloadDialogueContent.html @@ -1 +1 @@ -AlephDownloadDialogueContent | universalviewer
    +AlephDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephDownloadDialogueOptions.html b/docs/types/_internal_.AlephDownloadDialogueOptions.html index 4b89c9e61..649550fb1 100644 --- a/docs/types/_internal_.AlephDownloadDialogueOptions.html +++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html @@ -1 +1 @@ -AlephDownloadDialogueOptions | universalviewer
    +AlephDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanel.html b/docs/types/_internal_.AlephLeftPanel.html index 3f8544209..88c336421 100644 --- a/docs/types/_internal_.AlephLeftPanel.html +++ b/docs/types/_internal_.AlephLeftPanel.html @@ -1 +1 @@ -AlephLeftPanel | universalviewer
    +AlephLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html index 385d00b32..13d260ae5 100644 --- a/docs/types/_internal_.AlephLeftPanelContent.html +++ b/docs/types/_internal_.AlephLeftPanelContent.html @@ -1 +1 @@ -AlephLeftPanelContent | universalviewer
    +AlephLeftPanelContent | universalviewer
    diff --git a/docs/types/_internal_.AlephLeftPanelOptions.html b/docs/types/_internal_.AlephLeftPanelOptions.html index 1b2280c2e..1f3e69e12 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

    -
  • +
    diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html index 9643845fb..2c2be7915 100644 --- a/docs/types/_internal_.AlephSettingsDialogue.html +++ b/docs/types/_internal_.AlephSettingsDialogue.html @@ -1 +1 @@ -AlephSettingsDialogue | universalviewer
    +AlephSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html index 2c9f0540a..21d8c076d 100644 --- a/docs/types/_internal_.AlephSettingsDialogueContent.html +++ b/docs/types/_internal_.AlephSettingsDialogueContent.html @@ -1 +1 @@ -AlephSettingsDialogueContent | universalviewer
    +AlephSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephSettingsDialogueOptions.html b/docs/types/_internal_.AlephSettingsDialogueOptions.html index d5ef87561..82b46bebf 100644 --- a/docs/types/_internal_.AlephSettingsDialogueOptions.html +++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html @@ -1 +1 @@ -AlephSettingsDialogueOptions | universalviewer
    +AlephSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogue.html b/docs/types/_internal_.AlephShareDialogue.html index 137e9f51d..60797fcac 100644 --- a/docs/types/_internal_.AlephShareDialogue.html +++ b/docs/types/_internal_.AlephShareDialogue.html @@ -1 +1 @@ -AlephShareDialogue | universalviewer
    +AlephShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html index b37604ca4..8836bccbc 100644 --- a/docs/types/_internal_.AlephShareDialogueContent.html +++ b/docs/types/_internal_.AlephShareDialogueContent.html @@ -1 +1 @@ -AlephShareDialogueContent | universalviewer
    +AlephShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.AlephShareDialogueOptions.html b/docs/types/_internal_.AlephShareDialogueOptions.html index be961ca89..46d9090fc 100644 --- a/docs/types/_internal_.AlephShareDialogueOptions.html +++ b/docs/types/_internal_.AlephShareDialogueOptions.html @@ -1 +1 @@ -AlephShareDialogueOptions | universalviewer
    +AlephShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.AuthDialogue.html b/docs/types/_internal_.AuthDialogue.html index 605e24133..d3a1ea4d5 100644 --- a/docs/types/_internal_.AuthDialogue.html +++ b/docs/types/_internal_.AuthDialogue.html @@ -1 +1 @@ -AuthDialogue | universalviewer
    AuthDialogue: ModuleConfig & {
        content: AuthDialogueContent;
        options: AuthDialogueOptions;
    }
    +AuthDialogue | universalviewer
    AuthDialogue: ModuleConfig & {
        content: AuthDialogueContent;
        options: AuthDialogueOptions;
    }
    diff --git a/docs/types/_internal_.AuthDialogueContent.html b/docs/types/_internal_.AuthDialogueContent.html index df3c91751..cd9863b0a 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 }
    +AuthDialogueContent | universalviewer

    Type Alias AuthDialogueContent

    AuthDialogueContent: DialogueContent & { cancel: string; confirm: string }
    diff --git a/docs/types/_internal_.AuthDialogueOptions.html b/docs/types/_internal_.AuthDialogueOptions.html index d99ed2563..7c1a968d4 100644 --- a/docs/types/_internal_.AuthDialogueOptions.html +++ b/docs/types/_internal_.AuthDialogueOptions.html @@ -1 +1 @@ -AuthDialogueOptions | universalviewer
    +AuthDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.BaseConfig.html b/docs/types/_internal_.BaseConfig.html index 7cd036099..29ad1232d 100644 --- a/docs/types/_internal_.BaseConfig.html +++ b/docs/types/_internal_.BaseConfig.html @@ -1 +1 @@ -BaseConfig | universalviewer
    BaseConfig: {
        content: Content;
        localisation: Localisation;
        modules: {
            adjustImageDialogue: AdjustImageDialogue;
            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;
    }
    +BaseConfig | universalviewer
    BaseConfig: {
        content: Content;
        localisation: Localisation;
        modules: {
            adjustImageDialogue: AdjustImageDialogue;
            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;
    }
    diff --git a/docs/types/_internal_.CenterPanel.html b/docs/types/_internal_.CenterPanel.html index 426a3cdf8..dc01100fe 100644 --- a/docs/types/_internal_.CenterPanel.html +++ b/docs/types/_internal_.CenterPanel.html @@ -1 +1 @@ -CenterPanel | universalviewer
    CenterPanel: ModuleConfig & {
        content: CenterPanelContent;
        options: CenterPanelOptions;
    }
    +CenterPanel | universalviewer
    CenterPanel: ModuleConfig & {
        content: CenterPanelContent;
        options: CenterPanelOptions;
    }
    diff --git a/docs/types/_internal_.CenterPanelContent.html b/docs/types/_internal_.CenterPanelContent.html index 6e929ac30..0961a4e3a 100644 --- a/docs/types/_internal_.CenterPanelContent.html +++ b/docs/types/_internal_.CenterPanelContent.html @@ -1 +1 @@ -CenterPanelContent | universalviewer

    Type Alias CenterPanelContent

    CenterPanelContent: {
        attribution: string;
        close: string;
        closeAttribution: string;
    }
    +CenterPanelContent | universalviewer

    Type Alias CenterPanelContent

    CenterPanelContent: {
        attribution: string;
        close: string;
        closeAttribution: string;
    }
    diff --git a/docs/types/_internal_.CenterPanelOptions.html b/docs/types/_internal_.CenterPanelOptions.html index cd6697951..6fc87ec6e 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;
    }
    +CenterPanelOptions | universalviewer

    Type Alias CenterPanelOptions

    CenterPanelOptions: {
        mostSpecificRequiredStatement: boolean;
        requiredStatementEnabled: boolean;
        subtitleEnabled: boolean;
        titleEnabled: boolean;
    }
    diff --git a/docs/types/_internal_.ClickThroughDialogue.html b/docs/types/_internal_.ClickThroughDialogue.html index cf56823e8..6600d3b1b 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;
    }
    +ClickThroughDialogue | universalviewer

    Type Alias ClickThroughDialogue

    ClickThroughDialogue: ModuleConfig & {
        content: ClickThroughDialogueContent;
        options: ClickThroughDialogueOptions;
    }
    diff --git a/docs/types/_internal_.ClickThroughDialogueContent.html b/docs/types/_internal_.ClickThroughDialogueContent.html index 2fe6f0850..ed6d798e0 100644 --- a/docs/types/_internal_.ClickThroughDialogueContent.html +++ b/docs/types/_internal_.ClickThroughDialogueContent.html @@ -1 +1 @@ -ClickThroughDialogueContent | universalviewer

    Type Alias ClickThroughDialogueContent

    ClickThroughDialogueContent: DialogueContent & { viewTerms: string }
    +ClickThroughDialogueContent | universalviewer

    Type Alias ClickThroughDialogueContent

    ClickThroughDialogueContent: DialogueContent & { viewTerms: string }
    diff --git a/docs/types/_internal_.ClickThroughDialogueOptions.html b/docs/types/_internal_.ClickThroughDialogueOptions.html index 515579d3f..377a30236 100644 --- a/docs/types/_internal_.ClickThroughDialogueOptions.html +++ b/docs/types/_internal_.ClickThroughDialogueOptions.html @@ -1 +1 @@ -ClickThroughDialogueOptions | universalviewer

    Type Alias ClickThroughDialogueOptions

    ClickThroughDialogueOptions: DialogueOptions & {}
    +ClickThroughDialogueOptions | universalviewer

    Type Alias ClickThroughDialogueOptions

    ClickThroughDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.Config-1.html b/docs/types/_internal_.Config-1.html index 49eca5098..5857febd5 100644 --- a/docs/types/_internal_.Config-1.html +++ b/docs/types/_internal_.Config-1.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-2.html b/docs/types/_internal_.Config-2.html index bf9715588..1b79460e4 100644 --- a/docs/types/_internal_.Config-2.html +++ b/docs/types/_internal_.Config-2.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-3.html b/docs/types/_internal_.Config-3.html index 1a006c4e1..3ef225f70 100644 --- a/docs/types/_internal_.Config-3.html +++ b/docs/types/_internal_.Config-3.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-4.html b/docs/types/_internal_.Config-4.html index 9ec9062ac..a1520d10d 100644 --- a/docs/types/_internal_.Config-4.html +++ b/docs/types/_internal_.Config-4.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-5.html b/docs/types/_internal_.Config-5.html index e19f428dc..2bb6eba59 100644 --- a/docs/types/_internal_.Config-5.html +++ b/docs/types/_internal_.Config-5.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-6.html b/docs/types/_internal_.Config-6.html index 19050c110..a2338ebd1 100644 --- a/docs/types/_internal_.Config-6.html +++ b/docs/types/_internal_.Config-6.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config-7.html b/docs/types/_internal_.Config-7.html index 482cd30ba..5aa64b079 100644 --- a/docs/types/_internal_.Config-7.html +++ b/docs/types/_internal_.Config-7.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Config.html b/docs/types/_internal_.Config.html index 9ac29da8a..7a71d4ae5 100644 --- a/docs/types/_internal_.Config.html +++ b/docs/types/_internal_.Config.html @@ -1 +1 @@ -Config | universalviewer
    +Config | universalviewer
    diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html index 188660d9f..34f3febdc 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;
    }
    +Content | universalviewer
    Content: {
        authCORSError: string;
        authorisationFailedMessage: string;
        canvasIndexOutOfRange: string;
        fallbackDegradedLabel: string;
        fallbackDegradedMessage: string;
        forbiddenResourceMessage: string;
        mediaViewer: string;
        skipToDownload: string;
        termsOfUse: string;
    }
    diff --git a/docs/types/_internal_.ContentLeftPanel.html b/docs/types/_internal_.ContentLeftPanel.html index ad28845be..e98b7a3e1 100644 --- a/docs/types/_internal_.ContentLeftPanel.html +++ b/docs/types/_internal_.ContentLeftPanel.html @@ -1 +1 @@ -ContentLeftPanel | universalviewer
    +ContentLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html index 5917c78e7..5f37d76f8 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.ContentLeftPanelOptions.html b/docs/types/_internal_.ContentLeftPanelOptions.html index 27509eaef..f6cd7b536 100644 --- a/docs/types/_internal_.ContentLeftPanelOptions.html +++ b/docs/types/_internal_.ContentLeftPanelOptions.html @@ -22,4 +22,4 @@
  • treeEnabled: boolean

    Determines if tree is enabled

  • twoColThumbHeight: number

    Height of the two column thumbnail

  • twoColThumbWidth: number

    Width of the two column thumbnail

    -
  • +
    diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html index b963b2d8f..435ad7c8c 100644 --- a/docs/types/_internal_.DefaultDownloadDialogue.html +++ b/docs/types/_internal_.DefaultDownloadDialogue.html @@ -1 +1 @@ -DefaultDownloadDialogue | universalviewer
    +DefaultDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html index a07e2dfc8..dfd2c4cce 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueContent.html +++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html @@ -1 +1 @@ -DefaultDownloadDialogueContent | universalviewer
    +DefaultDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultDownloadDialogueOptions.html b/docs/types/_internal_.DefaultDownloadDialogueOptions.html index f6f773f7a..ad898c212 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueOptions.html +++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html @@ -1 +1 @@ -DefaultDownloadDialogueOptions | universalviewer
    +DefaultDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogue.html b/docs/types/_internal_.DefaultSettingsDialogue.html index 447de4149..42629f998 100644 --- a/docs/types/_internal_.DefaultSettingsDialogue.html +++ b/docs/types/_internal_.DefaultSettingsDialogue.html @@ -1 +1 @@ -DefaultSettingsDialogue | universalviewer
    +DefaultSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html index 5907472b1..976eee3e5 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueContent.html +++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html @@ -1 +1 @@ -DefaultSettingsDialogueContent | universalviewer
    +DefaultSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultSettingsDialogueOptions.html b/docs/types/_internal_.DefaultSettingsDialogueOptions.html index 271ebb874..bcf1900a3 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueOptions.html +++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html @@ -1 +1 @@ -DefaultSettingsDialogueOptions | universalviewer
    +DefaultSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogue.html b/docs/types/_internal_.DefaultShareDialogue.html index 6076a212e..cf19b7a8e 100644 --- a/docs/types/_internal_.DefaultShareDialogue.html +++ b/docs/types/_internal_.DefaultShareDialogue.html @@ -1 +1 @@ -DefaultShareDialogue | universalviewer
    +DefaultShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html index e46620812..0a5f108d5 100644 --- a/docs/types/_internal_.DefaultShareDialogueContent.html +++ b/docs/types/_internal_.DefaultShareDialogueContent.html @@ -1 +1 @@ -DefaultShareDialogueContent | universalviewer
    +DefaultShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html index b934b3afb..eb30a6176 100644 --- a/docs/types/_internal_.DefaultShareDialogueOptions.html +++ b/docs/types/_internal_.DefaultShareDialogueOptions.html @@ -1 +1 @@ -DefaultShareDialogueOptions | universalviewer
    +DefaultShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.Dialogue.html b/docs/types/_internal_.Dialogue.html index b690113a6..089f37e2e 100644 --- a/docs/types/_internal_.Dialogue.html +++ b/docs/types/_internal_.Dialogue.html @@ -1 +1 @@ -Dialogue | universalviewer
    +Dialogue | universalviewer
    diff --git a/docs/types/_internal_.DialogueContent.html b/docs/types/_internal_.DialogueContent.html index dd46d103e..5450f9a6d 100644 --- a/docs/types/_internal_.DialogueContent.html +++ b/docs/types/_internal_.DialogueContent.html @@ -1 +1 @@ -DialogueContent | universalviewer
    DialogueContent: { close: string }
    +DialogueContent | universalviewer
    DialogueContent: { close: string }
    diff --git a/docs/types/_internal_.DialogueOptions.html b/docs/types/_internal_.DialogueOptions.html index dc5724fc5..7b5e7d8a0 100644 --- a/docs/types/_internal_.DialogueOptions.html +++ b/docs/types/_internal_.DialogueOptions.html @@ -1 +1 @@ -DialogueOptions | universalviewer
    DialogueOptions: { topCloseButtonEnabled: boolean }
    +DialogueOptions | universalviewer
    DialogueOptions: { topCloseButtonEnabled: boolean }
    diff --git a/docs/types/_internal_.DownloadDialogue.html b/docs/types/_internal_.DownloadDialogue.html index 6149dfc93..b6edba0b0 100644 --- a/docs/types/_internal_.DownloadDialogue.html +++ b/docs/types/_internal_.DownloadDialogue.html @@ -1 +1 @@ -DownloadDialogue | universalviewer
    DownloadDialogue: ModuleConfig & {
        content: DownloadDialogueContent;
        options: DownloadDialogueOptions;
    }
    +DownloadDialogue | universalviewer
    DownloadDialogue: ModuleConfig & {
        content: DownloadDialogueContent;
        options: DownloadDialogueOptions;
    }
    diff --git a/docs/types/_internal_.DownloadDialogueContent.html b/docs/types/_internal_.DownloadDialogueContent.html index 18f7c0786..d29270cfa 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;
    }
    +DownloadDialogueContent | universalviewer

    Type Alias DownloadDialogueContent

    DownloadDialogueContent: DialogueContent & {
        download: string;
        entireDocument: string;
        entireFileAsOriginal: string;
        entireFileAsOriginalWithFormat: string;
        noneAvailable: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.DownloadDialogueOptions.html b/docs/types/_internal_.DownloadDialogueOptions.html index cdc24cbe1..85c34675c 100644 --- a/docs/types/_internal_.DownloadDialogueOptions.html +++ b/docs/types/_internal_.DownloadDialogueOptions.html @@ -1 +1 @@ -DownloadDialogueOptions | universalviewer

    Type Alias DownloadDialogueOptions

    DownloadDialogueOptions: DialogueOptions & {}
    +DownloadDialogueOptions | universalviewer

    Type Alias DownloadDialogueOptions

    DownloadDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.EbookCenterPanel.html b/docs/types/_internal_.EbookCenterPanel.html index 04a544f6a..ad728d7e2 100644 --- a/docs/types/_internal_.EbookCenterPanel.html +++ b/docs/types/_internal_.EbookCenterPanel.html @@ -1 +1 @@ -EbookCenterPanel | universalviewer
    +EbookCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html index 905d4802b..48216ef01 100644 --- a/docs/types/_internal_.EbookCenterPanelContent.html +++ b/docs/types/_internal_.EbookCenterPanelContent.html @@ -1 +1 @@ -EbookCenterPanelContent | universalviewer
    +EbookCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html index 753f06aca..8056ebf8b 100644 --- a/docs/types/_internal_.EbookCenterPanelOptions.html +++ b/docs/types/_internal_.EbookCenterPanelOptions.html @@ -1 +1 @@ -EbookCenterPanelOptions | universalviewer
    +EbookCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html index 02b27fd40..efcffb579 100644 --- a/docs/types/_internal_.EbookDownloadDialogue.html +++ b/docs/types/_internal_.EbookDownloadDialogue.html @@ -1 +1 @@ -EbookDownloadDialogue | universalviewer
    +EbookDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html index c745c4ae2..27162926b 100644 --- a/docs/types/_internal_.EbookDownloadDialogueContent.html +++ b/docs/types/_internal_.EbookDownloadDialogueContent.html @@ -1 +1 @@ -EbookDownloadDialogueContent | universalviewer
    +EbookDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookDownloadDialogueOptions.html b/docs/types/_internal_.EbookDownloadDialogueOptions.html index 02fe289fe..ff7041a8d 100644 --- a/docs/types/_internal_.EbookDownloadDialogueOptions.html +++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html @@ -1 +1 @@ -EbookDownloadDialogueOptions | universalviewer
    +EbookDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanel.html b/docs/types/_internal_.EbookLeftPanel.html index 8b8d11699..67be67c5f 100644 --- a/docs/types/_internal_.EbookLeftPanel.html +++ b/docs/types/_internal_.EbookLeftPanel.html @@ -1 +1 @@ -EbookLeftPanel | universalviewer
    +EbookLeftPanel | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html index 126014fc9..d5e19f0af 100644 --- a/docs/types/_internal_.EbookLeftPanelContent.html +++ b/docs/types/_internal_.EbookLeftPanelContent.html @@ -1 +1 @@ -EbookLeftPanelContent | universalviewer
    +EbookLeftPanelContent | universalviewer
    diff --git a/docs/types/_internal_.EbookLeftPanelOptions.html b/docs/types/_internal_.EbookLeftPanelOptions.html index d2bb2c1bb..9acf782ca 100644 --- a/docs/types/_internal_.EbookLeftPanelOptions.html +++ b/docs/types/_internal_.EbookLeftPanelOptions.html @@ -1 +1 @@ -EbookLeftPanelOptions | universalviewer
    +EbookLeftPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html index 5887e78a5..4db6d02a7 100644 --- a/docs/types/_internal_.EbookSettingsDialogue.html +++ b/docs/types/_internal_.EbookSettingsDialogue.html @@ -1 +1 @@ -EbookSettingsDialogue | universalviewer
    +EbookSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html index 7188cd399..27a2451e3 100644 --- a/docs/types/_internal_.EbookSettingsDialogueContent.html +++ b/docs/types/_internal_.EbookSettingsDialogueContent.html @@ -1 +1 @@ -EbookSettingsDialogueContent | universalviewer
    +EbookSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookSettingsDialogueOptions.html b/docs/types/_internal_.EbookSettingsDialogueOptions.html index 116ab2a01..0c3fdb0e4 100644 --- a/docs/types/_internal_.EbookSettingsDialogueOptions.html +++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html @@ -1 +1 @@ -EbookSettingsDialogueOptions | universalviewer
    +EbookSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogue.html b/docs/types/_internal_.EbookShareDialogue.html index 5eaf20124..377a5dd86 100644 --- a/docs/types/_internal_.EbookShareDialogue.html +++ b/docs/types/_internal_.EbookShareDialogue.html @@ -1 +1 @@ -EbookShareDialogue | universalviewer
    +EbookShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html index 26e63b50c..c0d76435f 100644 --- a/docs/types/_internal_.EbookShareDialogueContent.html +++ b/docs/types/_internal_.EbookShareDialogueContent.html @@ -1 +1 @@ -EbookShareDialogueContent | universalviewer
    +EbookShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html index 596a8cd31..1e59bb34f 100644 --- a/docs/types/_internal_.EbookShareDialogueOptions.html +++ b/docs/types/_internal_.EbookShareDialogueOptions.html @@ -1 +1 @@ -EbookShareDialogueOptions | universalviewer
    +EbookShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ExpandPanel.html b/docs/types/_internal_.ExpandPanel.html index 941d93a15..0e21778e3 100644 --- a/docs/types/_internal_.ExpandPanel.html +++ b/docs/types/_internal_.ExpandPanel.html @@ -1 +1 @@ -ExpandPanel | universalviewer
    +ExpandPanel | universalviewer
    diff --git a/docs/types/_internal_.ExpandPanelContent.html b/docs/types/_internal_.ExpandPanelContent.html index 44d6dfc58..ed0cf931d 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;
    }
    +ExpandPanelContent | universalviewer

    Type Alias ExpandPanelContent

    ExpandPanelContent: {
        collapse: string;
        collapseFull: string;
        expand: string;
        expandFull: string;
    }
    diff --git a/docs/types/_internal_.ExpandPanelOptions.html b/docs/types/_internal_.ExpandPanelOptions.html index dad6db945..635036778 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

    -
  • +
    diff --git a/docs/types/_internal_.FileLinkCenterPanel.html b/docs/types/_internal_.FileLinkCenterPanel.html index cd88f84c6..14b59fadd 100644 --- a/docs/types/_internal_.FileLinkCenterPanel.html +++ b/docs/types/_internal_.FileLinkCenterPanel.html @@ -1 +1 @@ -FileLinkCenterPanel | universalviewer
    +FileLinkCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.FileLinkCenterPanelContent.html b/docs/types/_internal_.FileLinkCenterPanelContent.html index 06805a4b5..17cdb552c 100644 --- a/docs/types/_internal_.FileLinkCenterPanelContent.html +++ b/docs/types/_internal_.FileLinkCenterPanelContent.html @@ -1 +1 @@ -FileLinkCenterPanelContent | universalviewer
    +FileLinkCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.FileLinkCenterPanelOptions.html b/docs/types/_internal_.FileLinkCenterPanelOptions.html index aaeea534e..b2f98d15e 100644 --- a/docs/types/_internal_.FileLinkCenterPanelOptions.html +++ b/docs/types/_internal_.FileLinkCenterPanelOptions.html @@ -1 +1 @@ -FileLinkCenterPanelOptions | universalviewer
    +FileLinkCenterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.FooterPanel.html b/docs/types/_internal_.FooterPanel.html index c5186bc20..b8c3c9f25 100644 --- a/docs/types/_internal_.FooterPanel.html +++ b/docs/types/_internal_.FooterPanel.html @@ -1 +1 @@ -FooterPanel | universalviewer
    FooterPanel: ModuleConfig & {
        content: FooterPanelContent;
        options: FooterPanelOptions;
    }
    +FooterPanel | universalviewer
    FooterPanel: ModuleConfig & {
        content: FooterPanelContent;
        options: FooterPanelOptions;
    }
    diff --git a/docs/types/_internal_.FooterPanelContent.html b/docs/types/_internal_.FooterPanelContent.html index c12afbf31..86e72d6bf 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;
    }
    +FooterPanelContent | universalviewer

    Type Alias FooterPanelContent

    FooterPanelContent: {
        bookmark: string;
        download: string;
        embed: string;
        exitFullScreen: string;
        feedback: string;
        fullScreen: string;
        moreInfo: string;
        open: string;
        share: string;
    }
    diff --git a/docs/types/_internal_.FooterPanelOptions.html b/docs/types/_internal_.FooterPanelOptions.html index c42163a91..4b517eb8e 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

    -
  • +
    diff --git a/docs/types/_internal_.GenericDialogue.html b/docs/types/_internal_.GenericDialogue.html index 93076af44..e11609f36 100644 --- a/docs/types/_internal_.GenericDialogue.html +++ b/docs/types/_internal_.GenericDialogue.html @@ -1 +1 @@ -GenericDialogue | universalviewer
    GenericDialogue: ModuleConfig & {
        content: GenericDialogueContent;
        options: GenericDialogueOptions;
    }
    +GenericDialogue | universalviewer
    GenericDialogue: ModuleConfig & {
        content: GenericDialogueContent;
        options: GenericDialogueOptions;
    }
    diff --git a/docs/types/_internal_.GenericDialogueContent.html b/docs/types/_internal_.GenericDialogueContent.html index b022e9bc5..dd56ed388 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;
    }
    +GenericDialogueContent | universalviewer

    Type Alias GenericDialogueContent

    GenericDialogueContent: DialogueContent & {
        emptyValue: string;
        invalidNumber: string;
        noMatches: string;
        ok: string;
        pageNotFound: string;
        refresh: string;
    }
    diff --git a/docs/types/_internal_.GenericDialogueOptions.html b/docs/types/_internal_.GenericDialogueOptions.html index 6582d867d..cabdd420d 100644 --- a/docs/types/_internal_.GenericDialogueOptions.html +++ b/docs/types/_internal_.GenericDialogueOptions.html @@ -1 +1 @@ -GenericDialogueOptions | universalviewer

    Type Alias GenericDialogueOptions

    GenericDialogueOptions: DialogueOptions & {}
    +GenericDialogueOptions | universalviewer

    Type Alias GenericDialogueOptions

    GenericDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.HeaderPanel.html b/docs/types/_internal_.HeaderPanel.html index 5e00104b0..9dae667d2 100644 --- a/docs/types/_internal_.HeaderPanel.html +++ b/docs/types/_internal_.HeaderPanel.html @@ -1 +1 @@ -HeaderPanel | universalviewer
    HeaderPanel: ModuleConfig & {
        content: HeaderPanelContent;
        options: HeaderPanelOptions;
    }
    +HeaderPanel | universalviewer
    HeaderPanel: ModuleConfig & {
        content: HeaderPanelContent;
        options: HeaderPanelOptions;
    }
    diff --git a/docs/types/_internal_.HeaderPanelContent.html b/docs/types/_internal_.HeaderPanelContent.html index 7bf6abc70..19bac9475 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 }
    +HeaderPanelContent | universalviewer

    Type Alias HeaderPanelContent

    HeaderPanelContent: { close: string; settings: string }
    diff --git a/docs/types/_internal_.HeaderPanelOptions.html b/docs/types/_internal_.HeaderPanelOptions.html index 48d2bd5b5..ad6e53297 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

      -
    +
    diff --git a/docs/types/_internal_.HelpDialogue.html b/docs/types/_internal_.HelpDialogue.html index 44f3664fb..a66cc6bbf 100644 --- a/docs/types/_internal_.HelpDialogue.html +++ b/docs/types/_internal_.HelpDialogue.html @@ -1 +1 @@ -HelpDialogue | universalviewer
    HelpDialogue: ModuleConfig & {
        content: HelpDialogueContent;
        options: HelpDialogueOptions;
    }
    +HelpDialogue | universalviewer
    HelpDialogue: ModuleConfig & {
        content: HelpDialogueContent;
        options: HelpDialogueOptions;
    }
    diff --git a/docs/types/_internal_.HelpDialogueContent.html b/docs/types/_internal_.HelpDialogueContent.html index 7886cdbbd..5c9e6b65d 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 }
    +HelpDialogueContent | universalviewer

    Type Alias HelpDialogueContent

    HelpDialogueContent: DialogueContent & { text: string; title: string }
    diff --git a/docs/types/_internal_.HelpDialogueOptions.html b/docs/types/_internal_.HelpDialogueOptions.html index d2f4eda48..18e9b9a7c 100644 --- a/docs/types/_internal_.HelpDialogueOptions.html +++ b/docs/types/_internal_.HelpDialogueOptions.html @@ -1 +1 @@ -HelpDialogueOptions | universalviewer
    +HelpDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.LeftPanel.html b/docs/types/_internal_.LeftPanel.html index e059dd628..23b7e6fc4 100644 --- a/docs/types/_internal_.LeftPanel.html +++ b/docs/types/_internal_.LeftPanel.html @@ -1 +1 @@ -LeftPanel | universalviewer
    +LeftPanel | universalviewer
    diff --git a/docs/types/_internal_.Locale.html b/docs/types/_internal_.Locale.html index 05b6562bc..97e5e4e61 100644 --- a/docs/types/_internal_.Locale.html +++ b/docs/types/_internal_.Locale.html @@ -1 +1 @@ -Locale | universalviewer
    Locale: { label: string; name: string }
    +Locale | universalviewer
    Locale: { label: string; name: string }
    diff --git a/docs/types/_internal_.Localisation.html b/docs/types/_internal_.Localisation.html index bc8042635..6eef1482d 100644 --- a/docs/types/_internal_.Localisation.html +++ b/docs/types/_internal_.Localisation.html @@ -1 +1 @@ -Localisation | universalviewer
    Localisation: { label: string; locales: Locale[] }
    +Localisation | universalviewer
    Localisation: { label: string; locales: Locale[] }
    diff --git a/docs/types/_internal_.LoginDialogue.html b/docs/types/_internal_.LoginDialogue.html index 356f15faf..1ed4d129e 100644 --- a/docs/types/_internal_.LoginDialogue.html +++ b/docs/types/_internal_.LoginDialogue.html @@ -1 +1 @@ -LoginDialogue | universalviewer
    LoginDialogue: ModuleConfig & {
        content: LoginDialogueContent;
        options: LoginDialogueOptions;
    }
    +LoginDialogue | universalviewer
    LoginDialogue: ModuleConfig & {
        content: LoginDialogueContent;
        options: LoginDialogueOptions;
    }
    diff --git a/docs/types/_internal_.LoginDialogueContent.html b/docs/types/_internal_.LoginDialogueContent.html index cb0b560cc..3f63b30f7 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;
    }
    +LoginDialogueContent | universalviewer

    Type Alias LoginDialogueContent

    LoginDialogueContent: DialogueContent & {
        cancel: string;
        login: string;
        logout: string;
    }
    diff --git a/docs/types/_internal_.LoginDialogueOptions.html b/docs/types/_internal_.LoginDialogueOptions.html index 36f8a9283..49550fb5e 100644 --- a/docs/types/_internal_.LoginDialogueOptions.html +++ b/docs/types/_internal_.LoginDialogueOptions.html @@ -1 +1 @@ -LoginDialogueOptions | universalviewer

    Type Alias LoginDialogueOptions

    LoginDialogueOptions: DialogueOptions & {}
    +LoginDialogueOptions | universalviewer

    Type Alias LoginDialogueOptions

    LoginDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.MediaElementCenterPanel.html b/docs/types/_internal_.MediaElementCenterPanel.html index 1ca63f178..7a51c2bf6 100644 --- a/docs/types/_internal_.MediaElementCenterPanel.html +++ b/docs/types/_internal_.MediaElementCenterPanel.html @@ -1 +1 @@ -MediaElementCenterPanel | universalviewer
    +MediaElementCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html index f6efa60d7..000d9e040 100644 --- a/docs/types/_internal_.MediaElementCenterPanelContent.html +++ b/docs/types/_internal_.MediaElementCenterPanelContent.html @@ -1 +1 @@ -MediaElementCenterPanelContent | universalviewer
    +MediaElementCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementCenterPanelOptions.html b/docs/types/_internal_.MediaElementCenterPanelOptions.html index d8781f633..3962da277 100644 --- a/docs/types/_internal_.MediaElementCenterPanelOptions.html +++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html @@ -1 +1 @@ -MediaElementCenterPanelOptions | universalviewer

    Type Alias MediaElementCenterPanelOptions

    MediaElementCenterPanelOptions: CenterPanelOptions & {
        autoPlayOnSetTarget: boolean;
        defaultHeight: number;
        defaultWidth: number;
    }
    +MediaElementCenterPanelOptions | universalviewer

    Type Alias MediaElementCenterPanelOptions

    MediaElementCenterPanelOptions: CenterPanelOptions & {
        autoPlayOnSetTarget: boolean;
        defaultHeight: number;
        defaultWidth: number;
    }
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogue.html b/docs/types/_internal_.MediaElementDownloadDialogue.html index 26bc068ee..475c23280 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogue.html +++ b/docs/types/_internal_.MediaElementDownloadDialogue.html @@ -1 +1 @@ -MediaElementDownloadDialogue | universalviewer
    +MediaElementDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html index b35e624f1..7041c5f8f 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueContent.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html @@ -1 +1 @@ -MediaElementDownloadDialogueContent | universalviewer
    +MediaElementDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html index 306b58db6..3446ad506 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html @@ -1 +1 @@ -MediaElementDownloadDialogueOptions | universalviewer
    +MediaElementDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogue.html b/docs/types/_internal_.MediaElementSettingsDialogue.html index 7c843895b..6035f5e5a 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogue.html +++ b/docs/types/_internal_.MediaElementSettingsDialogue.html @@ -1 +1 @@ -MediaElementSettingsDialogue | universalviewer
    +MediaElementSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html index 22b312a40..835faf836 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueContent.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html @@ -1 +1 @@ -MediaElementSettingsDialogueContent | universalviewer
    +MediaElementSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html index 63293f9d2..17094e4a2 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html @@ -1 +1 @@ -MediaElementSettingsDialogueOptions | universalviewer
    +MediaElementSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogue.html b/docs/types/_internal_.MediaElementShareDialogue.html index 9bd3dbb19..4f8b87b65 100644 --- a/docs/types/_internal_.MediaElementShareDialogue.html +++ b/docs/types/_internal_.MediaElementShareDialogue.html @@ -1 +1 @@ -MediaElementShareDialogue | universalviewer
    +MediaElementShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html index 1f960c41a..b05394ff2 100644 --- a/docs/types/_internal_.MediaElementShareDialogueContent.html +++ b/docs/types/_internal_.MediaElementShareDialogueContent.html @@ -1 +1 @@ -MediaElementShareDialogueContent | universalviewer
    +MediaElementShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.MediaElementShareDialogueOptions.html b/docs/types/_internal_.MediaElementShareDialogueOptions.html index da7841ebd..c67aab57b 100644 --- a/docs/types/_internal_.MediaElementShareDialogueOptions.html +++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html @@ -1 +1 @@ -MediaElementShareDialogueOptions | universalviewer
    +MediaElementShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.MobileFooterPanel.html b/docs/types/_internal_.MobileFooterPanel.html index 4dba726a0..4c0a4cc5d 100644 --- a/docs/types/_internal_.MobileFooterPanel.html +++ b/docs/types/_internal_.MobileFooterPanel.html @@ -1 +1 @@ -MobileFooterPanel | universalviewer
    +MobileFooterPanel | universalviewer
    diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html index e1e871d19..90f563699 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;
    }
    +MobileFooterPanelContent | universalviewer

    Type Alias MobileFooterPanelContent

    MobileFooterPanelContent: FooterPanelContent & {
        moreInfo: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    diff --git a/docs/types/_internal_.MobileFooterPanelOptions.html b/docs/types/_internal_.MobileFooterPanelOptions.html index d09d87903..0513ac678 100644 --- a/docs/types/_internal_.MobileFooterPanelOptions.html +++ b/docs/types/_internal_.MobileFooterPanelOptions.html @@ -1 +1 @@ -MobileFooterPanelOptions | universalviewer
    +MobileFooterPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html index b9c917805..83972c42b 100644 --- a/docs/types/_internal_.ModelViewerCenterPanel.html +++ b/docs/types/_internal_.ModelViewerCenterPanel.html @@ -1 +1 @@ -ModelViewerCenterPanel | universalviewer
    +ModelViewerCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanelContent.html b/docs/types/_internal_.ModelViewerCenterPanelContent.html index 1b45119ae..a46813cef 100644 --- a/docs/types/_internal_.ModelViewerCenterPanelContent.html +++ b/docs/types/_internal_.ModelViewerCenterPanelContent.html @@ -1 +1 @@ -ModelViewerCenterPanelContent | universalviewer
    +ModelViewerCenterPanelContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerCenterPanelOptions.html b/docs/types/_internal_.ModelViewerCenterPanelOptions.html index 3893d7a2c..862deaeea 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

    -
  • +
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html index 1819ea018..f6e055b59 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogue.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html @@ -1 +1 @@ -ModelViewerDownloadDialogue | universalviewer
    +ModelViewerDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html index 1e7375dce..02ba8fd64 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html @@ -1 +1 @@ -ModelViewerDownloadDialogueContent | universalviewer
    +ModelViewerDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html index c62f9f41e..92eef21eb 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html @@ -1 +1 @@ -ModelViewerDownloadDialogueOptions | universalviewer
    +ModelViewerDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogue.html b/docs/types/_internal_.ModelViewerSettingsDialogue.html index 54ae2a25a..9f49ca1c0 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogue.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html @@ -1 +1 @@ -ModelViewerSettingsDialogue | universalviewer
    +ModelViewerSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html index 4ffc1f4ad..db4114160 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html @@ -1 +1 @@ -ModelViewerSettingsDialogueContent | universalviewer
    +ModelViewerSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html index d7305a5f3..7a76004fb 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html @@ -1 +1 @@ -ModelViewerSettingsDialogueOptions | universalviewer
    +ModelViewerSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogue.html b/docs/types/_internal_.ModelViewerShareDialogue.html index 0c473fb91..dec9a0512 100644 --- a/docs/types/_internal_.ModelViewerShareDialogue.html +++ b/docs/types/_internal_.ModelViewerShareDialogue.html @@ -1 +1 @@ -ModelViewerShareDialogue | universalviewer
    +ModelViewerShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html index 710e1f280..063dd8920 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueContent.html +++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html @@ -1 +1 @@ -ModelViewerShareDialogueContent | universalviewer
    +ModelViewerShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.ModelViewerShareDialogueOptions.html b/docs/types/_internal_.ModelViewerShareDialogueOptions.html index c39535fd0..1a9114daa 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html @@ -1 +1 @@ -ModelViewerShareDialogueOptions | universalviewer
    +ModelViewerShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.ModuleConfig.html b/docs/types/_internal_.ModuleConfig.html index ec4824cff..45f00e21a 100644 --- a/docs/types/_internal_.ModuleConfig.html +++ b/docs/types/_internal_.ModuleConfig.html @@ -1 +1 @@ -ModuleConfig | universalviewer
    ModuleConfig: { content: ModuleContent; options: ModuleOptions }
    +ModuleConfig | universalviewer
    ModuleConfig: { content: ModuleContent; options: ModuleOptions }
    diff --git a/docs/types/_internal_.ModuleContent.html b/docs/types/_internal_.ModuleContent.html index a0c71e26d..4d1b7607b 100644 --- a/docs/types/_internal_.ModuleContent.html +++ b/docs/types/_internal_.ModuleContent.html @@ -1 +1 @@ -ModuleContent | universalviewer
    +ModuleContent | universalviewer
    diff --git a/docs/types/_internal_.ModuleOptions.html b/docs/types/_internal_.ModuleOptions.html index 793a66c9f..5c3a8eef3 100644 --- a/docs/types/_internal_.ModuleOptions.html +++ b/docs/types/_internal_.ModuleOptions.html @@ -1 +1 @@ -ModuleOptions | universalviewer
    +ModuleOptions | universalviewer
    diff --git a/docs/types/_internal_.Modules-1.html b/docs/types/_internal_.Modules-1.html index a4a02bf16..7c4876f58 100644 --- a/docs/types/_internal_.Modules-1.html +++ b/docs/types/_internal_.Modules-1.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        avCenterPanel: AVCenterPanel;
        downloadDialogue: AVDownloadDialogue;
        settingsDialogue: AVSettingsDialogue;
        shareDialogue: AVShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        avCenterPanel: AVCenterPanel;
        downloadDialogue: AVDownloadDialogue;
        settingsDialogue: AVSettingsDialogue;
        shareDialogue: AVShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-2.html b/docs/types/_internal_.Modules-2.html index ed3000908..828c9d114 100644 --- a/docs/types/_internal_.Modules-2.html +++ b/docs/types/_internal_.Modules-2.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: DefaultDownloadDialogue;
        fileLinkCenterPanel: FileLinkCenterPanel;
        settingsDialogue: DefaultSettingsDialogue;
        shareDialogue: DefaultShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: DefaultDownloadDialogue;
        fileLinkCenterPanel: FileLinkCenterPanel;
        settingsDialogue: DefaultSettingsDialogue;
        shareDialogue: DefaultShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-3.html b/docs/types/_internal_.Modules-3.html index 85f4026df..7e1083f4a 100644 --- a/docs/types/_internal_.Modules-3.html +++ b/docs/types/_internal_.Modules-3.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: EbookDownloadDialogue;
        ebookCenterPanel: EbookCenterPanel;
        ebookLeftPanel: EbookLeftPanel;
        settingsDialogue: EbookSettingsDialogue;
        shareDialogue: EbookShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: EbookDownloadDialogue;
        ebookCenterPanel: EbookCenterPanel;
        ebookLeftPanel: EbookLeftPanel;
        settingsDialogue: EbookSettingsDialogue;
        shareDialogue: EbookShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-4.html b/docs/types/_internal_.Modules-4.html index ca49c4632..303ab8c98 100644 --- a/docs/types/_internal_.Modules-4.html +++ b/docs/types/_internal_.Modules-4.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: MediaElementDownloadDialogue;
        mediaelementCenterPanel: MediaElementCenterPanel;
        settingsDialogue: MediaElementSettingsDialogue;
        shareDialogue: MediaElementShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: MediaElementDownloadDialogue;
        mediaelementCenterPanel: MediaElementCenterPanel;
        settingsDialogue: MediaElementSettingsDialogue;
        shareDialogue: MediaElementShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-5.html b/docs/types/_internal_.Modules-5.html index cedbb6fd0..5476dd4c6 100644 --- a/docs/types/_internal_.Modules-5.html +++ b/docs/types/_internal_.Modules-5.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: ModelViewerDownloadDialogue;
        modelViewerCenterPanel: ModelViewerCenterPanel;
        settingsDialogue: ModelViewerSettingsDialogue;
        shareDialogue: ModelViewerShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: ModelViewerDownloadDialogue;
        modelViewerCenterPanel: ModelViewerCenterPanel;
        settingsDialogue: ModelViewerSettingsDialogue;
        shareDialogue: ModelViewerShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-6.html b/docs/types/_internal_.Modules-6.html index fc3478886..eb2d7188d 100644 --- a/docs/types/_internal_.Modules-6.html +++ b/docs/types/_internal_.Modules-6.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        adjustImageDialogue: AdjustImageDialogue;
        contentLeftPanel: ContentLeftPanel;
        downloadDialogue: OSDDownloadDialogue;
        mobileFooterPanel: MobileFooterPanel;
        multiSelectDialogue: MultiSelectDialogue;
        openSeadragonCenterPanel: OpenSeadragonCenterPanel;
        pagingHeaderPanel: PagingHeaderPanel;
        searchFooterPanel: SearchFooterPanel;
        settingsDialogue: OSDSettingsDialogue;
        shareDialogue: OSDShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        adjustImageDialogue: AdjustImageDialogue;
        contentLeftPanel: ContentLeftPanel;
        downloadDialogue: OSDDownloadDialogue;
        mobileFooterPanel: MobileFooterPanel;
        multiSelectDialogue: MultiSelectDialogue;
        openSeadragonCenterPanel: OpenSeadragonCenterPanel;
        pagingHeaderPanel: PagingHeaderPanel;
        searchFooterPanel: SearchFooterPanel;
        settingsDialogue: OSDSettingsDialogue;
        shareDialogue: OSDShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules-7.html b/docs/types/_internal_.Modules-7.html index 342ddde65..bd26ed62c 100644 --- a/docs/types/_internal_.Modules-7.html +++ b/docs/types/_internal_.Modules-7.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        downloadDialogue: PDFDownloadDialogue;
        pdfCenterPanel: PDFCenterPanel;
        pdfHeaderPanel: PDFHeaderPanel;
        settingsDialogue: PDFSettingsDialogue;
        shareDialogue: PDFShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        downloadDialogue: PDFDownloadDialogue;
        pdfCenterPanel: PDFCenterPanel;
        pdfHeaderPanel: PDFHeaderPanel;
        settingsDialogue: PDFSettingsDialogue;
        shareDialogue: PDFShareDialogue;
    }
    diff --git a/docs/types/_internal_.Modules.html b/docs/types/_internal_.Modules.html index a5510bd86..f2825b52f 100644 --- a/docs/types/_internal_.Modules.html +++ b/docs/types/_internal_.Modules.html @@ -1 +1 @@ -Modules | universalviewer
    Modules: {
        alephCenterPanel: AlephCenterPanel;
        alephLeftPanel: AlephLeftPanel;
        downloadDialogue: AlephDownloadDialogue;
        settingsDialogue: AlephSettingsDialogue;
        shareDialogue: AlephShareDialogue;
    }
    +Modules | universalviewer
    Modules: {
        alephCenterPanel: AlephCenterPanel;
        alephLeftPanel: AlephLeftPanel;
        downloadDialogue: AlephDownloadDialogue;
        settingsDialogue: AlephSettingsDialogue;
        shareDialogue: AlephShareDialogue;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanel.html b/docs/types/_internal_.MoreInfoRightPanel.html index 16a6907ae..d450318ef 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;
    }
    +MoreInfoRightPanel | universalviewer

    Type Alias MoreInfoRightPanel

    MoreInfoRightPanel: ModuleConfig & {
        content: MoreInfoRightPanelContent;
        options: MoreInfoRightPanelOptions;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanelContent.html b/docs/types/_internal_.MoreInfoRightPanelContent.html index caa6228f6..00037b238 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.MoreInfoRightPanelOptions.html b/docs/types/_internal_.MoreInfoRightPanelOptions.html index 187931dc5..dcb08bc28 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

    -
  • +
    diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html index 8d707a99f..7ba1b23ca 100644 --- a/docs/types/_internal_.MultiSelectDialogue.html +++ b/docs/types/_internal_.MultiSelectDialogue.html @@ -1 +1 @@ -MultiSelectDialogue | universalviewer
    +MultiSelectDialogue | universalviewer
    diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html index 67790fefe..b69b0ee85 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;
    }
    +MultiSelectDialogueContent | universalviewer

    Type Alias MultiSelectDialogueContent

    MultiSelectDialogueContent: DialogueContent & {
        select: string;
        selectAll: string;
        title: string;
    }
    diff --git a/docs/types/_internal_.MultiSelectDialogueOptions.html b/docs/types/_internal_.MultiSelectDialogueOptions.html index a3075d950..61a319e7a 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

    -
  • +
    diff --git a/docs/types/_internal_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html index 0fec3a2a3..b1009d1e2 100644 --- a/docs/types/_internal_.OSDDownloadDialogue.html +++ b/docs/types/_internal_.OSDDownloadDialogue.html @@ -1 +1 @@ -OSDDownloadDialogue | universalviewer
    +OSDDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html index d0991b2d7..c00a72d1d 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.OSDDownloadDialogueOptions.html b/docs/types/_internal_.OSDDownloadDialogueOptions.html index ac6d79a01..baede60d5 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

    -
  • +
    diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html index acac9bea6..b1b823a8e 100644 --- a/docs/types/_internal_.OSDSettingsDialogue.html +++ b/docs/types/_internal_.OSDSettingsDialogue.html @@ -1 +1 @@ -OSDSettingsDialogue | universalviewer
    +OSDSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html index 222cf1049..37f1b9f47 100644 --- a/docs/types/_internal_.OSDSettingsDialogueContent.html +++ b/docs/types/_internal_.OSDSettingsDialogueContent.html @@ -1 +1 @@ -OSDSettingsDialogueContent | universalviewer
    +OSDSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html index 775481026..d765dfddc 100644 --- a/docs/types/_internal_.OSDSettingsDialogueOptions.html +++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html @@ -1 +1 @@ -OSDSettingsDialogueOptions | universalviewer
    +OSDSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html index d26453795..c9639fc46 100644 --- a/docs/types/_internal_.OSDShareDialogue.html +++ b/docs/types/_internal_.OSDShareDialogue.html @@ -1 +1 @@ -OSDShareDialogue | universalviewer
    +OSDShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html index 3f3e6c343..1f83dbc41 100644 --- a/docs/types/_internal_.OSDShareDialogueContent.html +++ b/docs/types/_internal_.OSDShareDialogueContent.html @@ -1 +1 @@ -OSDShareDialogueContent | universalviewer
    +OSDShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html index 684f5057a..2641bae06 100644 --- a/docs/types/_internal_.OSDShareDialogueOptions.html +++ b/docs/types/_internal_.OSDShareDialogueOptions.html @@ -1 +1 @@ -OSDShareDialogueOptions | universalviewer
    +OSDShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanel.html b/docs/types/_internal_.OpenSeadragonCenterPanel.html index b6ed4602d..3c8118e22 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanel.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanel.html @@ -1 +1 @@ -OpenSeadragonCenterPanel | universalviewer
    +OpenSeadragonCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html index fd08864a7..853bd60fe 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html @@ -1 +1 @@ -OpenSeadragonCenterPanelContent | universalviewer

    Type Alias OpenSeadragonCenterPanelContent

    OpenSeadragonCenterPanelContent: CenterPanelContent & {
        adjustImage: string;
        attribution: string;
        goHome: string;
        imageUnavailable: string;
        nextImage: string;
        previousImage: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    +OpenSeadragonCenterPanelContent | universalviewer

    Type Alias OpenSeadragonCenterPanelContent

    OpenSeadragonCenterPanelContent: CenterPanelContent & {
        adjustImage: string;
        attribution: string;
        goHome: string;
        imageUnavailable: string;
        nextImage: string;
        previousImage: string;
        rotateRight: string;
        zoomIn: string;
        zoomOut: string;
    }
    diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html index 714fcf7a6..7e49bf9c2 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html @@ -17,4 +17,4 @@
  • trimAttributionCount: number

    Number of attributions to trim

  • visibilityRatio: number

    Ratio of visibility

  • zoomToInitialAnnotation: boolean

    Whether to zoom in to first annotation on load

    -
  • +
    diff --git a/docs/types/_internal_.Options.html b/docs/types/_internal_.Options.html index 23950065c..666218421 100644 --- a/docs/types/_internal_.Options.html +++ b/docs/types/_internal_.Options.html @@ -29,4 +29,4 @@
  • OptionaluseArrowKeysToNavigate?: boolean

    Determines if arrow keys can be used to navigate

  • OptionalzoomToBoundsEnabled?: boolean

    Determines if zoom to bounds is enabled

  • OptionalzoomToSearchResultEnabled?: boolean

    Determines if zoom to search result is enabled

    -
  • +
    diff --git a/docs/types/_internal_.PDFCenterPanel.html b/docs/types/_internal_.PDFCenterPanel.html index a111a1f9f..07d08b64a 100644 --- a/docs/types/_internal_.PDFCenterPanel.html +++ b/docs/types/_internal_.PDFCenterPanel.html @@ -1 +1 @@ -PDFCenterPanel | universalviewer
    +PDFCenterPanel | universalviewer
    diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html index 42f6a4af7..0afcd2ad5 100644 --- a/docs/types/_internal_.PDFCenterPanelContent.html +++ b/docs/types/_internal_.PDFCenterPanelContent.html @@ -1 +1 @@ -PDFCenterPanelContent | universalviewer

    Type Alias PDFCenterPanelContent

    PDFCenterPanelContent: CenterPanelContent & { next: string; previous: string }
    +PDFCenterPanelContent | universalviewer

    Type Alias PDFCenterPanelContent

    PDFCenterPanelContent: CenterPanelContent & { next: string; previous: string }
    diff --git a/docs/types/_internal_.PDFCenterPanelOptions.html b/docs/types/_internal_.PDFCenterPanelOptions.html index 41ed3b736..9212d57db 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

      -
    +
    diff --git a/docs/types/_internal_.PDFDownloadDialogue.html b/docs/types/_internal_.PDFDownloadDialogue.html index c06a91385..fe325fe86 100644 --- a/docs/types/_internal_.PDFDownloadDialogue.html +++ b/docs/types/_internal_.PDFDownloadDialogue.html @@ -1 +1 @@ -PDFDownloadDialogue | universalviewer
    +PDFDownloadDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html index 23b747266..d2a6f13c6 100644 --- a/docs/types/_internal_.PDFDownloadDialogueContent.html +++ b/docs/types/_internal_.PDFDownloadDialogueContent.html @@ -1 +1 @@ -PDFDownloadDialogueContent | universalviewer
    +PDFDownloadDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html index bb640e594..b57552201 100644 --- a/docs/types/_internal_.PDFDownloadDialogueOptions.html +++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html @@ -1 +1 @@ -PDFDownloadDialogueOptions | universalviewer
    +PDFDownloadDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html index f46db2d02..c5b0aa74f 100644 --- a/docs/types/_internal_.PDFHeaderPanel.html +++ b/docs/types/_internal_.PDFHeaderPanel.html @@ -1 +1 @@ -PDFHeaderPanel | universalviewer
    +PDFHeaderPanel | universalviewer
    diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html index 2a7ab7257..4575249b5 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;
    }
    +PDFHeaderPanelContent | universalviewer

    Type Alias PDFHeaderPanelContent

    PDFHeaderPanelContent: HeaderPanelContent & {
        emptyValue: string;
        first: string;
        go: string;
        last: string;
        next: string;
        of: string;
        pageSearchLabel: string;
        previous: string;
    }
    diff --git a/docs/types/_internal_.PDFHeaderPanelOptions.html b/docs/types/_internal_.PDFHeaderPanelOptions.html index e71070f6b..b3bcb75ae 100644 --- a/docs/types/_internal_.PDFHeaderPanelOptions.html +++ b/docs/types/_internal_.PDFHeaderPanelOptions.html @@ -1 +1 @@ -PDFHeaderPanelOptions | universalviewer
    +PDFHeaderPanelOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html index 4569f46c2..1c306cd92 100644 --- a/docs/types/_internal_.PDFSettingsDialogue.html +++ b/docs/types/_internal_.PDFSettingsDialogue.html @@ -1 +1 @@ -PDFSettingsDialogue | universalviewer
    +PDFSettingsDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html index 10ca6c569..a21059d0e 100644 --- a/docs/types/_internal_.PDFSettingsDialogueContent.html +++ b/docs/types/_internal_.PDFSettingsDialogueContent.html @@ -1 +1 @@ -PDFSettingsDialogueContent | universalviewer
    +PDFSettingsDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html index 8a8d42684..c54c86e96 100644 --- a/docs/types/_internal_.PDFSettingsDialogueOptions.html +++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html @@ -1 +1 @@ -PDFSettingsDialogueOptions | universalviewer
    +PDFSettingsDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html index 6d0f80e0a..e7c5f6e52 100644 --- a/docs/types/_internal_.PDFShareDialogue.html +++ b/docs/types/_internal_.PDFShareDialogue.html @@ -1 +1 @@ -PDFShareDialogue | universalviewer
    +PDFShareDialogue | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html index 931125ab6..b1ae253cc 100644 --- a/docs/types/_internal_.PDFShareDialogueContent.html +++ b/docs/types/_internal_.PDFShareDialogueContent.html @@ -1 +1 @@ -PDFShareDialogueContent | universalviewer
    +PDFShareDialogueContent | universalviewer
    diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html index ad15464a6..a4ff7e302 100644 --- a/docs/types/_internal_.PDFShareDialogueOptions.html +++ b/docs/types/_internal_.PDFShareDialogueOptions.html @@ -1 +1 @@ -PDFShareDialogueOptions | universalviewer
    +PDFShareDialogueOptions | universalviewer
    diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html index c52434c71..ffd13b56a 100644 --- a/docs/types/_internal_.PagingHeaderPanel.html +++ b/docs/types/_internal_.PagingHeaderPanel.html @@ -1 +1 @@ -PagingHeaderPanel | universalviewer
    +PagingHeaderPanel | universalviewer
    diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html index c0a84899b..e1bc5cad2 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.PagingHeaderPanelOptions.html b/docs/types/_internal_.PagingHeaderPanelOptions.html index 94bd3fb6a..c2129ad74 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

    -
  • +
    diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html index 13441be9a..a3eda76d9 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;
    }
    +RestrictedDialogue | universalviewer

    Type Alias RestrictedDialogue

    RestrictedDialogue: ModuleConfig & {
        content: RestrictedDialogueContent;
        options: RestrictedDialogueOptions;
    }
    diff --git a/docs/types/_internal_.RestrictedDialogueContent.html b/docs/types/_internal_.RestrictedDialogueContent.html index eb625dc26..6a483cea1 100644 --- a/docs/types/_internal_.RestrictedDialogueContent.html +++ b/docs/types/_internal_.RestrictedDialogueContent.html @@ -1 +1 @@ -RestrictedDialogueContent | universalviewer

    Type Alias RestrictedDialogueContent

    RestrictedDialogueContent: DialogueContent & { cancel: string }
    +RestrictedDialogueContent | universalviewer

    Type Alias RestrictedDialogueContent

    RestrictedDialogueContent: DialogueContent & { cancel: string }
    diff --git a/docs/types/_internal_.RestrictedDialogueOptions.html b/docs/types/_internal_.RestrictedDialogueOptions.html index 414efd990..e5497f3ca 100644 --- a/docs/types/_internal_.RestrictedDialogueOptions.html +++ b/docs/types/_internal_.RestrictedDialogueOptions.html @@ -1 +1 @@ -RestrictedDialogueOptions | universalviewer

    Type Alias RestrictedDialogueOptions

    RestrictedDialogueOptions: DialogueOptions & {}
    +RestrictedDialogueOptions | universalviewer

    Type Alias RestrictedDialogueOptions

    RestrictedDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.SearchFooterPanel.html b/docs/types/_internal_.SearchFooterPanel.html index 9f3cd4084..80707fb67 100644 --- a/docs/types/_internal_.SearchFooterPanel.html +++ b/docs/types/_internal_.SearchFooterPanel.html @@ -1 +1 @@ -SearchFooterPanel | universalviewer
    +SearchFooterPanel | universalviewer
    diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html index 70722dd1c..b428d90c2 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.SearchFooterPanelOptions.html b/docs/types/_internal_.SearchFooterPanelOptions.html index b7f305bd2..056af9aac 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

    -
  • +
    diff --git a/docs/types/_internal_.SettingsDialogue.html b/docs/types/_internal_.SettingsDialogue.html index 0fef10098..5ff758433 100644 --- a/docs/types/_internal_.SettingsDialogue.html +++ b/docs/types/_internal_.SettingsDialogue.html @@ -1 +1 @@ -SettingsDialogue | universalviewer
    SettingsDialogue: ModuleConfig & {
        content: SettingsDialogueContent;
        options: SettingsDialogueOptions;
    }
    +SettingsDialogue | universalviewer
    SettingsDialogue: ModuleConfig & {
        content: SettingsDialogueContent;
        options: SettingsDialogueOptions;
    }
    diff --git a/docs/types/_internal_.SettingsDialogueContent.html b/docs/types/_internal_.SettingsDialogueContent.html index 11510b922..d68c37c7e 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;
        truncateThumbnailLabels: string;
        website: string;
    }
    +SettingsDialogueContent | universalviewer

    Type Alias SettingsDialogueContent

    SettingsDialogueContent: DialogueContent & {
        clickToZoomEnabled: string;
        locale: string;
        navigatorEnabled: string;
        pagingEnabled: string;
        preserveViewport: string;
        reducedMotion: string;
        title: string;
        truncateThumbnailLabels: string;
        website: string;
    }
    diff --git a/docs/types/_internal_.SettingsDialogueOptions.html b/docs/types/_internal_.SettingsDialogueOptions.html index 5f2757b86..0921db5ea 100644 --- a/docs/types/_internal_.SettingsDialogueOptions.html +++ b/docs/types/_internal_.SettingsDialogueOptions.html @@ -1 +1 @@ -SettingsDialogueOptions | universalviewer

    Type Alias SettingsDialogueOptions

    SettingsDialogueOptions: DialogueOptions & {}
    +SettingsDialogueOptions | universalviewer

    Type Alias SettingsDialogueOptions

    SettingsDialogueOptions: DialogueOptions & {}
    diff --git a/docs/types/_internal_.ShareDialogue.html b/docs/types/_internal_.ShareDialogue.html index 5edbeee55..95f24d584 100644 --- a/docs/types/_internal_.ShareDialogue.html +++ b/docs/types/_internal_.ShareDialogue.html @@ -1 +1 @@ -ShareDialogue | universalviewer
    ShareDialogue: ModuleConfig & {
        content: ShareDialogueContent;
        options: ShareDialogueOptions;
    }
    +ShareDialogue | universalviewer
    ShareDialogue: ModuleConfig & {
        content: ShareDialogueContent;
        options: ShareDialogueOptions;
    }
    diff --git a/docs/types/_internal_.ShareDialogueContent.html b/docs/types/_internal_.ShareDialogueContent.html index 3760f0afd..1a316dedb 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;
    }
    +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;
    }
    diff --git a/docs/types/_internal_.ShareDialogueOptions.html b/docs/types/_internal_.ShareDialogueOptions.html index 429dbec49..5380664aa 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

    -
  • +
    diff --git a/docs/types/_internal_.ThumbsCacheInvalidation.html b/docs/types/_internal_.ThumbsCacheInvalidation.html index 1cce5a653..e390f41f2 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

      -
    +
    From 6b86c955b52d6aa9b150ac1c9423d86acd88fe11 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Thu, 12 Dec 2024 07:44:46 -0500 Subject: [PATCH 5/7] Add missing word. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 628c3f7ac..6a9e8b4f3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -111,7 +111,7 @@ Before a release can be made, some planning and testing are required: Once a stable release is ready to be published, these steps can be followed by the Release Manager: 1. On the `release-X.Y.Z` branch, run `npm version X.Y.Z` (replacing "X.Y.Z" with the actual number of the new version) to appropriately update `package.json` and create a Git tag. -2. Merge the `release-X.Y.Z` branch into both `dev` and the matching `release-X.Y` branch. Create the `release-X.Y` branch if it does not already exist. The `release-X.Y` branch will be long-lived, used to create backported patch releases as needed; the `release-X.Y.Z` will be deleted as part of the release process, as it is no longer needed. +2. Merge the `release-X.Y.Z` branch into both `dev` and the matching `release-X.Y` branch. Create the `release-X.Y` branch if it does not already exist. The `release-X.Y` branch will be long-lived, used to create backported patch releases as needed; the `release-X.Y.Z` branch will be deleted as part of the release process, as it is no longer needed. 3. Merge the `dev` branch into the `main` branch, so that `main` continues to point to the most recent stable release. 4. All changed branches and newly-created/deleted release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.1 :release-4.1.0`. (Note the colon on `:release-4.1.0` -- this deletes the short-lived release branch while updating all of the long-lived branches). 5. At this point, a GitHub action will recognize the new version tag and publish the package to NPM. From 2517e1ac21f8c0763eb355ffd77511946ebae589 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Thu, 12 Dec 2024 07:52:53 -0500 Subject: [PATCH 6/7] Fix logical flaw. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6a9e8b4f3..2d4447bfe 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -112,7 +112,7 @@ Once a stable release is ready to be published, these steps can be followed by t 1. On the `release-X.Y.Z` branch, run `npm version X.Y.Z` (replacing "X.Y.Z" with the actual number of the new version) to appropriately update `package.json` and create a Git tag. 2. Merge the `release-X.Y.Z` branch into both `dev` and the matching `release-X.Y` branch. Create the `release-X.Y` branch if it does not already exist. The `release-X.Y` branch will be long-lived, used to create backported patch releases as needed; the `release-X.Y.Z` branch will be deleted as part of the release process, as it is no longer needed. -3. Merge the `dev` branch into the `main` branch, so that `main` continues to point to the most recent stable release. +3. Merge the `release-X.Y` branch into the `main` branch, so that `main` continues to point to the most recent stable release. 4. All changed branches and newly-created/deleted release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.1 :release-4.1.0`. (Note the colon on `:release-4.1.0` -- this deletes the short-lived release branch while updating all of the long-lived branches). 5. At this point, a GitHub action will recognize the new version tag and publish the package to NPM. From f4b2cbdbcfb83b44ba9dbd41c8bc752d929c7cc2 Mon Sep 17 00:00:00 2001 From: Demian Katz Date: Thu, 12 Dec 2024 07:53:55 -0500 Subject: [PATCH 7/7] Minor fix. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d4447bfe..5130cbb6e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -113,7 +113,7 @@ Once a stable release is ready to be published, these steps can be followed by t 1. On the `release-X.Y.Z` branch, run `npm version X.Y.Z` (replacing "X.Y.Z" with the actual number of the new version) to appropriately update `package.json` and create a Git tag. 2. Merge the `release-X.Y.Z` branch into both `dev` and the matching `release-X.Y` branch. Create the `release-X.Y` branch if it does not already exist. The `release-X.Y` branch will be long-lived, used to create backported patch releases as needed; the `release-X.Y.Z` branch will be deleted as part of the release process, as it is no longer needed. 3. Merge the `release-X.Y` branch into the `main` branch, so that `main` continues to point to the most recent stable release. -4. All changed branches and newly-created/deleted release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.1 :release-4.1.0`. (Note the colon on `:release-4.1.0` -- this deletes the short-lived release branch while updating all of the long-lived branches). +4. All changed/deleted branches and newly-created release tags must be pushed to GitHub; e.g. `git push origin main dev v4.1.0 release-4.1 :release-4.1.0`. (Note the colon on `:release-4.1.0` -- this deletes the short-lived release branch while updating all of the long-lived branches). 5. At this point, a GitHub action will recognize the new version tag and publish the package to NPM. ### Backporting a Bug Fix