diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 59407a5c6..000000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -docs.universalviewer.io \ No newline at end of file diff --git a/docs/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..499bc2840 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: #4d7fff; + --light-color-ts-property: #ff984d; + --light-color-ts-method: #ff4db8; + --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: #ff4d4d; + --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: #4d7fff; + --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: #ff4d4d; + --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..d8b050388 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..a367795a7 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..1104dd002 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..eb6fe29aa 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..c1dfd44c9 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..4f26e080d 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..e6885d5ff 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..32c500f45 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..ba50ccb60 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..494f189e7 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..3b3cff9b7 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..23d25838e 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..214cbc4de 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..c4d95eb53 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..71be56414 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..9f51e994e --- /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..3f85662fe --- /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..f2b90f1e8 --- /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..f1b5fd9c3 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..cabaa5e9b 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..405718e38 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..682b028d6 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..e0a464154 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..d33da78fa 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..9c4204110 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..eeb7031ba 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..570f61827 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..cd0e16d74 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..26611d22d 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..d9dc9645d 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..85335d79f 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..59cdd5419 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..4f707c3d9 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..39fd88b4b 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..8ac9ee232 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..60d3f3255 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..99b772b75 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..4af2700ba 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..e925002d2 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..1514052bb 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..9c69942e7 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..ccea0a6c3 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..06c1c017c 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..73b59310b 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..a0445cadd 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..2e0eb05e2 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..8f2cc502a 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..38f765cb4 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..01ce8f76e 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..e83c7e91e 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..75a764b2c 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..71fd5801a 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..c5d92b6e3 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..9a28b5eb2 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..a21baaa21 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..e81bb2717 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..2d881eb1e 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..06d5c52a4 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..eda633150 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..0b1695a0d 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..1d54ff014 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..cc2f48ddd 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..5565d5b3e 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..a1fac3cea 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..c53d23c89 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..f5357f9b5 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..fd557080d 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..8ba959883 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..140a4aba2 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..3296c3718 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..c4192005c 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..76012e530 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..c10a650c0 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..e0e85afaa 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..9e6b789cb 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..6e1969132 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..d24759dcc 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..a6b23b240 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..c14bb2c12 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..1104340a1 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..e8356694d 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..61e77f5e0 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..357d051ff 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..7249598f4 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..c0243fbc7 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..ec99553a5 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..7c82a11e1 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..3d10d7e9d 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..08a1d04f6 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..fcd197c73 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..d6eb188a8 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..f164f052c 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..05d8ce62e 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..f7c926bf8 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..08f9d6ce2 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..07acec637 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..40a992854 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..b4a3d32fe 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..4396f7094 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..ca345daa4 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..a0d224c93 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..cc50134c0 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..ce806caa7 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..83a481b07 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..86e88f22e 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..c2288af4d 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..41a09439b 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..a2ef5529a 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..330c01d29 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..01e0ad110 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..ce7306ac3 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..ef1c5cb95 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..38c49c44c 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..a4145ee6a 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..768aabcdf 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..6d3ee208e 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..1405efafe 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..e8a593577 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..6fc072d8c 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..e69bce8f3 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..da13049c5 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..c02c984e1 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..0ed73a9e7 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..351ff3fba 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..c7c39847c 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..c609c47fa 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..000a59951 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..7d7a8f04e 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..0344af82e 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..59088ae07 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..cc942609b 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..7f82df225 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..18085781d 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..130842388 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..d4c1c8da4 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..7e503fa77 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..69e901e22 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..1e0c168c4 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..d26c9e466 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..37ffa022d 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..ff4e11f18 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..d34fdc6b3 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..f5c7870c4 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..caf487647 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..9a2147f31 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..d23496fb7 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..a271e85da 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..12a86b65e 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..b1bc491cb 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..aa4d82cee 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..ba4866743 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..f2c723e2b 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..e8e25b9f4 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..ecd996200 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..ad6ab2345 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..ea5b36222 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..b93cde17f 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..17065dd53 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..44589c15a 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..d6eda1e24 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..cdd4dafa8 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..86bc8953a 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..9f6233bcd 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..d3d0945f7 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;
                                                                                                                            next: string;
                                                                                                                            previous: string;
                                                                                                                            rotateRight: string;
                                                                                                                            zoomIn: string;
                                                                                                                            zoomOut: string;
                                                                                                                        }
                                                                                                                        diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html index 5313bd8b5..20d538661 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..eb6cbba5a 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..817e603c9 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..522c8518a 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..06e263bce 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..f2dc1609f 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..175b5d194 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..b86f8d8b7 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..90e670181 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..71809a445 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..0537b4710 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..fecf3fbab 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..ddb9e49c0 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..93db004ee 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..d72f68e45 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..6c0775c57 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..9b332b06e 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..7d457dff9 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..bf3f65457 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..d90e0de1d 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..5f1addeb6 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..adfc96377 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..512251e87 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..09b53bcd5 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..43aacbdaa 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..eead94ba5 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..b3eebfe57 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..c8401e81a 100644 --- a/docs/types/_internal_.SettingsDialogueContent.html +++ b/docs/types/_internal_.SettingsDialogueContent.html @@ -1 +1 @@ -SettingsDialogueContent | universalviewer

                                                                                                                                          Type alias SettingsDialogueContent

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

                                                                                                                                          Type declaration

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

                                                                                                                                          Generated using TypeDoc

                                                                                                                                          \ No newline at end of file +SettingsDialogueContent | universalviewer

                                                                                                                                          Type Alias SettingsDialogueContent

                                                                                                                                          SettingsDialogueContent: DialogueContent & {
                                                                                                                                              clickToZoomEnabled: string;
                                                                                                                                              locale: string;
                                                                                                                                              navigatorEnabled: string;
                                                                                                                                              pagingEnabled: string;
                                                                                                                                              preserveViewport: string;
                                                                                                                                              reducedMotion: string;
                                                                                                                                              title: string;
                                                                                                                                              website: string;
                                                                                                                                          }
                                                                                                                                          diff --git a/docs/types/_internal_.SettingsDialogueOptions.html b/docs/types/_internal_.SettingsDialogueOptions.html index 9999da25b..38fa25095 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..1c4266e84 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..37c3bc6fa 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..3ae195221 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..8e5f37439 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 6c9ad9c49..ed916d264 100644 --- a/package-lock.json +++ b/package-lock.json @@ -74,7 +74,7 @@ "ts-loader": "^9.5.1", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.27.2", - "typedoc-plugin-missing-exports": "^2.1.0", + "typedoc-plugin-missing-exports": "^3.1.0", "typescript": "^5", "typescript-tslint-plugin": "^1.0.2", "url-loader": "4.1.1", @@ -17202,12 +17202,13 @@ } }, "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": { @@ -31354,9 +31355,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": { diff --git a/package.json b/package.json index d4c82a9f0..fcc41fb71 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "ts-loader": "^9.5.1", "tslint-config-prettier": "^1.18.0", "typedoc": "^0.27.2", - "typedoc-plugin-missing-exports": "^2.1.0", + "typedoc-plugin-missing-exports": "^3.1.0", "typescript": "^5", "typescript-tslint-plugin": "^1.0.2", "url-loader": "4.1.1",