diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml new file mode 100644 index 000000000..8ace79929 --- /dev/null +++ b/.github/workflows/update-docs.yml @@ -0,0 +1,32 @@ +name: Update Documentation + +on: [push, pull_request] + +jobs: + lint: + name: Lint + runs-on: ubuntu-latest + + steps: + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: '18' + + - name: Checkout + uses: actions/checkout@v4 + + - name: Install npm dependencies + run: npm install + + - 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: + default_author: github_actions + add: "['docs/']" diff --git a/docs/CNAME b/docs/CNAME index 59407a5c6..c2ab4ea18 100644 --- a/docs/CNAME +++ b/docs/CNAME @@ -1 +1 @@ -docs.universalviewer.io \ No newline at end of file +docs.universalviewer.io diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index a2f1712d8..5674cf392 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -1,36 +1,22 @@ :root { - --light-hl-0: #001080; - --dark-hl-0: #9CDCFE; - --light-hl-1: #000000; - --dark-hl-1: #D4D4D4; --light-code-background: #FFFFFF; --dark-code-background: #1E1E1E; } @media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); --code-background: var(--light-code-background); } } @media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); --code-background: var(--dark-code-background); } } :root[data-theme='light'] { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); --code-background: var(--light-code-background); } :root[data-theme='dark'] { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); --code-background: var(--dark-code-background); } -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } pre, code { background: var(--code-background); } diff --git a/docs/assets/icons.svg b/docs/assets/icons.svg new file mode 100644 index 000000000..50ad5799d --- /dev/null +++ b/docs/assets/icons.svg @@ -0,0 +1 @@ +MMNEPVFCICPMFPCPTTAAATR \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css index 07a385b73..7f80f3dc2 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -1,87 +1,247 @@ -:root { - /* Light */ - --light-color-background: #f2f4f8; - --light-color-background-secondary: #eff0f1; - --light-color-warning-text: #222; - --light-color-background-warning: #e6e600; - --light-color-icon-background: var(--light-color-background); - --light-color-accent: #c5c7c9; - --light-color-active-menu-item: var(--light-color-accent); - --light-color-text: #222; - --light-color-text-aside: #6e6e6e; - --light-color-link: #1f70c2; - - --light-color-ts-keyword: #056bd6; - --light-color-ts-project: #b111c9; - --light-color-ts-module: var(--light-color-ts-project); - --light-color-ts-namespace: var(--light-color-ts-project); - --light-color-ts-enum: #7e6f15; - --light-color-ts-enum-member: var(--light-color-ts-enum); - --light-color-ts-variable: #4760ec; - --light-color-ts-function: #572be7; - --light-color-ts-class: #1f70c2; - --light-color-ts-interface: #108024; - --light-color-ts-constructor: var(--light-color-ts-class); - --light-color-ts-property: var(--light-color-ts-variable); - --light-color-ts-method: var(--light-color-ts-function); - --light-color-ts-call-signature: var(--light-color-ts-method); - --light-color-ts-index-signature: var(--light-color-ts-property); - --light-color-ts-constructor-signature: var(--light-color-ts-constructor); - --light-color-ts-parameter: var(--light-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --light-color-ts-type-parameter: var(--light-color-ts-type-alias); - --light-color-ts-accessor: var(--light-color-ts-property); - --light-color-ts-get-signature: var(--light-color-ts-accessor); - --light-color-ts-set-signature: var(--light-color-ts-accessor); - --light-color-ts-type-alias: #d51270; - /* reference not included as links will be colored with the kind that it points to */ - - --light-external-icon: url("data:image/svg+xml;utf8,"); - --light-color-scheme: light; - - /* Dark */ - --dark-color-background: #2b2e33; - --dark-color-background-secondary: #1e2024; - --dark-color-background-warning: #bebe00; - --dark-color-warning-text: #222; - --dark-color-icon-background: var(--dark-color-background-secondary); - --dark-color-accent: #9096a2; - --dark-color-active-menu-item: #5d5d6a; - --dark-color-text: #f5f5f5; - --dark-color-text-aside: #dddddd; - --dark-color-link: #00aff4; - - --dark-color-ts-keyword: #3399ff; - --dark-color-ts-project: #e358ff; - --dark-color-ts-module: var(--dark-color-ts-project); - --dark-color-ts-namespace: var(--dark-color-ts-project); - --dark-color-ts-enum: #f4d93e; - --dark-color-ts-enum-member: var(--dark-color-ts-enum); - --dark-color-ts-variable: #798dff; - --dark-color-ts-function: #a280ff; - --dark-color-ts-class: #8ac4ff; - --dark-color-ts-interface: #6cff87; - --dark-color-ts-constructor: var(--dark-color-ts-class); - --dark-color-ts-property: var(--dark-color-ts-variable); - --dark-color-ts-method: var(--dark-color-ts-function); - --dark-color-ts-call-signature: var(--dark-color-ts-method); - --dark-color-ts-index-signature: var(--dark-color-ts-property); - --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); - --dark-color-ts-parameter: var(--dark-color-ts-variable); - /* type literal not included as links will never be generated to it */ - --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias); - --dark-color-ts-accessor: var(--dark-color-ts-property); - --dark-color-ts-get-signature: var(--dark-color-ts-accessor); - --dark-color-ts-set-signature: var(--dark-color-ts-accessor); - --dark-color-ts-type-alias: #ff6492; - /* reference not included as links will be colored with the kind that it points to */ - - --dark-external-icon: url("data:image/svg+xml;utf8,"); - --dark-color-scheme: dark; -} - -@media (prefers-color-scheme: light) { +@layer typedoc { :root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + + --light-color-icon-background: var(--light-color-background); + --light-color-icon-text: var(--light-color-text); + + --light-color-comment-tag-text: var(--light-color-text); + --light-color-comment-tag: var(--light-color-background); + + --light-color-link: #1f70c2; + --light-color-focus-outline: #3584e4; + + --light-color-ts-keyword: #056bd6; + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: #9f5f30; + --light-color-ts-method: #be3989; + --light-color-ts-reference: #ff4d82; + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var( + --light-color-ts-constructor + ); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: #a55c0e; + --light-color-ts-accessor: #c73c3c; + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + --light-color-document: #000000; + + --light-color-alert-note: #0969d9; + --light-color-alert-tip: #1a7f37; + --light-color-alert-important: #8250df; + --light-color-alert-warning: #9a6700; + --light-color-alert-caution: #cf222e; + + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; + + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-icon-text: var(--dark-color-text); + + --dark-color-comment-tag-text: var(--dark-color-text); + --dark-color-comment-tag: var(--dark-color-background); + + --dark-color-link: #00aff4; + --dark-color-focus-outline: #4c97f2; + + --dark-color-ts-keyword: #3399ff; + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: #ff984d; + --dark-color-ts-method: #ff4db8; + --dark-color-ts-reference: #ff4d82; + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: #e07d13; + --dark-color-ts-accessor: #ff6060; + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + --dark-color-document: #ffffff; + + --dark-color-alert-note: #0969d9; + --dark-color-alert-tip: #1a7f37; + --dark-color-alert-important: #8250df; + --dark-color-alert-warning: #9a6700; + --dark-color-alert-caution: #cf222e; + + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; + } + + @media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-background-secondary: var( + --light-color-background-secondary + ); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + + --color-icon-background: var(--light-color-icon-background); + --color-icon-text: var(--light-color-icon-text); + + --color-comment-tag-text: var(--light-color-text); + --color-comment-tag: var(--light-color-background); + + --color-link: var(--light-color-link); + --color-focus-outline: var(--light-color-focus-outline); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-project: var(--light-color-ts-project); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); + --color-ts-class: var(--light-color-ts-class); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-reference: var(--light-color-ts-reference); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + + --color-alert-note: var(--light-color-alert-note); + --color-alert-tip: var(--light-color-alert-tip); + --color-alert-important: var(--light-color-alert-important); + --color-alert-warning: var(--light-color-alert-warning); + --color-alert-caution: var(--light-color-alert-caution); + + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); + } + } + + @media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-background-secondary: var( + --dark-color-background-secondary + ); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + + --color-icon-background: var(--dark-color-icon-background); + --color-icon-text: var(--dark-color-icon-text); + + --color-comment-tag-text: var(--dark-color-text); + --color-comment-tag: var(--dark-color-background); + + --color-link: var(--dark-color-link); + --color-focus-outline: var(--dark-color-focus-outline); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-project: var(--dark-color-ts-project); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-reference: var(--dark-color-ts-reference); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + + --color-alert-note: var(--dark-color-alert-note); + --color-alert-tip: var(--dark-color-alert-tip); + --color-alert-important: var(--dark-color-alert-important); + --color-alert-warning: var(--dark-color-alert-warning); + --color-alert-caution: var(--dark-color-alert-caution); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } + } + + html { + color-scheme: var(--color-scheme); + } + + body { + margin: 0; + } + + :root[data-theme="light"] { --color-background: var(--light-color-background); --color-background-secondary: var(--light-color-background-secondary); --color-background-warning: var(--light-color-background-warning); @@ -91,9 +251,16 @@ --color-active-menu-item: var(--light-color-active-menu-item); --color-text: var(--light-color-text); --color-text-aside: var(--light-color-text-aside); + --color-icon-text: var(--light-color-icon-text); + + --color-comment-tag-text: var(--light-color-text); + --color-comment-tag: var(--light-color-background); + --color-link: var(--light-color-link); + --color-focus-outline: var(--light-color-focus-outline); --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-project: var(--light-color-ts-project); --color-ts-module: var(--light-color-ts-module); --color-ts-namespace: var(--light-color-ts-namespace); --color-ts-enum: var(--light-color-ts-enum); @@ -105,6 +272,7 @@ --color-ts-constructor: var(--light-color-ts-constructor); --color-ts-property: var(--light-color-ts-property); --color-ts-method: var(--light-color-ts-method); + --color-ts-reference: var(--light-color-ts-reference); --color-ts-call-signature: var(--light-color-ts-call-signature); --color-ts-index-signature: var(--light-color-ts-index-signature); --color-ts-constructor-signature: var( @@ -116,14 +284,19 @@ --color-ts-get-signature: var(--light-color-ts-get-signature); --color-ts-set-signature: var(--light-color-ts-set-signature); --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + + --color-note: var(--light-color-note); + --color-tip: var(--light-color-tip); + --color-important: var(--light-color-important); + --color-warning: var(--light-color-warning); + --color-caution: var(--light-color-caution); --external-icon: var(--light-external-icon); --color-scheme: var(--light-color-scheme); } -} -@media (prefers-color-scheme: dark) { - :root { + :root[data-theme="dark"] { --color-background: var(--dark-color-background); --color-background-secondary: var(--dark-color-background-secondary); --color-background-warning: var(--dark-color-background-warning); @@ -133,9 +306,16 @@ --color-active-menu-item: var(--dark-color-active-menu-item); --color-text: var(--dark-color-text); --color-text-aside: var(--dark-color-text-aside); + --color-icon-text: var(--dark-color-icon-text); + + --color-comment-tag-text: var(--dark-color-text); + --color-comment-tag: var(--dark-color-background); + --color-link: var(--dark-color-link); + --color-focus-outline: var(--dark-color-focus-outline); --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-project: var(--dark-color-ts-project); --color-ts-module: var(--dark-color-ts-module); --color-ts-namespace: var(--dark-color-ts-namespace); --color-ts-enum: var(--dark-color-ts-enum); @@ -147,6 +327,7 @@ --color-ts-constructor: var(--dark-color-ts-constructor); --color-ts-property: var(--dark-color-ts-property); --color-ts-method: var(--dark-color-ts-method); + --color-ts-reference: var(--dark-color-ts-reference); --color-ts-call-signature: var(--dark-color-ts-call-signature); --color-ts-index-signature: var(--dark-color-ts-index-signature); --color-ts-constructor-signature: var( @@ -158,1237 +339,1272 @@ --color-ts-get-signature: var(--dark-color-ts-get-signature); --color-ts-set-signature: var(--dark-color-ts-set-signature); --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + + --color-note: var(--dark-color-note); + --color-tip: var(--dark-color-tip); + --color-important: var(--dark-color-important); + --color-warning: var(--dark-color-warning); + --color-caution: var(--dark-color-caution); --external-icon: var(--dark-external-icon); --color-scheme: var(--dark-color-scheme); } -} - -html { - color-scheme: var(--color-scheme); -} -body { - margin: 0; -} - -:root[data-theme="light"] { - --color-background: var(--light-color-background); - --color-background-secondary: var(--light-color-background-secondary); - --color-background-warning: var(--light-color-background-warning); - --color-warning-text: var(--light-color-warning-text); - --color-icon-background: var(--light-color-icon-background); - --color-accent: var(--light-color-accent); - --color-active-menu-item: var(--light-color-active-menu-item); - --color-text: var(--light-color-text); - --color-text-aside: var(--light-color-text-aside); - --color-link: var(--light-color-link); - - --color-ts-keyword: var(--light-color-ts-keyword); - --color-ts-module: var(--light-color-ts-module); - --color-ts-namespace: var(--light-color-ts-namespace); - --color-ts-enum: var(--light-color-ts-enum); - --color-ts-enum-member: var(--light-color-ts-enum-member); - --color-ts-variable: var(--light-color-ts-variable); - --color-ts-function: var(--light-color-ts-function); - --color-ts-class: var(--light-color-ts-class); - --color-ts-interface: var(--light-color-ts-interface); - --color-ts-constructor: var(--light-color-ts-constructor); - --color-ts-property: var(--light-color-ts-property); - --color-ts-method: var(--light-color-ts-method); - --color-ts-call-signature: var(--light-color-ts-call-signature); - --color-ts-index-signature: var(--light-color-ts-index-signature); - --color-ts-constructor-signature: var( - --light-color-ts-constructor-signature - ); - --color-ts-parameter: var(--light-color-ts-parameter); - --color-ts-type-parameter: var(--light-color-ts-type-parameter); - --color-ts-accessor: var(--light-color-ts-accessor); - --color-ts-get-signature: var(--light-color-ts-get-signature); - --color-ts-set-signature: var(--light-color-ts-set-signature); - --color-ts-type-alias: var(--light-color-ts-type-alias); - - --external-icon: var(--light-external-icon); - --color-scheme: var(--light-color-scheme); -} - -:root[data-theme="dark"] { - --color-background: var(--dark-color-background); - --color-background-secondary: var(--dark-color-background-secondary); - --color-background-warning: var(--dark-color-background-warning); - --color-warning-text: var(--dark-color-warning-text); - --color-icon-background: var(--dark-color-icon-background); - --color-accent: var(--dark-color-accent); - --color-active-menu-item: var(--dark-color-active-menu-item); - --color-text: var(--dark-color-text); - --color-text-aside: var(--dark-color-text-aside); - --color-link: var(--dark-color-link); - - --color-ts-keyword: var(--dark-color-ts-keyword); - --color-ts-module: var(--dark-color-ts-module); - --color-ts-namespace: var(--dark-color-ts-namespace); - --color-ts-enum: var(--dark-color-ts-enum); - --color-ts-enum-member: var(--dark-color-ts-enum-member); - --color-ts-variable: var(--dark-color-ts-variable); - --color-ts-function: var(--dark-color-ts-function); - --color-ts-class: var(--dark-color-ts-class); - --color-ts-interface: var(--dark-color-ts-interface); - --color-ts-constructor: var(--dark-color-ts-constructor); - --color-ts-property: var(--dark-color-ts-property); - --color-ts-method: var(--dark-color-ts-method); - --color-ts-call-signature: var(--dark-color-ts-call-signature); - --color-ts-index-signature: var(--dark-color-ts-index-signature); - --color-ts-constructor-signature: var( - --dark-color-ts-constructor-signature - ); - --color-ts-parameter: var(--dark-color-ts-parameter); - --color-ts-type-parameter: var(--dark-color-ts-type-parameter); - --color-ts-accessor: var(--dark-color-ts-accessor); - --color-ts-get-signature: var(--dark-color-ts-get-signature); - --color-ts-set-signature: var(--dark-color-ts-set-signature); - --color-ts-type-alias: var(--dark-color-ts-type-alias); - - --external-icon: var(--dark-external-icon); - --color-scheme: var(--dark-color-scheme); -} + *:focus-visible, + .tsd-accordion-summary:focus-visible svg { + outline: 2px solid var(--color-focus-outline); + } -.always-visible, -.always-visible .tsd-signatures { - display: inherit !important; -} + .always-visible, + .always-visible .tsd-signatures { + display: inherit !important; + } -h1, -h2, -h3, -h4, -h5, -h6 { - line-height: 1.2; -} + h1, + h2, + h3, + h4, + h5, + h6 { + line-height: 1.2; + } -h1 > a, -h2 > a, -h3 > a, -h4 > a, -h5 > a, -h6 > a { - text-decoration: none; - color: var(--color-text); -} + h1 { + font-size: 1.875rem; + margin: 0.67rem 0; + } -h1 { - font-size: 1.875rem; - margin: 0.67rem 0; -} + h2 { + font-size: 1.5rem; + margin: 0.83rem 0; + } -h2 { - font-size: 1.5rem; - margin: 0.83rem 0; -} + h3 { + font-size: 1.25rem; + margin: 1rem 0; + } -h3 { - font-size: 1.25rem; - margin: 1rem 0; -} + h4 { + font-size: 1.05rem; + margin: 1.33rem 0; + } -h4 { - font-size: 1.05rem; - margin: 1.33rem 0; -} + h5 { + font-size: 1rem; + margin: 1.5rem 0; + } -h5 { - font-size: 1rem; - margin: 1.5rem 0; -} + h6 { + font-size: 0.875rem; + margin: 2.33rem 0; + } -h6 { - font-size: 0.875rem; - margin: 2.33rem 0; -} + dl, + menu, + ol, + ul { + margin: 1em 0; + } -.uppercase { - text-transform: uppercase; -} + dd { + margin: 0 0 0 34px; + } -dl, -menu, -ol, -ul { - margin: 1em 0; -} + .container { + max-width: 1700px; + padding: 0 2rem; + } -dd { - margin: 0 0 0 40px; -} + /* Footer */ + footer { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; + } + footer > p { + margin: 0 1em; + } -.container { - max-width: 1700px; - padding: 0 2rem; -} + .container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); + } -/* Footer */ -.tsd-generator { - border-top: 1px solid var(--color-accent); - padding-top: 1rem; - padding-bottom: 1rem; - max-height: 3.5rem; -} + @keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + @keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } + } + @keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } + } + @keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } + } + @keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } + } + @keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } + } + body { + background: var(--color-background); + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; + font-size: 16px; + color: var(--color-text); + } -.tsd-generator > p { - margin-top: 0; - margin-bottom: 0; - padding: 0 1rem; -} + a { + color: var(--color-link); + text-decoration: none; + } + a:hover { + text-decoration: underline; + } + a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; + } + a.tsd-anchor-link { + color: var(--color-text); + } -.container-main { - margin: 0 auto; - /* toolbar, footer, margin */ - min-height: calc(100vh - 41px - 56px - 4rem); -} + code, + pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 0.875rem; + border-radius: 0.8em; + } -@keyframes fade-in { - from { + pre { + position: relative; + white-space: pre-wrap; + word-wrap: break-word; + padding: 10px; + border: 1px solid var(--color-accent); + margin-bottom: 8px; + } + pre code { + padding: 0; + font-size: 100%; + } + pre > button { + position: absolute; + top: 10px; + right: 10px; opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; } - to { + pre:hover > button, + pre > button.visible { opacity: 1; } -} -@keyframes fade-out { - from { - opacity: 1; - visibility: visible; + + blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; } - to { - opacity: 0; + + .tsd-typography { + line-height: 1.333em; } -} -@keyframes fade-in-delayed { - 0% { - opacity: 0; + .tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; } - 33% { - opacity: 0; + .tsd-typography .tsd-index-panel h3, + .tsd-index-panel .tsd-typography h3, + .tsd-typography h4, + .tsd-typography h5, + .tsd-typography h6 { + font-size: 1em; } - 100% { - opacity: 1; + .tsd-typography h5, + .tsd-typography h6 { + font-weight: normal; } -} -@keyframes fade-out-delayed { - 0% { - opacity: 1; - visibility: visible; + .tsd-typography p, + .tsd-typography ul, + .tsd-typography ol { + margin: 1em 0; } - 66% { - opacity: 0; + .tsd-typography table { + border-collapse: collapse; + border: none; } - 100% { - opacity: 0; + .tsd-typography td, + .tsd-typography th { + padding: 6px 13px; + border: 1px solid var(--color-accent); } -} -@keyframes pop-in-from-right { - from { - transform: translate(100%, 0); + .tsd-typography thead, + .tsd-typography tr:nth-child(even) { + background-color: var(--color-background-secondary); } - to { - transform: translate(0, 0); + + .tsd-alert { + padding: 8px 16px; + margin-bottom: 16px; + border-left: 0.25em solid var(--alert-color); } -} -@keyframes pop-out-to-right { - from { - transform: translate(0, 0); - visibility: visible; + .tsd-alert blockquote > :last-child, + .tsd-alert > :last-child { + margin-bottom: 0; } - to { - transform: translate(100%, 0); + .tsd-alert-title { + color: var(--alert-color); + display: inline-flex; + align-items: center; + } + .tsd-alert-title span { + margin-left: 4px; } -} -body { - background: var(--color-background); - font-family: "Segoe UI", sans-serif; - font-size: 16px; - color: var(--color-text); -} -a { - color: var(--color-link); - text-decoration: none; -} -a:hover { - text-decoration: underline; -} -a.external[target="_blank"] { - background-image: var(--external-icon); - background-position: top 3px right; - background-repeat: no-repeat; - padding-right: 13px; -} + .tsd-alert-note { + --alert-color: var(--color-alert-note); + } + .tsd-alert-tip { + --alert-color: var(--color-alert-tip); + } + .tsd-alert-important { + --alert-color: var(--color-alert-important); + } + .tsd-alert-warning { + --alert-color: var(--color-alert-warning); + } + .tsd-alert-caution { + --alert-color: var(--color-alert-caution); + } -code, -pre { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - padding: 0.2em; - margin: 0; - font-size: 0.875rem; - border-radius: 0.8em; -} + .tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); + } + .tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; + } + .tsd-breadcrumb a:hover { + text-decoration: underline; + } + .tsd-breadcrumb li { + display: inline; + } + .tsd-breadcrumb li:after { + content: " / "; + } -pre { - position: relative; - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; - padding: 10px; - border: 1px solid var(--color-accent); -} -pre code { - padding: 0; - font-size: 100%; -} -pre > button { - position: absolute; - top: 10px; - right: 10px; - opacity: 0; - transition: opacity 0.1s; - box-sizing: border-box; -} -pre:hover > button, -pre > button.visible { - opacity: 1; -} + .tsd-comment-tags { + display: flex; + flex-direction: column; + } + dl.tsd-comment-tag-group { + display: flex; + align-items: center; + overflow: hidden; + margin: 0.5em 0; + } + dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; + font-weight: normal; + } + dl.tsd-comment-tag-group dd { + margin: 0; + } + code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; + } + h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; + } -blockquote { - margin: 1em 0; - padding-left: 1em; - border-left: 4px solid gray; -} + dl.tsd-comment-tag-group dd:before, + dl.tsd-comment-tag-group dd:after { + content: " "; + } + dl.tsd-comment-tag-group dd pre, + dl.tsd-comment-tag-group dd:after { + clear: both; + } + dl.tsd-comment-tag-group p { + margin: 0; + } -.tsd-typography { - line-height: 1.333em; -} -.tsd-typography ul { - list-style: square; - padding: 0 0 0 20px; - margin: 0; -} -.tsd-typography .tsd-index-panel h3, -.tsd-index-panel .tsd-typography h3, -.tsd-typography h4, -.tsd-typography h5, -.tsd-typography h6 { - font-size: 1em; -} -.tsd-typography h5, -.tsd-typography h6 { - font-weight: normal; -} -.tsd-typography p, -.tsd-typography ul, -.tsd-typography ol { - margin: 1em 0; -} -.tsd-typography table { - border-collapse: collapse; - border: none; -} -.tsd-typography td, -.tsd-typography th { - padding: 6px 13px; - border: 1px solid var(--color-accent); -} -.tsd-typography thead, -.tsd-typography tr:nth-child(even) { - background-color: var(--color-background-secondary); -} + .tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; + } + .tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; + } -.tsd-breadcrumb { - margin: 0; - padding: 0; - color: var(--color-text-aside); -} -.tsd-breadcrumb a { - color: var(--color-text-aside); - text-decoration: none; -} -.tsd-breadcrumb a:hover { - text-decoration: underline; -} -.tsd-breadcrumb li { - display: inline; -} -.tsd-breadcrumb li:after { - content: " / "; -} + .tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; + } + .tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; + } + .tsd-filter-input { + display: flex; + width: -moz-fit-content; + width: fit-content; + align-items: center; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + } + .tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; + } + .tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; + } + .tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; + } + .tsd-filter-input input[type="checkbox"]:focus-visible + svg { + outline: 2px solid var(--color-focus-outline); + } + .tsd-checkbox-background { + fill: var(--color-accent); + } + input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); + } + .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; + } + .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); + } -.tsd-comment-tags { - display: flex; - flex-direction: column; -} -dl.tsd-comment-tag-group { - display: flex; - align-items: center; - overflow: hidden; - margin: 0.5em 0; -} -dl.tsd-comment-tag-group dt { - display: flex; - margin-right: 0.5em; - font-size: 0.875em; - font-weight: normal; -} -dl.tsd-comment-tag-group dd { - margin: 0; -} -code.tsd-tag { - padding: 0.25em 0.4em; - border: 0.1em solid var(--color-accent); - margin-right: 0.25em; - font-size: 70%; -} -h1 code.tsd-tag:first-of-type { - margin-left: 0.25em; -} + .settings-label { + font-weight: bold; + text-transform: uppercase; + display: inline-block; + } -dl.tsd-comment-tag-group dd:before, -dl.tsd-comment-tag-group dd:after { - content: " "; -} -dl.tsd-comment-tag-group dd pre, -dl.tsd-comment-tag-group dd:after { - clear: both; -} -dl.tsd-comment-tag-group p { - margin: 0; -} + .tsd-filter-visibility .settings-label { + margin: 0.75rem 0 0.5rem 0; + } -.tsd-panel.tsd-comment .lead { - font-size: 1.1em; - line-height: 1.333em; - margin-bottom: 2em; -} -.tsd-panel.tsd-comment .lead:last-child { - margin-bottom: 0; -} + .tsd-theme-toggle .settings-label { + margin: 0.75rem 0.75rem 0 0; + } -.tsd-filter-visibility h4 { - font-size: 1rem; - padding-top: 0.75rem; - padding-bottom: 0.5rem; - margin: 0; -} -.tsd-filter-item:not(:last-child) { - margin-bottom: 0.5rem; -} -.tsd-filter-input { - display: flex; - width: fit-content; - width: -moz-fit-content; - align-items: center; - user-select: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - cursor: pointer; -} -.tsd-filter-input input[type="checkbox"] { - cursor: pointer; - position: absolute; - width: 1.5em; - height: 1.5em; - opacity: 0; -} -.tsd-filter-input input[type="checkbox"]:disabled { - pointer-events: none; -} -.tsd-filter-input svg { - cursor: pointer; - width: 1.5em; - height: 1.5em; - margin-right: 0.5em; - border-radius: 0.33em; - /* Leaving this at full opacity breaks event listeners on Firefox. - Don't remove unless you know what you're doing. */ - opacity: 0.99; -} -.tsd-filter-input input[type="checkbox"]:focus + svg { - transform: scale(0.95); -} -.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg { - transform: scale(1); -} -.tsd-checkbox-background { - fill: var(--color-accent); -} -input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { - stroke: var(--color-text); -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { - fill: var(--color-background); - stroke: var(--color-accent); - stroke-width: 0.25rem; -} -.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { - stroke: var(--color-accent); -} + .tsd-hierarchy h4 label:hover span { + text-decoration: underline; + } -.tsd-theme-toggle { - padding-top: 0.75rem; -} -.tsd-theme-toggle > h4 { - display: inline; - vertical-align: middle; - margin-right: 0.75rem; -} + .tsd-hierarchy { + list-style: square; + margin: 0; + } + .tsd-hierarchy-target { + font-weight: bold; + } + .tsd-hierarchy-toggle { + color: var(--color-link); + cursor: pointer; + } -.tsd-hierarchy { - list-style: square; - margin: 0; -} -.tsd-hierarchy .target { - font-weight: bold; -} + .tsd-full-hierarchy:not(:last-child) { + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid var(--color-accent); + } + .tsd-full-hierarchy, + .tsd-full-hierarchy ul { + list-style: none; + margin: 0; + padding: 0; + } + .tsd-full-hierarchy ul { + padding-left: 1.5rem; + } + .tsd-full-hierarchy a { + padding: 0.25rem 0 !important; + font-size: 1rem; + display: inline-flex; + align-items: center; + color: var(--color-text); + } + .tsd-full-hierarchy svg[data-dropdown] { + cursor: pointer; + } + .tsd-full-hierarchy svg[data-dropdown="false"] { + transform: rotate(-90deg); + } + .tsd-full-hierarchy svg[data-dropdown="false"] ~ ul { + display: none; + } -.tsd-panel-group.tsd-index-group { - margin-bottom: 0; -} -.tsd-index-panel .tsd-index-list { - list-style: none; - line-height: 1.333em; - margin: 0; - padding: 0.25rem 0 0 0; - overflow: hidden; - display: grid; - grid-template-columns: repeat(3, 1fr); - column-gap: 1rem; - grid-template-rows: auto; -} -@media (max-width: 1024px) { - .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(2, 1fr); + .tsd-panel-group.tsd-index-group { + margin-bottom: 0; } -} -@media (max-width: 768px) { .tsd-index-panel .tsd-index-list { - grid-template-columns: repeat(1, 1fr); + list-style: none; + line-height: 1.333em; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; + } + @media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); + } + } + @media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); + } + } + .tsd-index-panel .tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; } -} -.tsd-index-panel .tsd-index-list li { - -webkit-page-break-inside: avoid; - -moz-page-break-inside: avoid; - -ms-page-break-inside: avoid; - -o-page-break-inside: avoid; - page-break-inside: avoid; -} -.tsd-flag { - display: inline-block; - padding: 0.25em 0.4em; - border-radius: 4px; - color: var(--color-comment-tag-text); - background-color: var(--color-comment-tag); - text-indent: 0; - font-size: 75%; - line-height: 1; - font-weight: normal; -} + .tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; + } -.tsd-anchor { - position: relative; - top: -100px; -} + .tsd-anchor { + position: relative; + top: -100px; + } -.tsd-member { - position: relative; -} -.tsd-member .tsd-anchor + h3 { - display: flex; - align-items: center; - margin-top: 0; - margin-bottom: 0; - border-bottom: none; -} + .tsd-member { + position: relative; + } + .tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; + margin-top: 0; + margin-bottom: 0; + border-bottom: none; + } -.tsd-navigation.settings { - margin: 1rem 0; -} -.tsd-navigation > a, -.tsd-navigation .tsd-accordion-summary { - width: calc(100% - 0.5rem); -} -.tsd-navigation a, -.tsd-navigation summary > span, -.tsd-page-navigation a { - display: inline-flex; - align-items: center; - padding: 0.25rem; - color: var(--color-text); - text-decoration: none; - box-sizing: border-box; -} -.tsd-navigation a.current, -.tsd-page-navigation a.current { - background: var(--color-active-menu-item); -} -.tsd-navigation a:hover, -.tsd-page-navigation a:hover { - text-decoration: underline; -} -.tsd-navigation ul, -.tsd-page-navigation ul { - margin-top: 0; - margin-bottom: 0; - padding: 0; - list-style: none; -} -.tsd-navigation li, -.tsd-page-navigation li { - padding: 0; - max-width: 100%; -} -.tsd-nested-navigation { - margin-left: 3rem; -} -.tsd-nested-navigation > li > details { - margin-left: -1.5rem; -} -.tsd-small-nested-navigation { - margin-left: 1.5rem; -} -.tsd-small-nested-navigation > li > details { - margin-left: -1.5rem; -} + .tsd-navigation.settings { + margin: 1rem 0; + } + .tsd-navigation > a, + .tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.25rem); + display: flex; + align-items: center; + } + .tsd-navigation a, + .tsd-navigation summary > span, + .tsd-page-navigation a { + display: flex; + width: calc(100% - 0.25rem); + align-items: center; + padding: 0.25rem; + color: var(--color-text); + text-decoration: none; + box-sizing: border-box; + } + .tsd-navigation a.current, + .tsd-page-navigation a.current { + background: var(--color-active-menu-item); + } + .tsd-navigation a:hover, + .tsd-page-navigation a:hover { + text-decoration: underline; + } + .tsd-navigation ul, + .tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; + padding: 0; + list-style: none; + } + .tsd-navigation li, + .tsd-page-navigation li { + padding: 0; + max-width: 100%; + } + .tsd-navigation .tsd-nav-link { + display: none; + } + .tsd-nested-navigation { + margin-left: 3rem; + } + .tsd-nested-navigation > li > details { + margin-left: -1.5rem; + } + .tsd-small-nested-navigation { + margin-left: 1.5rem; + } + .tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; + } -.tsd-nested-navigation > li > a, -.tsd-nested-navigation > li > span { - width: calc(100% - 1.75rem - 0.5rem); -} + .tsd-page-navigation-section { + margin-left: 10px; + } + .tsd-page-navigation-section > summary { + padding: 0.25rem; + } + .tsd-page-navigation-section > div { + margin-left: 20px; + } + .tsd-page-navigation ul { + padding-left: 1.75rem; + } -.tsd-page-navigation ul { - padding-left: 1.75rem; -} - -#tsd-sidebar-links a { - margin-top: 0; - margin-bottom: 0.5rem; - line-height: 1.25rem; -} -#tsd-sidebar-links a:last-of-type { - margin-bottom: 0; -} - -a.tsd-index-link { - padding: 0.25rem 0 !important; - font-size: 1rem; - line-height: 1.25rem; - display: inline-flex; - align-items: center; - color: var(--color-text); -} -.tsd-accordion-summary { - list-style-type: none; /* hide marker on non-safari */ - outline: none; /* broken on safari, so just hide it */ -} -.tsd-accordion-summary::-webkit-details-marker { - display: none; /* hide marker on safari */ -} -.tsd-accordion-summary, -.tsd-accordion-summary a { - user-select: none; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - - cursor: pointer; -} -.tsd-accordion-summary a { - width: calc(100% - 1.5rem); -} -.tsd-accordion-summary > * { - margin-top: 0; - margin-bottom: 0; - padding-top: 0; - padding-bottom: 0; -} -.tsd-index-accordion .tsd-accordion-summary > svg { - margin-left: 0.25rem; -} -.tsd-index-content > :not(:first-child) { - margin-top: 0.75rem; -} -.tsd-index-heading { - margin-top: 1.5rem; - margin-bottom: 0.75rem; -} - -.tsd-kind-icon { - margin-right: 0.5rem; - width: 1.25rem; - height: 1.25rem; - min-width: 1.25rem; - min-height: 1.25rem; -} -.tsd-kind-icon path { - transform-origin: center; - transform: scale(1.1); -} -.tsd-signature > .tsd-kind-icon { - margin-right: 0.8rem; -} - -.tsd-panel { - margin-bottom: 2.5rem; -} -.tsd-panel.tsd-member { - margin-bottom: 4rem; -} -.tsd-panel:empty { - display: none; -} -.tsd-panel > h1, -.tsd-panel > h2, -.tsd-panel > h3 { - margin: 1.5rem -1.5rem 0.75rem -1.5rem; - padding: 0 1.5rem 0.75rem 1.5rem; -} -.tsd-panel > h1.tsd-before-signature, -.tsd-panel > h2.tsd-before-signature, -.tsd-panel > h3.tsd-before-signature { - margin-bottom: 0; - border-bottom: none; -} - -.tsd-panel-group { - margin: 4rem 0; -} -.tsd-panel-group.tsd-index-group { - margin: 2rem 0; -} -.tsd-panel-group.tsd-index-group details { - margin: 2rem 0; -} - -#tsd-search { - transition: background-color 0.2s; -} -#tsd-search .title { - position: relative; - z-index: 2; -} -#tsd-search .field { - position: absolute; - left: 0; - top: 0; - right: 2.5rem; - height: 100%; -} -#tsd-search .field input { - box-sizing: border-box; - position: relative; - top: -50px; - z-index: 1; - width: 100%; - padding: 0 10px; - opacity: 0; - outline: 0; - border: 0; - background: transparent; - color: var(--color-text); -} -#tsd-search .field label { - position: absolute; - overflow: hidden; - right: -40px; -} -#tsd-search .field input, -#tsd-search .title, -#tsd-toolbar-links a { - transition: opacity 0.2s; -} -#tsd-search .results { - position: absolute; - visibility: hidden; - top: 40px; - width: 100%; - margin: 0; - padding: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); -} -#tsd-search .results li { - background-color: var(--color-background); - line-height: initial; - padding: 4px; -} -#tsd-search .results li:nth-child(even) { - background-color: var(--color-background-secondary); -} -#tsd-search .results li.state { - display: none; -} -#tsd-search .results li.current:not(.no-results), -#tsd-search .results li:hover:not(.no-results) { - background-color: var(--color-accent); -} -#tsd-search .results a { - display: flex; - align-items: center; - padding: 0.25rem; - box-sizing: border-box; -} -#tsd-search .results a:before { - top: 10px; -} -#tsd-search .results span.parent { - color: var(--color-text-aside); - font-weight: normal; -} -#tsd-search.has-focus { - background-color: var(--color-accent); -} -#tsd-search.has-focus .field input { - top: 0; - opacity: 1; -} -#tsd-search.has-focus .title, -#tsd-search.has-focus #tsd-toolbar-links a { - z-index: 0; - opacity: 0; -} -#tsd-search.has-focus .results { - visibility: visible; -} -#tsd-search.loading .results li.state.loading { - display: block; -} -#tsd-search.failure .results li.state.failure { - display: block; -} - -#tsd-toolbar-links { - position: absolute; - top: 0; - right: 2rem; - height: 100%; - display: flex; - align-items: center; - justify-content: flex-end; -} -#tsd-toolbar-links a { - margin-left: 1.5rem; -} -#tsd-toolbar-links a:hover { - text-decoration: underline; -} - -.tsd-signature { - margin: 0 0 1rem 0; - padding: 1rem 0.5rem; - border: 1px solid var(--color-accent); - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; - font-size: 14px; - overflow-x: auto; -} - -.tsd-signature-keyword { - color: var(--color-ts-keyword); - font-weight: normal; -} - -.tsd-signature-symbol { - color: var(--color-text-aside); - font-weight: normal; -} - -.tsd-signature-type { - font-style: italic; - font-weight: normal; -} - -.tsd-signatures { - padding: 0; - margin: 0 0 1em 0; - list-style-type: none; -} -.tsd-signatures .tsd-signature { - margin: 0; - border-color: var(--color-accent); - border-width: 1px 0; - transition: background-color 0.1s; -} -.tsd-description .tsd-signatures .tsd-signature { - border-width: 1px; -} - -ul.tsd-parameter-list, -ul.tsd-type-parameter-list { - list-style: square; - margin: 0; - padding-left: 20px; -} -ul.tsd-parameter-list > li.tsd-parameter-signature, -ul.tsd-type-parameter-list > li.tsd-parameter-signature { - list-style: none; - margin-left: -20px; -} -ul.tsd-parameter-list h5, -ul.tsd-type-parameter-list h5 { - font-size: 16px; - margin: 1em 0 0.5em 0; -} -.tsd-sources { - margin-top: 1rem; - font-size: 0.875em; -} -.tsd-sources a { - color: var(--color-text-aside); - text-decoration: underline; -} -.tsd-sources ul { - list-style: none; - padding: 0; -} - -.tsd-page-toolbar { - position: sticky; - z-index: 1; - top: 0; - left: 0; - width: 100%; - color: var(--color-text); - background: var(--color-background-secondary); - border-bottom: 1px var(--color-accent) solid; - transition: transform 0.3s ease-in-out; -} -.tsd-page-toolbar a { - color: var(--color-text); - text-decoration: none; -} -.tsd-page-toolbar a.title { - font-weight: bold; -} -.tsd-page-toolbar a.title:hover { - text-decoration: underline; -} -.tsd-page-toolbar .tsd-toolbar-contents { - display: flex; - justify-content: space-between; - height: 2.5rem; - margin: 0 auto; -} -.tsd-page-toolbar .table-cell { - position: relative; - white-space: nowrap; - line-height: 40px; -} -.tsd-page-toolbar .table-cell:first-child { - width: 100%; -} -.tsd-page-toolbar .tsd-toolbar-icon { - box-sizing: border-box; - line-height: 0; - padding: 12px 0; -} + #tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; + } + #tsd-sidebar-links a:last-of-type { + margin-bottom: 0; + } -.tsd-widget { - display: inline-block; - overflow: hidden; - opacity: 0.8; - height: 40px; - transition: - opacity 0.1s, - background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-widget:hover { - opacity: 0.9; -} -.tsd-widget.active { - opacity: 1; - background-color: var(--color-accent); -} -.tsd-widget.no-caption { - width: 40px; -} -.tsd-widget.no-caption:before { - margin: 0; -} + a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); + } + .tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ + } + .tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ + } + .tsd-accordion-summary, + .tsd-accordion-summary a { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + + cursor: pointer; + } + .tsd-accordion-summary a { + width: calc(100% - 1.5rem); + } + .tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; + } + .tsd-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; + vertical-align: text-top; + } + /* + We need to be careful to target the arrow indicating whether the accordion + is open, but not any other SVGs included in the details element. +*/ + .tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child, + .tsd-accordion:not([open]) > .tsd-accordion-summary > h1 > svg:first-child, + .tsd-accordion:not([open]) > .tsd-accordion-summary > h2 > svg:first-child, + .tsd-accordion:not([open]) > .tsd-accordion-summary > h3 > svg:first-child, + .tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child { + transform: rotate(-90deg); + } + .tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; + } + .tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; + } -.tsd-widget.options, -.tsd-widget.menu { - display: none; -} -input[type="checkbox"] + .tsd-widget:before { - background-position: -120px 0; -} -input[type="checkbox"]:checked + .tsd-widget:before { - background-position: -160px 0; -} + .tsd-no-select { + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + } + .tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; + } + .tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; + } -img { - max-width: 100%; -} + .tsd-panel { + margin-bottom: 2.5rem; + } + .tsd-panel.tsd-member { + margin-bottom: 4rem; + } + .tsd-panel:empty { + display: none; + } + .tsd-panel > h1, + .tsd-panel > h2, + .tsd-panel > h3 { + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; + } + .tsd-panel > h1.tsd-before-signature, + .tsd-panel > h2.tsd-before-signature, + .tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: none; + } -.tsd-anchor-icon { - display: inline-flex; - align-items: center; - margin-left: 0.5rem; - vertical-align: middle; - color: var(--color-text); -} + .tsd-panel-group { + margin: 2rem 0; + } + .tsd-panel-group.tsd-index-group { + margin: 2rem 0; + } + .tsd-panel-group.tsd-index-group details { + margin: 2rem 0; + } + .tsd-panel-group > .tsd-accordion-summary { + margin-bottom: 1rem; + } -.tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; -} + #tsd-search { + transition: background-color 0.2s; + } + #tsd-search .title { + position: relative; + z-index: 2; + } + #tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; + } + #tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); + } + #tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; + } + #tsd-search .field input, + #tsd-search .title, + #tsd-toolbar-links a { + transition: opacity 0.2s; + } + #tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + } + #tsd-search .results li { + background-color: var(--color-background); + line-height: initial; + padding: 4px; + } + #tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); + } + #tsd-search .results li.state { + display: none; + } + #tsd-search .results li.current:not(.no-results), + #tsd-search .results li:hover:not(.no-results) { + background-color: var(--color-accent); + } + #tsd-search .results a { + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; + } + #tsd-search .results a:before { + top: 10px; + } + #tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; + } + #tsd-search.has-focus { + background-color: var(--color-accent); + } + #tsd-search.has-focus .field input { + top: 0; + opacity: 1; + } + #tsd-search.has-focus .title, + #tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; + } + #tsd-search.has-focus .results { + visibility: visible; + } + #tsd-search.loading .results li.state.loading { + display: block; + } + #tsd-search.failure .results li.state.failure { + display: block; + } -.tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; -} + #tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; + } + #tsd-toolbar-links a { + margin-left: 1.5rem; + } + #tsd-toolbar-links a:hover { + text-decoration: underline; + } -.deprecated { - text-decoration: line-through !important; -} + .tsd-signature { + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; + } -.warning { - padding: 1rem; - color: var(--color-warning-text); - background: var(--color-background-warning); -} + .tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; + } -.tsd-kind-project { - color: var(--color-ts-project); -} -.tsd-kind-module { - color: var(--color-ts-module); -} -.tsd-kind-namespace { - color: var(--color-ts-namespace); -} -.tsd-kind-enum { - color: var(--color-ts-enum); -} -.tsd-kind-enum-member { - color: var(--color-ts-enum-member); -} -.tsd-kind-variable { - color: var(--color-ts-variable); -} -.tsd-kind-function { - color: var(--color-ts-function); -} -.tsd-kind-class { - color: var(--color-ts-class); -} -.tsd-kind-interface { - color: var(--color-ts-interface); -} -.tsd-kind-constructor { - color: var(--color-ts-constructor); -} -.tsd-kind-property { - color: var(--color-ts-property); -} -.tsd-kind-method { - color: var(--color-ts-method); -} -.tsd-kind-call-signature { - color: var(--color-ts-call-signature); -} -.tsd-kind-index-signature { - color: var(--color-ts-index-signature); -} -.tsd-kind-constructor-signature { - color: var(--color-ts-constructor-signature); -} -.tsd-kind-parameter { - color: var(--color-ts-parameter); -} -.tsd-kind-type-literal { - color: var(--color-ts-type-literal); -} -.tsd-kind-type-parameter { - color: var(--color-ts-type-parameter); -} -.tsd-kind-accessor { - color: var(--color-ts-accessor); -} -.tsd-kind-get-signature { - color: var(--color-ts-get-signature); -} -.tsd-kind-set-signature { - color: var(--color-ts-set-signature); -} -.tsd-kind-type-alias { - color: var(--color-ts-type-alias); -} + .tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; + } -/* if we have a kind icon, don't color the text by kind */ -.tsd-kind-icon ~ span { - color: var(--color-text); -} + .tsd-signature-type { + font-style: italic; + font-weight: normal; + } -* { - scrollbar-width: thin; - scrollbar-color: var(--color-accent) var(--color-icon-background); -} + .tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + list-style-type: none; + } + .tsd-signatures .tsd-signature { + margin: 0; + border-color: var(--color-accent); + border-width: 1px 0; + transition: background-color 0.1s; + } + .tsd-signatures .tsd-index-signature:not(:last-child) { + margin-bottom: 1em; + } + .tsd-signatures .tsd-index-signature .tsd-signature { + border-width: 1px; + } + .tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; + } -*::-webkit-scrollbar { - width: 0.75rem; -} + ul.tsd-parameter-list, + ul.tsd-type-parameter-list { + list-style: square; + margin: 0; + padding-left: 20px; + } + ul.tsd-parameter-list > li.tsd-parameter-signature, + ul.tsd-type-parameter-list > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; + } + ul.tsd-parameter-list h5, + ul.tsd-type-parameter-list h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; + } + .tsd-sources { + margin-top: 1rem; + font-size: 0.875em; + } + .tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; + } + .tsd-sources ul { + list-style: none; + padding: 0; + } -*::-webkit-scrollbar-track { - background: var(--color-icon-background); -} + .tsd-page-toolbar { + position: sticky; + z-index: 1; + top: 0; + left: 0; + width: 100%; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; + } + .tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; + } + .tsd-page-toolbar a.title { + font-weight: bold; + } + .tsd-page-toolbar a.title:hover { + text-decoration: underline; + } + .tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; + } + .tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; + } + .tsd-page-toolbar .table-cell:first-child { + width: 100%; + } + .tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; + } -*::-webkit-scrollbar-thumb { - background-color: var(--color-accent); - border-radius: 999rem; - border: 0.25rem solid var(--color-icon-background); -} + .tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: + opacity 0.1s, + background-color 0.2s; + vertical-align: bottom; + cursor: pointer; + } + .tsd-widget:hover { + opacity: 0.9; + } + .tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); + } + .tsd-widget.no-caption { + width: 40px; + } + .tsd-widget.no-caption:before { + margin: 0; + } -/* mobile */ -@media (max-width: 769px) { .tsd-widget.options, .tsd-widget.menu { - display: inline-block; + display: none; } - - .container-main { - display: flex; + input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; } - html .col-content { - float: none; + input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; + } + + img { max-width: 100%; - width: 100%; } - html .col-sidebar { - position: fixed !important; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - padding: 1.5rem 1.5rem 0 0; - width: 75vw; - visibility: hidden; - background-color: var(--color-background); - transform: translate(100%, 0); + + .tsd-member-summary-name { + display: inline-flex; + align-items: center; + padding: 0.25rem; + text-decoration: none; } - html .col-sidebar > *:last-child { - padding-bottom: 20px; + + .tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + color: var(--color-text); } - html .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); + + .tsd-anchor-icon svg { + width: 1em; + height: 1em; visibility: hidden; } - .to-has-menu .overlay { - animation: fade-in 0.4s; + .tsd-member-summary-name:hover > .tsd-anchor-icon svg, + .tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; } - .to-has-menu .col-sidebar { - animation: pop-in-from-right 0.4s; + .deprecated { + text-decoration: line-through !important; } - .from-has-menu .overlay { - animation: fade-out 0.4s; + .warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); } - .from-has-menu .col-sidebar { - animation: pop-out-to-right 0.4s; + .tsd-kind-project { + color: var(--color-ts-project); } - - .has-menu body { - overflow: hidden; + .tsd-kind-module { + color: var(--color-ts-module); } - .has-menu .overlay { - visibility: visible; + .tsd-kind-namespace { + color: var(--color-ts-namespace); } - .has-menu .col-sidebar { - visibility: visible; - transform: translate(0, 0); - display: flex; - flex-direction: column; - gap: 1.5rem; - max-height: 100vh; - padding: 1rem 2rem; + .tsd-kind-enum { + color: var(--color-ts-enum); } - .has-menu .tsd-navigation { - max-height: 100%; + .tsd-kind-enum-member { + color: var(--color-ts-enum-member); } -} - -/* one sidebar */ -@media (min-width: 770px) { - .container-main { - display: grid; - grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); - grid-template-areas: "sidebar content"; - margin: 2rem auto; + .tsd-kind-variable { + color: var(--color-ts-variable); } - - .col-sidebar { - grid-area: sidebar; + .tsd-kind-function { + color: var(--color-ts-function); } - .col-content { - grid-area: content; - padding: 0 1rem; + .tsd-kind-class { + color: var(--color-ts-class); } -} -@media (min-width: 770px) and (max-width: 1399px) { - .col-sidebar { - max-height: calc(100vh - 2rem - 42px); - overflow: auto; - position: sticky; - top: 42px; - padding-top: 1rem; + .tsd-kind-interface { + color: var(--color-ts-interface); } - .site-menu { - margin-top: 1rem; + .tsd-kind-constructor { + color: var(--color-ts-constructor); + } + .tsd-kind-property { + color: var(--color-ts-property); + } + .tsd-kind-method { + color: var(--color-ts-method); + } + .tsd-kind-reference { + color: var(--color-ts-reference); + } + .tsd-kind-call-signature { + color: var(--color-ts-call-signature); + } + .tsd-kind-index-signature { + color: var(--color-ts-index-signature); + } + .tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); + } + .tsd-kind-parameter { + color: var(--color-ts-parameter); + } + .tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); + } + .tsd-kind-accessor { + color: var(--color-ts-accessor); + } + .tsd-kind-get-signature { + color: var(--color-ts-get-signature); + } + .tsd-kind-set-signature { + color: var(--color-ts-set-signature); + } + .tsd-kind-type-alias { + color: var(--color-ts-type-alias); } -} -/* two sidebars */ -@media (min-width: 1200px) { - .container-main { - grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); - grid-template-areas: "sidebar content toc"; + /* if we have a kind icon, don't color the text by kind */ + .tsd-kind-icon ~ span { + color: var(--color-text); } - .col-sidebar { - display: contents; + * { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); } - .page-menu { - grid-area: toc; - padding-left: 1rem; + *::-webkit-scrollbar { + width: 0.75rem; } - .site-menu { - grid-area: sidebar; + + *::-webkit-scrollbar-track { + background: var(--color-icon-background); } - .site-menu { - margin-top: 1rem 0; + *::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); } - .page-menu, - .site-menu { - max-height: calc(100vh - 2rem - 42px); - overflow: auto; - position: sticky; - top: 42px; + /* mobile */ + @media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } + #tsd-toolbar-links { + display: none; + } + .tsd-navigation .tsd-nav-link { + display: flex; + } + } + + /* one sidebar */ + @media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } + } + @media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } + } + + /* two sidebars */ + @media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax( + 0, + 20rem + ); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } } } diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html index 8c3416b1e..53d5a2d33 100644 --- a/docs/classes/_internal_.Metric.html +++ b/docs/classes/_internal_.Metric.html @@ -1,4 +1,4 @@ -Metric | universalviewer

Constructors

Properties

Constructors

Properties

minWidth: number
type: string

Generated using TypeDoc

\ No newline at end of file +Metric | universalviewer

Constructors

Properties

Constructors

Properties

minWidth: number
type: string
diff --git a/docs/enums/_internal_.StorageType.html b/docs/enums/_internal_.StorageType.html index 05721da67..da6b66204 100644 --- a/docs/enums/_internal_.StorageType.html +++ b/docs/enums/_internal_.StorageType.html @@ -1,4 +1,4 @@ -StorageType | universalviewer

Enumeration Members

Enumeration Members

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

Generated using TypeDoc

\ No newline at end of file +StorageType | universalviewer

Enumeration Members

Enumeration Members

LOCAL: "local"
MEMORY: "memory"
SESSION: "session"
diff --git a/docs/index.html b/docs/index.html index 3a831a3b4..706a75af3 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,4 @@ -universalviewer

universalviewer

+universalviewer

universalviewer

Universal Viewer

@@ -11,65 +11,57 @@

Un -License +License +About

-

- @ twitter     -# slack + # slack     + @ X

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

-
-

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

+

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


- -

🌐 Website

Visit the UV demo page to try it out.

- - -

📖 Getting Started

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

-

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

-

💻 Contributing

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

-

Generated using TypeDoc

\ No newline at end of file +
diff --git a/docs/modules.html b/docs/modules.html index f9b09918d..f562b9ad4 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1,3 +1 @@ -universalviewer

universalviewer

Index

Modules

Type Aliases

Generated using TypeDoc

\ No newline at end of file +universalviewer

universalviewer

Modules

<internal>

Type Aliases

IIIFContentHandlerConfig
diff --git a/docs/modules/_internal_.html b/docs/modules/_internal_.html index 62b2d1fbd..dc32eefb7 100644 --- a/docs/modules/_internal_.html +++ b/docs/modules/_internal_.html @@ -1,194 +1 @@ -<internal> | universalviewer

Module <internal>

Index

Enumerations

Classes

Type Aliases

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

Generated using TypeDoc

\ No newline at end of file +<internal> | universalviewer

Module <internal>

Enumerations

StorageType

Classes

Metric

Type Aliases

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

Type declaration

Generated using TypeDoc

\ No newline at end of file +IIIFContentHandlerConfig | universalviewer

Type Alias IIIFContentHandlerConfig

IIIFContentHandlerConfig: {
    aleph: Config;
    av: Config;
    default: Config;
    ebook: Config;
    mediaelement: Config;
    modelViewer: Config;
    osd: Config;
    pdf: Config;
}
diff --git a/docs/types/_internal_.AVCenterPanel.html b/docs/types/_internal_.AVCenterPanel.html index 9ff26808c..01a003c0b 100644 --- a/docs/types/_internal_.AVCenterPanel.html +++ b/docs/types/_internal_.AVCenterPanel.html @@ -1 +1 @@ -AVCenterPanel | universalviewer
AVCenterPanel: {
    content: AVCenterPanelContent;
    options: AVCenterPanelOptions;
}

Type declaration

Generated using TypeDoc

\ No newline at end of file +AVCenterPanel | universalviewer
AVCenterPanel: { content: AVCenterPanelContent; options: AVCenterPanelOptions }
diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html index b3c32b6c0..f20a50c1d 100644 --- a/docs/types/_internal_.AVCenterPanelContent.html +++ b/docs/types/_internal_.AVCenterPanelContent.html @@ -1 +1 @@ -AVCenterPanelContent | universalviewer

Type alias AVCenterPanelContent

AVCenterPanelContent: CenterPanelContent & {
    delimiter: string;
}

Type declaration

  • delimiter: string

Generated using TypeDoc

\ No newline at end of file +AVCenterPanelContent | universalviewer

Type Alias AVCenterPanelContent

AVCenterPanelContent: CenterPanelContent & { delimiter: string }
diff --git a/docs/types/_internal_.AVCenterPanelOptions.html b/docs/types/_internal_.AVCenterPanelOptions.html index 8ea3efe2a..6b730afe1 100644 --- a/docs/types/_internal_.AVCenterPanelOptions.html +++ b/docs/types/_internal_.AVCenterPanelOptions.html @@ -1,11 +1,11 @@ -AVCenterPanelOptions | universalviewer

Type alias AVCenterPanelOptions

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

Type declaration

  • autoAdvanceRanges: boolean

    Determines if ranges auto advance

    -
  • autoPlay: boolean

    Determines if auto play is enabled

    -
  • enableFastForward: boolean

    Determines if fast forward is enabled

    -
  • enableFastRewind: boolean

    Determines if fast rewind is enabled

    -
  • hideMediaError: boolean

    Determines if media errors are hidden

    -
  • includeParentInTitleEnabled: boolean

    Determines if parent is included in title

    -
  • limitToRange: boolean

    Determines if limit is set to range

    -
  • posterImageExpanded: boolean

    Determines if the poster image is expanded

    -
  • posterImageRatio: number

    Ratio of the poster image

    -
  • subtitleMetadataField: string

    Field for subtitle metadata

    -

Generated using TypeDoc

\ No newline at end of file +AVCenterPanelOptions | universalviewer

Type Alias AVCenterPanelOptions

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

Type declaration

  • autoAdvanceRanges: boolean

    Determines if ranges auto advance

    +
  • autoPlay: boolean

    Determines if auto play is enabled

    +
  • enableFastForward: boolean

    Determines if fast forward is enabled

    +
  • enableFastRewind: boolean

    Determines if fast rewind is enabled

    +
  • hideMediaError: boolean

    Determines if media errors are hidden

    +
  • includeParentInTitleEnabled: boolean

    Determines if parent is included in title

    +
  • limitToRange: boolean

    Determines if limit is set to range

    +
  • posterImageExpanded: boolean

    Determines if the poster image is expanded

    +
  • posterImageRatio: number

    Ratio of the poster image

    +
  • subtitleMetadataField: string

    Field for subtitle metadata

    +
diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html index c27316813..19664f5fd 100644 --- a/docs/types/_internal_.AVDownloadDialogue.html +++ b/docs/types/_internal_.AVDownloadDialogue.html @@ -1 +1 @@ -AVDownloadDialogue | universalviewer

Type alias AVDownloadDialogue

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

Type declaration

Generated using TypeDoc

\ No newline at end of file +AVDownloadDialogue | universalviewer

Type Alias AVDownloadDialogue

AVDownloadDialogue: ModuleConfig & {
    content: AVDownloadDialogueContent;
    options: AVDownloadDialogueOptions;
}
diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html index a8095d1fc..b7e6f51e0 100644 --- a/docs/types/_internal_.AVDownloadDialogueContent.html +++ b/docs/types/_internal_.AVDownloadDialogueContent.html @@ -1 +1 @@ -AVDownloadDialogueContent | universalviewer

Type alias AVDownloadDialogueContent

AVDownloadDialogueContent: DownloadDialogueContent & {}

Type declaration

    Generated using TypeDoc

    \ No newline at end of file +AVDownloadDialogueContent | universalviewer

    Type Alias AVDownloadDialogueContent

    AVDownloadDialogueContent: DownloadDialogueContent & {}
    diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html index 95ed138d7..e27eb0465 100644 --- a/docs/types/_internal_.AVDownloadDialogueOptions.html +++ b/docs/types/_internal_.AVDownloadDialogueOptions.html @@ -1 +1 @@ -AVDownloadDialogueOptions | universalviewer

    Type alias AVDownloadDialogueOptions

    AVDownloadDialogueOptions: DownloadDialogueOptions & {}

    Type declaration

      Generated using TypeDoc

      \ No newline at end of file +AVDownloadDialogueOptions | universalviewer

      Type Alias AVDownloadDialogueOptions

      AVDownloadDialogueOptions: DownloadDialogueOptions & {}
      diff --git a/docs/types/_internal_.AVSettingsDialogue.html b/docs/types/_internal_.AVSettingsDialogue.html index bd810cdf8..394d390a9 100644 --- a/docs/types/_internal_.AVSettingsDialogue.html +++ b/docs/types/_internal_.AVSettingsDialogue.html @@ -1 +1 @@ -AVSettingsDialogue | universalviewer

      Type alias AVSettingsDialogue

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

      Type declaration

      Generated using TypeDoc

      \ No newline at end of file +AVSettingsDialogue | universalviewer

      Type Alias AVSettingsDialogue

      AVSettingsDialogue: ModuleConfig & {
          content: AVSettingsDialogueContent;
          options: AVSettingsDialogueOptions;
      }
      diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html index ca9cc4441..f9ed3dc2a 100644 --- a/docs/types/_internal_.AVSettingsDialogueContent.html +++ b/docs/types/_internal_.AVSettingsDialogueContent.html @@ -1 +1 @@ -AVSettingsDialogueContent | universalviewer

      Type alias AVSettingsDialogueContent

      AVSettingsDialogueContent: SettingsDialogueContent & {}

      Type declaration

        Generated using TypeDoc

        \ No newline at end of file +AVSettingsDialogueContent | universalviewer

        Type Alias AVSettingsDialogueContent

        AVSettingsDialogueContent: SettingsDialogueContent & {}
        diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html index 70d696b9a..a8817bf9a 100644 --- a/docs/types/_internal_.AVSettingsDialogueOptions.html +++ b/docs/types/_internal_.AVSettingsDialogueOptions.html @@ -1 +1 @@ -AVSettingsDialogueOptions | universalviewer

        Type alias AVSettingsDialogueOptions

        AVSettingsDialogueOptions: SettingsDialogueOptions & {}

        Type declaration

          Generated using TypeDoc

          \ No newline at end of file +AVSettingsDialogueOptions | universalviewer

          Type Alias AVSettingsDialogueOptions

          AVSettingsDialogueOptions: SettingsDialogueOptions & {}
          diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html index c84d37ea4..60200c41d 100644 --- a/docs/types/_internal_.AVShareDialogue.html +++ b/docs/types/_internal_.AVShareDialogue.html @@ -1 +1 @@ -AVShareDialogue | universalviewer
          AVShareDialogue: ModuleConfig & {
              content: AVShareDialogueContent;
              options: AVShareDialogueOptions;
          }

          Type declaration

          Generated using TypeDoc

          \ No newline at end of file +AVShareDialogue | universalviewer
          AVShareDialogue: ModuleConfig & {
              content: AVShareDialogueContent;
              options: AVShareDialogueOptions;
          }
          diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html index f2f2721c9..9f738dfab 100644 --- a/docs/types/_internal_.AVShareDialogueContent.html +++ b/docs/types/_internal_.AVShareDialogueContent.html @@ -1 +1 @@ -AVShareDialogueContent | universalviewer

          Type alias AVShareDialogueContent

          AVShareDialogueContent: ShareDialogueContent & {}

          Type declaration

            Generated using TypeDoc

            \ No newline at end of file +AVShareDialogueContent | universalviewer

            Type Alias AVShareDialogueContent

            AVShareDialogueContent: ShareDialogueContent & {}
            diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html index 1c9980dee..a9873b7e1 100644 --- a/docs/types/_internal_.AVShareDialogueOptions.html +++ b/docs/types/_internal_.AVShareDialogueOptions.html @@ -1 +1 @@ -AVShareDialogueOptions | universalviewer

            Type alias AVShareDialogueOptions

            AVShareDialogueOptions: ShareDialogueOptions & {}

            Type declaration

              Generated using TypeDoc

              \ No newline at end of file +AVShareDialogueOptions | universalviewer

              Type Alias AVShareDialogueOptions

              AVShareDialogueOptions: ShareDialogueOptions & {}
              diff --git a/docs/types/_internal_.AdjustImageDialogue.html b/docs/types/_internal_.AdjustImageDialogue.html new file mode 100644 index 000000000..51a2b6860 --- /dev/null +++ b/docs/types/_internal_.AdjustImageDialogue.html @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000..48b1562e1 --- /dev/null +++ b/docs/types/_internal_.AdjustImageDialogueContent.html @@ -0,0 +1 @@ +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 new file mode 100644 index 000000000..bfa9fc07a --- /dev/null +++ b/docs/types/_internal_.AdjustImageDialogueOptions.html @@ -0,0 +1 @@ +AdjustImageDialogueOptions | universalviewer

              Type Alias AdjustImageDialogueOptions

              AdjustImageDialogueOptions: DialogueOptions & {}
              diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html index 1bf3b2fd3..63cf5f8c2 100644 --- a/docs/types/_internal_.AlephCenterPanel.html +++ b/docs/types/_internal_.AlephCenterPanel.html @@ -1 +1 @@ -AlephCenterPanel | universalviewer
              AlephCenterPanel: {
                  content: AlephCenterPanelContent;
                  options: AlephCenterPanelOptions;
              }

              Type declaration

              Generated using TypeDoc

              \ No newline at end of file +AlephCenterPanel | universalviewer
              AlephCenterPanel: {
                  content: AlephCenterPanelContent;
                  options: AlephCenterPanelOptions;
              }
              diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html index ca036f0ee..228c80143 100644 --- a/docs/types/_internal_.AlephCenterPanelContent.html +++ b/docs/types/_internal_.AlephCenterPanelContent.html @@ -1 +1 @@ -AlephCenterPanelContent | universalviewer

              Type alias AlephCenterPanelContent

              AlephCenterPanelContent: CenterPanelContent & {}

              Type declaration

                Generated using TypeDoc

                \ No newline at end of file +AlephCenterPanelContent | universalviewer

                Type Alias AlephCenterPanelContent

                AlephCenterPanelContent: CenterPanelContent & {}
                diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html index 9a3760141..8ffce668e 100644 --- a/docs/types/_internal_.AlephCenterPanelOptions.html +++ b/docs/types/_internal_.AlephCenterPanelOptions.html @@ -1 +1 @@ -AlephCenterPanelOptions | universalviewer

                Type alias AlephCenterPanelOptions

                AlephCenterPanelOptions: CenterPanelOptions & {}

                Type declaration

                  Generated using TypeDoc

                  \ No newline at end of file +AlephCenterPanelOptions | universalviewer

                  Type Alias AlephCenterPanelOptions

                  AlephCenterPanelOptions: CenterPanelOptions & {}
                  diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html index 2be778e21..5af7dca61 100644 --- a/docs/types/_internal_.AlephDownloadDialogue.html +++ b/docs/types/_internal_.AlephDownloadDialogue.html @@ -1 +1 @@ -AlephDownloadDialogue | universalviewer

                  Type alias AlephDownloadDialogue

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

                  Generated using TypeDoc

                  \ No newline at end of file +AlephDownloadDialogue | universalviewer

                  Type Alias AlephDownloadDialogue

                  AlephDownloadDialogue: ModuleConfig & {
                      content: AlephDownloadDialogueContent;
                      options: AlephDownloadDialogueOptions;
                  }
                  diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html index 1f19ca018..12ab8e254 100644 --- a/docs/types/_internal_.AlephDownloadDialogueContent.html +++ b/docs/types/_internal_.AlephDownloadDialogueContent.html @@ -1 +1 @@ -AlephDownloadDialogueContent | universalviewer

                  Type alias AlephDownloadDialogueContent

                  AlephDownloadDialogueContent: DownloadDialogueContent & {}

                  Type declaration

                    Generated using TypeDoc

                    \ No newline at end of file +AlephDownloadDialogueContent | universalviewer

                    Type Alias AlephDownloadDialogueContent

                    AlephDownloadDialogueContent: DownloadDialogueContent & {}
                    diff --git a/docs/types/_internal_.AlephDownloadDialogueOptions.html b/docs/types/_internal_.AlephDownloadDialogueOptions.html index 186fac99c..649550fb1 100644 --- a/docs/types/_internal_.AlephDownloadDialogueOptions.html +++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html @@ -1 +1 @@ -AlephDownloadDialogueOptions | universalviewer

                    Type alias AlephDownloadDialogueOptions

                    AlephDownloadDialogueOptions: DownloadDialogueOptions & {}

                    Type declaration

                      Generated using TypeDoc

                      \ No newline at end of file +AlephDownloadDialogueOptions | universalviewer

                      Type Alias AlephDownloadDialogueOptions

                      AlephDownloadDialogueOptions: DownloadDialogueOptions & {}
                      diff --git a/docs/types/_internal_.AlephLeftPanel.html b/docs/types/_internal_.AlephLeftPanel.html index acdbffc71..88c336421 100644 --- a/docs/types/_internal_.AlephLeftPanel.html +++ b/docs/types/_internal_.AlephLeftPanel.html @@ -1 +1 @@ -AlephLeftPanel | universalviewer
                      AlephLeftPanel: {
                          content: AlephLeftPanelContent;
                          options: AlephLeftPanelOptions;
                      }

                      Type declaration

                      Generated using TypeDoc

                      \ No newline at end of file +AlephLeftPanel | universalviewer
                      AlephLeftPanel: {
                          content: AlephLeftPanelContent;
                          options: AlephLeftPanelOptions;
                      }
                      diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html index bfad4d310..13d260ae5 100644 --- a/docs/types/_internal_.AlephLeftPanelContent.html +++ b/docs/types/_internal_.AlephLeftPanelContent.html @@ -1 +1 @@ -AlephLeftPanelContent | universalviewer

                      Type alias AlephLeftPanelContent

                      AlephLeftPanelContent: ExpandPanelContent & {
                          title: string;
                      }

                      Type declaration

                      • title: string

                      Generated using TypeDoc

                      \ No newline at end of file +AlephLeftPanelContent | universalviewer

                      Type Alias AlephLeftPanelContent

                      AlephLeftPanelContent: ExpandPanelContent & { title: string }
                      diff --git a/docs/types/_internal_.AlephLeftPanelOptions.html b/docs/types/_internal_.AlephLeftPanelOptions.html index 359436ca0..1f3e69e12 100644 --- a/docs/types/_internal_.AlephLeftPanelOptions.html +++ b/docs/types/_internal_.AlephLeftPanelOptions.html @@ -1,5 +1,5 @@ -AlephLeftPanelOptions | universalviewer

                      Type alias AlephLeftPanelOptions

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

                      Type declaration

                      • consoleTabEnabled: boolean

                        Determines if the console tab is enabled

                        -
                      • graphTabEnabled: boolean

                        Determines if the graph tab is enabled

                        -
                      • settingsTabEnabled: boolean

                        Determines if the settings tab is enabled

                        -
                      • srcTabEnabled: boolean

                        Determines if the source tab is enabled

                        -

                      Generated using TypeDoc

                      \ No newline at end of file +AlephLeftPanelOptions | universalviewer

                      Type Alias AlephLeftPanelOptions

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

                      Type declaration

                      • consoleTabEnabled: boolean

                        Determines if the console tab is enabled

                        +
                      • graphTabEnabled: boolean

                        Determines if the graph tab is enabled

                        +
                      • settingsTabEnabled: boolean

                        Determines if the settings tab is enabled

                        +
                      • srcTabEnabled: boolean

                        Determines if the source tab is enabled

                        +
                      diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html index b5de970c1..2c2be7915 100644 --- a/docs/types/_internal_.AlephSettingsDialogue.html +++ b/docs/types/_internal_.AlephSettingsDialogue.html @@ -1 +1 @@ -AlephSettingsDialogue | universalviewer

                      Type alias AlephSettingsDialogue

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

                      Generated using TypeDoc

                      \ No newline at end of file +AlephSettingsDialogue | universalviewer

                      Type Alias AlephSettingsDialogue

                      AlephSettingsDialogue: ModuleConfig & {
                          content: AlephSettingsDialogueContent;
                          options: AlephSettingsDialogueOptions;
                      }
                      diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html index ce65b16c6..21d8c076d 100644 --- a/docs/types/_internal_.AlephSettingsDialogueContent.html +++ b/docs/types/_internal_.AlephSettingsDialogueContent.html @@ -1 +1 @@ -AlephSettingsDialogueContent | universalviewer

                      Type alias AlephSettingsDialogueContent

                      AlephSettingsDialogueContent: SettingsDialogueContent & {}

                      Type declaration

                        Generated using TypeDoc

                        \ No newline at end of file +AlephSettingsDialogueContent | universalviewer

                        Type Alias AlephSettingsDialogueContent

                        AlephSettingsDialogueContent: SettingsDialogueContent & {}
                        diff --git a/docs/types/_internal_.AlephSettingsDialogueOptions.html b/docs/types/_internal_.AlephSettingsDialogueOptions.html index 98e775363..82b46bebf 100644 --- a/docs/types/_internal_.AlephSettingsDialogueOptions.html +++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html @@ -1 +1 @@ -AlephSettingsDialogueOptions | universalviewer

                        Type alias AlephSettingsDialogueOptions

                        AlephSettingsDialogueOptions: SettingsDialogueOptions & {}

                        Type declaration

                          Generated using TypeDoc

                          \ No newline at end of file +AlephSettingsDialogueOptions | universalviewer

                          Type Alias AlephSettingsDialogueOptions

                          AlephSettingsDialogueOptions: SettingsDialogueOptions & {}
                          diff --git a/docs/types/_internal_.AlephShareDialogue.html b/docs/types/_internal_.AlephShareDialogue.html index a2c1eb8c3..60797fcac 100644 --- a/docs/types/_internal_.AlephShareDialogue.html +++ b/docs/types/_internal_.AlephShareDialogue.html @@ -1 +1 @@ -AlephShareDialogue | universalviewer

                          Type alias AlephShareDialogue

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

                          Type declaration

                          Generated using TypeDoc

                          \ No newline at end of file +AlephShareDialogue | universalviewer

                          Type Alias AlephShareDialogue

                          AlephShareDialogue: ModuleConfig & {
                              content: AlephShareDialogueContent;
                              options: AlephShareDialogueOptions;
                          }
                          diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html index a21841596..8836bccbc 100644 --- a/docs/types/_internal_.AlephShareDialogueContent.html +++ b/docs/types/_internal_.AlephShareDialogueContent.html @@ -1 +1 @@ -AlephShareDialogueContent | universalviewer

                          Type alias AlephShareDialogueContent

                          AlephShareDialogueContent: ShareDialogueContent & {}

                          Type declaration

                            Generated using TypeDoc

                            \ No newline at end of file +AlephShareDialogueContent | universalviewer

                            Type Alias AlephShareDialogueContent

                            AlephShareDialogueContent: ShareDialogueContent & {}
                            diff --git a/docs/types/_internal_.AlephShareDialogueOptions.html b/docs/types/_internal_.AlephShareDialogueOptions.html index fcbdb3010..46d9090fc 100644 --- a/docs/types/_internal_.AlephShareDialogueOptions.html +++ b/docs/types/_internal_.AlephShareDialogueOptions.html @@ -1 +1 @@ -AlephShareDialogueOptions | universalviewer

                            Type alias AlephShareDialogueOptions

                            AlephShareDialogueOptions: ShareDialogueOptions & {}

                            Type declaration

                              Generated using TypeDoc

                              \ No newline at end of file +AlephShareDialogueOptions | universalviewer

                              Type Alias AlephShareDialogueOptions

                              AlephShareDialogueOptions: ShareDialogueOptions & {}
                              diff --git a/docs/types/_internal_.AuthDialogue.html b/docs/types/_internal_.AuthDialogue.html index 6a9efe9f3..d3a1ea4d5 100644 --- a/docs/types/_internal_.AuthDialogue.html +++ b/docs/types/_internal_.AuthDialogue.html @@ -1 +1 @@ -AuthDialogue | universalviewer
                              AuthDialogue: ModuleConfig & {
                                  content: AuthDialogueContent;
                                  options: AuthDialogueOptions;
                              }

                              Type declaration

                              Generated using TypeDoc

                              \ No newline at end of file +AuthDialogue | universalviewer
                              AuthDialogue: ModuleConfig & {
                                  content: AuthDialogueContent;
                                  options: AuthDialogueOptions;
                              }
                              diff --git a/docs/types/_internal_.AuthDialogueContent.html b/docs/types/_internal_.AuthDialogueContent.html index 1f1ad1e47..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;
                              }

                              Type declaration

                              • cancel: string
                              • confirm: string

                              Generated using TypeDoc

                              \ No newline at end of file +AuthDialogueContent | universalviewer

                              Type Alias AuthDialogueContent

                              AuthDialogueContent: DialogueContent & { cancel: string; confirm: string }
                              diff --git a/docs/types/_internal_.AuthDialogueOptions.html b/docs/types/_internal_.AuthDialogueOptions.html index 564cf09c2..7c1a968d4 100644 --- a/docs/types/_internal_.AuthDialogueOptions.html +++ b/docs/types/_internal_.AuthDialogueOptions.html @@ -1 +1 @@ -AuthDialogueOptions | universalviewer

                              Type alias AuthDialogueOptions

                              AuthDialogueOptions: DialogueOptions & {}

                              Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file +AuthDialogueOptions | universalviewer

                                Type Alias AuthDialogueOptions

                                AuthDialogueOptions: DialogueOptions & {}
                                diff --git a/docs/types/_internal_.BaseConfig.html b/docs/types/_internal_.BaseConfig.html index f79f596ee..29ad1232d 100644 --- a/docs/types/_internal_.BaseConfig.html +++ b/docs/types/_internal_.BaseConfig.html @@ -1 +1 @@ -BaseConfig | universalviewer
                                BaseConfig: {
                                    content: Content;
                                    localisation: Localisation;
                                    modules: {
                                        authDialogue: AuthDialogue;
                                        centerPanel: CenterPanel;
                                        clickThroughDialogue: ClickThroughDialogue;
                                        dialogue: Dialogue;
                                        downloadDialogue: DownloadDialogue;
                                        footerPanel: FooterPanel;
                                        genericDialogue: GenericDialogue;
                                        headerPanel: HeaderPanel;
                                        helpDialogue: HelpDialogue;
                                        leftPanel: LeftPanel;
                                        loginDialogue: LoginDialogue;
                                        moreInfoRightPanel: MoreInfoRightPanel;
                                        restrictedDialogue: RestrictedDialogue;
                                        settingsDialogue: SettingsDialogue;
                                        shareDialogue: ShareDialogue;
                                    };
                                    options: Options;
                                    uri?: string;
                                }

                                Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file +BaseConfig | universalviewer
                                BaseConfig: {
                                    content: Content;
                                    localisation: Localisation;
                                    modules: {
                                        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 5cae09a83..dc01100fe 100644 --- a/docs/types/_internal_.CenterPanel.html +++ b/docs/types/_internal_.CenterPanel.html @@ -1 +1 @@ -CenterPanel | universalviewer
                                CenterPanel: ModuleConfig & {
                                    content: CenterPanelContent;
                                    options: CenterPanelOptions;
                                }

                                Type declaration

                                Generated using TypeDoc

                                \ No newline at end of file +CenterPanel | universalviewer
                                CenterPanel: ModuleConfig & {
                                    content: CenterPanelContent;
                                    options: CenterPanelOptions;
                                }
                                diff --git a/docs/types/_internal_.CenterPanelContent.html b/docs/types/_internal_.CenterPanelContent.html index 187235eae..0961a4e3a 100644 --- a/docs/types/_internal_.CenterPanelContent.html +++ b/docs/types/_internal_.CenterPanelContent.html @@ -1 +1 @@ -CenterPanelContent | universalviewer

                                Type alias CenterPanelContent

                                CenterPanelContent: {
                                    attribution: string;
                                }

                                Type declaration

                                • attribution: string

                                Generated using TypeDoc

                                \ No newline at end of file +CenterPanelContent | universalviewer

                                Type Alias CenterPanelContent

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

                                Type declaration

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

                                Generated using TypeDoc

                                \ No newline at end of file +CenterPanelOptions | universalviewer

                                Type Alias CenterPanelOptions

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

                                Generated using TypeDoc

                                \ No newline at end of file +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 3d0983abd..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;
                                }

                                Type declaration

                                • viewTerms: string

                                Generated using TypeDoc

                                \ No newline at end of file +ClickThroughDialogueContent | universalviewer

                                Type Alias ClickThroughDialogueContent

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

                                Type alias ClickThroughDialogueOptions

                                ClickThroughDialogueOptions: DialogueOptions & {}

                                Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +ClickThroughDialogueOptions | universalviewer

                                  Type Alias ClickThroughDialogueOptions

                                  ClickThroughDialogueOptions: DialogueOptions & {}
                                  diff --git a/docs/types/_internal_.Config-1.html b/docs/types/_internal_.Config-1.html index d59d801d9..5857febd5 100644 --- a/docs/types/_internal_.Config-1.html +++ b/docs/types/_internal_.Config-1.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-2.html b/docs/types/_internal_.Config-2.html index c45643de3..1b79460e4 100644 --- a/docs/types/_internal_.Config-2.html +++ b/docs/types/_internal_.Config-2.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-3.html b/docs/types/_internal_.Config-3.html index 2178debea..3ef225f70 100644 --- a/docs/types/_internal_.Config-3.html +++ b/docs/types/_internal_.Config-3.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-4.html b/docs/types/_internal_.Config-4.html index b8a71e804..a1520d10d 100644 --- a/docs/types/_internal_.Config-4.html +++ b/docs/types/_internal_.Config-4.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-5.html b/docs/types/_internal_.Config-5.html index 54366b8b4..2bb6eba59 100644 --- a/docs/types/_internal_.Config-5.html +++ b/docs/types/_internal_.Config-5.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-6.html b/docs/types/_internal_.Config-6.html index d0982f1f2..a2338ebd1 100644 --- a/docs/types/_internal_.Config-6.html +++ b/docs/types/_internal_.Config-6.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config-7.html b/docs/types/_internal_.Config-7.html index 7dfb8b1aa..5aa64b079 100644 --- a/docs/types/_internal_.Config-7.html +++ b/docs/types/_internal_.Config-7.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Config.html b/docs/types/_internal_.Config.html index b80c783b4..7a71d4ae5 100644 --- a/docs/types/_internal_.Config.html +++ b/docs/types/_internal_.Config.html @@ -1 +1 @@ -Config | universalviewer
                                  Config: BaseConfig & {
                                      modules: Modules;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +Config | universalviewer
                                  Config: BaseConfig & { modules: Modules }
                                  diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html index ac63c8a7f..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;
                                  }

                                  Type declaration

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

                                  Generated using TypeDoc

                                  \ No newline at end of file +Content | universalviewer
                                  Content: {
                                      authCORSError: string;
                                      authorisationFailedMessage: string;
                                      canvasIndexOutOfRange: string;
                                      fallbackDegradedLabel: string;
                                      fallbackDegradedMessage: string;
                                      forbiddenResourceMessage: string;
                                      mediaViewer: string;
                                      skipToDownload: string;
                                      termsOfUse: string;
                                  }
                                  diff --git a/docs/types/_internal_.ContentLeftPanel.html b/docs/types/_internal_.ContentLeftPanel.html index 563ee8b53..e98b7a3e1 100644 --- a/docs/types/_internal_.ContentLeftPanel.html +++ b/docs/types/_internal_.ContentLeftPanel.html @@ -1 +1 @@ -ContentLeftPanel | universalviewer
                                  ContentLeftPanel: ModuleConfig & {
                                      content: ContentLeftPanelContent;
                                      options: ContentLeftPanelOptions;
                                  }

                                  Type declaration

                                  Generated using TypeDoc

                                  \ No newline at end of file +ContentLeftPanel | universalviewer
                                  ContentLeftPanel: ModuleConfig & {
                                      content: ContentLeftPanelContent;
                                      options: ContentLeftPanelOptions;
                                  }
                                  diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html index ee4c2f27a..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;
                                  }

                                  Type declaration

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

                                  Generated using TypeDoc

                                  \ No newline at end of file +ContentLeftPanelContent | universalviewer

                                  Type Alias ContentLeftPanelContent

                                  ContentLeftPanelContent: ExpandPanelContent & {
                                      date: string;
                                      index: string;
                                      manifestRanges: string;
                                      searchResult: string;
                                      searchResults: string;
                                      sortBy: string;
                                      thumbnails: string;
                                      title: string;
                                      volume: string;
                                  }
                                  diff --git a/docs/types/_internal_.ContentLeftPanelOptions.html b/docs/types/_internal_.ContentLeftPanelOptions.html index 70e5c8fab..f6cd7b536 100644 --- a/docs/types/_internal_.ContentLeftPanelOptions.html +++ b/docs/types/_internal_.ContentLeftPanelOptions.html @@ -1,24 +1,25 @@ -ContentLeftPanelOptions | universalviewer

                                  Type alias ContentLeftPanelOptions

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

                                  Type declaration

                                  • autoExpandTreeEnabled: boolean

                                    Determines if tree should expand automatically

                                    -
                                  • autoExpandTreeIfFewerThan: number

                                    Number of items to auto expand tree

                                    -
                                  • branchNodesExpandOnClick: boolean

                                    Determines if branch nodes expand on click

                                    -
                                  • branchNodesSelectable: boolean

                                    Determines if branch nodes are selectable

                                    -
                                  • defaultToTreeEnabled: boolean

                                    Determines if tree is the default view

                                    -
                                  • defaultToTreeIfGreaterThan: number

                                    Number of items to default to tree view

                                    -
                                  • elideCount: number

                                    Number of characters to elide at

                                    -
                                  • galleryThumbChunkedResizingThreshold: number

                                    Threshold for gallery thumb chunked resizing

                                    -
                                  • galleryThumbHeight: number

                                    Height of the gallery thumbnail

                                    -
                                  • galleryThumbLoadPadding: number

                                    Padding for gallery thumb load

                                    -
                                  • galleryThumbWidth: number

                                    Width of the gallery thumbnail

                                    -
                                  • oneColThumbHeight: number

                                    Height of the one column thumbnail

                                    -
                                  • oneColThumbWidth: number

                                    Width of the one column thumbnail

                                    -
                                  • pageModeEnabled: boolean

                                    Determines if page mode is enabled

                                    -
                                  • tabOrder: string

                                    Order of the tabs

                                    -
                                  • thumbsCacheInvalidation: ThumbsCacheInvalidation

                                    Configuration for thumbs cache invalidation

                                    -
                                  • thumbsEnabled: boolean

                                    Determines if thumbnails are enabled

                                    -
                                  • thumbsExtraHeight: number

                                    Extra height for thumbnails

                                    -
                                  • thumbsImageFadeInDuration: number

                                    Duration for thumbnails image fade in

                                    -
                                  • thumbsLoadRange: number

                                    Load range for thumbnails

                                    -
                                  • treeEnabled: boolean

                                    Determines if tree is enabled

                                    -
                                  • twoColThumbHeight: number

                                    Height of the two column thumbnail

                                    -
                                  • twoColThumbWidth: number

                                    Width of the two column thumbnail

                                    -

                                  Generated using TypeDoc

                                  \ No newline at end of file +ContentLeftPanelOptions | universalviewer

                                  Type Alias ContentLeftPanelOptions

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

                                  Type declaration

                                  • autoExpandTreeEnabled: boolean

                                    Determines if tree should expand automatically

                                    +
                                  • autoExpandTreeIfFewerThan: number

                                    Number of items to auto expand tree

                                    +
                                  • branchNodesExpandOnClick: boolean

                                    Determines if branch nodes expand on click

                                    +
                                  • branchNodesSelectable: boolean

                                    Determines if branch nodes are selectable

                                    +
                                  • defaultToTreeEnabled: boolean

                                    Determines if tree is the default view

                                    +
                                  • defaultToTreeIfCollection: boolean

                                    Determines if collection should default to tree view (even if defaultToTreeEnabled = false)

                                    +
                                  • defaultToTreeIfGreaterThan: number

                                    Number of items to default to tree view (when defaultToTreeEnabled = true; defaults to 0)

                                    +
                                  • elideCount: number

                                    Number of characters to elide at

                                    +
                                  • galleryThumbChunkedResizingThreshold: number

                                    Threshold for gallery thumb chunked resizing

                                    +
                                  • galleryThumbHeight: number

                                    Height of the gallery thumbnail

                                    +
                                  • galleryThumbLoadPadding: number

                                    Padding for gallery thumb load

                                    +
                                  • galleryThumbWidth: number

                                    Width of the gallery thumbnail

                                    +
                                  • oneColThumbHeight: number

                                    Height of the one column thumbnail

                                    +
                                  • oneColThumbWidth: number

                                    Width of the one column thumbnail

                                    +
                                  • pageModeEnabled: boolean

                                    Determines if page mode is enabled

                                    +
                                  • tabOrder: string

                                    Order of the tabs

                                    +
                                  • thumbsCacheInvalidation: ThumbsCacheInvalidation

                                    Configuration for thumbs cache invalidation

                                    +
                                  • thumbsEnabled: boolean

                                    Determines if thumbnails are enabled

                                    +
                                  • thumbsExtraHeight: number

                                    Extra height for thumbnails

                                    +
                                  • thumbsImageFadeInDuration: number

                                    Duration for thumbnails image fade in

                                    +
                                  • thumbsLoadRange: number

                                    Load range for thumbnails

                                    +
                                  • treeEnabled: boolean

                                    Determines if tree is enabled

                                    +
                                  • twoColThumbHeight: number

                                    Height of the two column thumbnail

                                    +
                                  • twoColThumbWidth: number

                                    Width of the two column thumbnail

                                    +
                                  diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html index 6866f3620..435ad7c8c 100644 --- a/docs/types/_internal_.DefaultDownloadDialogue.html +++ b/docs/types/_internal_.DefaultDownloadDialogue.html @@ -1 +1 @@ -DefaultDownloadDialogue | universalviewer

                                  Type alias DefaultDownloadDialogue

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

                                  Generated using TypeDoc

                                  \ No newline at end of file +DefaultDownloadDialogue | universalviewer

                                  Type Alias DefaultDownloadDialogue

                                  DefaultDownloadDialogue: ModuleConfig & {
                                      content: DefaultDownloadDialogueContent;
                                      options: DefaultDownloadDialogueOptions;
                                  }
                                  diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html index 09d9c0bd8..dfd2c4cce 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueContent.html +++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html @@ -1 +1 @@ -DefaultDownloadDialogueContent | universalviewer

                                  Type alias DefaultDownloadDialogueContent

                                  DefaultDownloadDialogueContent: DownloadDialogueContent & {}

                                  Type declaration

                                    Generated using TypeDoc

                                    \ No newline at end of file +DefaultDownloadDialogueContent | universalviewer

                                    Type Alias DefaultDownloadDialogueContent

                                    DefaultDownloadDialogueContent: DownloadDialogueContent & {}
                                    diff --git a/docs/types/_internal_.DefaultDownloadDialogueOptions.html b/docs/types/_internal_.DefaultDownloadDialogueOptions.html index 24e4d2672..ad898c212 100644 --- a/docs/types/_internal_.DefaultDownloadDialogueOptions.html +++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html @@ -1 +1 @@ -DefaultDownloadDialogueOptions | universalviewer

                                    Type alias DefaultDownloadDialogueOptions

                                    DefaultDownloadDialogueOptions: DownloadDialogueOptions & {}

                                    Type declaration

                                      Generated using TypeDoc

                                      \ No newline at end of file +DefaultDownloadDialogueOptions | universalviewer

                                      Type Alias DefaultDownloadDialogueOptions

                                      DefaultDownloadDialogueOptions: DownloadDialogueOptions & {}
                                      diff --git a/docs/types/_internal_.DefaultSettingsDialogue.html b/docs/types/_internal_.DefaultSettingsDialogue.html index 16d0f0a25..42629f998 100644 --- a/docs/types/_internal_.DefaultSettingsDialogue.html +++ b/docs/types/_internal_.DefaultSettingsDialogue.html @@ -1 +1 @@ -DefaultSettingsDialogue | universalviewer

                                      Type alias DefaultSettingsDialogue

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

                                      Generated using TypeDoc

                                      \ No newline at end of file +DefaultSettingsDialogue | universalviewer

                                      Type Alias DefaultSettingsDialogue

                                      DefaultSettingsDialogue: ModuleConfig & {
                                          content: DefaultSettingsDialogueContent;
                                          options: DefaultSettingsDialogueOptions;
                                      }
                                      diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html index 15bbc0be6..976eee3e5 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueContent.html +++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html @@ -1 +1 @@ -DefaultSettingsDialogueContent | universalviewer

                                      Type alias DefaultSettingsDialogueContent

                                      DefaultSettingsDialogueContent: SettingsDialogueContent & {}

                                      Type declaration

                                        Generated using TypeDoc

                                        \ No newline at end of file +DefaultSettingsDialogueContent | universalviewer

                                        Type Alias DefaultSettingsDialogueContent

                                        DefaultSettingsDialogueContent: SettingsDialogueContent & {}
                                        diff --git a/docs/types/_internal_.DefaultSettingsDialogueOptions.html b/docs/types/_internal_.DefaultSettingsDialogueOptions.html index 59fd9c804..bcf1900a3 100644 --- a/docs/types/_internal_.DefaultSettingsDialogueOptions.html +++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html @@ -1 +1 @@ -DefaultSettingsDialogueOptions | universalviewer

                                        Type alias DefaultSettingsDialogueOptions

                                        DefaultSettingsDialogueOptions: SettingsDialogueOptions & {}

                                        Type declaration

                                          Generated using TypeDoc

                                          \ No newline at end of file +DefaultSettingsDialogueOptions | universalviewer

                                          Type Alias DefaultSettingsDialogueOptions

                                          DefaultSettingsDialogueOptions: SettingsDialogueOptions & {}
                                          diff --git a/docs/types/_internal_.DefaultShareDialogue.html b/docs/types/_internal_.DefaultShareDialogue.html index 470ba191e..cf19b7a8e 100644 --- a/docs/types/_internal_.DefaultShareDialogue.html +++ b/docs/types/_internal_.DefaultShareDialogue.html @@ -1 +1 @@ -DefaultShareDialogue | universalviewer

                                          Type alias DefaultShareDialogue

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

                                          Generated using TypeDoc

                                          \ No newline at end of file +DefaultShareDialogue | universalviewer

                                          Type Alias DefaultShareDialogue

                                          DefaultShareDialogue: ModuleConfig & {
                                              content: DefaultShareDialogueContent;
                                              options: DefaultShareDialogueOptions;
                                          }
                                          diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html index cb3dc4d7d..0a5f108d5 100644 --- a/docs/types/_internal_.DefaultShareDialogueContent.html +++ b/docs/types/_internal_.DefaultShareDialogueContent.html @@ -1 +1 @@ -DefaultShareDialogueContent | universalviewer

                                          Type alias DefaultShareDialogueContent

                                          DefaultShareDialogueContent: ShareDialogueContent & {}

                                          Type declaration

                                            Generated using TypeDoc

                                            \ No newline at end of file +DefaultShareDialogueContent | universalviewer

                                            Type Alias DefaultShareDialogueContent

                                            DefaultShareDialogueContent: ShareDialogueContent & {}
                                            diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html index 5b0c23a55..eb30a6176 100644 --- a/docs/types/_internal_.DefaultShareDialogueOptions.html +++ b/docs/types/_internal_.DefaultShareDialogueOptions.html @@ -1 +1 @@ -DefaultShareDialogueOptions | universalviewer

                                            Type alias DefaultShareDialogueOptions

                                            DefaultShareDialogueOptions: ShareDialogueOptions & {}

                                            Type declaration

                                              Generated using TypeDoc

                                              \ No newline at end of file +DefaultShareDialogueOptions | universalviewer

                                              Type Alias DefaultShareDialogueOptions

                                              DefaultShareDialogueOptions: ShareDialogueOptions & {}
                                              diff --git a/docs/types/_internal_.Dialogue.html b/docs/types/_internal_.Dialogue.html index 228cd697f..089f37e2e 100644 --- a/docs/types/_internal_.Dialogue.html +++ b/docs/types/_internal_.Dialogue.html @@ -1 +1 @@ -Dialogue | universalviewer
                                              Dialogue: ModuleConfig & {
                                                  content: DialogueContent;
                                                  options?: DialogueOptions;
                                              }

                                              Type declaration

                                              Generated using TypeDoc

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

                                              Type declaration

                                              • close: string

                                              Generated using TypeDoc

                                              \ No newline at end of file +DialogueContent | universalviewer
                                              DialogueContent: { close: string }
                                              diff --git a/docs/types/_internal_.DialogueOptions.html b/docs/types/_internal_.DialogueOptions.html index a5c98c4e5..7b5e7d8a0 100644 --- a/docs/types/_internal_.DialogueOptions.html +++ b/docs/types/_internal_.DialogueOptions.html @@ -1 +1 @@ -DialogueOptions | universalviewer
                                              DialogueOptions: {
                                                  topCloseButtonEnabled: boolean;
                                              }

                                              Type declaration

                                              • topCloseButtonEnabled: boolean

                                              Generated using TypeDoc

                                              \ No newline at end of file +DialogueOptions | universalviewer
                                              DialogueOptions: { topCloseButtonEnabled: boolean }
                                              diff --git a/docs/types/_internal_.DownloadDialogue.html b/docs/types/_internal_.DownloadDialogue.html index 5e58d6ea6..b6edba0b0 100644 --- a/docs/types/_internal_.DownloadDialogue.html +++ b/docs/types/_internal_.DownloadDialogue.html @@ -1 +1 @@ -DownloadDialogue | universalviewer
                                              DownloadDialogue: ModuleConfig & {
                                                  content: DownloadDialogueContent;
                                                  options: DownloadDialogueOptions;
                                              }

                                              Type declaration

                                              Generated using TypeDoc

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

                                              Type declaration

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

                                              Generated using TypeDoc

                                              \ No newline at end of file +DownloadDialogueContent | universalviewer

                                              Type Alias DownloadDialogueContent

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

                                              Type alias DownloadDialogueOptions

                                              DownloadDialogueOptions: DialogueOptions & {}

                                              Type declaration

                                                Generated using TypeDoc

                                                \ No newline at end of file +DownloadDialogueOptions | universalviewer

                                                Type Alias DownloadDialogueOptions

                                                DownloadDialogueOptions: DialogueOptions & {}
                                                diff --git a/docs/types/_internal_.EbookCenterPanel.html b/docs/types/_internal_.EbookCenterPanel.html index a01f9df4f..ad728d7e2 100644 --- a/docs/types/_internal_.EbookCenterPanel.html +++ b/docs/types/_internal_.EbookCenterPanel.html @@ -1 +1 @@ -EbookCenterPanel | universalviewer
                                                EbookCenterPanel: {
                                                    content: EbookCenterPanelContent;
                                                    options: EbookCenterPanelOptions;
                                                }

                                                Type declaration

                                                Generated using TypeDoc

                                                \ No newline at end of file +EbookCenterPanel | universalviewer
                                                EbookCenterPanel: {
                                                    content: EbookCenterPanelContent;
                                                    options: EbookCenterPanelOptions;
                                                }
                                                diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html index 7c4e34e42..48216ef01 100644 --- a/docs/types/_internal_.EbookCenterPanelContent.html +++ b/docs/types/_internal_.EbookCenterPanelContent.html @@ -1 +1 @@ -EbookCenterPanelContent | universalviewer

                                                Type alias EbookCenterPanelContent

                                                EbookCenterPanelContent: CenterPanelContent & {}

                                                Type declaration

                                                  Generated using TypeDoc

                                                  \ No newline at end of file +EbookCenterPanelContent | universalviewer

                                                  Type Alias EbookCenterPanelContent

                                                  EbookCenterPanelContent: CenterPanelContent & {}
                                                  diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html index 6c840b6e8..8056ebf8b 100644 --- a/docs/types/_internal_.EbookCenterPanelOptions.html +++ b/docs/types/_internal_.EbookCenterPanelOptions.html @@ -1 +1 @@ -EbookCenterPanelOptions | universalviewer

                                                  Type alias EbookCenterPanelOptions

                                                  EbookCenterPanelOptions: CenterPanelOptions & {}

                                                  Type declaration

                                                    Generated using TypeDoc

                                                    \ No newline at end of file +EbookCenterPanelOptions | universalviewer

                                                    Type Alias EbookCenterPanelOptions

                                                    EbookCenterPanelOptions: CenterPanelOptions & {}
                                                    diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html index c38b9891b..efcffb579 100644 --- a/docs/types/_internal_.EbookDownloadDialogue.html +++ b/docs/types/_internal_.EbookDownloadDialogue.html @@ -1 +1 @@ -EbookDownloadDialogue | universalviewer

                                                    Type alias EbookDownloadDialogue

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

                                                    Generated using TypeDoc

                                                    \ No newline at end of file +EbookDownloadDialogue | universalviewer

                                                    Type Alias EbookDownloadDialogue

                                                    EbookDownloadDialogue: ModuleConfig & {
                                                        content: EbookDownloadDialogueContent;
                                                        options: EbookDownloadDialogueOptions;
                                                    }
                                                    diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html index 3b54314e9..27162926b 100644 --- a/docs/types/_internal_.EbookDownloadDialogueContent.html +++ b/docs/types/_internal_.EbookDownloadDialogueContent.html @@ -1 +1 @@ -EbookDownloadDialogueContent | universalviewer

                                                    Type alias EbookDownloadDialogueContent

                                                    EbookDownloadDialogueContent: DownloadDialogueContent & {}

                                                    Type declaration

                                                      Generated using TypeDoc

                                                      \ No newline at end of file +EbookDownloadDialogueContent | universalviewer

                                                      Type Alias EbookDownloadDialogueContent

                                                      EbookDownloadDialogueContent: DownloadDialogueContent & {}
                                                      diff --git a/docs/types/_internal_.EbookDownloadDialogueOptions.html b/docs/types/_internal_.EbookDownloadDialogueOptions.html index b502efc24..ff7041a8d 100644 --- a/docs/types/_internal_.EbookDownloadDialogueOptions.html +++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html @@ -1 +1 @@ -EbookDownloadDialogueOptions | universalviewer

                                                      Type alias EbookDownloadDialogueOptions

                                                      EbookDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                      Type declaration

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookDownloadDialogueOptions | universalviewer

                                                        Type Alias EbookDownloadDialogueOptions

                                                        EbookDownloadDialogueOptions: DownloadDialogueOptions & {}
                                                        diff --git a/docs/types/_internal_.EbookLeftPanel.html b/docs/types/_internal_.EbookLeftPanel.html index dca2febd8..67be67c5f 100644 --- a/docs/types/_internal_.EbookLeftPanel.html +++ b/docs/types/_internal_.EbookLeftPanel.html @@ -1 +1 @@ -EbookLeftPanel | universalviewer
                                                        EbookLeftPanel: {
                                                            content: EbookLeftPanelContent;
                                                            options: EbookLeftPanelOptions;
                                                        }

                                                        Type declaration

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookLeftPanel | universalviewer
                                                        EbookLeftPanel: {
                                                            content: EbookLeftPanelContent;
                                                            options: EbookLeftPanelOptions;
                                                        }
                                                        diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html index 5478f3d4c..d5e19f0af 100644 --- a/docs/types/_internal_.EbookLeftPanelContent.html +++ b/docs/types/_internal_.EbookLeftPanelContent.html @@ -1 +1 @@ -EbookLeftPanelContent | universalviewer

                                                        Type alias EbookLeftPanelContent

                                                        EbookLeftPanelContent: ExpandPanelContent & {
                                                            title: string;
                                                        }

                                                        Type declaration

                                                        • title: string

                                                        Generated using TypeDoc

                                                        \ No newline at end of file +EbookLeftPanelContent | universalviewer

                                                        Type Alias EbookLeftPanelContent

                                                        EbookLeftPanelContent: ExpandPanelContent & { title: string }
                                                        diff --git a/docs/types/_internal_.EbookLeftPanelOptions.html b/docs/types/_internal_.EbookLeftPanelOptions.html index ea18a0dd6..9acf782ca 100644 --- a/docs/types/_internal_.EbookLeftPanelOptions.html +++ b/docs/types/_internal_.EbookLeftPanelOptions.html @@ -1 +1 @@ -EbookLeftPanelOptions | universalviewer

                                                        Type alias EbookLeftPanelOptions

                                                        EbookLeftPanelOptions: ExpandPanelOptions & {}

                                                        Type declaration

                                                          Generated using TypeDoc

                                                          \ No newline at end of file +EbookLeftPanelOptions | universalviewer

                                                          Type Alias EbookLeftPanelOptions

                                                          EbookLeftPanelOptions: ExpandPanelOptions & {}
                                                          diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html index ef46f1192..4db6d02a7 100644 --- a/docs/types/_internal_.EbookSettingsDialogue.html +++ b/docs/types/_internal_.EbookSettingsDialogue.html @@ -1 +1 @@ -EbookSettingsDialogue | universalviewer

                                                          Type alias EbookSettingsDialogue

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

                                                          Generated using TypeDoc

                                                          \ No newline at end of file +EbookSettingsDialogue | universalviewer

                                                          Type Alias EbookSettingsDialogue

                                                          EbookSettingsDialogue: ModuleConfig & {
                                                              content: EbookSettingsDialogueContent;
                                                              options: EbookSettingsDialogueOptions;
                                                          }
                                                          diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html index fdf7e209c..27a2451e3 100644 --- a/docs/types/_internal_.EbookSettingsDialogueContent.html +++ b/docs/types/_internal_.EbookSettingsDialogueContent.html @@ -1 +1 @@ -EbookSettingsDialogueContent | universalviewer

                                                          Type alias EbookSettingsDialogueContent

                                                          EbookSettingsDialogueContent: SettingsDialogueContent & {}

                                                          Type declaration

                                                            Generated using TypeDoc

                                                            \ No newline at end of file +EbookSettingsDialogueContent | universalviewer

                                                            Type Alias EbookSettingsDialogueContent

                                                            EbookSettingsDialogueContent: SettingsDialogueContent & {}
                                                            diff --git a/docs/types/_internal_.EbookSettingsDialogueOptions.html b/docs/types/_internal_.EbookSettingsDialogueOptions.html index f8324ad6e..0c3fdb0e4 100644 --- a/docs/types/_internal_.EbookSettingsDialogueOptions.html +++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html @@ -1 +1 @@ -EbookSettingsDialogueOptions | universalviewer

                                                            Type alias EbookSettingsDialogueOptions

                                                            EbookSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                            Type declaration

                                                              Generated using TypeDoc

                                                              \ No newline at end of file +EbookSettingsDialogueOptions | universalviewer

                                                              Type Alias EbookSettingsDialogueOptions

                                                              EbookSettingsDialogueOptions: SettingsDialogueOptions & {}
                                                              diff --git a/docs/types/_internal_.EbookShareDialogue.html b/docs/types/_internal_.EbookShareDialogue.html index 361be36ee..377a5dd86 100644 --- a/docs/types/_internal_.EbookShareDialogue.html +++ b/docs/types/_internal_.EbookShareDialogue.html @@ -1 +1 @@ -EbookShareDialogue | universalviewer

                                                              Type alias EbookShareDialogue

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

                                                              Type declaration

                                                              Generated using TypeDoc

                                                              \ No newline at end of file +EbookShareDialogue | universalviewer

                                                              Type Alias EbookShareDialogue

                                                              EbookShareDialogue: ModuleConfig & {
                                                                  content: EbookShareDialogueContent;
                                                                  options: EbookShareDialogueOptions;
                                                              }
                                                              diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html index 122563b5c..c0d76435f 100644 --- a/docs/types/_internal_.EbookShareDialogueContent.html +++ b/docs/types/_internal_.EbookShareDialogueContent.html @@ -1 +1 @@ -EbookShareDialogueContent | universalviewer

                                                              Type alias EbookShareDialogueContent

                                                              EbookShareDialogueContent: ShareDialogueContent & {}

                                                              Type declaration

                                                                Generated using TypeDoc

                                                                \ No newline at end of file +EbookShareDialogueContent | universalviewer

                                                                Type Alias EbookShareDialogueContent

                                                                EbookShareDialogueContent: ShareDialogueContent & {}
                                                                diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html index 9d1a31471..1e59bb34f 100644 --- a/docs/types/_internal_.EbookShareDialogueOptions.html +++ b/docs/types/_internal_.EbookShareDialogueOptions.html @@ -1 +1 @@ -EbookShareDialogueOptions | universalviewer

                                                                Type alias EbookShareDialogueOptions

                                                                EbookShareDialogueOptions: ShareDialogueOptions & {}

                                                                Type declaration

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +EbookShareDialogueOptions | universalviewer

                                                                  Type Alias EbookShareDialogueOptions

                                                                  EbookShareDialogueOptions: ShareDialogueOptions & {}
                                                                  diff --git a/docs/types/_internal_.ExpandPanel.html b/docs/types/_internal_.ExpandPanel.html index f1bff8605..0e21778e3 100644 --- a/docs/types/_internal_.ExpandPanel.html +++ b/docs/types/_internal_.ExpandPanel.html @@ -1 +1 @@ -ExpandPanel | universalviewer
                                                                  ExpandPanel: ModuleConfig & {
                                                                      content: ExpandPanelContent;
                                                                      options: ExpandPanelOptions;
                                                                  }

                                                                  Type declaration

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +ExpandPanel | universalviewer
                                                                  ExpandPanel: ModuleConfig & {
                                                                      content: ExpandPanelContent;
                                                                      options: ExpandPanelOptions;
                                                                  }
                                                                  diff --git a/docs/types/_internal_.ExpandPanelContent.html b/docs/types/_internal_.ExpandPanelContent.html index 7616b0eda..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;
                                                                  }

                                                                  Type declaration

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

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +ExpandPanelContent | universalviewer

                                                                  Type Alias ExpandPanelContent

                                                                  ExpandPanelContent: {
                                                                      collapse: string;
                                                                      collapseFull: string;
                                                                      expand: string;
                                                                      expandFull: string;
                                                                  }
                                                                  diff --git a/docs/types/_internal_.ExpandPanelOptions.html b/docs/types/_internal_.ExpandPanelOptions.html index cc4cbe90a..635036778 100644 --- a/docs/types/_internal_.ExpandPanelOptions.html +++ b/docs/types/_internal_.ExpandPanelOptions.html @@ -1,6 +1,6 @@ -ExpandPanelOptions | universalviewer

                                                                  Type alias ExpandPanelOptions

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

                                                                  Type declaration

                                                                  • expandFullEnabled: boolean

                                                                    Determines if expand full is enabled

                                                                    -
                                                                  • panelAnimationDuration: number

                                                                    Determines the duration of the panel expand/collapse animation

                                                                    -
                                                                  • panelCollapsedWidth: number

                                                                    Width of the collapsed panel

                                                                    -
                                                                  • panelExpandedWidth: number

                                                                    Width of the expanded panel

                                                                    -
                                                                  • panelOpen: boolean

                                                                    Determines if the panel is open

                                                                    -

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +ExpandPanelOptions | universalviewer

                                                                  Type Alias ExpandPanelOptions

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

                                                                  Type declaration

                                                                  • expandFullEnabled: boolean

                                                                    Determines if expand full is enabled

                                                                    +
                                                                  • panelAnimationDuration: number

                                                                    Determines the duration of the panel expand/collapse animation

                                                                    +
                                                                  • panelCollapsedWidth: number

                                                                    Width of the collapsed panel

                                                                    +
                                                                  • panelExpandedWidth: number

                                                                    Width of the expanded panel

                                                                    +
                                                                  • panelOpen: boolean

                                                                    Determines if the panel is open

                                                                    +
                                                                  diff --git a/docs/types/_internal_.FileLinkCenterPanel.html b/docs/types/_internal_.FileLinkCenterPanel.html index 3ea9e7887..14b59fadd 100644 --- a/docs/types/_internal_.FileLinkCenterPanel.html +++ b/docs/types/_internal_.FileLinkCenterPanel.html @@ -1 +1 @@ -FileLinkCenterPanel | universalviewer

                                                                  Type alias FileLinkCenterPanel

                                                                  FileLinkCenterPanel: {
                                                                      content: FileLinkCenterPanelContent;
                                                                      options: FileLinkCenterPanelOptions;
                                                                  }

                                                                  Generated using TypeDoc

                                                                  \ No newline at end of file +FileLinkCenterPanel | universalviewer

                                                                  Type Alias FileLinkCenterPanel

                                                                  FileLinkCenterPanel: {
                                                                      content: FileLinkCenterPanelContent;
                                                                      options: FileLinkCenterPanelOptions;
                                                                  }
                                                                  diff --git a/docs/types/_internal_.FileLinkCenterPanelContent.html b/docs/types/_internal_.FileLinkCenterPanelContent.html index cf45cd8c4..17cdb552c 100644 --- a/docs/types/_internal_.FileLinkCenterPanelContent.html +++ b/docs/types/_internal_.FileLinkCenterPanelContent.html @@ -1 +1 @@ -FileLinkCenterPanelContent | universalviewer

                                                                  Type alias FileLinkCenterPanelContent

                                                                  FileLinkCenterPanelContent: CenterPanelContent & {}

                                                                  Type declaration

                                                                    Generated using TypeDoc

                                                                    \ No newline at end of file +FileLinkCenterPanelContent | universalviewer

                                                                    Type Alias FileLinkCenterPanelContent

                                                                    FileLinkCenterPanelContent: CenterPanelContent & {}
                                                                    diff --git a/docs/types/_internal_.FileLinkCenterPanelOptions.html b/docs/types/_internal_.FileLinkCenterPanelOptions.html index b7562f72c..b2f98d15e 100644 --- a/docs/types/_internal_.FileLinkCenterPanelOptions.html +++ b/docs/types/_internal_.FileLinkCenterPanelOptions.html @@ -1 +1 @@ -FileLinkCenterPanelOptions | universalviewer

                                                                    Type alias FileLinkCenterPanelOptions

                                                                    FileLinkCenterPanelOptions: CenterPanelOptions & {}

                                                                    Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +FileLinkCenterPanelOptions | universalviewer

                                                                      Type Alias FileLinkCenterPanelOptions

                                                                      FileLinkCenterPanelOptions: CenterPanelOptions & {}
                                                                      diff --git a/docs/types/_internal_.FooterPanel.html b/docs/types/_internal_.FooterPanel.html index 3c32cc9bc..b8c3c9f25 100644 --- a/docs/types/_internal_.FooterPanel.html +++ b/docs/types/_internal_.FooterPanel.html @@ -1 +1 @@ -FooterPanel | universalviewer
                                                                      FooterPanel: ModuleConfig & {
                                                                          content: FooterPanelContent;
                                                                          options: FooterPanelOptions;
                                                                      }

                                                                      Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +FooterPanel | universalviewer
                                                                      FooterPanel: ModuleConfig & {
                                                                          content: FooterPanelContent;
                                                                          options: FooterPanelOptions;
                                                                      }
                                                                      diff --git a/docs/types/_internal_.FooterPanelContent.html b/docs/types/_internal_.FooterPanelContent.html index 9dc0f2a1b..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;
                                                                      }

                                                                      Type declaration

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

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +FooterPanelContent | universalviewer

                                                                      Type Alias FooterPanelContent

                                                                      FooterPanelContent: {
                                                                          bookmark: string;
                                                                          download: string;
                                                                          embed: string;
                                                                          exitFullScreen: string;
                                                                          feedback: string;
                                                                          fullScreen: string;
                                                                          moreInfo: string;
                                                                          open: string;
                                                                          share: string;
                                                                      }
                                                                      diff --git a/docs/types/_internal_.FooterPanelOptions.html b/docs/types/_internal_.FooterPanelOptions.html index 2c68ee7d0..4b517eb8e 100644 --- a/docs/types/_internal_.FooterPanelOptions.html +++ b/docs/types/_internal_.FooterPanelOptions.html @@ -1,11 +1,11 @@ -FooterPanelOptions | universalviewer

                                                                      Type alias FooterPanelOptions

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

                                                                      Type declaration

                                                                      • bookmarkEnabled: boolean

                                                                        Determines if bookmarking is enabled

                                                                        -
                                                                      • downloadEnabled: boolean

                                                                        Determines if downloading is enabled

                                                                        -
                                                                      • embedEnabled: boolean

                                                                        Determines if embedding is enabled

                                                                        -
                                                                      • feedbackEnabled: boolean

                                                                        Determines if feedback is enabled

                                                                        -
                                                                      • fullscreenEnabled: boolean

                                                                        Determines if fullscreen mode is enabled

                                                                        -
                                                                      • minimiseButtons: boolean

                                                                        Determines if buttons are minimised

                                                                        -
                                                                      • moreInfoEnabled: boolean

                                                                        Determines if more information is enabled

                                                                        -
                                                                      • openEnabled: boolean

                                                                        Determines if opening is enabled

                                                                        -
                                                                      • printEnabled: boolean

                                                                        Determines if printing is enabled

                                                                        -
                                                                      • shareEnabled: boolean

                                                                        Determines if sharing is enabled

                                                                        -

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +FooterPanelOptions | universalviewer

                                                                      Type Alias FooterPanelOptions

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

                                                                      Type declaration

                                                                      • bookmarkEnabled: boolean

                                                                        Determines if bookmarking is enabled

                                                                        +
                                                                      • downloadEnabled: boolean

                                                                        Determines if downloading is enabled

                                                                        +
                                                                      • embedEnabled: boolean

                                                                        Determines if embedding is enabled

                                                                        +
                                                                      • feedbackEnabled: boolean

                                                                        Determines if feedback is enabled

                                                                        +
                                                                      • fullscreenEnabled: boolean

                                                                        Determines if fullscreen mode is enabled

                                                                        +
                                                                      • minimiseButtons: boolean

                                                                        Determines if buttons are minimised

                                                                        +
                                                                      • moreInfoEnabled: boolean

                                                                        Determines if more information is enabled

                                                                        +
                                                                      • openEnabled: boolean

                                                                        Determines if opening is enabled

                                                                        +
                                                                      • printEnabled: boolean

                                                                        Determines if printing is enabled

                                                                        +
                                                                      • shareEnabled: boolean

                                                                        Determines if sharing is enabled

                                                                        +
                                                                      diff --git a/docs/types/_internal_.GenericDialogue.html b/docs/types/_internal_.GenericDialogue.html index b8f54e165..e11609f36 100644 --- a/docs/types/_internal_.GenericDialogue.html +++ b/docs/types/_internal_.GenericDialogue.html @@ -1 +1 @@ -GenericDialogue | universalviewer
                                                                      GenericDialogue: ModuleConfig & {
                                                                          content: GenericDialogueContent;
                                                                          options: GenericDialogueOptions;
                                                                      }

                                                                      Type declaration

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +GenericDialogue | universalviewer
                                                                      GenericDialogue: ModuleConfig & {
                                                                          content: GenericDialogueContent;
                                                                          options: GenericDialogueOptions;
                                                                      }
                                                                      diff --git a/docs/types/_internal_.GenericDialogueContent.html b/docs/types/_internal_.GenericDialogueContent.html index 3770188e7..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;
                                                                      }

                                                                      Type declaration

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

                                                                      Generated using TypeDoc

                                                                      \ No newline at end of file +GenericDialogueContent | universalviewer

                                                                      Type Alias GenericDialogueContent

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

                                                                      Type alias GenericDialogueOptions

                                                                      GenericDialogueOptions: DialogueOptions & {}

                                                                      Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +GenericDialogueOptions | universalviewer

                                                                        Type Alias GenericDialogueOptions

                                                                        GenericDialogueOptions: DialogueOptions & {}
                                                                        diff --git a/docs/types/_internal_.HeaderPanel.html b/docs/types/_internal_.HeaderPanel.html index 4d770dd65..9dae667d2 100644 --- a/docs/types/_internal_.HeaderPanel.html +++ b/docs/types/_internal_.HeaderPanel.html @@ -1 +1 @@ -HeaderPanel | universalviewer
                                                                        HeaderPanel: ModuleConfig & {
                                                                            content: HeaderPanelContent;
                                                                            options: HeaderPanelOptions;
                                                                        }

                                                                        Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +HeaderPanel | universalviewer
                                                                        HeaderPanel: ModuleConfig & {
                                                                            content: HeaderPanelContent;
                                                                            options: HeaderPanelOptions;
                                                                        }
                                                                        diff --git a/docs/types/_internal_.HeaderPanelContent.html b/docs/types/_internal_.HeaderPanelContent.html index a40faa671..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;
                                                                        }

                                                                        Type declaration

                                                                        • close: string
                                                                        • settings: string

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +HeaderPanelContent | universalviewer

                                                                        Type Alias HeaderPanelContent

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

                                                                          -

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +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 1d48d16de..a66cc6bbf 100644 --- a/docs/types/_internal_.HelpDialogue.html +++ b/docs/types/_internal_.HelpDialogue.html @@ -1 +1 @@ -HelpDialogue | universalviewer
                                                                        HelpDialogue: ModuleConfig & {
                                                                            content: HelpDialogueContent;
                                                                            options: HelpDialogueOptions;
                                                                        }

                                                                        Type declaration

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +HelpDialogue | universalviewer
                                                                        HelpDialogue: ModuleConfig & {
                                                                            content: HelpDialogueContent;
                                                                            options: HelpDialogueOptions;
                                                                        }
                                                                        diff --git a/docs/types/_internal_.HelpDialogueContent.html b/docs/types/_internal_.HelpDialogueContent.html index 5320011ce..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;
                                                                        }

                                                                        Type declaration

                                                                        • text: string
                                                                        • title: string

                                                                        Generated using TypeDoc

                                                                        \ No newline at end of file +HelpDialogueContent | universalviewer

                                                                        Type Alias HelpDialogueContent

                                                                        HelpDialogueContent: DialogueContent & { text: string; title: string }
                                                                        diff --git a/docs/types/_internal_.HelpDialogueOptions.html b/docs/types/_internal_.HelpDialogueOptions.html index cf08a5cca..18e9b9a7c 100644 --- a/docs/types/_internal_.HelpDialogueOptions.html +++ b/docs/types/_internal_.HelpDialogueOptions.html @@ -1 +1 @@ -HelpDialogueOptions | universalviewer

                                                                        Type alias HelpDialogueOptions

                                                                        HelpDialogueOptions: DialogueOptions & {}

                                                                        Type declaration

                                                                          Generated using TypeDoc

                                                                          \ No newline at end of file +HelpDialogueOptions | universalviewer

                                                                          Type Alias HelpDialogueOptions

                                                                          HelpDialogueOptions: DialogueOptions & {}
                                                                          diff --git a/docs/types/_internal_.LeftPanel.html b/docs/types/_internal_.LeftPanel.html index d2fddaef3..23b7e6fc4 100644 --- a/docs/types/_internal_.LeftPanel.html +++ b/docs/types/_internal_.LeftPanel.html @@ -1 +1 @@ -LeftPanel | universalviewer
                                                                          LeftPanel: ExpandPanel & {}

                                                                          Type declaration

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +LeftPanel | universalviewer
                                                                            LeftPanel: ExpandPanel & {}
                                                                            diff --git a/docs/types/_internal_.Locale.html b/docs/types/_internal_.Locale.html index 649064760..97e5e4e61 100644 --- a/docs/types/_internal_.Locale.html +++ b/docs/types/_internal_.Locale.html @@ -1 +1 @@ -Locale | universalviewer
                                                                            Locale: {
                                                                                label: string;
                                                                                name: string;
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • name: string

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +Locale | universalviewer
                                                                            Locale: { label: string; name: string }
                                                                            diff --git a/docs/types/_internal_.Localisation.html b/docs/types/_internal_.Localisation.html index 3fe51912a..6eef1482d 100644 --- a/docs/types/_internal_.Localisation.html +++ b/docs/types/_internal_.Localisation.html @@ -1 +1 @@ -Localisation | universalviewer
                                                                            Localisation: {
                                                                                label: string;
                                                                                locales: Locale[];
                                                                            }

                                                                            Type declaration

                                                                            • label: string
                                                                            • locales: Locale[]

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +Localisation | universalviewer
                                                                            Localisation: { label: string; locales: Locale[] }
                                                                            diff --git a/docs/types/_internal_.LoginDialogue.html b/docs/types/_internal_.LoginDialogue.html index 927e2d71a..1ed4d129e 100644 --- a/docs/types/_internal_.LoginDialogue.html +++ b/docs/types/_internal_.LoginDialogue.html @@ -1 +1 @@ -LoginDialogue | universalviewer
                                                                            LoginDialogue: ModuleConfig & {
                                                                                content: LoginDialogueContent;
                                                                                options: LoginDialogueOptions;
                                                                            }

                                                                            Type declaration

                                                                            Generated using TypeDoc

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

                                                                            Type declaration

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

                                                                            Generated using TypeDoc

                                                                            \ No newline at end of file +LoginDialogueContent | universalviewer

                                                                            Type Alias LoginDialogueContent

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

                                                                            Type alias LoginDialogueOptions

                                                                            LoginDialogueOptions: DialogueOptions & {}

                                                                            Type declaration

                                                                              Generated using TypeDoc

                                                                              \ No newline at end of file +LoginDialogueOptions | universalviewer

                                                                              Type Alias LoginDialogueOptions

                                                                              LoginDialogueOptions: DialogueOptions & {}
                                                                              diff --git a/docs/types/_internal_.MediaElementCenterPanel.html b/docs/types/_internal_.MediaElementCenterPanel.html index e899bc6a2..7a51c2bf6 100644 --- a/docs/types/_internal_.MediaElementCenterPanel.html +++ b/docs/types/_internal_.MediaElementCenterPanel.html @@ -1 +1 @@ -MediaElementCenterPanel | universalviewer

                                                                              Type alias MediaElementCenterPanel

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

                                                                              Generated using TypeDoc

                                                                              \ No newline at end of file +MediaElementCenterPanel | universalviewer

                                                                              Type Alias MediaElementCenterPanel

                                                                              MediaElementCenterPanel: {
                                                                                  content: MediaElementCenterPanelContent;
                                                                                  options: MediaElementCenterPanelOptions;
                                                                              }
                                                                              diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html index 777332223..000d9e040 100644 --- a/docs/types/_internal_.MediaElementCenterPanelContent.html +++ b/docs/types/_internal_.MediaElementCenterPanelContent.html @@ -1 +1 @@ -MediaElementCenterPanelContent | universalviewer

                                                                              Type alias MediaElementCenterPanelContent

                                                                              MediaElementCenterPanelContent: CenterPanelContent & {}

                                                                              Type declaration

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file +MediaElementCenterPanelContent | universalviewer

                                                                                Type Alias MediaElementCenterPanelContent

                                                                                MediaElementCenterPanelContent: CenterPanelContent & {}
                                                                                diff --git a/docs/types/_internal_.MediaElementCenterPanelOptions.html b/docs/types/_internal_.MediaElementCenterPanelOptions.html index b1e163c9b..3962da277 100644 --- a/docs/types/_internal_.MediaElementCenterPanelOptions.html +++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html @@ -1 +1 @@ -MediaElementCenterPanelOptions | universalviewer

                                                                                Type alias MediaElementCenterPanelOptions

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

                                                                                Type declaration

                                                                                • defaultHeight: number
                                                                                • defaultWidth: number

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file +MediaElementCenterPanelOptions | universalviewer

                                                                                Type Alias MediaElementCenterPanelOptions

                                                                                MediaElementCenterPanelOptions: CenterPanelOptions & {
                                                                                    autoPlayOnSetTarget: boolean;
                                                                                    defaultHeight: number;
                                                                                    defaultWidth: number;
                                                                                }
                                                                                diff --git a/docs/types/_internal_.MediaElementDownloadDialogue.html b/docs/types/_internal_.MediaElementDownloadDialogue.html index 62d41dcea..475c23280 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogue.html +++ b/docs/types/_internal_.MediaElementDownloadDialogue.html @@ -1 +1 @@ -MediaElementDownloadDialogue | universalviewer

                                                                                Type alias MediaElementDownloadDialogue

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

                                                                                Generated using TypeDoc

                                                                                \ No newline at end of file +MediaElementDownloadDialogue | universalviewer

                                                                                Type Alias MediaElementDownloadDialogue

                                                                                MediaElementDownloadDialogue: ModuleConfig & {
                                                                                    content: MediaElementDownloadDialogueContent;
                                                                                    options: MediaElementDownloadDialogueOptions;
                                                                                }
                                                                                diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html index 680ecc545..7041c5f8f 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueContent.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html @@ -1 +1 @@ -MediaElementDownloadDialogueContent | universalviewer

                                                                                Type alias MediaElementDownloadDialogueContent

                                                                                MediaElementDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                Type declaration

                                                                                  Generated using TypeDoc

                                                                                  \ No newline at end of file +MediaElementDownloadDialogueContent | universalviewer

                                                                                  Type Alias MediaElementDownloadDialogueContent

                                                                                  MediaElementDownloadDialogueContent: DownloadDialogueContent & {}
                                                                                  diff --git a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html index 5ae0a9a0b..3446ad506 100644 --- a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html +++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html @@ -1 +1 @@ -MediaElementDownloadDialogueOptions | universalviewer

                                                                                  Type alias MediaElementDownloadDialogueOptions

                                                                                  MediaElementDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                  Type declaration

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file +MediaElementDownloadDialogueOptions | universalviewer

                                                                                    Type Alias MediaElementDownloadDialogueOptions

                                                                                    MediaElementDownloadDialogueOptions: DownloadDialogueOptions & {}
                                                                                    diff --git a/docs/types/_internal_.MediaElementSettingsDialogue.html b/docs/types/_internal_.MediaElementSettingsDialogue.html index 14d448b9e..6035f5e5a 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogue.html +++ b/docs/types/_internal_.MediaElementSettingsDialogue.html @@ -1 +1 @@ -MediaElementSettingsDialogue | universalviewer

                                                                                    Type alias MediaElementSettingsDialogue

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

                                                                                    Generated using TypeDoc

                                                                                    \ No newline at end of file +MediaElementSettingsDialogue | universalviewer

                                                                                    Type Alias MediaElementSettingsDialogue

                                                                                    MediaElementSettingsDialogue: ModuleConfig & {
                                                                                        content: MediaElementSettingsDialogueContent;
                                                                                        options: MediaElementSettingsDialogueOptions;
                                                                                    }
                                                                                    diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html index 563971e3b..835faf836 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueContent.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html @@ -1 +1 @@ -MediaElementSettingsDialogueContent | universalviewer

                                                                                    Type alias MediaElementSettingsDialogueContent

                                                                                    MediaElementSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                    Type declaration

                                                                                      Generated using TypeDoc

                                                                                      \ No newline at end of file +MediaElementSettingsDialogueContent | universalviewer

                                                                                      Type Alias MediaElementSettingsDialogueContent

                                                                                      MediaElementSettingsDialogueContent: SettingsDialogueContent & {}
                                                                                      diff --git a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html index 2b4bee0ce..17094e4a2 100644 --- a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html +++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html @@ -1 +1 @@ -MediaElementSettingsDialogueOptions | universalviewer

                                                                                      Type alias MediaElementSettingsDialogueOptions

                                                                                      MediaElementSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                      Type declaration

                                                                                        Generated using TypeDoc

                                                                                        \ No newline at end of file +MediaElementSettingsDialogueOptions | universalviewer

                                                                                        Type Alias MediaElementSettingsDialogueOptions

                                                                                        MediaElementSettingsDialogueOptions: SettingsDialogueOptions & {}
                                                                                        diff --git a/docs/types/_internal_.MediaElementShareDialogue.html b/docs/types/_internal_.MediaElementShareDialogue.html index 96438645c..4f8b87b65 100644 --- a/docs/types/_internal_.MediaElementShareDialogue.html +++ b/docs/types/_internal_.MediaElementShareDialogue.html @@ -1 +1 @@ -MediaElementShareDialogue | universalviewer

                                                                                        Type alias MediaElementShareDialogue

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

                                                                                        Generated using TypeDoc

                                                                                        \ No newline at end of file +MediaElementShareDialogue | universalviewer

                                                                                        Type Alias MediaElementShareDialogue

                                                                                        MediaElementShareDialogue: ModuleConfig & {
                                                                                            content: MediaElementShareDialogueContent;
                                                                                            options: MediaElementShareDialogueOptions;
                                                                                        }
                                                                                        diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html index a2bb07620..b05394ff2 100644 --- a/docs/types/_internal_.MediaElementShareDialogueContent.html +++ b/docs/types/_internal_.MediaElementShareDialogueContent.html @@ -1 +1 @@ -MediaElementShareDialogueContent | universalviewer

                                                                                        Type alias MediaElementShareDialogueContent

                                                                                        MediaElementShareDialogueContent: ShareDialogueContent & {}

                                                                                        Type declaration

                                                                                          Generated using TypeDoc

                                                                                          \ No newline at end of file +MediaElementShareDialogueContent | universalviewer

                                                                                          Type Alias MediaElementShareDialogueContent

                                                                                          MediaElementShareDialogueContent: ShareDialogueContent & {}
                                                                                          diff --git a/docs/types/_internal_.MediaElementShareDialogueOptions.html b/docs/types/_internal_.MediaElementShareDialogueOptions.html index e9c4eefae..c67aab57b 100644 --- a/docs/types/_internal_.MediaElementShareDialogueOptions.html +++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html @@ -1 +1 @@ -MediaElementShareDialogueOptions | universalviewer

                                                                                          Type alias MediaElementShareDialogueOptions

                                                                                          MediaElementShareDialogueOptions: ShareDialogueOptions & {}

                                                                                          Type declaration

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file +MediaElementShareDialogueOptions | universalviewer

                                                                                            Type Alias MediaElementShareDialogueOptions

                                                                                            MediaElementShareDialogueOptions: ShareDialogueOptions & {}
                                                                                            diff --git a/docs/types/_internal_.MobileFooterPanel.html b/docs/types/_internal_.MobileFooterPanel.html index 966897226..4c0a4cc5d 100644 --- a/docs/types/_internal_.MobileFooterPanel.html +++ b/docs/types/_internal_.MobileFooterPanel.html @@ -1 +1 @@ -MobileFooterPanel | universalviewer

                                                                                            Type alias MobileFooterPanel

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

                                                                                            Type declaration

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file +MobileFooterPanel | universalviewer

                                                                                            Type Alias MobileFooterPanel

                                                                                            MobileFooterPanel: ModuleConfig & {
                                                                                                content: MobileFooterPanelContent;
                                                                                                options: MobileFooterPanelOptions;
                                                                                            }
                                                                                            diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html index a71b802f4..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;
                                                                                            }

                                                                                            Type declaration

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

                                                                                            Generated using TypeDoc

                                                                                            \ No newline at end of file +MobileFooterPanelContent | universalviewer

                                                                                            Type Alias MobileFooterPanelContent

                                                                                            MobileFooterPanelContent: FooterPanelContent & {
                                                                                                moreInfo: string;
                                                                                                rotateRight: string;
                                                                                                zoomIn: string;
                                                                                                zoomOut: string;
                                                                                            }
                                                                                            diff --git a/docs/types/_internal_.MobileFooterPanelOptions.html b/docs/types/_internal_.MobileFooterPanelOptions.html index 9fde07ca7..0513ac678 100644 --- a/docs/types/_internal_.MobileFooterPanelOptions.html +++ b/docs/types/_internal_.MobileFooterPanelOptions.html @@ -1 +1 @@ -MobileFooterPanelOptions | universalviewer

                                                                                            Type alias MobileFooterPanelOptions

                                                                                            MobileFooterPanelOptions: FooterPanelOptions & {}

                                                                                            Type declaration

                                                                                              Generated using TypeDoc

                                                                                              \ No newline at end of file +MobileFooterPanelOptions | universalviewer

                                                                                              Type Alias MobileFooterPanelOptions

                                                                                              MobileFooterPanelOptions: FooterPanelOptions & {}
                                                                                              diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html index 6954f4df0..83972c42b 100644 --- a/docs/types/_internal_.ModelViewerCenterPanel.html +++ b/docs/types/_internal_.ModelViewerCenterPanel.html @@ -1 +1 @@ -ModelViewerCenterPanel | universalviewer

                                                                                              Type alias ModelViewerCenterPanel

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

                                                                                              Generated using TypeDoc

                                                                                              \ No newline at end of file +ModelViewerCenterPanel | universalviewer

                                                                                              Type Alias ModelViewerCenterPanel

                                                                                              ModelViewerCenterPanel: {
                                                                                                  content: ModelViewerCenterPanelContent;
                                                                                                  options: ModelViewerCenterPanelOptions;
                                                                                              }
                                                                                              diff --git a/docs/types/_internal_.ModelViewerCenterPanelContent.html b/docs/types/_internal_.ModelViewerCenterPanelContent.html index 7c947a99a..a46813cef 100644 --- a/docs/types/_internal_.ModelViewerCenterPanelContent.html +++ b/docs/types/_internal_.ModelViewerCenterPanelContent.html @@ -1 +1 @@ -ModelViewerCenterPanelContent | universalviewer

                                                                                              Type alias ModelViewerCenterPanelContent

                                                                                              ModelViewerCenterPanelContent: CenterPanelContent & {}

                                                                                              Type declaration

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file +ModelViewerCenterPanelContent | universalviewer

                                                                                                Type Alias ModelViewerCenterPanelContent

                                                                                                ModelViewerCenterPanelContent: CenterPanelContent & {}
                                                                                                diff --git a/docs/types/_internal_.ModelViewerCenterPanelOptions.html b/docs/types/_internal_.ModelViewerCenterPanelOptions.html index 1103678af..862deaeea 100644 --- a/docs/types/_internal_.ModelViewerCenterPanelOptions.html +++ b/docs/types/_internal_.ModelViewerCenterPanelOptions.html @@ -1,5 +1,5 @@ -ModelViewerCenterPanelOptions | universalviewer

                                                                                                Type alias ModelViewerCenterPanelOptions

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

                                                                                                Type declaration

                                                                                                • autoRotateEnabled: boolean

                                                                                                  Determines if auto rotation is enabled

                                                                                                  -
                                                                                                • cameraChangeDelay: number

                                                                                                  Delay in camera change

                                                                                                  -
                                                                                                • doubleClickAnnotationEnabled: boolean

                                                                                                  Determines if double click annotation is enabled

                                                                                                  -
                                                                                                • interactionPromptEnabled: boolean

                                                                                                  Determines if interaction prompt is enabled

                                                                                                  -

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file +ModelViewerCenterPanelOptions | universalviewer

                                                                                                Type Alias ModelViewerCenterPanelOptions

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

                                                                                                Type declaration

                                                                                                • autoRotateEnabled: boolean

                                                                                                  Determines if auto rotation is enabled

                                                                                                  +
                                                                                                • cameraChangeDelay: number

                                                                                                  Delay in camera change

                                                                                                  +
                                                                                                • doubleClickAnnotationEnabled: boolean

                                                                                                  Determines if double click annotation is enabled

                                                                                                  +
                                                                                                • interactionPromptEnabled: boolean

                                                                                                  Determines if interaction prompt is enabled

                                                                                                  +
                                                                                                diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html index eacc4b268..f6e055b59 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogue.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html @@ -1 +1 @@ -ModelViewerDownloadDialogue | universalviewer

                                                                                                Type alias ModelViewerDownloadDialogue

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

                                                                                                Generated using TypeDoc

                                                                                                \ No newline at end of file +ModelViewerDownloadDialogue | universalviewer

                                                                                                Type Alias ModelViewerDownloadDialogue

                                                                                                ModelViewerDownloadDialogue: ModuleConfig & {
                                                                                                    content: ModelViewerDownloadDialogueContent;
                                                                                                    options: ModelViewerDownloadDialogueOptions;
                                                                                                }
                                                                                                diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html index 3f7eb0a32..02ba8fd64 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html @@ -1 +1 @@ -ModelViewerDownloadDialogueContent | universalviewer

                                                                                                Type alias ModelViewerDownloadDialogueContent

                                                                                                ModelViewerDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                                Type declaration

                                                                                                  Generated using TypeDoc

                                                                                                  \ No newline at end of file +ModelViewerDownloadDialogueContent | universalviewer

                                                                                                  Type Alias ModelViewerDownloadDialogueContent

                                                                                                  ModelViewerDownloadDialogueContent: DownloadDialogueContent & {}
                                                                                                  diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html index af79921ff..92eef21eb 100644 --- a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html @@ -1 +1 @@ -ModelViewerDownloadDialogueOptions | universalviewer

                                                                                                  Type alias ModelViewerDownloadDialogueOptions

                                                                                                  ModelViewerDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                                  Type declaration

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file +ModelViewerDownloadDialogueOptions | universalviewer

                                                                                                    Type Alias ModelViewerDownloadDialogueOptions

                                                                                                    ModelViewerDownloadDialogueOptions: DownloadDialogueOptions & {}
                                                                                                    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogue.html b/docs/types/_internal_.ModelViewerSettingsDialogue.html index 6e50c10e5..9f49ca1c0 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogue.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html @@ -1 +1 @@ -ModelViewerSettingsDialogue | universalviewer

                                                                                                    Type alias ModelViewerSettingsDialogue

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

                                                                                                    Generated using TypeDoc

                                                                                                    \ No newline at end of file +ModelViewerSettingsDialogue | universalviewer

                                                                                                    Type Alias ModelViewerSettingsDialogue

                                                                                                    ModelViewerSettingsDialogue: ModuleConfig & {
                                                                                                        content: ModelViewerSettingsDialogueContent;
                                                                                                        options: ModelViewerSettingsDialogueOptions;
                                                                                                    }
                                                                                                    diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html index 6e24c3137..db4114160 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html @@ -1 +1 @@ -ModelViewerSettingsDialogueContent | universalviewer

                                                                                                    Type alias ModelViewerSettingsDialogueContent

                                                                                                    ModelViewerSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                    Type declaration

                                                                                                      Generated using TypeDoc

                                                                                                      \ No newline at end of file +ModelViewerSettingsDialogueContent | universalviewer

                                                                                                      Type Alias ModelViewerSettingsDialogueContent

                                                                                                      ModelViewerSettingsDialogueContent: SettingsDialogueContent & {}
                                                                                                      diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html index 2d04d3812..7a76004fb 100644 --- a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html @@ -1 +1 @@ -ModelViewerSettingsDialogueOptions | universalviewer

                                                                                                      Type alias ModelViewerSettingsDialogueOptions

                                                                                                      ModelViewerSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                      Type declaration

                                                                                                        Generated using TypeDoc

                                                                                                        \ No newline at end of file +ModelViewerSettingsDialogueOptions | universalviewer

                                                                                                        Type Alias ModelViewerSettingsDialogueOptions

                                                                                                        ModelViewerSettingsDialogueOptions: SettingsDialogueOptions & {}
                                                                                                        diff --git a/docs/types/_internal_.ModelViewerShareDialogue.html b/docs/types/_internal_.ModelViewerShareDialogue.html index 0af0ee9a7..dec9a0512 100644 --- a/docs/types/_internal_.ModelViewerShareDialogue.html +++ b/docs/types/_internal_.ModelViewerShareDialogue.html @@ -1 +1 @@ -ModelViewerShareDialogue | universalviewer

                                                                                                        Type alias ModelViewerShareDialogue

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

                                                                                                        Generated using TypeDoc

                                                                                                        \ No newline at end of file +ModelViewerShareDialogue | universalviewer

                                                                                                        Type Alias ModelViewerShareDialogue

                                                                                                        ModelViewerShareDialogue: ModuleConfig & {
                                                                                                            content: ModelViewerShareDialogueContent;
                                                                                                            options: ModelViewerShareDialogueOptions;
                                                                                                        }
                                                                                                        diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html index 4547101f3..063dd8920 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueContent.html +++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html @@ -1 +1 @@ -ModelViewerShareDialogueContent | universalviewer

                                                                                                        Type alias ModelViewerShareDialogueContent

                                                                                                        ModelViewerShareDialogueContent: ShareDialogueContent & {}

                                                                                                        Type declaration

                                                                                                          Generated using TypeDoc

                                                                                                          \ No newline at end of file +ModelViewerShareDialogueContent | universalviewer

                                                                                                          Type Alias ModelViewerShareDialogueContent

                                                                                                          ModelViewerShareDialogueContent: ShareDialogueContent & {}
                                                                                                          diff --git a/docs/types/_internal_.ModelViewerShareDialogueOptions.html b/docs/types/_internal_.ModelViewerShareDialogueOptions.html index bcdd2c53f..1a9114daa 100644 --- a/docs/types/_internal_.ModelViewerShareDialogueOptions.html +++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html @@ -1 +1 @@ -ModelViewerShareDialogueOptions | universalviewer

                                                                                                          Type alias ModelViewerShareDialogueOptions

                                                                                                          ModelViewerShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                          Type declaration

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file +ModelViewerShareDialogueOptions | universalviewer

                                                                                                            Type Alias ModelViewerShareDialogueOptions

                                                                                                            ModelViewerShareDialogueOptions: ShareDialogueOptions & {}
                                                                                                            diff --git a/docs/types/_internal_.ModuleConfig.html b/docs/types/_internal_.ModuleConfig.html index d84d26bd3..45f00e21a 100644 --- a/docs/types/_internal_.ModuleConfig.html +++ b/docs/types/_internal_.ModuleConfig.html @@ -1 +1 @@ -ModuleConfig | universalviewer
                                                                                                            ModuleConfig: {
                                                                                                                content: ModuleContent;
                                                                                                                options: ModuleOptions;
                                                                                                            }

                                                                                                            Type declaration

                                                                                                            Generated using TypeDoc

                                                                                                            \ No newline at end of file +ModuleConfig | universalviewer
                                                                                                            ModuleConfig: { content: ModuleContent; options: ModuleOptions }
                                                                                                            diff --git a/docs/types/_internal_.ModuleContent.html b/docs/types/_internal_.ModuleContent.html index 9ecfe738d..4d1b7607b 100644 --- a/docs/types/_internal_.ModuleContent.html +++ b/docs/types/_internal_.ModuleContent.html @@ -1 +1 @@ -ModuleContent | universalviewer
                                                                                                            ModuleContent: {}

                                                                                                            Type declaration

                                                                                                              Generated using TypeDoc

                                                                                                              \ No newline at end of file +ModuleContent | universalviewer
                                                                                                              ModuleContent: {}
                                                                                                              diff --git a/docs/types/_internal_.ModuleOptions.html b/docs/types/_internal_.ModuleOptions.html index 79dd494bf..5c3a8eef3 100644 --- a/docs/types/_internal_.ModuleOptions.html +++ b/docs/types/_internal_.ModuleOptions.html @@ -1 +1 @@ -ModuleOptions | universalviewer
                                                                                                              ModuleOptions: {}

                                                                                                              Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +ModuleOptions | universalviewer
                                                                                                                ModuleOptions: {}
                                                                                                                diff --git a/docs/types/_internal_.Modules-1.html b/docs/types/_internal_.Modules-1.html index 2c29650af..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 9f96763cf..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 e9a427777..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 e7a4c0d3c..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 022572d5e..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 96ffc0014..eb2d7188d 100644 --- a/docs/types/_internal_.Modules-6.html +++ b/docs/types/_internal_.Modules-6.html @@ -1 +1 @@ -Modules | universalviewer
                                                                                                                Modules: {
                                                                                                                    contentLeftPanel: ContentLeftPanel;
                                                                                                                    downloadDialogue: OSDDownloadDialogue;
                                                                                                                    mobileFooterPanel: MobileFooterPanel;
                                                                                                                    multiSelectDialogue: MultiSelectDialogue;
                                                                                                                    openSeadragonCenterPanel: OpenSeadragonCenterPanel;
                                                                                                                    pagingHeaderPanel: PagingHeaderPanel;
                                                                                                                    searchFooterPanel: SearchFooterPanel;
                                                                                                                    settingsDialogue: OSDSettingsDialogue;
                                                                                                                    shareDialogue: OSDShareDialogue;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 0b3f76205..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 e47048754..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 1bd96a5f4..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;
                                                                                                                }

                                                                                                                Type declaration

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +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 35fa12b56..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;
                                                                                                                }

                                                                                                                Type declaration

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +MoreInfoRightPanelContent | universalviewer

                                                                                                                Type Alias MoreInfoRightPanelContent

                                                                                                                MoreInfoRightPanelContent: DialogueContent & ExpandPanelContent & {
                                                                                                                    attribution: string;
                                                                                                                    canvasHeader: string;
                                                                                                                    collapse: string;
                                                                                                                    collapseFull: string;
                                                                                                                    copiedToClipboard: string;
                                                                                                                    copyToClipboard: string;
                                                                                                                    description: string;
                                                                                                                    expand: string;
                                                                                                                    expandFull: string;
                                                                                                                    holdingText: string;
                                                                                                                    less: string;
                                                                                                                    license: string;
                                                                                                                    logo: string;
                                                                                                                    manifestHeader: string;
                                                                                                                    more: string;
                                                                                                                    noData: string;
                                                                                                                    page: string;
                                                                                                                    rangeHeader: string;
                                                                                                                    title: string;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.MoreInfoRightPanelOptions.html b/docs/types/_internal_.MoreInfoRightPanelOptions.html index 453b29dd1..dcb08bc28 100644 --- a/docs/types/_internal_.MoreInfoRightPanelOptions.html +++ b/docs/types/_internal_.MoreInfoRightPanelOptions.html @@ -1,11 +1,11 @@ -MoreInfoRightPanelOptions | universalviewer

                                                                                                                Type alias MoreInfoRightPanelOptions

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

                                                                                                                Type declaration

                                                                                                                • canvasDisplayOrder: string

                                                                                                                  Order in which canvases are displayed

                                                                                                                  -
                                                                                                                • canvasExclude: string

                                                                                                                  Canvases to exclude from display

                                                                                                                  -
                                                                                                                • copyToClipboardEnabled: boolean

                                                                                                                  Determines if copying to clipboard is enabled

                                                                                                                  -
                                                                                                                • limitToRange: boolean

                                                                                                                  Determines if download is enabled

                                                                                                                  -
                                                                                                                • manifestDisplayOrder: string

                                                                                                                  Order in which manifests are displayed

                                                                                                                  -
                                                                                                                • manifestExclude: string

                                                                                                                  Manifests to exclude from display

                                                                                                                  -
                                                                                                                • rtlLanguageCodes: string

                                                                                                                  Language codes for right-to-left languages

                                                                                                                  -
                                                                                                                • showAllLanguages: boolean

                                                                                                                  Determines if all languages should be shown

                                                                                                                  -
                                                                                                                • textLimit: number

                                                                                                                  Limit for the text

                                                                                                                  -
                                                                                                                • textLimitType: string

                                                                                                                  Type of the text limit

                                                                                                                  -

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +MoreInfoRightPanelOptions | universalviewer

                                                                                                                Type Alias MoreInfoRightPanelOptions

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

                                                                                                                Type declaration

                                                                                                                • canvasDisplayOrder: string

                                                                                                                  Order in which canvases are displayed

                                                                                                                  +
                                                                                                                • canvasExclude: string

                                                                                                                  Canvases to exclude from display

                                                                                                                  +
                                                                                                                • copyToClipboardEnabled: boolean

                                                                                                                  Determines if copying to clipboard is enabled

                                                                                                                  +
                                                                                                                • limitToRange: boolean

                                                                                                                  Determines if download is enabled

                                                                                                                  +
                                                                                                                • manifestDisplayOrder: string

                                                                                                                  Order in which manifests are displayed

                                                                                                                  +
                                                                                                                • manifestExclude: string

                                                                                                                  Manifests to exclude from display

                                                                                                                  +
                                                                                                                • rtlLanguageCodes: string

                                                                                                                  Language codes for right-to-left languages

                                                                                                                  +
                                                                                                                • showAllLanguages: boolean

                                                                                                                  Determines if all languages should be shown

                                                                                                                  +
                                                                                                                • textLimit: number

                                                                                                                  Limit for the text

                                                                                                                  +
                                                                                                                • textLimitType: string

                                                                                                                  Type of the text limit

                                                                                                                  +
                                                                                                                diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html index e2552568b..7ba1b23ca 100644 --- a/docs/types/_internal_.MultiSelectDialogue.html +++ b/docs/types/_internal_.MultiSelectDialogue.html @@ -1 +1 @@ -MultiSelectDialogue | universalviewer

                                                                                                                Type alias MultiSelectDialogue

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +MultiSelectDialogue | universalviewer

                                                                                                                Type Alias MultiSelectDialogue

                                                                                                                MultiSelectDialogue: ModuleConfig & {
                                                                                                                    content: MultiSelectDialogueContent;
                                                                                                                    options: MultiSelectDialogueOptions;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html index 97d8862ce..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;
                                                                                                                }

                                                                                                                Type declaration

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +MultiSelectDialogueContent | universalviewer

                                                                                                                Type Alias MultiSelectDialogueContent

                                                                                                                MultiSelectDialogueContent: DialogueContent & {
                                                                                                                    select: string;
                                                                                                                    selectAll: string;
                                                                                                                    title: string;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.MultiSelectDialogueOptions.html b/docs/types/_internal_.MultiSelectDialogueOptions.html index 2fa6272ea..61a319e7a 100644 --- a/docs/types/_internal_.MultiSelectDialogueOptions.html +++ b/docs/types/_internal_.MultiSelectDialogueOptions.html @@ -1,7 +1,7 @@ -MultiSelectDialogueOptions | universalviewer

                                                                                                                Type alias MultiSelectDialogueOptions

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

                                                                                                                Type declaration

                                                                                                                • galleryThumbChunkedResizingEnabled: boolean

                                                                                                                  Determines if chunked resizing is enabled for gallery thumbnails

                                                                                                                  -
                                                                                                                • galleryThumbChunkedResizingThreshold: number

                                                                                                                  Threshold for chunked resizing of gallery thumbnails

                                                                                                                  -
                                                                                                                • galleryThumbHeight: number

                                                                                                                  Height of the gallery thumbnail

                                                                                                                  -
                                                                                                                • galleryThumbLoadPadding: number

                                                                                                                  Padding for loading gallery thumbnails

                                                                                                                  -
                                                                                                                • galleryThumbWidth: number

                                                                                                                  Width of the gallery thumbnail

                                                                                                                  -
                                                                                                                • pageModeEnabled: boolean

                                                                                                                  Determines if page mode is enabled

                                                                                                                  -

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +MultiSelectDialogueOptions | universalviewer

                                                                                                                Type Alias MultiSelectDialogueOptions

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

                                                                                                                Type declaration

                                                                                                                • galleryThumbChunkedResizingEnabled: boolean

                                                                                                                  Determines if chunked resizing is enabled for gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbChunkedResizingThreshold: number

                                                                                                                  Threshold for chunked resizing of gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbHeight: number

                                                                                                                  Height of the gallery thumbnail

                                                                                                                  +
                                                                                                                • galleryThumbLoadPadding: number

                                                                                                                  Padding for loading gallery thumbnails

                                                                                                                  +
                                                                                                                • galleryThumbWidth: number

                                                                                                                  Width of the gallery thumbnail

                                                                                                                  +
                                                                                                                • pageModeEnabled: boolean

                                                                                                                  Determines if page mode is enabled

                                                                                                                  +
                                                                                                                diff --git a/docs/types/_internal_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html index 4ced42e17..b1009d1e2 100644 --- a/docs/types/_internal_.OSDDownloadDialogue.html +++ b/docs/types/_internal_.OSDDownloadDialogue.html @@ -1 +1 @@ -OSDDownloadDialogue | universalviewer

                                                                                                                Type alias OSDDownloadDialogue

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +OSDDownloadDialogue | universalviewer

                                                                                                                Type Alias OSDDownloadDialogue

                                                                                                                OSDDownloadDialogue: ModuleConfig & {
                                                                                                                    content: OSDDownloadDialogueContent;
                                                                                                                    options: OSDDownloadDialogueOptions;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html index 6b803d24f..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;
                                                                                                                }

                                                                                                                Type declaration

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +OSDDownloadDialogueContent | universalviewer

                                                                                                                Type Alias OSDDownloadDialogueContent

                                                                                                                OSDDownloadDialogueContent: DownloadDialogueContent & {
                                                                                                                    allPages: string;
                                                                                                                    currentViewAsJpg: string;
                                                                                                                    currentViewAsJpgExplanation: string;
                                                                                                                    download: string;
                                                                                                                    downloadSelection: string;
                                                                                                                    downloadSelectionExplanation: string;
                                                                                                                    editSettings: string;
                                                                                                                    entireDocument: string;
                                                                                                                    entireFileAsOriginal: string;
                                                                                                                    entireFileAsOriginalWithFormat: string;
                                                                                                                    individualPages: string;
                                                                                                                    noneAvailable: string;
                                                                                                                    pagingNote: string;
                                                                                                                    preview: string;
                                                                                                                    selection: string;
                                                                                                                    termsOfUse: string;
                                                                                                                    title: string;
                                                                                                                    wholeImageHighRes: string;
                                                                                                                    wholeImageHighResExplanation: string;
                                                                                                                    wholeImageLowResAsJpg: string;
                                                                                                                    wholeImageLowResAsJpgExplanation: string;
                                                                                                                    wholeImagesHighRes: string;
                                                                                                                    wholeImagesHighResExplanation: string;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.OSDDownloadDialogueOptions.html b/docs/types/_internal_.OSDDownloadDialogueOptions.html index a5ef2f8d7..baede60d5 100644 --- a/docs/types/_internal_.OSDDownloadDialogueOptions.html +++ b/docs/types/_internal_.OSDDownloadDialogueOptions.html @@ -1,9 +1,9 @@ -OSDDownloadDialogueOptions | universalviewer

                                                                                                                Type alias OSDDownloadDialogueOptions

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

                                                                                                                Type declaration

                                                                                                                • confinedImageSize: number

                                                                                                                  Size of the confined image

                                                                                                                  -
                                                                                                                • currentViewDisabledPercentage: number

                                                                                                                  Percentage of the current view that is disabled

                                                                                                                  -
                                                                                                                • downloadCurrentViewEnabled: boolean

                                                                                                                  Determines if download of current view is enabled

                                                                                                                  -
                                                                                                                • downloadWholeImageHighResEnabled: boolean

                                                                                                                  Determines if download of whole image in high resolution is enabled

                                                                                                                  -
                                                                                                                • downloadWholeImageLowResEnabled: boolean

                                                                                                                  Determines if download of whole image in low resolution is enabled

                                                                                                                  -
                                                                                                                • maxImageWidth: number

                                                                                                                  Maximum width of the image

                                                                                                                  -
                                                                                                                • optionsExplanatoryTextEnabled: boolean

                                                                                                                  Determines if explanatory text for options is enabled

                                                                                                                  -
                                                                                                                • selectionEnabled: boolean

                                                                                                                  Determines if selection is enabled

                                                                                                                  -

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +OSDDownloadDialogueOptions | universalviewer

                                                                                                                Type Alias OSDDownloadDialogueOptions

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

                                                                                                                Type declaration

                                                                                                                • confinedImageSize: number

                                                                                                                  Size of the confined image

                                                                                                                  +
                                                                                                                • currentViewDisabledPercentage: number

                                                                                                                  Percentage of the current view that is disabled

                                                                                                                  +
                                                                                                                • downloadCurrentViewEnabled: boolean

                                                                                                                  Determines if download of current view is enabled

                                                                                                                  +
                                                                                                                • downloadWholeImageHighResEnabled: boolean

                                                                                                                  Determines if download of whole image in high resolution is enabled

                                                                                                                  +
                                                                                                                • downloadWholeImageLowResEnabled: boolean

                                                                                                                  Determines if download of whole image in low resolution is enabled

                                                                                                                  +
                                                                                                                • maxImageWidth: number

                                                                                                                  Maximum width of the image

                                                                                                                  +
                                                                                                                • optionsExplanatoryTextEnabled: boolean

                                                                                                                  Determines if explanatory text for options is enabled

                                                                                                                  +
                                                                                                                • selectionEnabled: boolean

                                                                                                                  Determines if selection is enabled

                                                                                                                  +
                                                                                                                diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html index 68ce62294..b1b823a8e 100644 --- a/docs/types/_internal_.OSDSettingsDialogue.html +++ b/docs/types/_internal_.OSDSettingsDialogue.html @@ -1 +1 @@ -OSDSettingsDialogue | universalviewer

                                                                                                                Type alias OSDSettingsDialogue

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

                                                                                                                Generated using TypeDoc

                                                                                                                \ No newline at end of file +OSDSettingsDialogue | universalviewer

                                                                                                                Type Alias OSDSettingsDialogue

                                                                                                                OSDSettingsDialogue: ModuleConfig & {
                                                                                                                    content: OSDSettingsDialogueContent;
                                                                                                                    options: OSDSettingsDialogueOptions;
                                                                                                                }
                                                                                                                diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html index 01dd19819..37f1b9f47 100644 --- a/docs/types/_internal_.OSDSettingsDialogueContent.html +++ b/docs/types/_internal_.OSDSettingsDialogueContent.html @@ -1 +1 @@ -OSDSettingsDialogueContent | universalviewer

                                                                                                                Type alias OSDSettingsDialogueContent

                                                                                                                OSDSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                                Type declaration

                                                                                                                  Generated using TypeDoc

                                                                                                                  \ No newline at end of file +OSDSettingsDialogueContent | universalviewer

                                                                                                                  Type Alias OSDSettingsDialogueContent

                                                                                                                  OSDSettingsDialogueContent: SettingsDialogueContent & {}
                                                                                                                  diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html index 1b2bdedd5..d765dfddc 100644 --- a/docs/types/_internal_.OSDSettingsDialogueOptions.html +++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html @@ -1 +1 @@ -OSDSettingsDialogueOptions | universalviewer

                                                                                                                  Type alias OSDSettingsDialogueOptions

                                                                                                                  OSDSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                                  Type declaration

                                                                                                                    Generated using TypeDoc

                                                                                                                    \ No newline at end of file +OSDSettingsDialogueOptions | universalviewer

                                                                                                                    Type Alias OSDSettingsDialogueOptions

                                                                                                                    OSDSettingsDialogueOptions: SettingsDialogueOptions & {}
                                                                                                                    diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html index 0e0723edf..c9639fc46 100644 --- a/docs/types/_internal_.OSDShareDialogue.html +++ b/docs/types/_internal_.OSDShareDialogue.html @@ -1 +1 @@ -OSDShareDialogue | universalviewer
                                                                                                                    OSDShareDialogue: ModuleConfig & {
                                                                                                                        content: OSDShareDialogueContent;
                                                                                                                        options: OSDShareDialogueOptions;
                                                                                                                    }

                                                                                                                    Type declaration

                                                                                                                    Generated using TypeDoc

                                                                                                                    \ No newline at end of file +OSDShareDialogue | universalviewer
                                                                                                                    OSDShareDialogue: ModuleConfig & {
                                                                                                                        content: OSDShareDialogueContent;
                                                                                                                        options: OSDShareDialogueOptions;
                                                                                                                    }
                                                                                                                    diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html index fde9a3bcf..1f83dbc41 100644 --- a/docs/types/_internal_.OSDShareDialogueContent.html +++ b/docs/types/_internal_.OSDShareDialogueContent.html @@ -1 +1 @@ -OSDShareDialogueContent | universalviewer

                                                                                                                    Type alias OSDShareDialogueContent

                                                                                                                    OSDShareDialogueContent: ShareDialogueContent & {}

                                                                                                                    Type declaration

                                                                                                                      Generated using TypeDoc

                                                                                                                      \ No newline at end of file +OSDShareDialogueContent | universalviewer

                                                                                                                      Type Alias OSDShareDialogueContent

                                                                                                                      OSDShareDialogueContent: ShareDialogueContent & {}
                                                                                                                      diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html index d84d8f328..2641bae06 100644 --- a/docs/types/_internal_.OSDShareDialogueOptions.html +++ b/docs/types/_internal_.OSDShareDialogueOptions.html @@ -1 +1 @@ -OSDShareDialogueOptions | universalviewer

                                                                                                                      Type alias OSDShareDialogueOptions

                                                                                                                      OSDShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                                      Type declaration

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +OSDShareDialogueOptions | universalviewer

                                                                                                                        Type Alias OSDShareDialogueOptions

                                                                                                                        OSDShareDialogueOptions: ShareDialogueOptions & {}
                                                                                                                        diff --git a/docs/types/_internal_.OpenSeadragonCenterPanel.html b/docs/types/_internal_.OpenSeadragonCenterPanel.html index 20847395a..3c8118e22 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanel.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanel.html @@ -1 +1 @@ -OpenSeadragonCenterPanel | universalviewer

                                                                                                                        Type alias OpenSeadragonCenterPanel

                                                                                                                        OpenSeadragonCenterPanel: ModuleConfig & {
                                                                                                                            content: OpenSeadragonCenterPanelContent;
                                                                                                                            options: OpenSeadragonCenterPanelOptions;
                                                                                                                        }

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +OpenSeadragonCenterPanel | universalviewer

                                                                                                                        Type Alias OpenSeadragonCenterPanel

                                                                                                                        OpenSeadragonCenterPanel: ModuleConfig & {
                                                                                                                            content: OpenSeadragonCenterPanelContent;
                                                                                                                            options: OpenSeadragonCenterPanelOptions;
                                                                                                                        }
                                                                                                                        diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html index 654aeb098..853bd60fe 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html @@ -1 +1 @@ -OpenSeadragonCenterPanelContent | universalviewer

                                                                                                                        Type alias OpenSeadragonCenterPanelContent

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

                                                                                                                        Type declaration

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

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +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 5313bd8b5..7e49bf9c2 100644 --- a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html +++ b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html @@ -1,18 +1,20 @@ -OpenSeadragonCenterPanelOptions | universalviewer

                                                                                                                        Type alias OpenSeadragonCenterPanelOptions

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

                                                                                                                        Type declaration

                                                                                                                        • animationTime: number

                                                                                                                          Duration of the animation

                                                                                                                          -
                                                                                                                        • autoHideControls: boolean

                                                                                                                          Determines if controls are hidden automatically

                                                                                                                          -
                                                                                                                        • blendTime: number

                                                                                                                          Time taken to blend images

                                                                                                                          -
                                                                                                                        • constrainDuringPan: boolean

                                                                                                                          Determines if panning is constrained

                                                                                                                          -
                                                                                                                        • controlsFadeAfterInactive: number

                                                                                                                          Time after which controls fade after inactivity

                                                                                                                          -
                                                                                                                        • controlsFadeDelay: number

                                                                                                                          Delay before controls start to fade

                                                                                                                          -
                                                                                                                        • controlsFadeLength: number

                                                                                                                          Duration of controls fade

                                                                                                                          -
                                                                                                                        • defaultZoomLevel: number

                                                                                                                          Default zoom level

                                                                                                                          -
                                                                                                                        • doubleClickAnnotationEnabled: boolean

                                                                                                                          Determines if annotation is enabled

                                                                                                                          -
                                                                                                                        • immediateRender: boolean

                                                                                                                          Determines if rendering is immediate

                                                                                                                          -
                                                                                                                        • maxZoomPixelRatio: number

                                                                                                                          Maximum pixel ratio for zoom

                                                                                                                          -
                                                                                                                        • navigatorPosition: string

                                                                                                                          Position of the navigator

                                                                                                                          -
                                                                                                                        • pageGap: number

                                                                                                                          Gap between pages

                                                                                                                          -
                                                                                                                        • requiredStatementEnabled: boolean

                                                                                                                          Determines if required statement is enabled

                                                                                                                          -
                                                                                                                        • showHomeControl: boolean

                                                                                                                          Determines if home control is shown

                                                                                                                          -
                                                                                                                        • trimAttributionCount: number

                                                                                                                          Number of attributions to trim

                                                                                                                          -
                                                                                                                        • visibilityRatio: number

                                                                                                                          Ratio of visibility

                                                                                                                          -

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +OpenSeadragonCenterPanelOptions | universalviewer

                                                                                                                        Type Alias OpenSeadragonCenterPanelOptions

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

                                                                                                                        Type declaration

                                                                                                                        • animationTime: number

                                                                                                                          Duration of the animation

                                                                                                                          +
                                                                                                                        • autoHideControls: boolean

                                                                                                                          Determines if controls are hidden automatically

                                                                                                                          +
                                                                                                                        • blendTime: number

                                                                                                                          Time taken to blend images

                                                                                                                          +
                                                                                                                        • constrainDuringPan: boolean

                                                                                                                          Determines if panning is constrained

                                                                                                                          +
                                                                                                                        • controlsFadeAfterInactive: number

                                                                                                                          Time after which controls fade after inactivity

                                                                                                                          +
                                                                                                                        • controlsFadeDelay: number

                                                                                                                          Delay before controls start to fade

                                                                                                                          +
                                                                                                                        • controlsFadeLength: number

                                                                                                                          Duration of controls fade

                                                                                                                          +
                                                                                                                        • defaultZoomLevel: number

                                                                                                                          Default zoom level

                                                                                                                          +
                                                                                                                        • doubleClickAnnotationEnabled: boolean

                                                                                                                          Determines if annotation is enabled

                                                                                                                          +
                                                                                                                        • immediateRender: boolean

                                                                                                                          Determines if rendering is immediate

                                                                                                                          +
                                                                                                                        • maxZoomPixelRatio: number

                                                                                                                          Maximum pixel ratio for zoom

                                                                                                                          +
                                                                                                                        • navigatorPosition: string

                                                                                                                          Position of the navigator

                                                                                                                          +
                                                                                                                        • pageGap: number

                                                                                                                          Gap between pages

                                                                                                                          +
                                                                                                                        • requiredStatementEnabled: boolean

                                                                                                                          Determines if required statement is enabled

                                                                                                                          +
                                                                                                                        • showAdjustImageControl: boolean

                                                                                                                          Determines if adjust image control is shown

                                                                                                                          +
                                                                                                                        • showHomeControl: boolean

                                                                                                                          Determines if home control is shown

                                                                                                                          +
                                                                                                                        • 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 0362b2960..666218421 100644 --- a/docs/types/_internal_.Options.html +++ b/docs/types/_internal_.Options.html @@ -1,31 +1,32 @@ -Options | universalviewer
                                                                                                                        Options: {
                                                                                                                            allowStealFocus?: boolean;
                                                                                                                            authAPIVersion: number;
                                                                                                                            bookmarkThumbHeight?: number;
                                                                                                                            bookmarkThumbWidth?: number;
                                                                                                                            clickToZoomEnabled?: boolean;
                                                                                                                            doubleClickAnnotationEnabled?: boolean;
                                                                                                                            dropEnabled?: boolean;
                                                                                                                            footerPanelEnabled?: boolean;
                                                                                                                            headerPanelEnabled?: boolean;
                                                                                                                            leftPanelEnabled?: boolean;
                                                                                                                            limitLocales?: boolean;
                                                                                                                            metrics: Metric[];
                                                                                                                            multiSelectionMimeType: string;
                                                                                                                            navigatorEnabled?: boolean;
                                                                                                                            openTemplate: string;
                                                                                                                            overrideFullScreen: boolean;
                                                                                                                            pagingEnabled?: boolean;
                                                                                                                            pagingOptionEnabled?: boolean;
                                                                                                                            pessimisticAccessControl?: boolean;
                                                                                                                            preserveViewport?: boolean;
                                                                                                                            rightPanelEnabled?: boolean;
                                                                                                                            saveUserSettings?: boolean;
                                                                                                                            searchWithinEnabled?: boolean;
                                                                                                                            seeAlsoEnabled?: boolean;
                                                                                                                            termsOfUseEnabled: boolean;
                                                                                                                            theme: string;
                                                                                                                            tokenStorage: string | StorageType;
                                                                                                                            useArrowKeysToNavigate?: boolean;
                                                                                                                            zoomToBoundsEnabled?: boolean;
                                                                                                                            zoomToSearchResultEnabled?: boolean;
                                                                                                                        }

                                                                                                                        Type declaration

                                                                                                                        • Optional allowStealFocus?: boolean

                                                                                                                          Determines if the focus can be stolen

                                                                                                                          -
                                                                                                                        • authAPIVersion: number

                                                                                                                          Version of the authentication API

                                                                                                                          -
                                                                                                                        • Optional bookmarkThumbHeight?: number

                                                                                                                          Height of the bookmark thumbnail

                                                                                                                          -
                                                                                                                        • Optional bookmarkThumbWidth?: number

                                                                                                                          Width of the bookmark thumbnail

                                                                                                                          -
                                                                                                                        • Optional clickToZoomEnabled?: boolean

                                                                                                                          Determines if click to zoom is enabled

                                                                                                                          -
                                                                                                                        • Optional doubleClickAnnotationEnabled?: boolean

                                                                                                                          Determines if double click annotation is enabled

                                                                                                                          -
                                                                                                                        • Optional dropEnabled?: boolean

                                                                                                                          Determines if drop is enabled

                                                                                                                          -
                                                                                                                        • Optional footerPanelEnabled?: boolean

                                                                                                                          Determines if the footer panel is enabled

                                                                                                                          -
                                                                                                                        • Optional headerPanelEnabled?: boolean

                                                                                                                          Determines if the header panel is enabled

                                                                                                                          -
                                                                                                                        • Optional leftPanelEnabled?: boolean

                                                                                                                          Determines if the left panel is enabled

                                                                                                                          -
                                                                                                                        • Optional limitLocales?: boolean

                                                                                                                          Determines if locales are limited

                                                                                                                          -
                                                                                                                        • metrics: Metric[]

                                                                                                                          Metrics array

                                                                                                                          -
                                                                                                                        • multiSelectionMimeType: string

                                                                                                                          MIME type for multi selection

                                                                                                                          -
                                                                                                                        • Optional navigatorEnabled?: boolean

                                                                                                                          Determines if the navigator is enabled

                                                                                                                          -
                                                                                                                        • openTemplate: string

                                                                                                                          Template for opening

                                                                                                                          -
                                                                                                                        • overrideFullScreen: boolean

                                                                                                                          Determines if full screen is overridden

                                                                                                                          -
                                                                                                                        • Optional pagingEnabled?: boolean

                                                                                                                          Determines if paging is enabled

                                                                                                                          -
                                                                                                                        • Optional pagingOptionEnabled?: boolean

                                                                                                                          Determines if paging option is enabled

                                                                                                                          -
                                                                                                                        • Optional pessimisticAccessControl?: boolean

                                                                                                                          Determines if access control is pessimistic

                                                                                                                          -
                                                                                                                        • Optional preserveViewport?: boolean

                                                                                                                          Determines if viewport is preserved

                                                                                                                          -
                                                                                                                        • Optional rightPanelEnabled?: boolean

                                                                                                                          Determines if the right panel is enabled

                                                                                                                          -
                                                                                                                        • Optional saveUserSettings?: boolean

                                                                                                                          Determines if user settings are saved

                                                                                                                          -
                                                                                                                        • Optional searchWithinEnabled?: boolean

                                                                                                                          Determines if search within is enabled

                                                                                                                          -
                                                                                                                        • Optional seeAlsoEnabled?: boolean

                                                                                                                          Determines if seealso content is enabled

                                                                                                                          -
                                                                                                                        • termsOfUseEnabled: boolean

                                                                                                                          Determines if terms of use are enabled

                                                                                                                          -
                                                                                                                        • theme: string

                                                                                                                          Theme string

                                                                                                                          -
                                                                                                                        • tokenStorage: string | StorageType

                                                                                                                          Storage for tokens

                                                                                                                          -
                                                                                                                        • Optional useArrowKeysToNavigate?: boolean

                                                                                                                          Determines if arrow keys can be used to navigate

                                                                                                                          -
                                                                                                                        • Optional zoomToBoundsEnabled?: boolean

                                                                                                                          Determines if zoom to bounds is enabled

                                                                                                                          -
                                                                                                                        • Optional zoomToSearchResultEnabled?: boolean

                                                                                                                          Determines if zoom to search result is enabled

                                                                                                                          -

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +Options | universalviewer
                                                                                                                        Options: {
                                                                                                                            allowStealFocus?: boolean;
                                                                                                                            authAPIVersion: number;
                                                                                                                            bookmarkThumbHeight?: number;
                                                                                                                            bookmarkThumbWidth?: number;
                                                                                                                            clickToZoomEnabled?: boolean;
                                                                                                                            doubleClickAnnotationEnabled?: boolean;
                                                                                                                            dropEnabled?: boolean;
                                                                                                                            footerPanelEnabled?: boolean;
                                                                                                                            headerPanelEnabled?: boolean;
                                                                                                                            leftPanelEnabled?: boolean;
                                                                                                                            limitLocales?: boolean;
                                                                                                                            metrics: Metric[];
                                                                                                                            multiSelectionMimeType: string;
                                                                                                                            navigatorEnabled?: boolean;
                                                                                                                            openTemplate: string;
                                                                                                                            overrideFullScreen: boolean;
                                                                                                                            pagingEnabled?: boolean;
                                                                                                                            pagingOptionEnabled?: boolean;
                                                                                                                            pessimisticAccessControl?: boolean;
                                                                                                                            preserveViewport?: boolean;
                                                                                                                            reducedAnimation?: boolean;
                                                                                                                            rightPanelEnabled?: boolean;
                                                                                                                            saveUserSettings?: boolean;
                                                                                                                            searchWithinEnabled?: boolean;
                                                                                                                            seeAlsoEnabled?: boolean;
                                                                                                                            termsOfUseEnabled: boolean;
                                                                                                                            theme: string;
                                                                                                                            tokenStorage: string | StorageType;
                                                                                                                            useArrowKeysToNavigate?: boolean;
                                                                                                                            zoomToBoundsEnabled?: boolean;
                                                                                                                            zoomToSearchResultEnabled?: boolean;
                                                                                                                        }

                                                                                                                        Type declaration

                                                                                                                        • OptionalallowStealFocus?: boolean

                                                                                                                          Determines if the focus can be stolen

                                                                                                                          +
                                                                                                                        • authAPIVersion: number

                                                                                                                          Version of the authentication API

                                                                                                                          +
                                                                                                                        • OptionalbookmarkThumbHeight?: number

                                                                                                                          Height of the bookmark thumbnail

                                                                                                                          +
                                                                                                                        • OptionalbookmarkThumbWidth?: number

                                                                                                                          Width of the bookmark thumbnail

                                                                                                                          +
                                                                                                                        • OptionalclickToZoomEnabled?: boolean

                                                                                                                          Determines if click to zoom is enabled

                                                                                                                          +
                                                                                                                        • OptionaldoubleClickAnnotationEnabled?: boolean

                                                                                                                          Determines if double click annotation is enabled

                                                                                                                          +
                                                                                                                        • OptionaldropEnabled?: boolean

                                                                                                                          Determines if drop is enabled

                                                                                                                          +
                                                                                                                        • OptionalfooterPanelEnabled?: boolean

                                                                                                                          Determines if the footer panel is enabled

                                                                                                                          +
                                                                                                                        • OptionalheaderPanelEnabled?: boolean

                                                                                                                          Determines if the header panel is enabled

                                                                                                                          +
                                                                                                                        • OptionalleftPanelEnabled?: boolean

                                                                                                                          Determines if the left panel is enabled

                                                                                                                          +
                                                                                                                        • OptionallimitLocales?: boolean

                                                                                                                          Determines if locales are limited

                                                                                                                          +
                                                                                                                        • metrics: Metric[]

                                                                                                                          Metrics array

                                                                                                                          +
                                                                                                                        • multiSelectionMimeType: string

                                                                                                                          MIME type for multi selection

                                                                                                                          +
                                                                                                                        • OptionalnavigatorEnabled?: boolean

                                                                                                                          Determines if the navigator is enabled

                                                                                                                          +
                                                                                                                        • openTemplate: string

                                                                                                                          Template for opening

                                                                                                                          +
                                                                                                                        • overrideFullScreen: boolean

                                                                                                                          Determines if full screen is overridden

                                                                                                                          +
                                                                                                                        • OptionalpagingEnabled?: boolean

                                                                                                                          Determines if paging is enabled

                                                                                                                          +
                                                                                                                        • OptionalpagingOptionEnabled?: boolean

                                                                                                                          Determines if paging option is enabled

                                                                                                                          +
                                                                                                                        • OptionalpessimisticAccessControl?: boolean

                                                                                                                          Determines if access control is pessimistic

                                                                                                                          +
                                                                                                                        • OptionalpreserveViewport?: boolean

                                                                                                                          Determines if viewport is preserved

                                                                                                                          +
                                                                                                                        • OptionalreducedAnimation?: boolean

                                                                                                                          Controls whether to have animations or not

                                                                                                                          +
                                                                                                                        • OptionalrightPanelEnabled?: boolean

                                                                                                                          Determines if the right panel is enabled

                                                                                                                          +
                                                                                                                        • OptionalsaveUserSettings?: boolean

                                                                                                                          Determines if user settings are saved

                                                                                                                          +
                                                                                                                        • OptionalsearchWithinEnabled?: boolean

                                                                                                                          Determines if search within is enabled

                                                                                                                          +
                                                                                                                        • OptionalseeAlsoEnabled?: boolean

                                                                                                                          Determines if seealso content is enabled

                                                                                                                          +
                                                                                                                        • termsOfUseEnabled: boolean

                                                                                                                          Determines if terms of use are enabled

                                                                                                                          +
                                                                                                                        • theme: string

                                                                                                                          Theme string

                                                                                                                          +
                                                                                                                        • tokenStorage: string | StorageType

                                                                                                                          Storage for tokens

                                                                                                                          +
                                                                                                                        • 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 5da34b552..07d08b64a 100644 --- a/docs/types/_internal_.PDFCenterPanel.html +++ b/docs/types/_internal_.PDFCenterPanel.html @@ -1 +1 @@ -PDFCenterPanel | universalviewer
                                                                                                                        PDFCenterPanel: {
                                                                                                                            content: PDFCenterPanelContent;
                                                                                                                            options: PDFCenterPanelOptions;
                                                                                                                        }

                                                                                                                        Type declaration

                                                                                                                        Generated using TypeDoc

                                                                                                                        \ No newline at end of file +PDFCenterPanel | universalviewer
                                                                                                                        PDFCenterPanel: {
                                                                                                                            content: PDFCenterPanelContent;
                                                                                                                            options: PDFCenterPanelOptions;
                                                                                                                        }
                                                                                                                        diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html index 4c189058c..0afcd2ad5 100644 --- a/docs/types/_internal_.PDFCenterPanelContent.html +++ b/docs/types/_internal_.PDFCenterPanelContent.html @@ -1 +1 @@ -PDFCenterPanelContent | universalviewer

                                                                                                                        Type alias PDFCenterPanelContent

                                                                                                                        PDFCenterPanelContent: CenterPanelContent & {}

                                                                                                                        Type declaration

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file +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 fabf3aa83..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

                                                                                                                            -

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file +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 2667cb783..fe325fe86 100644 --- a/docs/types/_internal_.PDFDownloadDialogue.html +++ b/docs/types/_internal_.PDFDownloadDialogue.html @@ -1 +1 @@ -PDFDownloadDialogue | universalviewer

                                                                                                                          Type alias PDFDownloadDialogue

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

                                                                                                                          Generated using TypeDoc

                                                                                                                          \ No newline at end of file +PDFDownloadDialogue | universalviewer

                                                                                                                          Type Alias PDFDownloadDialogue

                                                                                                                          PDFDownloadDialogue: ModuleConfig & {
                                                                                                                              content: PDFDownloadDialogueContent;
                                                                                                                              options: PDFDownloadDialogueOptions;
                                                                                                                          }
                                                                                                                          diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html index b613a9446..d2a6f13c6 100644 --- a/docs/types/_internal_.PDFDownloadDialogueContent.html +++ b/docs/types/_internal_.PDFDownloadDialogueContent.html @@ -1 +1 @@ -PDFDownloadDialogueContent | universalviewer

                                                                                                                          Type alias PDFDownloadDialogueContent

                                                                                                                          PDFDownloadDialogueContent: DownloadDialogueContent & {}

                                                                                                                          Type declaration

                                                                                                                            Generated using TypeDoc

                                                                                                                            \ No newline at end of file +PDFDownloadDialogueContent | universalviewer

                                                                                                                            Type Alias PDFDownloadDialogueContent

                                                                                                                            PDFDownloadDialogueContent: DownloadDialogueContent & {}
                                                                                                                            diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html index 056b6835a..b57552201 100644 --- a/docs/types/_internal_.PDFDownloadDialogueOptions.html +++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html @@ -1 +1 @@ -PDFDownloadDialogueOptions | universalviewer

                                                                                                                            Type alias PDFDownloadDialogueOptions

                                                                                                                            PDFDownloadDialogueOptions: DownloadDialogueOptions & {}

                                                                                                                            Type declaration

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file +PDFDownloadDialogueOptions | universalviewer

                                                                                                                              Type Alias PDFDownloadDialogueOptions

                                                                                                                              PDFDownloadDialogueOptions: DownloadDialogueOptions & {}
                                                                                                                              diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html index 5b982f529..c5b0aa74f 100644 --- a/docs/types/_internal_.PDFHeaderPanel.html +++ b/docs/types/_internal_.PDFHeaderPanel.html @@ -1 +1 @@ -PDFHeaderPanel | universalviewer
                                                                                                                              PDFHeaderPanel: {
                                                                                                                                  content: PDFHeaderPanelContent;
                                                                                                                                  options: PDFHeaderPanelOptions;
                                                                                                                              }

                                                                                                                              Type declaration

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file +PDFHeaderPanel | universalviewer
                                                                                                                              PDFHeaderPanel: {
                                                                                                                                  content: PDFHeaderPanelContent;
                                                                                                                                  options: PDFHeaderPanelOptions;
                                                                                                                              }
                                                                                                                              diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html index 8887565cd..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;
                                                                                                                              }

                                                                                                                              Type declaration

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

                                                                                                                              Generated using TypeDoc

                                                                                                                              \ No newline at end of file +PDFHeaderPanelContent | universalviewer

                                                                                                                              Type Alias PDFHeaderPanelContent

                                                                                                                              PDFHeaderPanelContent: HeaderPanelContent & {
                                                                                                                                  emptyValue: string;
                                                                                                                                  first: string;
                                                                                                                                  go: string;
                                                                                                                                  last: string;
                                                                                                                                  next: string;
                                                                                                                                  of: string;
                                                                                                                                  pageSearchLabel: string;
                                                                                                                                  previous: string;
                                                                                                                              }
                                                                                                                              diff --git a/docs/types/_internal_.PDFHeaderPanelOptions.html b/docs/types/_internal_.PDFHeaderPanelOptions.html index d0219cd34..b3bcb75ae 100644 --- a/docs/types/_internal_.PDFHeaderPanelOptions.html +++ b/docs/types/_internal_.PDFHeaderPanelOptions.html @@ -1 +1 @@ -PDFHeaderPanelOptions | universalviewer

                                                                                                                              Type alias PDFHeaderPanelOptions

                                                                                                                              PDFHeaderPanelOptions: HeaderPanelOptions & {}

                                                                                                                              Type declaration

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file +PDFHeaderPanelOptions | universalviewer

                                                                                                                                Type Alias PDFHeaderPanelOptions

                                                                                                                                PDFHeaderPanelOptions: HeaderPanelOptions & {}
                                                                                                                                diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html index f955e070f..1c306cd92 100644 --- a/docs/types/_internal_.PDFSettingsDialogue.html +++ b/docs/types/_internal_.PDFSettingsDialogue.html @@ -1 +1 @@ -PDFSettingsDialogue | universalviewer

                                                                                                                                Type alias PDFSettingsDialogue

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

                                                                                                                                Generated using TypeDoc

                                                                                                                                \ No newline at end of file +PDFSettingsDialogue | universalviewer

                                                                                                                                Type Alias PDFSettingsDialogue

                                                                                                                                PDFSettingsDialogue: {
                                                                                                                                    content: PDFSettingsDialogueContent;
                                                                                                                                    options: PDFSettingsDialogueOptions;
                                                                                                                                }
                                                                                                                                diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html index 00981b3c5..a21059d0e 100644 --- a/docs/types/_internal_.PDFSettingsDialogueContent.html +++ b/docs/types/_internal_.PDFSettingsDialogueContent.html @@ -1 +1 @@ -PDFSettingsDialogueContent | universalviewer

                                                                                                                                Type alias PDFSettingsDialogueContent

                                                                                                                                PDFSettingsDialogueContent: SettingsDialogueContent & {}

                                                                                                                                Type declaration

                                                                                                                                  Generated using TypeDoc

                                                                                                                                  \ No newline at end of file +PDFSettingsDialogueContent | universalviewer

                                                                                                                                  Type Alias PDFSettingsDialogueContent

                                                                                                                                  PDFSettingsDialogueContent: SettingsDialogueContent & {}
                                                                                                                                  diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html index 248197a4b..c54c86e96 100644 --- a/docs/types/_internal_.PDFSettingsDialogueOptions.html +++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html @@ -1 +1 @@ -PDFSettingsDialogueOptions | universalviewer

                                                                                                                                  Type alias PDFSettingsDialogueOptions

                                                                                                                                  PDFSettingsDialogueOptions: SettingsDialogueOptions & {}

                                                                                                                                  Type declaration

                                                                                                                                    Generated using TypeDoc

                                                                                                                                    \ No newline at end of file +PDFSettingsDialogueOptions | universalviewer

                                                                                                                                    Type Alias PDFSettingsDialogueOptions

                                                                                                                                    PDFSettingsDialogueOptions: SettingsDialogueOptions & {}
                                                                                                                                    diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html index 911713d15..e7c5f6e52 100644 --- a/docs/types/_internal_.PDFShareDialogue.html +++ b/docs/types/_internal_.PDFShareDialogue.html @@ -1 +1 @@ -PDFShareDialogue | universalviewer
                                                                                                                                    PDFShareDialogue: ModuleConfig & {
                                                                                                                                        content: PDFShareDialogueContent;
                                                                                                                                        options: PDFShareDialogueOptions;
                                                                                                                                    }

                                                                                                                                    Type declaration

                                                                                                                                    Generated using TypeDoc

                                                                                                                                    \ No newline at end of file +PDFShareDialogue | universalviewer
                                                                                                                                    PDFShareDialogue: ModuleConfig & {
                                                                                                                                        content: PDFShareDialogueContent;
                                                                                                                                        options: PDFShareDialogueOptions;
                                                                                                                                    }
                                                                                                                                    diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html index e5dedf049..b1ae253cc 100644 --- a/docs/types/_internal_.PDFShareDialogueContent.html +++ b/docs/types/_internal_.PDFShareDialogueContent.html @@ -1 +1 @@ -PDFShareDialogueContent | universalviewer

                                                                                                                                    Type alias PDFShareDialogueContent

                                                                                                                                    PDFShareDialogueContent: ShareDialogueContent & {}

                                                                                                                                    Type declaration

                                                                                                                                      Generated using TypeDoc

                                                                                                                                      \ No newline at end of file +PDFShareDialogueContent | universalviewer

                                                                                                                                      Type Alias PDFShareDialogueContent

                                                                                                                                      PDFShareDialogueContent: ShareDialogueContent & {}
                                                                                                                                      diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html index 847b24e7b..a4ff7e302 100644 --- a/docs/types/_internal_.PDFShareDialogueOptions.html +++ b/docs/types/_internal_.PDFShareDialogueOptions.html @@ -1 +1 @@ -PDFShareDialogueOptions | universalviewer

                                                                                                                                      Type alias PDFShareDialogueOptions

                                                                                                                                      PDFShareDialogueOptions: ShareDialogueOptions & {}

                                                                                                                                      Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +PDFShareDialogueOptions | universalviewer

                                                                                                                                        Type Alias PDFShareDialogueOptions

                                                                                                                                        PDFShareDialogueOptions: ShareDialogueOptions & {}
                                                                                                                                        diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html index 3637505a0..ffd13b56a 100644 --- a/docs/types/_internal_.PagingHeaderPanel.html +++ b/docs/types/_internal_.PagingHeaderPanel.html @@ -1 +1 @@ -PagingHeaderPanel | universalviewer

                                                                                                                                        Type alias PagingHeaderPanel

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

                                                                                                                                        Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +PagingHeaderPanel | universalviewer

                                                                                                                                        Type Alias PagingHeaderPanel

                                                                                                                                        PagingHeaderPanel: ModuleConfig & {
                                                                                                                                            content: PagingHeaderPanelContent;
                                                                                                                                            options: PagingHeaderPanelOptions;
                                                                                                                                        }
                                                                                                                                        diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html index e5ebc79f6..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;
                                                                                                                                        }

                                                                                                                                        Type declaration

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

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +PagingHeaderPanelContent | universalviewer

                                                                                                                                        Type Alias PagingHeaderPanelContent

                                                                                                                                        PagingHeaderPanelContent: HeaderPanelContent & {
                                                                                                                                            emptyValue: string;
                                                                                                                                            first: string;
                                                                                                                                            firstImage: string;
                                                                                                                                            firstPage: string;
                                                                                                                                            folio: string;
                                                                                                                                            gallery: string;
                                                                                                                                            go: string;
                                                                                                                                            help: string;
                                                                                                                                            image: string;
                                                                                                                                            last: string;
                                                                                                                                            lastImage: string;
                                                                                                                                            lastPage: string;
                                                                                                                                            next: string;
                                                                                                                                            nextImage: string;
                                                                                                                                            nextPage: string;
                                                                                                                                            of: string;
                                                                                                                                            oneUp: string;
                                                                                                                                            page: string;
                                                                                                                                            pageSearchLabel: string;
                                                                                                                                            previous: string;
                                                                                                                                            previousImage: string;
                                                                                                                                            previousPage: string;
                                                                                                                                            twoUp: string;
                                                                                                                                        }
                                                                                                                                        diff --git a/docs/types/_internal_.PagingHeaderPanelOptions.html b/docs/types/_internal_.PagingHeaderPanelOptions.html index 5de6f3bbe..c2129ad74 100644 --- a/docs/types/_internal_.PagingHeaderPanelOptions.html +++ b/docs/types/_internal_.PagingHeaderPanelOptions.html @@ -1,9 +1,9 @@ -PagingHeaderPanelOptions | universalviewer

                                                                                                                                        Type alias PagingHeaderPanelOptions

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

                                                                                                                                        Type declaration

                                                                                                                                        • autoCompleteBoxEnabled: boolean

                                                                                                                                          Determines if autocomplete box is enabled

                                                                                                                                          -
                                                                                                                                        • autocompleteAllowWords: boolean

                                                                                                                                          Determines if autocomplete for words is allowed

                                                                                                                                          -
                                                                                                                                        • galleryButtonEnabled: boolean

                                                                                                                                          Determines if gallery button is enabled

                                                                                                                                          -
                                                                                                                                        • helpEnabled: boolean

                                                                                                                                          Determines if help is enabled

                                                                                                                                          -
                                                                                                                                        • imageSelectionBoxEnabled: boolean

                                                                                                                                          Determines if image selection box is enabled

                                                                                                                                          -
                                                                                                                                        • modeOptionsEnabled: boolean

                                                                                                                                          Determines if mode options is enabled

                                                                                                                                          -
                                                                                                                                        • pageModeEnabled: boolean

                                                                                                                                          Determines if page mode is enabled

                                                                                                                                          -
                                                                                                                                        • pagingToggleEnabled: boolean

                                                                                                                                          Determines if paging toggle is enabled

                                                                                                                                          -

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +PagingHeaderPanelOptions | universalviewer

                                                                                                                                        Type Alias PagingHeaderPanelOptions

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

                                                                                                                                        Type declaration

                                                                                                                                        • autocompleteAllowWords: boolean

                                                                                                                                          Determines if autocomplete for words is allowed

                                                                                                                                          +
                                                                                                                                        • autoCompleteBoxEnabled: boolean

                                                                                                                                          Determines if autocomplete box is enabled

                                                                                                                                          +
                                                                                                                                        • galleryButtonEnabled: boolean

                                                                                                                                          Determines if gallery button is enabled

                                                                                                                                          +
                                                                                                                                        • helpEnabled: boolean

                                                                                                                                          Determines if help is enabled

                                                                                                                                          +
                                                                                                                                        • imageSelectionBoxEnabled: boolean

                                                                                                                                          Determines if image selection box is enabled

                                                                                                                                          +
                                                                                                                                        • modeOptionsEnabled: boolean

                                                                                                                                          Determines if mode options is enabled

                                                                                                                                          +
                                                                                                                                        • pageModeEnabled: boolean

                                                                                                                                          Determines if page mode is enabled

                                                                                                                                          +
                                                                                                                                        • pagingToggleEnabled: boolean

                                                                                                                                          Determines if paging toggle is enabled

                                                                                                                                          +
                                                                                                                                        diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html index 25b89e55c..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;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +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 78a5930a0..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;
                                                                                                                                        }

                                                                                                                                        Type declaration

                                                                                                                                        • cancel: string

                                                                                                                                        Generated using TypeDoc

                                                                                                                                        \ No newline at end of file +RestrictedDialogueContent | universalviewer

                                                                                                                                        Type Alias RestrictedDialogueContent

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

                                                                                                                                        Type alias RestrictedDialogueOptions

                                                                                                                                        RestrictedDialogueOptions: DialogueOptions & {}

                                                                                                                                        Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +RestrictedDialogueOptions | universalviewer

                                                                                                                                          Type Alias RestrictedDialogueOptions

                                                                                                                                          RestrictedDialogueOptions: DialogueOptions & {}
                                                                                                                                          diff --git a/docs/types/_internal_.SearchFooterPanel.html b/docs/types/_internal_.SearchFooterPanel.html index 4650d688b..80707fb67 100644 --- a/docs/types/_internal_.SearchFooterPanel.html +++ b/docs/types/_internal_.SearchFooterPanel.html @@ -1 +1 @@ -SearchFooterPanel | universalviewer

                                                                                                                                          Type alias SearchFooterPanel

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

                                                                                                                                          Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SearchFooterPanel | universalviewer

                                                                                                                                          Type Alias SearchFooterPanel

                                                                                                                                          SearchFooterPanel: ModuleConfig & {
                                                                                                                                              content: SearchFooterPanelContent;
                                                                                                                                              options: SearchFooterPanelOptions;
                                                                                                                                          }
                                                                                                                                          diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html index 27bcd4d82..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;
                                                                                                                                          }

                                                                                                                                          Type declaration

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

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SearchFooterPanelContent | universalviewer

                                                                                                                                          Type Alias SearchFooterPanelContent

                                                                                                                                          SearchFooterPanelContent: FooterPanelContent & {
                                                                                                                                              clearSearch: string;
                                                                                                                                              defaultLabel: string;
                                                                                                                                              displaying: string;
                                                                                                                                              enterKeyword: string;
                                                                                                                                              image: string;
                                                                                                                                              imageCaps: string;
                                                                                                                                              instanceFound: string;
                                                                                                                                              instancesFound: string;
                                                                                                                                              nextResult: string;
                                                                                                                                              page: string;
                                                                                                                                              pageCaps: string;
                                                                                                                                              previousResult: string;
                                                                                                                                              print: string;
                                                                                                                                              resultFoundFor: string;
                                                                                                                                              resultsFoundFor: string;
                                                                                                                                              searchWithin: string;
                                                                                                                                          }
                                                                                                                                          diff --git a/docs/types/_internal_.SearchFooterPanelOptions.html b/docs/types/_internal_.SearchFooterPanelOptions.html index f8c326c4e..056af9aac 100644 --- a/docs/types/_internal_.SearchFooterPanelOptions.html +++ b/docs/types/_internal_.SearchFooterPanelOptions.html @@ -1,7 +1,7 @@ -SearchFooterPanelOptions | universalviewer

                                                                                                                                          Type alias SearchFooterPanelOptions

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

                                                                                                                                          Type declaration

                                                                                                                                          • autocompleteAllowWords: boolean

                                                                                                                                            Determines if autocomplete for words is allowed

                                                                                                                                            -
                                                                                                                                          • elideDetailsTermsCount: number

                                                                                                                                            Number of terms to elide in details

                                                                                                                                            -
                                                                                                                                          • elideResultsTermsCount: number

                                                                                                                                            Number of terms to elide in results

                                                                                                                                            -
                                                                                                                                          • forceImageMode: boolean

                                                                                                                                            Determines if image mode is forced

                                                                                                                                            -
                                                                                                                                          • pageModeEnabled: boolean

                                                                                                                                            Determines if page mode is enabled

                                                                                                                                            -
                                                                                                                                          • positionMarkerEnabled: boolean

                                                                                                                                            Determines if position marker is enabled

                                                                                                                                            -

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SearchFooterPanelOptions | universalviewer

                                                                                                                                          Type Alias SearchFooterPanelOptions

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

                                                                                                                                          Type declaration

                                                                                                                                          • autocompleteAllowWords: boolean

                                                                                                                                            Determines if autocomplete for words is allowed

                                                                                                                                            +
                                                                                                                                          • elideDetailsTermsCount: number

                                                                                                                                            Number of terms to elide in details

                                                                                                                                            +
                                                                                                                                          • elideResultsTermsCount: number

                                                                                                                                            Number of terms to elide in results

                                                                                                                                            +
                                                                                                                                          • forceImageMode: boolean

                                                                                                                                            Determines if image mode is forced

                                                                                                                                            +
                                                                                                                                          • pageModeEnabled: boolean

                                                                                                                                            Determines if page mode is enabled

                                                                                                                                            +
                                                                                                                                          • positionMarkerEnabled: boolean

                                                                                                                                            Determines if position marker is enabled

                                                                                                                                            +
                                                                                                                                          diff --git a/docs/types/_internal_.SettingsDialogue.html b/docs/types/_internal_.SettingsDialogue.html index 3374e594a..5ff758433 100644 --- a/docs/types/_internal_.SettingsDialogue.html +++ b/docs/types/_internal_.SettingsDialogue.html @@ -1 +1 @@ -SettingsDialogue | universalviewer
                                                                                                                                          SettingsDialogue: ModuleConfig & {
                                                                                                                                              content: SettingsDialogueContent;
                                                                                                                                              options: SettingsDialogueOptions;
                                                                                                                                          }

                                                                                                                                          Type declaration

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SettingsDialogue | universalviewer
                                                                                                                                          SettingsDialogue: ModuleConfig & {
                                                                                                                                              content: SettingsDialogueContent;
                                                                                                                                              options: SettingsDialogueOptions;
                                                                                                                                          }
                                                                                                                                          diff --git a/docs/types/_internal_.SettingsDialogueContent.html b/docs/types/_internal_.SettingsDialogueContent.html index c854c6517..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;
                                                                                                                                              website: string;
                                                                                                                                          }

                                                                                                                                          Type declaration

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

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SettingsDialogueContent | universalviewer

                                                                                                                                          Type Alias SettingsDialogueContent

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

                                                                                                                                          Type alias SettingsDialogueOptions

                                                                                                                                          SettingsDialogueOptions: DialogueOptions & {}

                                                                                                                                          Type declaration

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file +SettingsDialogueOptions | universalviewer

                                                                                                                                            Type Alias SettingsDialogueOptions

                                                                                                                                            SettingsDialogueOptions: DialogueOptions & {}
                                                                                                                                            diff --git a/docs/types/_internal_.ShareDialogue.html b/docs/types/_internal_.ShareDialogue.html index 47e050cb1..95f24d584 100644 --- a/docs/types/_internal_.ShareDialogue.html +++ b/docs/types/_internal_.ShareDialogue.html @@ -1 +1 @@ -ShareDialogue | universalviewer
                                                                                                                                            ShareDialogue: ModuleConfig & {
                                                                                                                                                content: ShareDialogueContent;
                                                                                                                                                options: ShareDialogueOptions;
                                                                                                                                            }

                                                                                                                                            Type declaration

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file +ShareDialogue | universalviewer
                                                                                                                                            ShareDialogue: ModuleConfig & {
                                                                                                                                                content: ShareDialogueContent;
                                                                                                                                                options: ShareDialogueOptions;
                                                                                                                                            }
                                                                                                                                            diff --git a/docs/types/_internal_.ShareDialogueContent.html b/docs/types/_internal_.ShareDialogueContent.html index 3561a4a93..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;
                                                                                                                                            }

                                                                                                                                            Type declaration

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

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file +ShareDialogueContent | universalviewer

                                                                                                                                            Type Alias ShareDialogueContent

                                                                                                                                            ShareDialogueContent: DialogueContent & {
                                                                                                                                                customSize: string;
                                                                                                                                                embed: string;
                                                                                                                                                embedInstructions: string;
                                                                                                                                                height: string;
                                                                                                                                                iiif: string;
                                                                                                                                                share: string;
                                                                                                                                                shareInstructions: string;
                                                                                                                                                shareUrl: string;
                                                                                                                                                size: string;
                                                                                                                                                width: string;
                                                                                                                                            }
                                                                                                                                            diff --git a/docs/types/_internal_.ShareDialogueOptions.html b/docs/types/_internal_.ShareDialogueOptions.html index 2f258f0a7..5380664aa 100644 --- a/docs/types/_internal_.ShareDialogueOptions.html +++ b/docs/types/_internal_.ShareDialogueOptions.html @@ -1,7 +1,7 @@ -ShareDialogueOptions | universalviewer

                                                                                                                                            Type alias ShareDialogueOptions

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

                                                                                                                                            Type declaration

                                                                                                                                            • embedEnabled: boolean

                                                                                                                                              Determines if embed is enabled

                                                                                                                                              -
                                                                                                                                            • embedTemplate: string

                                                                                                                                              Template for embedding

                                                                                                                                              -
                                                                                                                                            • instructionsEnabled: boolean

                                                                                                                                              Determines if instructions are enabled

                                                                                                                                              -
                                                                                                                                            • shareEnabled: boolean

                                                                                                                                              Determines if sharing is enabled

                                                                                                                                              -
                                                                                                                                            • shareFrameEnabled: boolean

                                                                                                                                              Determines if sharing frame is enabled

                                                                                                                                              -
                                                                                                                                            • shareManifestsEnabled: boolean

                                                                                                                                              Determines if sharing manifests is enabled

                                                                                                                                              -

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file +ShareDialogueOptions | universalviewer

                                                                                                                                            Type Alias ShareDialogueOptions

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

                                                                                                                                            Type declaration

                                                                                                                                            • embedEnabled: boolean

                                                                                                                                              Determines if embed is enabled

                                                                                                                                              +
                                                                                                                                            • embedTemplate: string

                                                                                                                                              Template for embedding

                                                                                                                                              +
                                                                                                                                            • instructionsEnabled: boolean

                                                                                                                                              Determines if instructions are enabled

                                                                                                                                              +
                                                                                                                                            • shareEnabled: boolean

                                                                                                                                              Determines if sharing is enabled

                                                                                                                                              +
                                                                                                                                            • shareFrameEnabled: boolean

                                                                                                                                              Determines if sharing frame is enabled

                                                                                                                                              +
                                                                                                                                            • shareManifestsEnabled: boolean

                                                                                                                                              Determines if sharing manifests is enabled

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

                                                                                                                                              -

                                                                                                                                            Generated using TypeDoc

                                                                                                                                            \ No newline at end of file +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

                                                                                                                                              +
                                                                                                                                            diff --git a/package-lock.json b/package-lock.json index e524edadc..c49ffff0a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -73,8 +73,8 @@ "ts-jest": "^29", "ts-loader": "^9.5.1", "tslint-config-prettier": "^1.18.0", - "typedoc": "^0.25.4", - "typedoc-plugin-missing-exports": "^2.1.0", + "typedoc": "^0.27.2", + "typedoc-plugin-missing-exports": "^3.1.0", "typescript": "^5", "typescript-tslint-plugin": "^1.0.2", "url-loader": "4.1.1", @@ -1147,6 +1147,17 @@ "node": ">=18" } }, + "node_modules/@gerrit0/mini-shiki": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.24.1.tgz", + "integrity": "sha512-PNP/Gjv3VqU7z7DjRgO3F9Ok5frTKqtpV+LJW1RzMcr2zpRk0ulhEWnbcNGXzPC7BZyWMIHrkfQX2GZRfxrn6Q==", + "dev": true, + "dependencies": { + "@shikijs/engine-oniguruma": "^1.24.0", + "@shikijs/types": "^1.24.0", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, "node_modules/@google/model-viewer": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.1.tgz", @@ -3175,6 +3186,32 @@ "node": ">=12" } }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.0.tgz", + "integrity": "sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==", + "dev": true, + "dependencies": { + "@shikijs/types": "1.24.0", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, + "node_modules/@shikijs/types": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.0.tgz", + "integrity": "sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==", + "dev": true, + "dependencies": { + "@shikijs/vscode-textmate": "^9.3.0", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz", + "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==", + "dev": true + }, "node_modules/@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -3436,6 +3473,15 @@ "@types/node": "*" } }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "dependencies": { + "@types/unist": "*" + } + }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", @@ -3679,6 +3725,12 @@ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true + }, "node_modules/@types/ws": { "version": "8.5.12", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", @@ -4187,12 +4239,6 @@ "ansi-html": "bin/ansi-html" } }, - "node_modules/ansi-sequence-parser": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz", - "integrity": "sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==", - "dev": true - }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -11735,12 +11781,6 @@ "node": ">=6" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -11972,6 +12012,15 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "dependencies": { + "uc.micro": "^2.0.0" + } + }, "node_modules/lit": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/lit/-/lit-2.5.0.tgz", @@ -12199,18 +12248,29 @@ "node": ">=0.10.0" } }, - "node_modules/marked": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", - "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", "dev": true, - "bin": { - "marked": "bin/marked.js" + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" }, - "engines": { - "node": ">= 12" + "bin": { + "markdown-it": "bin/markdown-it.mjs" } }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, "node_modules/marks-pane": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/marks-pane/-/marks-pane-1.0.9.tgz", @@ -12231,6 +12291,12 @@ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true + }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -14128,6 +14194,15 @@ "node": ">=6" } }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/puppeteer": { "version": "23.6.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.6.0.tgz", @@ -15531,18 +15606,6 @@ "license": "MIT", "optional": true }, - "node_modules/shiki": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.5.tgz", - "integrity": "sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==", - "dev": true, - "dependencies": { - "ansi-sequence-parser": "^1.1.0", - "jsonc-parser": "^3.2.0", - "vscode-oniguruma": "^1.7.0", - "vscode-textmate": "^8.0.0" - } - }, "node_modules/side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -17086,33 +17149,36 @@ } }, "node_modules/typedoc": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.4.tgz", - "integrity": "sha512-Du9ImmpBCw54bX275yJrxPVnjdIyJO/84co0/L9mwe0R3G4FSR6rQ09AlXVRvZEGMUg09+z/usc8mgygQ1aidA==", + "version": "0.27.4", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.4.tgz", + "integrity": "sha512-wXPQs1AYC2Crk+1XFpNuutLIkNWleokZf1UNf/X8w9KsMnirkvT+LzxTXDvfF6ug3TSLf3Xu5ZXRKGfoXPX7IA==", "dev": true, + "license": "Apache-2.0", "dependencies": { + "@gerrit0/mini-shiki": "^1.24.0", "lunr": "^2.3.9", - "marked": "^4.3.0", - "minimatch": "^9.0.3", - "shiki": "^0.14.1" + "markdown-it": "^14.1.0", + "minimatch": "^9.0.5", + "yaml": "^2.6.1" }, "bin": { "typedoc": "bin/typedoc" }, "engines": { - "node": ">= 16" + "node": ">= 18" }, "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x" + "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x" } }, "node_modules/typedoc-plugin-missing-exports": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-2.1.0.tgz", - "integrity": "sha512-+1DhqZCEu7Vu5APnrqpPwl31D+hXpt1fV0Le9ycCRL1eLVdatdl6KVt4SEVwPxnEpKwgOn2dNX6I9+0F1aO2aA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-3.1.0.tgz", + "integrity": "sha512-Sogbaj+qDa21NjB3SlIw4JXSwmcl/WOjwiPNaVEcPhpNG/MiRTtpwV81cT7h1cbu9StpONFPbddYWR0KV/fTWA==", "dev": true, + "license": "MIT", "peerDependencies": { - "typedoc": "0.24.x || 0.25.x" + "typedoc": "0.26.x || 0.27.x" } }, "node_modules/typedoc/node_modules/brace-expansion": { @@ -17125,9 +17191,9 @@ } }, "node_modules/typedoc/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "dependencies": { "brace-expansion": "^2.0.1" @@ -17165,6 +17231,12 @@ "vscode-languageserver": "^5.2.1" } }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true + }, "node_modules/unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", @@ -17582,18 +17654,6 @@ "integrity": "sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A==", "dev": true }, - "node_modules/vscode-oniguruma": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", - "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==", - "dev": true - }, - "node_modules/vscode-textmate": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", - "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==", - "dev": true - }, "node_modules/vscode-uri": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz", @@ -18492,6 +18552,18 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "optional": true }, + "node_modules/yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "dev": true, + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", @@ -19208,6 +19280,17 @@ "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==", "optional": true }, + "@gerrit0/mini-shiki": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.24.1.tgz", + "integrity": "sha512-PNP/Gjv3VqU7z7DjRgO3F9Ok5frTKqtpV+LJW1RzMcr2zpRk0ulhEWnbcNGXzPC7BZyWMIHrkfQX2GZRfxrn6Q==", + "dev": true, + "requires": { + "@shikijs/engine-oniguruma": "^1.24.0", + "@shikijs/types": "^1.24.0", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, "@google/model-viewer": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.1.tgz", @@ -20738,6 +20821,32 @@ } } }, + "@shikijs/engine-oniguruma": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.0.tgz", + "integrity": "sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==", + "dev": true, + "requires": { + "@shikijs/types": "1.24.0", + "@shikijs/vscode-textmate": "^9.3.0" + } + }, + "@shikijs/types": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.0.tgz", + "integrity": "sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==", + "dev": true, + "requires": { + "@shikijs/vscode-textmate": "^9.3.0", + "@types/hast": "^3.0.4" + } + }, + "@shikijs/vscode-textmate": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz", + "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==", + "dev": true + }, "@sideway/address": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", @@ -20973,6 +21082,15 @@ "@types/node": "*" } }, + "@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "requires": { + "@types/unist": "*" + } + }, "@types/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", @@ -21198,6 +21316,12 @@ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" }, + "@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true + }, "@types/ws": { "version": "8.5.12", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz", @@ -21616,12 +21740,6 @@ "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true }, - "ansi-sequence-parser": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz", - "integrity": "sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==", - "dev": true - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -27190,12 +27308,6 @@ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -27366,6 +27478,15 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, + "linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "requires": { + "uc.micro": "^2.0.0" + } + }, "lit": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/lit/-/lit-2.5.0.tgz", @@ -27560,11 +27681,27 @@ "object-visit": "^1.0.0" } }, - "marked": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", - "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", - "dev": true + "markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, + "requires": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + } + } }, "marks-pane": { "version": "1.0.9", @@ -27586,6 +27723,12 @@ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" }, + "mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -28986,6 +29129,12 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, + "punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true + }, "puppeteer": { "version": "23.6.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.6.0.tgz", @@ -29994,18 +30143,6 @@ "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", "optional": true }, - "shiki": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.5.tgz", - "integrity": "sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==", - "dev": true, - "requires": { - "ansi-sequence-parser": "^1.1.0", - "jsonc-parser": "^3.2.0", - "vscode-oniguruma": "^1.7.0", - "vscode-textmate": "^8.0.0" - } - }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", @@ -31119,15 +31256,16 @@ } }, "typedoc": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.4.tgz", - "integrity": "sha512-Du9ImmpBCw54bX275yJrxPVnjdIyJO/84co0/L9mwe0R3G4FSR6rQ09AlXVRvZEGMUg09+z/usc8mgygQ1aidA==", + "version": "0.27.4", + "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.4.tgz", + "integrity": "sha512-wXPQs1AYC2Crk+1XFpNuutLIkNWleokZf1UNf/X8w9KsMnirkvT+LzxTXDvfF6ug3TSLf3Xu5ZXRKGfoXPX7IA==", "dev": true, "requires": { + "@gerrit0/mini-shiki": "^1.24.0", "lunr": "^2.3.9", - "marked": "^4.3.0", - "minimatch": "^9.0.3", - "shiki": "^0.14.1" + "markdown-it": "^14.1.0", + "minimatch": "^9.0.5", + "yaml": "^2.6.1" }, "dependencies": { "brace-expansion": { @@ -31140,9 +31278,9 @@ } }, "minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "requires": { "brace-expansion": "^2.0.1" @@ -31151,9 +31289,9 @@ } }, "typedoc-plugin-missing-exports": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-2.1.0.tgz", - "integrity": "sha512-+1DhqZCEu7Vu5APnrqpPwl31D+hXpt1fV0Le9ycCRL1eLVdatdl6KVt4SEVwPxnEpKwgOn2dNX6I9+0F1aO2aA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-3.1.0.tgz", + "integrity": "sha512-Sogbaj+qDa21NjB3SlIw4JXSwmcl/WOjwiPNaVEcPhpNG/MiRTtpwV81cT7h1cbu9StpONFPbddYWR0KV/fTWA==", "dev": true }, "typescript": { @@ -31173,6 +31311,12 @@ "vscode-languageserver": "^5.2.1" } }, + "uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true + }, "unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", @@ -31474,18 +31618,6 @@ "integrity": "sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A==", "dev": true }, - "vscode-oniguruma": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", - "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==", - "dev": true - }, - "vscode-textmate": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", - "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==", - "dev": true - }, "vscode-uri": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz", @@ -32098,6 +32230,12 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "optional": true }, + "yaml": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz", + "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==", + "dev": true + }, "yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", diff --git a/package.json b/package.json index 042028869..6ed695c58 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", + "docs": "typedoc --plugin typedoc-plugin-missing-exports --gitRevision dev", "test": "jest", "prepublishOnly": "npm run build && npm run build-tsc && npm run build-es" }, @@ -72,8 +72,8 @@ "ts-jest": "^29", "ts-loader": "^9.5.1", "tslint-config-prettier": "^1.18.0", - "typedoc": "^0.25.4", - "typedoc-plugin-missing-exports": "^2.1.0", + "typedoc": "^0.27.2", + "typedoc-plugin-missing-exports": "^3.1.0", "typescript": "^5", "typescript-tslint-plugin": "^1.0.2", "url-loader": "4.1.1",