diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml
new file mode 100644
index 000000000..8ace79929
--- /dev/null
+++ b/.github/workflows/update-docs.yml
@@ -0,0 +1,32 @@
+name: Update Documentation
+
+on: [push, pull_request]
+
+jobs:
+ lint:
+ name: Lint
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Setup Node
+ uses: actions/setup-node@v4
+ with:
+ node-version: '18'
+
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Install npm dependencies
+ run: npm install
+
+ - name: Build documentation
+ run: npm run docs
+
+ - name: Regenerate CNAME file
+ run: echo docs.universalviewer.io > docs/CNAME
+
+ - name: Auto-commit fixes
+ uses: EndBug/add-and-commit@v9
+ with:
+ default_author: github_actions
+ add: "['docs/']"
diff --git a/docs/CNAME b/docs/CNAME
index 59407a5c6..c2ab4ea18 100644
--- a/docs/CNAME
+++ b/docs/CNAME
@@ -1 +1 @@
-docs.universalviewer.io
\ No newline at end of file
+docs.universalviewer.io
diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css
index a2f1712d8..5674cf392 100644
--- a/docs/assets/highlight.css
+++ b/docs/assets/highlight.css
@@ -1,36 +1,22 @@
:root {
- --light-hl-0: #001080;
- --dark-hl-0: #9CDCFE;
- --light-hl-1: #000000;
- --dark-hl-1: #D4D4D4;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
@media (prefers-color-scheme: light) { :root {
- --hl-0: var(--light-hl-0);
- --hl-1: var(--light-hl-1);
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: dark) { :root {
- --hl-0: var(--dark-hl-0);
- --hl-1: var(--dark-hl-1);
--code-background: var(--dark-code-background);
} }
:root[data-theme='light'] {
- --hl-0: var(--light-hl-0);
- --hl-1: var(--light-hl-1);
--code-background: var(--light-code-background);
}
:root[data-theme='dark'] {
- --hl-0: var(--dark-hl-0);
- --hl-1: var(--dark-hl-1);
--code-background: var(--dark-code-background);
}
-.hl-0 { color: var(--hl-0); }
-.hl-1 { color: var(--hl-1); }
pre, code { background: var(--code-background); }
diff --git a/docs/assets/icons.svg b/docs/assets/icons.svg
new file mode 100644
index 000000000..50ad5799d
--- /dev/null
+++ b/docs/assets/icons.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/docs/assets/style.css b/docs/assets/style.css
index 07a385b73..7f80f3dc2 100644
--- a/docs/assets/style.css
+++ b/docs/assets/style.css
@@ -1,87 +1,247 @@
-:root {
- /* Light */
- --light-color-background: #f2f4f8;
- --light-color-background-secondary: #eff0f1;
- --light-color-warning-text: #222;
- --light-color-background-warning: #e6e600;
- --light-color-icon-background: var(--light-color-background);
- --light-color-accent: #c5c7c9;
- --light-color-active-menu-item: var(--light-color-accent);
- --light-color-text: #222;
- --light-color-text-aside: #6e6e6e;
- --light-color-link: #1f70c2;
-
- --light-color-ts-keyword: #056bd6;
- --light-color-ts-project: #b111c9;
- --light-color-ts-module: var(--light-color-ts-project);
- --light-color-ts-namespace: var(--light-color-ts-project);
- --light-color-ts-enum: #7e6f15;
- --light-color-ts-enum-member: var(--light-color-ts-enum);
- --light-color-ts-variable: #4760ec;
- --light-color-ts-function: #572be7;
- --light-color-ts-class: #1f70c2;
- --light-color-ts-interface: #108024;
- --light-color-ts-constructor: var(--light-color-ts-class);
- --light-color-ts-property: var(--light-color-ts-variable);
- --light-color-ts-method: var(--light-color-ts-function);
- --light-color-ts-call-signature: var(--light-color-ts-method);
- --light-color-ts-index-signature: var(--light-color-ts-property);
- --light-color-ts-constructor-signature: var(--light-color-ts-constructor);
- --light-color-ts-parameter: var(--light-color-ts-variable);
- /* type literal not included as links will never be generated to it */
- --light-color-ts-type-parameter: var(--light-color-ts-type-alias);
- --light-color-ts-accessor: var(--light-color-ts-property);
- --light-color-ts-get-signature: var(--light-color-ts-accessor);
- --light-color-ts-set-signature: var(--light-color-ts-accessor);
- --light-color-ts-type-alias: #d51270;
- /* reference not included as links will be colored with the kind that it points to */
-
- --light-external-icon: url("data:image/svg+xml;utf8,");
- --light-color-scheme: light;
-
- /* Dark */
- --dark-color-background: #2b2e33;
- --dark-color-background-secondary: #1e2024;
- --dark-color-background-warning: #bebe00;
- --dark-color-warning-text: #222;
- --dark-color-icon-background: var(--dark-color-background-secondary);
- --dark-color-accent: #9096a2;
- --dark-color-active-menu-item: #5d5d6a;
- --dark-color-text: #f5f5f5;
- --dark-color-text-aside: #dddddd;
- --dark-color-link: #00aff4;
-
- --dark-color-ts-keyword: #3399ff;
- --dark-color-ts-project: #e358ff;
- --dark-color-ts-module: var(--dark-color-ts-project);
- --dark-color-ts-namespace: var(--dark-color-ts-project);
- --dark-color-ts-enum: #f4d93e;
- --dark-color-ts-enum-member: var(--dark-color-ts-enum);
- --dark-color-ts-variable: #798dff;
- --dark-color-ts-function: #a280ff;
- --dark-color-ts-class: #8ac4ff;
- --dark-color-ts-interface: #6cff87;
- --dark-color-ts-constructor: var(--dark-color-ts-class);
- --dark-color-ts-property: var(--dark-color-ts-variable);
- --dark-color-ts-method: var(--dark-color-ts-function);
- --dark-color-ts-call-signature: var(--dark-color-ts-method);
- --dark-color-ts-index-signature: var(--dark-color-ts-property);
- --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
- --dark-color-ts-parameter: var(--dark-color-ts-variable);
- /* type literal not included as links will never be generated to it */
- --dark-color-ts-type-parameter: var(--dark-color-ts-type-alias);
- --dark-color-ts-accessor: var(--dark-color-ts-property);
- --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
- --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
- --dark-color-ts-type-alias: #ff6492;
- /* reference not included as links will be colored with the kind that it points to */
-
- --dark-external-icon: url("data:image/svg+xml;utf8,");
- --dark-color-scheme: dark;
-}
-
-@media (prefers-color-scheme: light) {
+@layer typedoc {
:root {
+ /* Light */
+ --light-color-background: #f2f4f8;
+ --light-color-background-secondary: #eff0f1;
+ --light-color-warning-text: #222;
+ --light-color-background-warning: #e6e600;
+ --light-color-accent: #c5c7c9;
+ --light-color-active-menu-item: var(--light-color-accent);
+ --light-color-text: #222;
+ --light-color-text-aside: #6e6e6e;
+
+ --light-color-icon-background: var(--light-color-background);
+ --light-color-icon-text: var(--light-color-text);
+
+ --light-color-comment-tag-text: var(--light-color-text);
+ --light-color-comment-tag: var(--light-color-background);
+
+ --light-color-link: #1f70c2;
+ --light-color-focus-outline: #3584e4;
+
+ --light-color-ts-keyword: #056bd6;
+ --light-color-ts-project: #b111c9;
+ --light-color-ts-module: var(--light-color-ts-project);
+ --light-color-ts-namespace: var(--light-color-ts-project);
+ --light-color-ts-enum: #7e6f15;
+ --light-color-ts-enum-member: var(--light-color-ts-enum);
+ --light-color-ts-variable: #4760ec;
+ --light-color-ts-function: #572be7;
+ --light-color-ts-class: #1f70c2;
+ --light-color-ts-interface: #108024;
+ --light-color-ts-constructor: var(--light-color-ts-class);
+ --light-color-ts-property: #9f5f30;
+ --light-color-ts-method: #be3989;
+ --light-color-ts-reference: #ff4d82;
+ --light-color-ts-call-signature: var(--light-color-ts-method);
+ --light-color-ts-index-signature: var(--light-color-ts-property);
+ --light-color-ts-constructor-signature: var(
+ --light-color-ts-constructor
+ );
+ --light-color-ts-parameter: var(--light-color-ts-variable);
+ /* type literal not included as links will never be generated to it */
+ --light-color-ts-type-parameter: #a55c0e;
+ --light-color-ts-accessor: #c73c3c;
+ --light-color-ts-get-signature: var(--light-color-ts-accessor);
+ --light-color-ts-set-signature: var(--light-color-ts-accessor);
+ --light-color-ts-type-alias: #d51270;
+ /* reference not included as links will be colored with the kind that it points to */
+ --light-color-document: #000000;
+
+ --light-color-alert-note: #0969d9;
+ --light-color-alert-tip: #1a7f37;
+ --light-color-alert-important: #8250df;
+ --light-color-alert-warning: #9a6700;
+ --light-color-alert-caution: #cf222e;
+
+ --light-external-icon: url("data:image/svg+xml;utf8,");
+ --light-color-scheme: light;
+
+ /* Dark */
+ --dark-color-background: #2b2e33;
+ --dark-color-background-secondary: #1e2024;
+ --dark-color-background-warning: #bebe00;
+ --dark-color-warning-text: #222;
+ --dark-color-accent: #9096a2;
+ --dark-color-active-menu-item: #5d5d6a;
+ --dark-color-text: #f5f5f5;
+ --dark-color-text-aside: #dddddd;
+
+ --dark-color-icon-background: var(--dark-color-background-secondary);
+ --dark-color-icon-text: var(--dark-color-text);
+
+ --dark-color-comment-tag-text: var(--dark-color-text);
+ --dark-color-comment-tag: var(--dark-color-background);
+
+ --dark-color-link: #00aff4;
+ --dark-color-focus-outline: #4c97f2;
+
+ --dark-color-ts-keyword: #3399ff;
+ --dark-color-ts-project: #e358ff;
+ --dark-color-ts-module: var(--dark-color-ts-project);
+ --dark-color-ts-namespace: var(--dark-color-ts-project);
+ --dark-color-ts-enum: #f4d93e;
+ --dark-color-ts-enum-member: var(--dark-color-ts-enum);
+ --dark-color-ts-variable: #798dff;
+ --dark-color-ts-function: #a280ff;
+ --dark-color-ts-class: #8ac4ff;
+ --dark-color-ts-interface: #6cff87;
+ --dark-color-ts-constructor: var(--dark-color-ts-class);
+ --dark-color-ts-property: #ff984d;
+ --dark-color-ts-method: #ff4db8;
+ --dark-color-ts-reference: #ff4d82;
+ --dark-color-ts-call-signature: var(--dark-color-ts-method);
+ --dark-color-ts-index-signature: var(--dark-color-ts-property);
+ --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor);
+ --dark-color-ts-parameter: var(--dark-color-ts-variable);
+ /* type literal not included as links will never be generated to it */
+ --dark-color-ts-type-parameter: #e07d13;
+ --dark-color-ts-accessor: #ff6060;
+ --dark-color-ts-get-signature: var(--dark-color-ts-accessor);
+ --dark-color-ts-set-signature: var(--dark-color-ts-accessor);
+ --dark-color-ts-type-alias: #ff6492;
+ /* reference not included as links will be colored with the kind that it points to */
+ --dark-color-document: #ffffff;
+
+ --dark-color-alert-note: #0969d9;
+ --dark-color-alert-tip: #1a7f37;
+ --dark-color-alert-important: #8250df;
+ --dark-color-alert-warning: #9a6700;
+ --dark-color-alert-caution: #cf222e;
+
+ --dark-external-icon: url("data:image/svg+xml;utf8,");
+ --dark-color-scheme: dark;
+ }
+
+ @media (prefers-color-scheme: light) {
+ :root {
+ --color-background: var(--light-color-background);
+ --color-background-secondary: var(
+ --light-color-background-secondary
+ );
+ --color-background-warning: var(--light-color-background-warning);
+ --color-warning-text: var(--light-color-warning-text);
+ --color-accent: var(--light-color-accent);
+ --color-active-menu-item: var(--light-color-active-menu-item);
+ --color-text: var(--light-color-text);
+ --color-text-aside: var(--light-color-text-aside);
+
+ --color-icon-background: var(--light-color-icon-background);
+ --color-icon-text: var(--light-color-icon-text);
+
+ --color-comment-tag-text: var(--light-color-text);
+ --color-comment-tag: var(--light-color-background);
+
+ --color-link: var(--light-color-link);
+ --color-focus-outline: var(--light-color-focus-outline);
+
+ --color-ts-keyword: var(--light-color-ts-keyword);
+ --color-ts-project: var(--light-color-ts-project);
+ --color-ts-module: var(--light-color-ts-module);
+ --color-ts-namespace: var(--light-color-ts-namespace);
+ --color-ts-enum: var(--light-color-ts-enum);
+ --color-ts-enum-member: var(--light-color-ts-enum-member);
+ --color-ts-variable: var(--light-color-ts-variable);
+ --color-ts-function: var(--light-color-ts-function);
+ --color-ts-class: var(--light-color-ts-class);
+ --color-ts-interface: var(--light-color-ts-interface);
+ --color-ts-constructor: var(--light-color-ts-constructor);
+ --color-ts-property: var(--light-color-ts-property);
+ --color-ts-method: var(--light-color-ts-method);
+ --color-ts-reference: var(--light-color-ts-reference);
+ --color-ts-call-signature: var(--light-color-ts-call-signature);
+ --color-ts-index-signature: var(--light-color-ts-index-signature);
+ --color-ts-constructor-signature: var(
+ --light-color-ts-constructor-signature
+ );
+ --color-ts-parameter: var(--light-color-ts-parameter);
+ --color-ts-type-parameter: var(--light-color-ts-type-parameter);
+ --color-ts-accessor: var(--light-color-ts-accessor);
+ --color-ts-get-signature: var(--light-color-ts-get-signature);
+ --color-ts-set-signature: var(--light-color-ts-set-signature);
+ --color-ts-type-alias: var(--light-color-ts-type-alias);
+ --color-document: var(--light-color-document);
+
+ --color-alert-note: var(--light-color-alert-note);
+ --color-alert-tip: var(--light-color-alert-tip);
+ --color-alert-important: var(--light-color-alert-important);
+ --color-alert-warning: var(--light-color-alert-warning);
+ --color-alert-caution: var(--light-color-alert-caution);
+
+ --external-icon: var(--light-external-icon);
+ --color-scheme: var(--light-color-scheme);
+ }
+ }
+
+ @media (prefers-color-scheme: dark) {
+ :root {
+ --color-background: var(--dark-color-background);
+ --color-background-secondary: var(
+ --dark-color-background-secondary
+ );
+ --color-background-warning: var(--dark-color-background-warning);
+ --color-warning-text: var(--dark-color-warning-text);
+ --color-accent: var(--dark-color-accent);
+ --color-active-menu-item: var(--dark-color-active-menu-item);
+ --color-text: var(--dark-color-text);
+ --color-text-aside: var(--dark-color-text-aside);
+
+ --color-icon-background: var(--dark-color-icon-background);
+ --color-icon-text: var(--dark-color-icon-text);
+
+ --color-comment-tag-text: var(--dark-color-text);
+ --color-comment-tag: var(--dark-color-background);
+
+ --color-link: var(--dark-color-link);
+ --color-focus-outline: var(--dark-color-focus-outline);
+
+ --color-ts-keyword: var(--dark-color-ts-keyword);
+ --color-ts-project: var(--dark-color-ts-project);
+ --color-ts-module: var(--dark-color-ts-module);
+ --color-ts-namespace: var(--dark-color-ts-namespace);
+ --color-ts-enum: var(--dark-color-ts-enum);
+ --color-ts-enum-member: var(--dark-color-ts-enum-member);
+ --color-ts-variable: var(--dark-color-ts-variable);
+ --color-ts-function: var(--dark-color-ts-function);
+ --color-ts-class: var(--dark-color-ts-class);
+ --color-ts-interface: var(--dark-color-ts-interface);
+ --color-ts-constructor: var(--dark-color-ts-constructor);
+ --color-ts-property: var(--dark-color-ts-property);
+ --color-ts-method: var(--dark-color-ts-method);
+ --color-ts-reference: var(--dark-color-ts-reference);
+ --color-ts-call-signature: var(--dark-color-ts-call-signature);
+ --color-ts-index-signature: var(--dark-color-ts-index-signature);
+ --color-ts-constructor-signature: var(
+ --dark-color-ts-constructor-signature
+ );
+ --color-ts-parameter: var(--dark-color-ts-parameter);
+ --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
+ --color-ts-accessor: var(--dark-color-ts-accessor);
+ --color-ts-get-signature: var(--dark-color-ts-get-signature);
+ --color-ts-set-signature: var(--dark-color-ts-set-signature);
+ --color-ts-type-alias: var(--dark-color-ts-type-alias);
+ --color-document: var(--dark-color-document);
+
+ --color-alert-note: var(--dark-color-alert-note);
+ --color-alert-tip: var(--dark-color-alert-tip);
+ --color-alert-important: var(--dark-color-alert-important);
+ --color-alert-warning: var(--dark-color-alert-warning);
+ --color-alert-caution: var(--dark-color-alert-caution);
+
+ --external-icon: var(--dark-external-icon);
+ --color-scheme: var(--dark-color-scheme);
+ }
+ }
+
+ html {
+ color-scheme: var(--color-scheme);
+ }
+
+ body {
+ margin: 0;
+ }
+
+ :root[data-theme="light"] {
--color-background: var(--light-color-background);
--color-background-secondary: var(--light-color-background-secondary);
--color-background-warning: var(--light-color-background-warning);
@@ -91,9 +251,16 @@
--color-active-menu-item: var(--light-color-active-menu-item);
--color-text: var(--light-color-text);
--color-text-aside: var(--light-color-text-aside);
+ --color-icon-text: var(--light-color-icon-text);
+
+ --color-comment-tag-text: var(--light-color-text);
+ --color-comment-tag: var(--light-color-background);
+
--color-link: var(--light-color-link);
+ --color-focus-outline: var(--light-color-focus-outline);
--color-ts-keyword: var(--light-color-ts-keyword);
+ --color-ts-project: var(--light-color-ts-project);
--color-ts-module: var(--light-color-ts-module);
--color-ts-namespace: var(--light-color-ts-namespace);
--color-ts-enum: var(--light-color-ts-enum);
@@ -105,6 +272,7 @@
--color-ts-constructor: var(--light-color-ts-constructor);
--color-ts-property: var(--light-color-ts-property);
--color-ts-method: var(--light-color-ts-method);
+ --color-ts-reference: var(--light-color-ts-reference);
--color-ts-call-signature: var(--light-color-ts-call-signature);
--color-ts-index-signature: var(--light-color-ts-index-signature);
--color-ts-constructor-signature: var(
@@ -116,14 +284,19 @@
--color-ts-get-signature: var(--light-color-ts-get-signature);
--color-ts-set-signature: var(--light-color-ts-set-signature);
--color-ts-type-alias: var(--light-color-ts-type-alias);
+ --color-document: var(--light-color-document);
+
+ --color-note: var(--light-color-note);
+ --color-tip: var(--light-color-tip);
+ --color-important: var(--light-color-important);
+ --color-warning: var(--light-color-warning);
+ --color-caution: var(--light-color-caution);
--external-icon: var(--light-external-icon);
--color-scheme: var(--light-color-scheme);
}
-}
-@media (prefers-color-scheme: dark) {
- :root {
+ :root[data-theme="dark"] {
--color-background: var(--dark-color-background);
--color-background-secondary: var(--dark-color-background-secondary);
--color-background-warning: var(--dark-color-background-warning);
@@ -133,9 +306,16 @@
--color-active-menu-item: var(--dark-color-active-menu-item);
--color-text: var(--dark-color-text);
--color-text-aside: var(--dark-color-text-aside);
+ --color-icon-text: var(--dark-color-icon-text);
+
+ --color-comment-tag-text: var(--dark-color-text);
+ --color-comment-tag: var(--dark-color-background);
+
--color-link: var(--dark-color-link);
+ --color-focus-outline: var(--dark-color-focus-outline);
--color-ts-keyword: var(--dark-color-ts-keyword);
+ --color-ts-project: var(--dark-color-ts-project);
--color-ts-module: var(--dark-color-ts-module);
--color-ts-namespace: var(--dark-color-ts-namespace);
--color-ts-enum: var(--dark-color-ts-enum);
@@ -147,6 +327,7 @@
--color-ts-constructor: var(--dark-color-ts-constructor);
--color-ts-property: var(--dark-color-ts-property);
--color-ts-method: var(--dark-color-ts-method);
+ --color-ts-reference: var(--dark-color-ts-reference);
--color-ts-call-signature: var(--dark-color-ts-call-signature);
--color-ts-index-signature: var(--dark-color-ts-index-signature);
--color-ts-constructor-signature: var(
@@ -158,1237 +339,1272 @@
--color-ts-get-signature: var(--dark-color-ts-get-signature);
--color-ts-set-signature: var(--dark-color-ts-set-signature);
--color-ts-type-alias: var(--dark-color-ts-type-alias);
+ --color-document: var(--dark-color-document);
+
+ --color-note: var(--dark-color-note);
+ --color-tip: var(--dark-color-tip);
+ --color-important: var(--dark-color-important);
+ --color-warning: var(--dark-color-warning);
+ --color-caution: var(--dark-color-caution);
--external-icon: var(--dark-external-icon);
--color-scheme: var(--dark-color-scheme);
}
-}
-
-html {
- color-scheme: var(--color-scheme);
-}
-body {
- margin: 0;
-}
-
-:root[data-theme="light"] {
- --color-background: var(--light-color-background);
- --color-background-secondary: var(--light-color-background-secondary);
- --color-background-warning: var(--light-color-background-warning);
- --color-warning-text: var(--light-color-warning-text);
- --color-icon-background: var(--light-color-icon-background);
- --color-accent: var(--light-color-accent);
- --color-active-menu-item: var(--light-color-active-menu-item);
- --color-text: var(--light-color-text);
- --color-text-aside: var(--light-color-text-aside);
- --color-link: var(--light-color-link);
-
- --color-ts-keyword: var(--light-color-ts-keyword);
- --color-ts-module: var(--light-color-ts-module);
- --color-ts-namespace: var(--light-color-ts-namespace);
- --color-ts-enum: var(--light-color-ts-enum);
- --color-ts-enum-member: var(--light-color-ts-enum-member);
- --color-ts-variable: var(--light-color-ts-variable);
- --color-ts-function: var(--light-color-ts-function);
- --color-ts-class: var(--light-color-ts-class);
- --color-ts-interface: var(--light-color-ts-interface);
- --color-ts-constructor: var(--light-color-ts-constructor);
- --color-ts-property: var(--light-color-ts-property);
- --color-ts-method: var(--light-color-ts-method);
- --color-ts-call-signature: var(--light-color-ts-call-signature);
- --color-ts-index-signature: var(--light-color-ts-index-signature);
- --color-ts-constructor-signature: var(
- --light-color-ts-constructor-signature
- );
- --color-ts-parameter: var(--light-color-ts-parameter);
- --color-ts-type-parameter: var(--light-color-ts-type-parameter);
- --color-ts-accessor: var(--light-color-ts-accessor);
- --color-ts-get-signature: var(--light-color-ts-get-signature);
- --color-ts-set-signature: var(--light-color-ts-set-signature);
- --color-ts-type-alias: var(--light-color-ts-type-alias);
-
- --external-icon: var(--light-external-icon);
- --color-scheme: var(--light-color-scheme);
-}
-
-:root[data-theme="dark"] {
- --color-background: var(--dark-color-background);
- --color-background-secondary: var(--dark-color-background-secondary);
- --color-background-warning: var(--dark-color-background-warning);
- --color-warning-text: var(--dark-color-warning-text);
- --color-icon-background: var(--dark-color-icon-background);
- --color-accent: var(--dark-color-accent);
- --color-active-menu-item: var(--dark-color-active-menu-item);
- --color-text: var(--dark-color-text);
- --color-text-aside: var(--dark-color-text-aside);
- --color-link: var(--dark-color-link);
-
- --color-ts-keyword: var(--dark-color-ts-keyword);
- --color-ts-module: var(--dark-color-ts-module);
- --color-ts-namespace: var(--dark-color-ts-namespace);
- --color-ts-enum: var(--dark-color-ts-enum);
- --color-ts-enum-member: var(--dark-color-ts-enum-member);
- --color-ts-variable: var(--dark-color-ts-variable);
- --color-ts-function: var(--dark-color-ts-function);
- --color-ts-class: var(--dark-color-ts-class);
- --color-ts-interface: var(--dark-color-ts-interface);
- --color-ts-constructor: var(--dark-color-ts-constructor);
- --color-ts-property: var(--dark-color-ts-property);
- --color-ts-method: var(--dark-color-ts-method);
- --color-ts-call-signature: var(--dark-color-ts-call-signature);
- --color-ts-index-signature: var(--dark-color-ts-index-signature);
- --color-ts-constructor-signature: var(
- --dark-color-ts-constructor-signature
- );
- --color-ts-parameter: var(--dark-color-ts-parameter);
- --color-ts-type-parameter: var(--dark-color-ts-type-parameter);
- --color-ts-accessor: var(--dark-color-ts-accessor);
- --color-ts-get-signature: var(--dark-color-ts-get-signature);
- --color-ts-set-signature: var(--dark-color-ts-set-signature);
- --color-ts-type-alias: var(--dark-color-ts-type-alias);
-
- --external-icon: var(--dark-external-icon);
- --color-scheme: var(--dark-color-scheme);
-}
+ *:focus-visible,
+ .tsd-accordion-summary:focus-visible svg {
+ outline: 2px solid var(--color-focus-outline);
+ }
-.always-visible,
-.always-visible .tsd-signatures {
- display: inherit !important;
-}
+ .always-visible,
+ .always-visible .tsd-signatures {
+ display: inherit !important;
+ }
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- line-height: 1.2;
-}
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6 {
+ line-height: 1.2;
+ }
-h1 > a,
-h2 > a,
-h3 > a,
-h4 > a,
-h5 > a,
-h6 > a {
- text-decoration: none;
- color: var(--color-text);
-}
+ h1 {
+ font-size: 1.875rem;
+ margin: 0.67rem 0;
+ }
-h1 {
- font-size: 1.875rem;
- margin: 0.67rem 0;
-}
+ h2 {
+ font-size: 1.5rem;
+ margin: 0.83rem 0;
+ }
-h2 {
- font-size: 1.5rem;
- margin: 0.83rem 0;
-}
+ h3 {
+ font-size: 1.25rem;
+ margin: 1rem 0;
+ }
-h3 {
- font-size: 1.25rem;
- margin: 1rem 0;
-}
+ h4 {
+ font-size: 1.05rem;
+ margin: 1.33rem 0;
+ }
-h4 {
- font-size: 1.05rem;
- margin: 1.33rem 0;
-}
+ h5 {
+ font-size: 1rem;
+ margin: 1.5rem 0;
+ }
-h5 {
- font-size: 1rem;
- margin: 1.5rem 0;
-}
+ h6 {
+ font-size: 0.875rem;
+ margin: 2.33rem 0;
+ }
-h6 {
- font-size: 0.875rem;
- margin: 2.33rem 0;
-}
+ dl,
+ menu,
+ ol,
+ ul {
+ margin: 1em 0;
+ }
-.uppercase {
- text-transform: uppercase;
-}
+ dd {
+ margin: 0 0 0 34px;
+ }
-dl,
-menu,
-ol,
-ul {
- margin: 1em 0;
-}
+ .container {
+ max-width: 1700px;
+ padding: 0 2rem;
+ }
-dd {
- margin: 0 0 0 40px;
-}
+ /* Footer */
+ footer {
+ border-top: 1px solid var(--color-accent);
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ max-height: 3.5rem;
+ }
+ footer > p {
+ margin: 0 1em;
+ }
-.container {
- max-width: 1700px;
- padding: 0 2rem;
-}
+ .container-main {
+ margin: 0 auto;
+ /* toolbar, footer, margin */
+ min-height: calc(100vh - 41px - 56px - 4rem);
+ }
-/* Footer */
-.tsd-generator {
- border-top: 1px solid var(--color-accent);
- padding-top: 1rem;
- padding-bottom: 1rem;
- max-height: 3.5rem;
-}
+ @keyframes fade-in {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+ @keyframes fade-out {
+ from {
+ opacity: 1;
+ visibility: visible;
+ }
+ to {
+ opacity: 0;
+ }
+ }
+ @keyframes fade-in-delayed {
+ 0% {
+ opacity: 0;
+ }
+ 33% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
+ @keyframes fade-out-delayed {
+ 0% {
+ opacity: 1;
+ visibility: visible;
+ }
+ 66% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 0;
+ }
+ }
+ @keyframes pop-in-from-right {
+ from {
+ transform: translate(100%, 0);
+ }
+ to {
+ transform: translate(0, 0);
+ }
+ }
+ @keyframes pop-out-to-right {
+ from {
+ transform: translate(0, 0);
+ visibility: visible;
+ }
+ to {
+ transform: translate(100%, 0);
+ }
+ }
+ body {
+ background: var(--color-background);
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
+ Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
+ font-size: 16px;
+ color: var(--color-text);
+ }
-.tsd-generator > p {
- margin-top: 0;
- margin-bottom: 0;
- padding: 0 1rem;
-}
+ a {
+ color: var(--color-link);
+ text-decoration: none;
+ }
+ a:hover {
+ text-decoration: underline;
+ }
+ a.external[target="_blank"] {
+ background-image: var(--external-icon);
+ background-position: top 3px right;
+ background-repeat: no-repeat;
+ padding-right: 13px;
+ }
+ a.tsd-anchor-link {
+ color: var(--color-text);
+ }
-.container-main {
- margin: 0 auto;
- /* toolbar, footer, margin */
- min-height: calc(100vh - 41px - 56px - 4rem);
-}
+ code,
+ pre {
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
+ padding: 0.2em;
+ margin: 0;
+ font-size: 0.875rem;
+ border-radius: 0.8em;
+ }
-@keyframes fade-in {
- from {
+ pre {
+ position: relative;
+ white-space: pre-wrap;
+ word-wrap: break-word;
+ padding: 10px;
+ border: 1px solid var(--color-accent);
+ margin-bottom: 8px;
+ }
+ pre code {
+ padding: 0;
+ font-size: 100%;
+ }
+ pre > button {
+ position: absolute;
+ top: 10px;
+ right: 10px;
opacity: 0;
+ transition: opacity 0.1s;
+ box-sizing: border-box;
}
- to {
+ pre:hover > button,
+ pre > button.visible {
opacity: 1;
}
-}
-@keyframes fade-out {
- from {
- opacity: 1;
- visibility: visible;
+
+ blockquote {
+ margin: 1em 0;
+ padding-left: 1em;
+ border-left: 4px solid gray;
}
- to {
- opacity: 0;
+
+ .tsd-typography {
+ line-height: 1.333em;
}
-}
-@keyframes fade-in-delayed {
- 0% {
- opacity: 0;
+ .tsd-typography ul {
+ list-style: square;
+ padding: 0 0 0 20px;
+ margin: 0;
}
- 33% {
- opacity: 0;
+ .tsd-typography .tsd-index-panel h3,
+ .tsd-index-panel .tsd-typography h3,
+ .tsd-typography h4,
+ .tsd-typography h5,
+ .tsd-typography h6 {
+ font-size: 1em;
}
- 100% {
- opacity: 1;
+ .tsd-typography h5,
+ .tsd-typography h6 {
+ font-weight: normal;
}
-}
-@keyframes fade-out-delayed {
- 0% {
- opacity: 1;
- visibility: visible;
+ .tsd-typography p,
+ .tsd-typography ul,
+ .tsd-typography ol {
+ margin: 1em 0;
}
- 66% {
- opacity: 0;
+ .tsd-typography table {
+ border-collapse: collapse;
+ border: none;
}
- 100% {
- opacity: 0;
+ .tsd-typography td,
+ .tsd-typography th {
+ padding: 6px 13px;
+ border: 1px solid var(--color-accent);
}
-}
-@keyframes pop-in-from-right {
- from {
- transform: translate(100%, 0);
+ .tsd-typography thead,
+ .tsd-typography tr:nth-child(even) {
+ background-color: var(--color-background-secondary);
}
- to {
- transform: translate(0, 0);
+
+ .tsd-alert {
+ padding: 8px 16px;
+ margin-bottom: 16px;
+ border-left: 0.25em solid var(--alert-color);
}
-}
-@keyframes pop-out-to-right {
- from {
- transform: translate(0, 0);
- visibility: visible;
+ .tsd-alert blockquote > :last-child,
+ .tsd-alert > :last-child {
+ margin-bottom: 0;
}
- to {
- transform: translate(100%, 0);
+ .tsd-alert-title {
+ color: var(--alert-color);
+ display: inline-flex;
+ align-items: center;
+ }
+ .tsd-alert-title span {
+ margin-left: 4px;
}
-}
-body {
- background: var(--color-background);
- font-family: "Segoe UI", sans-serif;
- font-size: 16px;
- color: var(--color-text);
-}
-a {
- color: var(--color-link);
- text-decoration: none;
-}
-a:hover {
- text-decoration: underline;
-}
-a.external[target="_blank"] {
- background-image: var(--external-icon);
- background-position: top 3px right;
- background-repeat: no-repeat;
- padding-right: 13px;
-}
+ .tsd-alert-note {
+ --alert-color: var(--color-alert-note);
+ }
+ .tsd-alert-tip {
+ --alert-color: var(--color-alert-tip);
+ }
+ .tsd-alert-important {
+ --alert-color: var(--color-alert-important);
+ }
+ .tsd-alert-warning {
+ --alert-color: var(--color-alert-warning);
+ }
+ .tsd-alert-caution {
+ --alert-color: var(--color-alert-caution);
+ }
-code,
-pre {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- padding: 0.2em;
- margin: 0;
- font-size: 0.875rem;
- border-radius: 0.8em;
-}
+ .tsd-breadcrumb {
+ margin: 0;
+ padding: 0;
+ color: var(--color-text-aside);
+ }
+ .tsd-breadcrumb a {
+ color: var(--color-text-aside);
+ text-decoration: none;
+ }
+ .tsd-breadcrumb a:hover {
+ text-decoration: underline;
+ }
+ .tsd-breadcrumb li {
+ display: inline;
+ }
+ .tsd-breadcrumb li:after {
+ content: " / ";
+ }
-pre {
- position: relative;
- white-space: pre;
- white-space: pre-wrap;
- word-wrap: break-word;
- padding: 10px;
- border: 1px solid var(--color-accent);
-}
-pre code {
- padding: 0;
- font-size: 100%;
-}
-pre > button {
- position: absolute;
- top: 10px;
- right: 10px;
- opacity: 0;
- transition: opacity 0.1s;
- box-sizing: border-box;
-}
-pre:hover > button,
-pre > button.visible {
- opacity: 1;
-}
+ .tsd-comment-tags {
+ display: flex;
+ flex-direction: column;
+ }
+ dl.tsd-comment-tag-group {
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ margin: 0.5em 0;
+ }
+ dl.tsd-comment-tag-group dt {
+ display: flex;
+ margin-right: 0.5em;
+ font-size: 0.875em;
+ font-weight: normal;
+ }
+ dl.tsd-comment-tag-group dd {
+ margin: 0;
+ }
+ code.tsd-tag {
+ padding: 0.25em 0.4em;
+ border: 0.1em solid var(--color-accent);
+ margin-right: 0.25em;
+ font-size: 70%;
+ }
+ h1 code.tsd-tag:first-of-type {
+ margin-left: 0.25em;
+ }
-blockquote {
- margin: 1em 0;
- padding-left: 1em;
- border-left: 4px solid gray;
-}
+ dl.tsd-comment-tag-group dd:before,
+ dl.tsd-comment-tag-group dd:after {
+ content: " ";
+ }
+ dl.tsd-comment-tag-group dd pre,
+ dl.tsd-comment-tag-group dd:after {
+ clear: both;
+ }
+ dl.tsd-comment-tag-group p {
+ margin: 0;
+ }
-.tsd-typography {
- line-height: 1.333em;
-}
-.tsd-typography ul {
- list-style: square;
- padding: 0 0 0 20px;
- margin: 0;
-}
-.tsd-typography .tsd-index-panel h3,
-.tsd-index-panel .tsd-typography h3,
-.tsd-typography h4,
-.tsd-typography h5,
-.tsd-typography h6 {
- font-size: 1em;
-}
-.tsd-typography h5,
-.tsd-typography h6 {
- font-weight: normal;
-}
-.tsd-typography p,
-.tsd-typography ul,
-.tsd-typography ol {
- margin: 1em 0;
-}
-.tsd-typography table {
- border-collapse: collapse;
- border: none;
-}
-.tsd-typography td,
-.tsd-typography th {
- padding: 6px 13px;
- border: 1px solid var(--color-accent);
-}
-.tsd-typography thead,
-.tsd-typography tr:nth-child(even) {
- background-color: var(--color-background-secondary);
-}
+ .tsd-panel.tsd-comment .lead {
+ font-size: 1.1em;
+ line-height: 1.333em;
+ margin-bottom: 2em;
+ }
+ .tsd-panel.tsd-comment .lead:last-child {
+ margin-bottom: 0;
+ }
-.tsd-breadcrumb {
- margin: 0;
- padding: 0;
- color: var(--color-text-aside);
-}
-.tsd-breadcrumb a {
- color: var(--color-text-aside);
- text-decoration: none;
-}
-.tsd-breadcrumb a:hover {
- text-decoration: underline;
-}
-.tsd-breadcrumb li {
- display: inline;
-}
-.tsd-breadcrumb li:after {
- content: " / ";
-}
+ .tsd-filter-visibility h4 {
+ font-size: 1rem;
+ padding-top: 0.75rem;
+ padding-bottom: 0.5rem;
+ margin: 0;
+ }
+ .tsd-filter-item:not(:last-child) {
+ margin-bottom: 0.5rem;
+ }
+ .tsd-filter-input {
+ display: flex;
+ width: -moz-fit-content;
+ width: fit-content;
+ align-items: center;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ cursor: pointer;
+ }
+ .tsd-filter-input input[type="checkbox"] {
+ cursor: pointer;
+ position: absolute;
+ width: 1.5em;
+ height: 1.5em;
+ opacity: 0;
+ }
+ .tsd-filter-input input[type="checkbox"]:disabled {
+ pointer-events: none;
+ }
+ .tsd-filter-input svg {
+ cursor: pointer;
+ width: 1.5em;
+ height: 1.5em;
+ margin-right: 0.5em;
+ border-radius: 0.33em;
+ /* Leaving this at full opacity breaks event listeners on Firefox.
+ Don't remove unless you know what you're doing. */
+ opacity: 0.99;
+ }
+ .tsd-filter-input input[type="checkbox"]:focus-visible + svg {
+ outline: 2px solid var(--color-focus-outline);
+ }
+ .tsd-checkbox-background {
+ fill: var(--color-accent);
+ }
+ input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
+ stroke: var(--color-text);
+ }
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
+ fill: var(--color-background);
+ stroke: var(--color-accent);
+ stroke-width: 0.25rem;
+ }
+ .tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
+ stroke: var(--color-accent);
+ }
-.tsd-comment-tags {
- display: flex;
- flex-direction: column;
-}
-dl.tsd-comment-tag-group {
- display: flex;
- align-items: center;
- overflow: hidden;
- margin: 0.5em 0;
-}
-dl.tsd-comment-tag-group dt {
- display: flex;
- margin-right: 0.5em;
- font-size: 0.875em;
- font-weight: normal;
-}
-dl.tsd-comment-tag-group dd {
- margin: 0;
-}
-code.tsd-tag {
- padding: 0.25em 0.4em;
- border: 0.1em solid var(--color-accent);
- margin-right: 0.25em;
- font-size: 70%;
-}
-h1 code.tsd-tag:first-of-type {
- margin-left: 0.25em;
-}
+ .settings-label {
+ font-weight: bold;
+ text-transform: uppercase;
+ display: inline-block;
+ }
-dl.tsd-comment-tag-group dd:before,
-dl.tsd-comment-tag-group dd:after {
- content: " ";
-}
-dl.tsd-comment-tag-group dd pre,
-dl.tsd-comment-tag-group dd:after {
- clear: both;
-}
-dl.tsd-comment-tag-group p {
- margin: 0;
-}
+ .tsd-filter-visibility .settings-label {
+ margin: 0.75rem 0 0.5rem 0;
+ }
-.tsd-panel.tsd-comment .lead {
- font-size: 1.1em;
- line-height: 1.333em;
- margin-bottom: 2em;
-}
-.tsd-panel.tsd-comment .lead:last-child {
- margin-bottom: 0;
-}
+ .tsd-theme-toggle .settings-label {
+ margin: 0.75rem 0.75rem 0 0;
+ }
-.tsd-filter-visibility h4 {
- font-size: 1rem;
- padding-top: 0.75rem;
- padding-bottom: 0.5rem;
- margin: 0;
-}
-.tsd-filter-item:not(:last-child) {
- margin-bottom: 0.5rem;
-}
-.tsd-filter-input {
- display: flex;
- width: fit-content;
- width: -moz-fit-content;
- align-items: center;
- user-select: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- cursor: pointer;
-}
-.tsd-filter-input input[type="checkbox"] {
- cursor: pointer;
- position: absolute;
- width: 1.5em;
- height: 1.5em;
- opacity: 0;
-}
-.tsd-filter-input input[type="checkbox"]:disabled {
- pointer-events: none;
-}
-.tsd-filter-input svg {
- cursor: pointer;
- width: 1.5em;
- height: 1.5em;
- margin-right: 0.5em;
- border-radius: 0.33em;
- /* Leaving this at full opacity breaks event listeners on Firefox.
- Don't remove unless you know what you're doing. */
- opacity: 0.99;
-}
-.tsd-filter-input input[type="checkbox"]:focus + svg {
- transform: scale(0.95);
-}
-.tsd-filter-input input[type="checkbox"]:focus:not(:focus-visible) + svg {
- transform: scale(1);
-}
-.tsd-checkbox-background {
- fill: var(--color-accent);
-}
-input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark {
- stroke: var(--color-text);
-}
-.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background {
- fill: var(--color-background);
- stroke: var(--color-accent);
- stroke-width: 0.25rem;
-}
-.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark {
- stroke: var(--color-accent);
-}
+ .tsd-hierarchy h4 label:hover span {
+ text-decoration: underline;
+ }
-.tsd-theme-toggle {
- padding-top: 0.75rem;
-}
-.tsd-theme-toggle > h4 {
- display: inline;
- vertical-align: middle;
- margin-right: 0.75rem;
-}
+ .tsd-hierarchy {
+ list-style: square;
+ margin: 0;
+ }
+ .tsd-hierarchy-target {
+ font-weight: bold;
+ }
+ .tsd-hierarchy-toggle {
+ color: var(--color-link);
+ cursor: pointer;
+ }
-.tsd-hierarchy {
- list-style: square;
- margin: 0;
-}
-.tsd-hierarchy .target {
- font-weight: bold;
-}
+ .tsd-full-hierarchy:not(:last-child) {
+ margin-bottom: 1em;
+ padding-bottom: 1em;
+ border-bottom: 1px solid var(--color-accent);
+ }
+ .tsd-full-hierarchy,
+ .tsd-full-hierarchy ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ }
+ .tsd-full-hierarchy ul {
+ padding-left: 1.5rem;
+ }
+ .tsd-full-hierarchy a {
+ padding: 0.25rem 0 !important;
+ font-size: 1rem;
+ display: inline-flex;
+ align-items: center;
+ color: var(--color-text);
+ }
+ .tsd-full-hierarchy svg[data-dropdown] {
+ cursor: pointer;
+ }
+ .tsd-full-hierarchy svg[data-dropdown="false"] {
+ transform: rotate(-90deg);
+ }
+ .tsd-full-hierarchy svg[data-dropdown="false"] ~ ul {
+ display: none;
+ }
-.tsd-panel-group.tsd-index-group {
- margin-bottom: 0;
-}
-.tsd-index-panel .tsd-index-list {
- list-style: none;
- line-height: 1.333em;
- margin: 0;
- padding: 0.25rem 0 0 0;
- overflow: hidden;
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- column-gap: 1rem;
- grid-template-rows: auto;
-}
-@media (max-width: 1024px) {
- .tsd-index-panel .tsd-index-list {
- grid-template-columns: repeat(2, 1fr);
+ .tsd-panel-group.tsd-index-group {
+ margin-bottom: 0;
}
-}
-@media (max-width: 768px) {
.tsd-index-panel .tsd-index-list {
- grid-template-columns: repeat(1, 1fr);
+ list-style: none;
+ line-height: 1.333em;
+ margin: 0;
+ padding: 0.25rem 0 0 0;
+ overflow: hidden;
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ column-gap: 1rem;
+ grid-template-rows: auto;
+ }
+ @media (max-width: 1024px) {
+ .tsd-index-panel .tsd-index-list {
+ grid-template-columns: repeat(2, 1fr);
+ }
+ }
+ @media (max-width: 768px) {
+ .tsd-index-panel .tsd-index-list {
+ grid-template-columns: repeat(1, 1fr);
+ }
+ }
+ .tsd-index-panel .tsd-index-list li {
+ -webkit-page-break-inside: avoid;
+ -moz-page-break-inside: avoid;
+ -ms-page-break-inside: avoid;
+ -o-page-break-inside: avoid;
+ page-break-inside: avoid;
}
-}
-.tsd-index-panel .tsd-index-list li {
- -webkit-page-break-inside: avoid;
- -moz-page-break-inside: avoid;
- -ms-page-break-inside: avoid;
- -o-page-break-inside: avoid;
- page-break-inside: avoid;
-}
-.tsd-flag {
- display: inline-block;
- padding: 0.25em 0.4em;
- border-radius: 4px;
- color: var(--color-comment-tag-text);
- background-color: var(--color-comment-tag);
- text-indent: 0;
- font-size: 75%;
- line-height: 1;
- font-weight: normal;
-}
+ .tsd-flag {
+ display: inline-block;
+ padding: 0.25em 0.4em;
+ border-radius: 4px;
+ color: var(--color-comment-tag-text);
+ background-color: var(--color-comment-tag);
+ text-indent: 0;
+ font-size: 75%;
+ line-height: 1;
+ font-weight: normal;
+ }
-.tsd-anchor {
- position: relative;
- top: -100px;
-}
+ .tsd-anchor {
+ position: relative;
+ top: -100px;
+ }
-.tsd-member {
- position: relative;
-}
-.tsd-member .tsd-anchor + h3 {
- display: flex;
- align-items: center;
- margin-top: 0;
- margin-bottom: 0;
- border-bottom: none;
-}
+ .tsd-member {
+ position: relative;
+ }
+ .tsd-member .tsd-anchor + h3 {
+ display: flex;
+ align-items: center;
+ margin-top: 0;
+ margin-bottom: 0;
+ border-bottom: none;
+ }
-.tsd-navigation.settings {
- margin: 1rem 0;
-}
-.tsd-navigation > a,
-.tsd-navigation .tsd-accordion-summary {
- width: calc(100% - 0.5rem);
-}
-.tsd-navigation a,
-.tsd-navigation summary > span,
-.tsd-page-navigation a {
- display: inline-flex;
- align-items: center;
- padding: 0.25rem;
- color: var(--color-text);
- text-decoration: none;
- box-sizing: border-box;
-}
-.tsd-navigation a.current,
-.tsd-page-navigation a.current {
- background: var(--color-active-menu-item);
-}
-.tsd-navigation a:hover,
-.tsd-page-navigation a:hover {
- text-decoration: underline;
-}
-.tsd-navigation ul,
-.tsd-page-navigation ul {
- margin-top: 0;
- margin-bottom: 0;
- padding: 0;
- list-style: none;
-}
-.tsd-navigation li,
-.tsd-page-navigation li {
- padding: 0;
- max-width: 100%;
-}
-.tsd-nested-navigation {
- margin-left: 3rem;
-}
-.tsd-nested-navigation > li > details {
- margin-left: -1.5rem;
-}
-.tsd-small-nested-navigation {
- margin-left: 1.5rem;
-}
-.tsd-small-nested-navigation > li > details {
- margin-left: -1.5rem;
-}
+ .tsd-navigation.settings {
+ margin: 1rem 0;
+ }
+ .tsd-navigation > a,
+ .tsd-navigation .tsd-accordion-summary {
+ width: calc(100% - 0.25rem);
+ display: flex;
+ align-items: center;
+ }
+ .tsd-navigation a,
+ .tsd-navigation summary > span,
+ .tsd-page-navigation a {
+ display: flex;
+ width: calc(100% - 0.25rem);
+ align-items: center;
+ padding: 0.25rem;
+ color: var(--color-text);
+ text-decoration: none;
+ box-sizing: border-box;
+ }
+ .tsd-navigation a.current,
+ .tsd-page-navigation a.current {
+ background: var(--color-active-menu-item);
+ }
+ .tsd-navigation a:hover,
+ .tsd-page-navigation a:hover {
+ text-decoration: underline;
+ }
+ .tsd-navigation ul,
+ .tsd-page-navigation ul {
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0;
+ list-style: none;
+ }
+ .tsd-navigation li,
+ .tsd-page-navigation li {
+ padding: 0;
+ max-width: 100%;
+ }
+ .tsd-navigation .tsd-nav-link {
+ display: none;
+ }
+ .tsd-nested-navigation {
+ margin-left: 3rem;
+ }
+ .tsd-nested-navigation > li > details {
+ margin-left: -1.5rem;
+ }
+ .tsd-small-nested-navigation {
+ margin-left: 1.5rem;
+ }
+ .tsd-small-nested-navigation > li > details {
+ margin-left: -1.5rem;
+ }
-.tsd-nested-navigation > li > a,
-.tsd-nested-navigation > li > span {
- width: calc(100% - 1.75rem - 0.5rem);
-}
+ .tsd-page-navigation-section {
+ margin-left: 10px;
+ }
+ .tsd-page-navigation-section > summary {
+ padding: 0.25rem;
+ }
+ .tsd-page-navigation-section > div {
+ margin-left: 20px;
+ }
+ .tsd-page-navigation ul {
+ padding-left: 1.75rem;
+ }
-.tsd-page-navigation ul {
- padding-left: 1.75rem;
-}
-
-#tsd-sidebar-links a {
- margin-top: 0;
- margin-bottom: 0.5rem;
- line-height: 1.25rem;
-}
-#tsd-sidebar-links a:last-of-type {
- margin-bottom: 0;
-}
-
-a.tsd-index-link {
- padding: 0.25rem 0 !important;
- font-size: 1rem;
- line-height: 1.25rem;
- display: inline-flex;
- align-items: center;
- color: var(--color-text);
-}
-.tsd-accordion-summary {
- list-style-type: none; /* hide marker on non-safari */
- outline: none; /* broken on safari, so just hide it */
-}
-.tsd-accordion-summary::-webkit-details-marker {
- display: none; /* hide marker on safari */
-}
-.tsd-accordion-summary,
-.tsd-accordion-summary a {
- user-select: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
-
- cursor: pointer;
-}
-.tsd-accordion-summary a {
- width: calc(100% - 1.5rem);
-}
-.tsd-accordion-summary > * {
- margin-top: 0;
- margin-bottom: 0;
- padding-top: 0;
- padding-bottom: 0;
-}
-.tsd-index-accordion .tsd-accordion-summary > svg {
- margin-left: 0.25rem;
-}
-.tsd-index-content > :not(:first-child) {
- margin-top: 0.75rem;
-}
-.tsd-index-heading {
- margin-top: 1.5rem;
- margin-bottom: 0.75rem;
-}
-
-.tsd-kind-icon {
- margin-right: 0.5rem;
- width: 1.25rem;
- height: 1.25rem;
- min-width: 1.25rem;
- min-height: 1.25rem;
-}
-.tsd-kind-icon path {
- transform-origin: center;
- transform: scale(1.1);
-}
-.tsd-signature > .tsd-kind-icon {
- margin-right: 0.8rem;
-}
-
-.tsd-panel {
- margin-bottom: 2.5rem;
-}
-.tsd-panel.tsd-member {
- margin-bottom: 4rem;
-}
-.tsd-panel:empty {
- display: none;
-}
-.tsd-panel > h1,
-.tsd-panel > h2,
-.tsd-panel > h3 {
- margin: 1.5rem -1.5rem 0.75rem -1.5rem;
- padding: 0 1.5rem 0.75rem 1.5rem;
-}
-.tsd-panel > h1.tsd-before-signature,
-.tsd-panel > h2.tsd-before-signature,
-.tsd-panel > h3.tsd-before-signature {
- margin-bottom: 0;
- border-bottom: none;
-}
-
-.tsd-panel-group {
- margin: 4rem 0;
-}
-.tsd-panel-group.tsd-index-group {
- margin: 2rem 0;
-}
-.tsd-panel-group.tsd-index-group details {
- margin: 2rem 0;
-}
-
-#tsd-search {
- transition: background-color 0.2s;
-}
-#tsd-search .title {
- position: relative;
- z-index: 2;
-}
-#tsd-search .field {
- position: absolute;
- left: 0;
- top: 0;
- right: 2.5rem;
- height: 100%;
-}
-#tsd-search .field input {
- box-sizing: border-box;
- position: relative;
- top: -50px;
- z-index: 1;
- width: 100%;
- padding: 0 10px;
- opacity: 0;
- outline: 0;
- border: 0;
- background: transparent;
- color: var(--color-text);
-}
-#tsd-search .field label {
- position: absolute;
- overflow: hidden;
- right: -40px;
-}
-#tsd-search .field input,
-#tsd-search .title,
-#tsd-toolbar-links a {
- transition: opacity 0.2s;
-}
-#tsd-search .results {
- position: absolute;
- visibility: hidden;
- top: 40px;
- width: 100%;
- margin: 0;
- padding: 0;
- list-style: none;
- box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
-}
-#tsd-search .results li {
- background-color: var(--color-background);
- line-height: initial;
- padding: 4px;
-}
-#tsd-search .results li:nth-child(even) {
- background-color: var(--color-background-secondary);
-}
-#tsd-search .results li.state {
- display: none;
-}
-#tsd-search .results li.current:not(.no-results),
-#tsd-search .results li:hover:not(.no-results) {
- background-color: var(--color-accent);
-}
-#tsd-search .results a {
- display: flex;
- align-items: center;
- padding: 0.25rem;
- box-sizing: border-box;
-}
-#tsd-search .results a:before {
- top: 10px;
-}
-#tsd-search .results span.parent {
- color: var(--color-text-aside);
- font-weight: normal;
-}
-#tsd-search.has-focus {
- background-color: var(--color-accent);
-}
-#tsd-search.has-focus .field input {
- top: 0;
- opacity: 1;
-}
-#tsd-search.has-focus .title,
-#tsd-search.has-focus #tsd-toolbar-links a {
- z-index: 0;
- opacity: 0;
-}
-#tsd-search.has-focus .results {
- visibility: visible;
-}
-#tsd-search.loading .results li.state.loading {
- display: block;
-}
-#tsd-search.failure .results li.state.failure {
- display: block;
-}
-
-#tsd-toolbar-links {
- position: absolute;
- top: 0;
- right: 2rem;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: flex-end;
-}
-#tsd-toolbar-links a {
- margin-left: 1.5rem;
-}
-#tsd-toolbar-links a:hover {
- text-decoration: underline;
-}
-
-.tsd-signature {
- margin: 0 0 1rem 0;
- padding: 1rem 0.5rem;
- border: 1px solid var(--color-accent);
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 14px;
- overflow-x: auto;
-}
-
-.tsd-signature-keyword {
- color: var(--color-ts-keyword);
- font-weight: normal;
-}
-
-.tsd-signature-symbol {
- color: var(--color-text-aside);
- font-weight: normal;
-}
-
-.tsd-signature-type {
- font-style: italic;
- font-weight: normal;
-}
-
-.tsd-signatures {
- padding: 0;
- margin: 0 0 1em 0;
- list-style-type: none;
-}
-.tsd-signatures .tsd-signature {
- margin: 0;
- border-color: var(--color-accent);
- border-width: 1px 0;
- transition: background-color 0.1s;
-}
-.tsd-description .tsd-signatures .tsd-signature {
- border-width: 1px;
-}
-
-ul.tsd-parameter-list,
-ul.tsd-type-parameter-list {
- list-style: square;
- margin: 0;
- padding-left: 20px;
-}
-ul.tsd-parameter-list > li.tsd-parameter-signature,
-ul.tsd-type-parameter-list > li.tsd-parameter-signature {
- list-style: none;
- margin-left: -20px;
-}
-ul.tsd-parameter-list h5,
-ul.tsd-type-parameter-list h5 {
- font-size: 16px;
- margin: 1em 0 0.5em 0;
-}
-.tsd-sources {
- margin-top: 1rem;
- font-size: 0.875em;
-}
-.tsd-sources a {
- color: var(--color-text-aside);
- text-decoration: underline;
-}
-.tsd-sources ul {
- list-style: none;
- padding: 0;
-}
-
-.tsd-page-toolbar {
- position: sticky;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- color: var(--color-text);
- background: var(--color-background-secondary);
- border-bottom: 1px var(--color-accent) solid;
- transition: transform 0.3s ease-in-out;
-}
-.tsd-page-toolbar a {
- color: var(--color-text);
- text-decoration: none;
-}
-.tsd-page-toolbar a.title {
- font-weight: bold;
-}
-.tsd-page-toolbar a.title:hover {
- text-decoration: underline;
-}
-.tsd-page-toolbar .tsd-toolbar-contents {
- display: flex;
- justify-content: space-between;
- height: 2.5rem;
- margin: 0 auto;
-}
-.tsd-page-toolbar .table-cell {
- position: relative;
- white-space: nowrap;
- line-height: 40px;
-}
-.tsd-page-toolbar .table-cell:first-child {
- width: 100%;
-}
-.tsd-page-toolbar .tsd-toolbar-icon {
- box-sizing: border-box;
- line-height: 0;
- padding: 12px 0;
-}
+ #tsd-sidebar-links a {
+ margin-top: 0;
+ margin-bottom: 0.5rem;
+ line-height: 1.25rem;
+ }
+ #tsd-sidebar-links a:last-of-type {
+ margin-bottom: 0;
+ }
-.tsd-widget {
- display: inline-block;
- overflow: hidden;
- opacity: 0.8;
- height: 40px;
- transition:
- opacity 0.1s,
- background-color 0.2s;
- vertical-align: bottom;
- cursor: pointer;
-}
-.tsd-widget:hover {
- opacity: 0.9;
-}
-.tsd-widget.active {
- opacity: 1;
- background-color: var(--color-accent);
-}
-.tsd-widget.no-caption {
- width: 40px;
-}
-.tsd-widget.no-caption:before {
- margin: 0;
-}
+ a.tsd-index-link {
+ padding: 0.25rem 0 !important;
+ font-size: 1rem;
+ line-height: 1.25rem;
+ display: inline-flex;
+ align-items: center;
+ color: var(--color-text);
+ }
+ .tsd-accordion-summary {
+ list-style-type: none; /* hide marker on non-safari */
+ outline: none; /* broken on safari, so just hide it */
+ }
+ .tsd-accordion-summary::-webkit-details-marker {
+ display: none; /* hide marker on safari */
+ }
+ .tsd-accordion-summary,
+ .tsd-accordion-summary a {
+ -moz-user-select: none;
+ -webkit-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+
+ cursor: pointer;
+ }
+ .tsd-accordion-summary a {
+ width: calc(100% - 1.5rem);
+ }
+ .tsd-accordion-summary > * {
+ margin-top: 0;
+ margin-bottom: 0;
+ padding-top: 0;
+ padding-bottom: 0;
+ }
+ .tsd-accordion .tsd-accordion-summary > svg {
+ margin-left: 0.25rem;
+ vertical-align: text-top;
+ }
+ /*
+ We need to be careful to target the arrow indicating whether the accordion
+ is open, but not any other SVGs included in the details element.
+*/
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > svg:first-child,
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h1 > svg:first-child,
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h2 > svg:first-child,
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h3 > svg:first-child,
+ .tsd-accordion:not([open]) > .tsd-accordion-summary > h4 > svg:first-child {
+ transform: rotate(-90deg);
+ }
+ .tsd-index-content > :not(:first-child) {
+ margin-top: 0.75rem;
+ }
+ .tsd-index-heading {
+ margin-top: 1.5rem;
+ margin-bottom: 0.75rem;
+ }
-.tsd-widget.options,
-.tsd-widget.menu {
- display: none;
-}
-input[type="checkbox"] + .tsd-widget:before {
- background-position: -120px 0;
-}
-input[type="checkbox"]:checked + .tsd-widget:before {
- background-position: -160px 0;
-}
+ .tsd-no-select {
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ }
+ .tsd-kind-icon {
+ margin-right: 0.5rem;
+ width: 1.25rem;
+ height: 1.25rem;
+ min-width: 1.25rem;
+ min-height: 1.25rem;
+ }
+ .tsd-signature > .tsd-kind-icon {
+ margin-right: 0.8rem;
+ }
-img {
- max-width: 100%;
-}
+ .tsd-panel {
+ margin-bottom: 2.5rem;
+ }
+ .tsd-panel.tsd-member {
+ margin-bottom: 4rem;
+ }
+ .tsd-panel:empty {
+ display: none;
+ }
+ .tsd-panel > h1,
+ .tsd-panel > h2,
+ .tsd-panel > h3 {
+ margin: 1.5rem -1.5rem 0.75rem -1.5rem;
+ padding: 0 1.5rem 0.75rem 1.5rem;
+ }
+ .tsd-panel > h1.tsd-before-signature,
+ .tsd-panel > h2.tsd-before-signature,
+ .tsd-panel > h3.tsd-before-signature {
+ margin-bottom: 0;
+ border-bottom: none;
+ }
-.tsd-anchor-icon {
- display: inline-flex;
- align-items: center;
- margin-left: 0.5rem;
- vertical-align: middle;
- color: var(--color-text);
-}
+ .tsd-panel-group {
+ margin: 2rem 0;
+ }
+ .tsd-panel-group.tsd-index-group {
+ margin: 2rem 0;
+ }
+ .tsd-panel-group.tsd-index-group details {
+ margin: 2rem 0;
+ }
+ .tsd-panel-group > .tsd-accordion-summary {
+ margin-bottom: 1rem;
+ }
-.tsd-anchor-icon svg {
- width: 1em;
- height: 1em;
- visibility: hidden;
-}
+ #tsd-search {
+ transition: background-color 0.2s;
+ }
+ #tsd-search .title {
+ position: relative;
+ z-index: 2;
+ }
+ #tsd-search .field {
+ position: absolute;
+ left: 0;
+ top: 0;
+ right: 2.5rem;
+ height: 100%;
+ }
+ #tsd-search .field input {
+ box-sizing: border-box;
+ position: relative;
+ top: -50px;
+ z-index: 1;
+ width: 100%;
+ padding: 0 10px;
+ opacity: 0;
+ outline: 0;
+ border: 0;
+ background: transparent;
+ color: var(--color-text);
+ }
+ #tsd-search .field label {
+ position: absolute;
+ overflow: hidden;
+ right: -40px;
+ }
+ #tsd-search .field input,
+ #tsd-search .title,
+ #tsd-toolbar-links a {
+ transition: opacity 0.2s;
+ }
+ #tsd-search .results {
+ position: absolute;
+ visibility: hidden;
+ top: 40px;
+ width: 100%;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
+ }
+ #tsd-search .results li {
+ background-color: var(--color-background);
+ line-height: initial;
+ padding: 4px;
+ }
+ #tsd-search .results li:nth-child(even) {
+ background-color: var(--color-background-secondary);
+ }
+ #tsd-search .results li.state {
+ display: none;
+ }
+ #tsd-search .results li.current:not(.no-results),
+ #tsd-search .results li:hover:not(.no-results) {
+ background-color: var(--color-accent);
+ }
+ #tsd-search .results a {
+ display: flex;
+ align-items: center;
+ padding: 0.25rem;
+ box-sizing: border-box;
+ }
+ #tsd-search .results a:before {
+ top: 10px;
+ }
+ #tsd-search .results span.parent {
+ color: var(--color-text-aside);
+ font-weight: normal;
+ }
+ #tsd-search.has-focus {
+ background-color: var(--color-accent);
+ }
+ #tsd-search.has-focus .field input {
+ top: 0;
+ opacity: 1;
+ }
+ #tsd-search.has-focus .title,
+ #tsd-search.has-focus #tsd-toolbar-links a {
+ z-index: 0;
+ opacity: 0;
+ }
+ #tsd-search.has-focus .results {
+ visibility: visible;
+ }
+ #tsd-search.loading .results li.state.loading {
+ display: block;
+ }
+ #tsd-search.failure .results li.state.failure {
+ display: block;
+ }
-.tsd-anchor-link:hover > .tsd-anchor-icon svg {
- visibility: visible;
-}
+ #tsd-toolbar-links {
+ position: absolute;
+ top: 0;
+ right: 2rem;
+ height: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+ }
+ #tsd-toolbar-links a {
+ margin-left: 1.5rem;
+ }
+ #tsd-toolbar-links a:hover {
+ text-decoration: underline;
+ }
-.deprecated {
- text-decoration: line-through !important;
-}
+ .tsd-signature {
+ margin: 0 0 1rem 0;
+ padding: 1rem 0.5rem;
+ border: 1px solid var(--color-accent);
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
+ font-size: 14px;
+ overflow-x: auto;
+ }
-.warning {
- padding: 1rem;
- color: var(--color-warning-text);
- background: var(--color-background-warning);
-}
+ .tsd-signature-keyword {
+ color: var(--color-ts-keyword);
+ font-weight: normal;
+ }
-.tsd-kind-project {
- color: var(--color-ts-project);
-}
-.tsd-kind-module {
- color: var(--color-ts-module);
-}
-.tsd-kind-namespace {
- color: var(--color-ts-namespace);
-}
-.tsd-kind-enum {
- color: var(--color-ts-enum);
-}
-.tsd-kind-enum-member {
- color: var(--color-ts-enum-member);
-}
-.tsd-kind-variable {
- color: var(--color-ts-variable);
-}
-.tsd-kind-function {
- color: var(--color-ts-function);
-}
-.tsd-kind-class {
- color: var(--color-ts-class);
-}
-.tsd-kind-interface {
- color: var(--color-ts-interface);
-}
-.tsd-kind-constructor {
- color: var(--color-ts-constructor);
-}
-.tsd-kind-property {
- color: var(--color-ts-property);
-}
-.tsd-kind-method {
- color: var(--color-ts-method);
-}
-.tsd-kind-call-signature {
- color: var(--color-ts-call-signature);
-}
-.tsd-kind-index-signature {
- color: var(--color-ts-index-signature);
-}
-.tsd-kind-constructor-signature {
- color: var(--color-ts-constructor-signature);
-}
-.tsd-kind-parameter {
- color: var(--color-ts-parameter);
-}
-.tsd-kind-type-literal {
- color: var(--color-ts-type-literal);
-}
-.tsd-kind-type-parameter {
- color: var(--color-ts-type-parameter);
-}
-.tsd-kind-accessor {
- color: var(--color-ts-accessor);
-}
-.tsd-kind-get-signature {
- color: var(--color-ts-get-signature);
-}
-.tsd-kind-set-signature {
- color: var(--color-ts-set-signature);
-}
-.tsd-kind-type-alias {
- color: var(--color-ts-type-alias);
-}
+ .tsd-signature-symbol {
+ color: var(--color-text-aside);
+ font-weight: normal;
+ }
-/* if we have a kind icon, don't color the text by kind */
-.tsd-kind-icon ~ span {
- color: var(--color-text);
-}
+ .tsd-signature-type {
+ font-style: italic;
+ font-weight: normal;
+ }
-* {
- scrollbar-width: thin;
- scrollbar-color: var(--color-accent) var(--color-icon-background);
-}
+ .tsd-signatures {
+ padding: 0;
+ margin: 0 0 1em 0;
+ list-style-type: none;
+ }
+ .tsd-signatures .tsd-signature {
+ margin: 0;
+ border-color: var(--color-accent);
+ border-width: 1px 0;
+ transition: background-color 0.1s;
+ }
+ .tsd-signatures .tsd-index-signature:not(:last-child) {
+ margin-bottom: 1em;
+ }
+ .tsd-signatures .tsd-index-signature .tsd-signature {
+ border-width: 1px;
+ }
+ .tsd-description .tsd-signatures .tsd-signature {
+ border-width: 1px;
+ }
-*::-webkit-scrollbar {
- width: 0.75rem;
-}
+ ul.tsd-parameter-list,
+ ul.tsd-type-parameter-list {
+ list-style: square;
+ margin: 0;
+ padding-left: 20px;
+ }
+ ul.tsd-parameter-list > li.tsd-parameter-signature,
+ ul.tsd-type-parameter-list > li.tsd-parameter-signature {
+ list-style: none;
+ margin-left: -20px;
+ }
+ ul.tsd-parameter-list h5,
+ ul.tsd-type-parameter-list h5 {
+ font-size: 16px;
+ margin: 1em 0 0.5em 0;
+ }
+ .tsd-sources {
+ margin-top: 1rem;
+ font-size: 0.875em;
+ }
+ .tsd-sources a {
+ color: var(--color-text-aside);
+ text-decoration: underline;
+ }
+ .tsd-sources ul {
+ list-style: none;
+ padding: 0;
+ }
-*::-webkit-scrollbar-track {
- background: var(--color-icon-background);
-}
+ .tsd-page-toolbar {
+ position: sticky;
+ z-index: 1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ color: var(--color-text);
+ background: var(--color-background-secondary);
+ border-bottom: 1px var(--color-accent) solid;
+ transition: transform 0.3s ease-in-out;
+ }
+ .tsd-page-toolbar a {
+ color: var(--color-text);
+ text-decoration: none;
+ }
+ .tsd-page-toolbar a.title {
+ font-weight: bold;
+ }
+ .tsd-page-toolbar a.title:hover {
+ text-decoration: underline;
+ }
+ .tsd-page-toolbar .tsd-toolbar-contents {
+ display: flex;
+ justify-content: space-between;
+ height: 2.5rem;
+ margin: 0 auto;
+ }
+ .tsd-page-toolbar .table-cell {
+ position: relative;
+ white-space: nowrap;
+ line-height: 40px;
+ }
+ .tsd-page-toolbar .table-cell:first-child {
+ width: 100%;
+ }
+ .tsd-page-toolbar .tsd-toolbar-icon {
+ box-sizing: border-box;
+ line-height: 0;
+ padding: 12px 0;
+ }
-*::-webkit-scrollbar-thumb {
- background-color: var(--color-accent);
- border-radius: 999rem;
- border: 0.25rem solid var(--color-icon-background);
-}
+ .tsd-widget {
+ display: inline-block;
+ overflow: hidden;
+ opacity: 0.8;
+ height: 40px;
+ transition:
+ opacity 0.1s,
+ background-color 0.2s;
+ vertical-align: bottom;
+ cursor: pointer;
+ }
+ .tsd-widget:hover {
+ opacity: 0.9;
+ }
+ .tsd-widget.active {
+ opacity: 1;
+ background-color: var(--color-accent);
+ }
+ .tsd-widget.no-caption {
+ width: 40px;
+ }
+ .tsd-widget.no-caption:before {
+ margin: 0;
+ }
-/* mobile */
-@media (max-width: 769px) {
.tsd-widget.options,
.tsd-widget.menu {
- display: inline-block;
+ display: none;
}
-
- .container-main {
- display: flex;
+ input[type="checkbox"] + .tsd-widget:before {
+ background-position: -120px 0;
}
- html .col-content {
- float: none;
+ input[type="checkbox"]:checked + .tsd-widget:before {
+ background-position: -160px 0;
+ }
+
+ img {
max-width: 100%;
- width: 100%;
}
- html .col-sidebar {
- position: fixed !important;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- z-index: 1024;
- top: 0 !important;
- bottom: 0 !important;
- left: auto !important;
- right: 0 !important;
- padding: 1.5rem 1.5rem 0 0;
- width: 75vw;
- visibility: hidden;
- background-color: var(--color-background);
- transform: translate(100%, 0);
+
+ .tsd-member-summary-name {
+ display: inline-flex;
+ align-items: center;
+ padding: 0.25rem;
+ text-decoration: none;
}
- html .col-sidebar > *:last-child {
- padding-bottom: 20px;
+
+ .tsd-anchor-icon {
+ display: inline-flex;
+ align-items: center;
+ margin-left: 0.5rem;
+ color: var(--color-text);
}
- html .overlay {
- content: "";
- display: block;
- position: fixed;
- z-index: 1023;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.75);
+
+ .tsd-anchor-icon svg {
+ width: 1em;
+ height: 1em;
visibility: hidden;
}
- .to-has-menu .overlay {
- animation: fade-in 0.4s;
+ .tsd-member-summary-name:hover > .tsd-anchor-icon svg,
+ .tsd-anchor-link:hover > .tsd-anchor-icon svg {
+ visibility: visible;
}
- .to-has-menu .col-sidebar {
- animation: pop-in-from-right 0.4s;
+ .deprecated {
+ text-decoration: line-through !important;
}
- .from-has-menu .overlay {
- animation: fade-out 0.4s;
+ .warning {
+ padding: 1rem;
+ color: var(--color-warning-text);
+ background: var(--color-background-warning);
}
- .from-has-menu .col-sidebar {
- animation: pop-out-to-right 0.4s;
+ .tsd-kind-project {
+ color: var(--color-ts-project);
}
-
- .has-menu body {
- overflow: hidden;
+ .tsd-kind-module {
+ color: var(--color-ts-module);
}
- .has-menu .overlay {
- visibility: visible;
+ .tsd-kind-namespace {
+ color: var(--color-ts-namespace);
}
- .has-menu .col-sidebar {
- visibility: visible;
- transform: translate(0, 0);
- display: flex;
- flex-direction: column;
- gap: 1.5rem;
- max-height: 100vh;
- padding: 1rem 2rem;
+ .tsd-kind-enum {
+ color: var(--color-ts-enum);
}
- .has-menu .tsd-navigation {
- max-height: 100%;
+ .tsd-kind-enum-member {
+ color: var(--color-ts-enum-member);
}
-}
-
-/* one sidebar */
-@media (min-width: 770px) {
- .container-main {
- display: grid;
- grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
- grid-template-areas: "sidebar content";
- margin: 2rem auto;
+ .tsd-kind-variable {
+ color: var(--color-ts-variable);
}
-
- .col-sidebar {
- grid-area: sidebar;
+ .tsd-kind-function {
+ color: var(--color-ts-function);
}
- .col-content {
- grid-area: content;
- padding: 0 1rem;
+ .tsd-kind-class {
+ color: var(--color-ts-class);
}
-}
-@media (min-width: 770px) and (max-width: 1399px) {
- .col-sidebar {
- max-height: calc(100vh - 2rem - 42px);
- overflow: auto;
- position: sticky;
- top: 42px;
- padding-top: 1rem;
+ .tsd-kind-interface {
+ color: var(--color-ts-interface);
}
- .site-menu {
- margin-top: 1rem;
+ .tsd-kind-constructor {
+ color: var(--color-ts-constructor);
+ }
+ .tsd-kind-property {
+ color: var(--color-ts-property);
+ }
+ .tsd-kind-method {
+ color: var(--color-ts-method);
+ }
+ .tsd-kind-reference {
+ color: var(--color-ts-reference);
+ }
+ .tsd-kind-call-signature {
+ color: var(--color-ts-call-signature);
+ }
+ .tsd-kind-index-signature {
+ color: var(--color-ts-index-signature);
+ }
+ .tsd-kind-constructor-signature {
+ color: var(--color-ts-constructor-signature);
+ }
+ .tsd-kind-parameter {
+ color: var(--color-ts-parameter);
+ }
+ .tsd-kind-type-parameter {
+ color: var(--color-ts-type-parameter);
+ }
+ .tsd-kind-accessor {
+ color: var(--color-ts-accessor);
+ }
+ .tsd-kind-get-signature {
+ color: var(--color-ts-get-signature);
+ }
+ .tsd-kind-set-signature {
+ color: var(--color-ts-set-signature);
+ }
+ .tsd-kind-type-alias {
+ color: var(--color-ts-type-alias);
}
-}
-/* two sidebars */
-@media (min-width: 1200px) {
- .container-main {
- grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem);
- grid-template-areas: "sidebar content toc";
+ /* if we have a kind icon, don't color the text by kind */
+ .tsd-kind-icon ~ span {
+ color: var(--color-text);
}
- .col-sidebar {
- display: contents;
+ * {
+ scrollbar-width: thin;
+ scrollbar-color: var(--color-accent) var(--color-icon-background);
}
- .page-menu {
- grid-area: toc;
- padding-left: 1rem;
+ *::-webkit-scrollbar {
+ width: 0.75rem;
}
- .site-menu {
- grid-area: sidebar;
+
+ *::-webkit-scrollbar-track {
+ background: var(--color-icon-background);
}
- .site-menu {
- margin-top: 1rem 0;
+ *::-webkit-scrollbar-thumb {
+ background-color: var(--color-accent);
+ border-radius: 999rem;
+ border: 0.25rem solid var(--color-icon-background);
}
- .page-menu,
- .site-menu {
- max-height: calc(100vh - 2rem - 42px);
- overflow: auto;
- position: sticky;
- top: 42px;
+ /* mobile */
+ @media (max-width: 769px) {
+ .tsd-widget.options,
+ .tsd-widget.menu {
+ display: inline-block;
+ }
+
+ .container-main {
+ display: flex;
+ }
+ html .col-content {
+ float: none;
+ max-width: 100%;
+ width: 100%;
+ }
+ html .col-sidebar {
+ position: fixed !important;
+ overflow-y: auto;
+ -webkit-overflow-scrolling: touch;
+ z-index: 1024;
+ top: 0 !important;
+ bottom: 0 !important;
+ left: auto !important;
+ right: 0 !important;
+ padding: 1.5rem 1.5rem 0 0;
+ width: 75vw;
+ visibility: hidden;
+ background-color: var(--color-background);
+ transform: translate(100%, 0);
+ }
+ html .col-sidebar > *:last-child {
+ padding-bottom: 20px;
+ }
+ html .overlay {
+ content: "";
+ display: block;
+ position: fixed;
+ z-index: 1023;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background-color: rgba(0, 0, 0, 0.75);
+ visibility: hidden;
+ }
+
+ .to-has-menu .overlay {
+ animation: fade-in 0.4s;
+ }
+
+ .to-has-menu .col-sidebar {
+ animation: pop-in-from-right 0.4s;
+ }
+
+ .from-has-menu .overlay {
+ animation: fade-out 0.4s;
+ }
+
+ .from-has-menu .col-sidebar {
+ animation: pop-out-to-right 0.4s;
+ }
+
+ .has-menu body {
+ overflow: hidden;
+ }
+ .has-menu .overlay {
+ visibility: visible;
+ }
+ .has-menu .col-sidebar {
+ visibility: visible;
+ transform: translate(0, 0);
+ display: flex;
+ flex-direction: column;
+ gap: 1.5rem;
+ max-height: 100vh;
+ padding: 1rem 2rem;
+ }
+ .has-menu .tsd-navigation {
+ max-height: 100%;
+ }
+ #tsd-toolbar-links {
+ display: none;
+ }
+ .tsd-navigation .tsd-nav-link {
+ display: flex;
+ }
+ }
+
+ /* one sidebar */
+ @media (min-width: 770px) {
+ .container-main {
+ display: grid;
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
+ grid-template-areas: "sidebar content";
+ margin: 2rem auto;
+ }
+
+ .col-sidebar {
+ grid-area: sidebar;
+ }
+ .col-content {
+ grid-area: content;
+ padding: 0 1rem;
+ }
+ }
+ @media (min-width: 770px) and (max-width: 1399px) {
+ .col-sidebar {
+ max-height: calc(100vh - 2rem - 42px);
+ overflow: auto;
+ position: sticky;
+ top: 42px;
+ padding-top: 1rem;
+ }
+ .site-menu {
+ margin-top: 1rem;
+ }
+ }
+
+ /* two sidebars */
+ @media (min-width: 1200px) {
+ .container-main {
+ grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(
+ 0,
+ 20rem
+ );
+ grid-template-areas: "sidebar content toc";
+ }
+
+ .col-sidebar {
+ display: contents;
+ }
+
+ .page-menu {
+ grid-area: toc;
+ padding-left: 1rem;
+ }
+ .site-menu {
+ grid-area: sidebar;
+ }
+
+ .site-menu {
+ margin-top: 1rem;
+ }
+
+ .page-menu,
+ .site-menu {
+ max-height: calc(100vh - 2rem - 42px);
+ overflow: auto;
+ position: sticky;
+ top: 42px;
+ }
}
}
diff --git a/docs/classes/_internal_.Metric.html b/docs/classes/_internal_.Metric.html
index 8c3416b1e..53d5a2d33 100644
--- a/docs/classes/_internal_.Metric.html
+++ b/docs/classes/_internal_.Metric.html
@@ -1,4 +1,4 @@
-
Metric | universalviewerConstructors
constructor
- new Metric(type, minWidth): Metric
Parameters
type: string
minWidth: number
\ No newline at end of file
+Metric | universalviewer Constructors
constructor
- new Metric(type: string, minWidth: number): Metric
Parameters
- type: string
- minWidth: number
Properties
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 | universalviewerEnumeration Members
LOCAL
LOCAL: "local"
MEMORY
MEMORY: "memory"
SESSION
SESSION: "session"
\ No newline at end of file
+StorageType | universalviewer Enumeration Members
LOCAL
LOCAL: "local"
MEMORY
MEMORY: "memory"
SESSION
SESSION: "session"
diff --git a/docs/index.html b/docs/index.html
index 3a831a3b4..706a75af3 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -1,4 +1,4 @@
-universalvieweruniversalviewer
+
universalviewer
\ 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
\ No newline at end of file
+universalviewer
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
\ No newline at end of file
+<internal> | universalviewer
diff --git a/docs/types/IIIFContentHandlerConfig.html b/docs/types/IIIFContentHandlerConfig.html
index c9ab32c3c..ad8b73159 100644
--- a/docs/types/IIIFContentHandlerConfig.html
+++ b/docs/types/IIIFContentHandlerConfig.html
@@ -1 +1 @@
-IIIFContentHandlerConfig | universalviewerType alias IIIFContentHandlerConfig
\ No newline at end of file
+IIIFContentHandlerConfig | universalviewerType Alias IIIFContentHandlerConfig
diff --git a/docs/types/_internal_.AVCenterPanel.html b/docs/types/_internal_.AVCenterPanel.html
index 9ff26808c..01a003c0b 100644
--- a/docs/types/_internal_.AVCenterPanel.html
+++ b/docs/types/_internal_.AVCenterPanel.html
@@ -1 +1 @@
-AVCenterPanel | universalviewer
\ No newline at end of file
+AVCenterPanel | universalviewer
diff --git a/docs/types/_internal_.AVCenterPanelContent.html b/docs/types/_internal_.AVCenterPanelContent.html
index b3c32b6c0..f20a50c1d 100644
--- a/docs/types/_internal_.AVCenterPanelContent.html
+++ b/docs/types/_internal_.AVCenterPanelContent.html
@@ -1 +1 @@
-AVCenterPanelContent | universalviewerType alias AVCenterPanelContent
\ No newline at end of file
+AVCenterPanelContent | universalviewerType Alias AVCenterPanelContent
diff --git a/docs/types/_internal_.AVCenterPanelOptions.html b/docs/types/_internal_.AVCenterPanelOptions.html
index 8ea3efe2a..6b730afe1 100644
--- a/docs/types/_internal_.AVCenterPanelOptions.html
+++ b/docs/types/_internal_.AVCenterPanelOptions.html
@@ -1,11 +1,11 @@
-AVCenterPanelOptions | universalviewerType 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
autoPlay: boolean
enableFastForward: boolean
enableFastRewind: boolean
hideMediaError: boolean
includeParentInTitleEnabled: boolean
limitToRange: boolean
posterImageExpanded: boolean
posterImageRatio: number
subtitleMetadataField: string
\ No newline at end of file
+AVCenterPanelOptions | universalviewerType 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
autoPlay: boolean
enableFastForward: boolean
enableFastRewind: boolean
hideMediaError: boolean
includeParentInTitleEnabled: boolean
limitToRange: boolean
posterImageExpanded: boolean
posterImageRatio: number
subtitleMetadataField: string
diff --git a/docs/types/_internal_.AVDownloadDialogue.html b/docs/types/_internal_.AVDownloadDialogue.html
index c27316813..19664f5fd 100644
--- a/docs/types/_internal_.AVDownloadDialogue.html
+++ b/docs/types/_internal_.AVDownloadDialogue.html
@@ -1 +1 @@
-AVDownloadDialogue | universalviewerType alias AVDownloadDialogue
\ No newline at end of file
+AVDownloadDialogue | universalviewerType Alias AVDownloadDialogue
diff --git a/docs/types/_internal_.AVDownloadDialogueContent.html b/docs/types/_internal_.AVDownloadDialogueContent.html
index a8095d1fc..b7e6f51e0 100644
--- a/docs/types/_internal_.AVDownloadDialogueContent.html
+++ b/docs/types/_internal_.AVDownloadDialogueContent.html
@@ -1 +1 @@
-AVDownloadDialogueContent | universalviewerType alias AVDownloadDialogueContent
\ No newline at end of file
+AVDownloadDialogueContent | universalviewerType Alias AVDownloadDialogueContent
diff --git a/docs/types/_internal_.AVDownloadDialogueOptions.html b/docs/types/_internal_.AVDownloadDialogueOptions.html
index 95ed138d7..e27eb0465 100644
--- a/docs/types/_internal_.AVDownloadDialogueOptions.html
+++ b/docs/types/_internal_.AVDownloadDialogueOptions.html
@@ -1 +1 @@
-AVDownloadDialogueOptions | universalviewerType alias AVDownloadDialogueOptions
\ No newline at end of file
+AVDownloadDialogueOptions | universalviewerType Alias AVDownloadDialogueOptions
diff --git a/docs/types/_internal_.AVSettingsDialogue.html b/docs/types/_internal_.AVSettingsDialogue.html
index bd810cdf8..394d390a9 100644
--- a/docs/types/_internal_.AVSettingsDialogue.html
+++ b/docs/types/_internal_.AVSettingsDialogue.html
@@ -1 +1 @@
-AVSettingsDialogue | universalviewerType alias AVSettingsDialogue
\ No newline at end of file
+AVSettingsDialogue | universalviewerType Alias AVSettingsDialogue
diff --git a/docs/types/_internal_.AVSettingsDialogueContent.html b/docs/types/_internal_.AVSettingsDialogueContent.html
index ca9cc4441..f9ed3dc2a 100644
--- a/docs/types/_internal_.AVSettingsDialogueContent.html
+++ b/docs/types/_internal_.AVSettingsDialogueContent.html
@@ -1 +1 @@
-AVSettingsDialogueContent | universalviewerType alias AVSettingsDialogueContent
\ No newline at end of file
+AVSettingsDialogueContent | universalviewerType Alias AVSettingsDialogueContent
diff --git a/docs/types/_internal_.AVSettingsDialogueOptions.html b/docs/types/_internal_.AVSettingsDialogueOptions.html
index 70d696b9a..a8817bf9a 100644
--- a/docs/types/_internal_.AVSettingsDialogueOptions.html
+++ b/docs/types/_internal_.AVSettingsDialogueOptions.html
@@ -1 +1 @@
-AVSettingsDialogueOptions | universalviewerType alias AVSettingsDialogueOptions
\ No newline at end of file
+AVSettingsDialogueOptions | universalviewerType Alias AVSettingsDialogueOptions
diff --git a/docs/types/_internal_.AVShareDialogue.html b/docs/types/_internal_.AVShareDialogue.html
index c84d37ea4..60200c41d 100644
--- a/docs/types/_internal_.AVShareDialogue.html
+++ b/docs/types/_internal_.AVShareDialogue.html
@@ -1 +1 @@
-AVShareDialogue | universalviewerType alias AVShareDialogue
\ No newline at end of file
+AVShareDialogue | universalviewerType Alias AVShareDialogue
diff --git a/docs/types/_internal_.AVShareDialogueContent.html b/docs/types/_internal_.AVShareDialogueContent.html
index f2f2721c9..9f738dfab 100644
--- a/docs/types/_internal_.AVShareDialogueContent.html
+++ b/docs/types/_internal_.AVShareDialogueContent.html
@@ -1 +1 @@
-AVShareDialogueContent | universalviewerType alias AVShareDialogueContent
\ No newline at end of file
+AVShareDialogueContent | universalviewerType Alias AVShareDialogueContent
diff --git a/docs/types/_internal_.AVShareDialogueOptions.html b/docs/types/_internal_.AVShareDialogueOptions.html
index 1c9980dee..a9873b7e1 100644
--- a/docs/types/_internal_.AVShareDialogueOptions.html
+++ b/docs/types/_internal_.AVShareDialogueOptions.html
@@ -1 +1 @@
-AVShareDialogueOptions | universalviewerType alias AVShareDialogueOptions
\ No newline at end of file
+AVShareDialogueOptions | universalviewerType Alias AVShareDialogueOptions
diff --git a/docs/types/_internal_.AdjustImageDialogue.html b/docs/types/_internal_.AdjustImageDialogue.html
new file mode 100644
index 000000000..51a2b6860
--- /dev/null
+++ b/docs/types/_internal_.AdjustImageDialogue.html
@@ -0,0 +1 @@
+AdjustImageDialogue | universalviewerType Alias AdjustImageDialogue
diff --git a/docs/types/_internal_.AdjustImageDialogueContent.html b/docs/types/_internal_.AdjustImageDialogueContent.html
new file mode 100644
index 000000000..48b1562e1
--- /dev/null
+++ b/docs/types/_internal_.AdjustImageDialogueContent.html
@@ -0,0 +1 @@
+AdjustImageDialogueContent | universalviewerType Alias AdjustImageDialogueContent
AdjustImageDialogueContent: DialogueContent & { brightness: string; contrast: string; remember: string; reset: string; saturation: string; title: string;}
diff --git a/docs/types/_internal_.AdjustImageDialogueOptions.html b/docs/types/_internal_.AdjustImageDialogueOptions.html
new file mode 100644
index 000000000..bfa9fc07a
--- /dev/null
+++ b/docs/types/_internal_.AdjustImageDialogueOptions.html
@@ -0,0 +1 @@
+AdjustImageDialogueOptions | universalviewerType Alias AdjustImageDialogueOptions
diff --git a/docs/types/_internal_.AlephCenterPanel.html b/docs/types/_internal_.AlephCenterPanel.html
index 1bf3b2fd3..63cf5f8c2 100644
--- a/docs/types/_internal_.AlephCenterPanel.html
+++ b/docs/types/_internal_.AlephCenterPanel.html
@@ -1 +1 @@
-AlephCenterPanel | universalviewerType alias AlephCenterPanel
\ No newline at end of file
+AlephCenterPanel | universalviewerType Alias AlephCenterPanel
diff --git a/docs/types/_internal_.AlephCenterPanelContent.html b/docs/types/_internal_.AlephCenterPanelContent.html
index ca036f0ee..228c80143 100644
--- a/docs/types/_internal_.AlephCenterPanelContent.html
+++ b/docs/types/_internal_.AlephCenterPanelContent.html
@@ -1 +1 @@
-AlephCenterPanelContent | universalviewerType alias AlephCenterPanelContent
\ No newline at end of file
+AlephCenterPanelContent | universalviewerType Alias AlephCenterPanelContent
diff --git a/docs/types/_internal_.AlephCenterPanelOptions.html b/docs/types/_internal_.AlephCenterPanelOptions.html
index 9a3760141..8ffce668e 100644
--- a/docs/types/_internal_.AlephCenterPanelOptions.html
+++ b/docs/types/_internal_.AlephCenterPanelOptions.html
@@ -1 +1 @@
-AlephCenterPanelOptions | universalviewerType alias AlephCenterPanelOptions
\ No newline at end of file
+AlephCenterPanelOptions | universalviewerType Alias AlephCenterPanelOptions
diff --git a/docs/types/_internal_.AlephDownloadDialogue.html b/docs/types/_internal_.AlephDownloadDialogue.html
index 2be778e21..5af7dca61 100644
--- a/docs/types/_internal_.AlephDownloadDialogue.html
+++ b/docs/types/_internal_.AlephDownloadDialogue.html
@@ -1 +1 @@
-AlephDownloadDialogue | universalviewerType alias AlephDownloadDialogue
\ No newline at end of file
+AlephDownloadDialogue | universalviewerType Alias AlephDownloadDialogue
diff --git a/docs/types/_internal_.AlephDownloadDialogueContent.html b/docs/types/_internal_.AlephDownloadDialogueContent.html
index 1f19ca018..12ab8e254 100644
--- a/docs/types/_internal_.AlephDownloadDialogueContent.html
+++ b/docs/types/_internal_.AlephDownloadDialogueContent.html
@@ -1 +1 @@
-AlephDownloadDialogueContent | universalviewerType alias AlephDownloadDialogueContent
\ No newline at end of file
+AlephDownloadDialogueContent | universalviewerType Alias AlephDownloadDialogueContent
diff --git a/docs/types/_internal_.AlephDownloadDialogueOptions.html b/docs/types/_internal_.AlephDownloadDialogueOptions.html
index 186fac99c..649550fb1 100644
--- a/docs/types/_internal_.AlephDownloadDialogueOptions.html
+++ b/docs/types/_internal_.AlephDownloadDialogueOptions.html
@@ -1 +1 @@
-AlephDownloadDialogueOptions | universalviewerType alias AlephDownloadDialogueOptions
\ No newline at end of file
+AlephDownloadDialogueOptions | universalviewerType Alias AlephDownloadDialogueOptions
diff --git a/docs/types/_internal_.AlephLeftPanel.html b/docs/types/_internal_.AlephLeftPanel.html
index acdbffc71..88c336421 100644
--- a/docs/types/_internal_.AlephLeftPanel.html
+++ b/docs/types/_internal_.AlephLeftPanel.html
@@ -1 +1 @@
-AlephLeftPanel | universalviewerType alias AlephLeftPanel
\ No newline at end of file
+AlephLeftPanel | universalviewerType Alias AlephLeftPanel
diff --git a/docs/types/_internal_.AlephLeftPanelContent.html b/docs/types/_internal_.AlephLeftPanelContent.html
index bfad4d310..13d260ae5 100644
--- a/docs/types/_internal_.AlephLeftPanelContent.html
+++ b/docs/types/_internal_.AlephLeftPanelContent.html
@@ -1 +1 @@
-AlephLeftPanelContent | universalviewerType alias AlephLeftPanelContent
\ No newline at end of file
+AlephLeftPanelContent | universalviewerType Alias AlephLeftPanelContent
diff --git a/docs/types/_internal_.AlephLeftPanelOptions.html b/docs/types/_internal_.AlephLeftPanelOptions.html
index 359436ca0..1f3e69e12 100644
--- a/docs/types/_internal_.AlephLeftPanelOptions.html
+++ b/docs/types/_internal_.AlephLeftPanelOptions.html
@@ -1,5 +1,5 @@
-AlephLeftPanelOptions | universalviewerType alias AlephLeftPanelOptions
AlephLeftPanelOptions: ExpandPanelOptions & { consoleTabEnabled: boolean; graphTabEnabled: boolean; settingsTabEnabled: boolean; srcTabEnabled: boolean; } Type declaration
consoleTabEnabled: boolean
graphTabEnabled: boolean
settingsTabEnabled: boolean
srcTabEnabled: boolean
\ No newline at end of file
+AlephLeftPanelOptions | universalviewerType Alias AlephLeftPanelOptions
AlephLeftPanelOptions: ExpandPanelOptions & { consoleTabEnabled: boolean; graphTabEnabled: boolean; settingsTabEnabled: boolean; srcTabEnabled: boolean;} Type declaration
consoleTabEnabled: boolean
graphTabEnabled: boolean
settingsTabEnabled: boolean
srcTabEnabled: boolean
diff --git a/docs/types/_internal_.AlephSettingsDialogue.html b/docs/types/_internal_.AlephSettingsDialogue.html
index b5de970c1..2c2be7915 100644
--- a/docs/types/_internal_.AlephSettingsDialogue.html
+++ b/docs/types/_internal_.AlephSettingsDialogue.html
@@ -1 +1 @@
-AlephSettingsDialogue | universalviewerType alias AlephSettingsDialogue
\ No newline at end of file
+AlephSettingsDialogue | universalviewerType Alias AlephSettingsDialogue
diff --git a/docs/types/_internal_.AlephSettingsDialogueContent.html b/docs/types/_internal_.AlephSettingsDialogueContent.html
index ce65b16c6..21d8c076d 100644
--- a/docs/types/_internal_.AlephSettingsDialogueContent.html
+++ b/docs/types/_internal_.AlephSettingsDialogueContent.html
@@ -1 +1 @@
-AlephSettingsDialogueContent | universalviewerType alias AlephSettingsDialogueContent
\ No newline at end of file
+AlephSettingsDialogueContent | universalviewerType Alias AlephSettingsDialogueContent
diff --git a/docs/types/_internal_.AlephSettingsDialogueOptions.html b/docs/types/_internal_.AlephSettingsDialogueOptions.html
index 98e775363..82b46bebf 100644
--- a/docs/types/_internal_.AlephSettingsDialogueOptions.html
+++ b/docs/types/_internal_.AlephSettingsDialogueOptions.html
@@ -1 +1 @@
-AlephSettingsDialogueOptions | universalviewerType alias AlephSettingsDialogueOptions
\ No newline at end of file
+AlephSettingsDialogueOptions | universalviewerType Alias AlephSettingsDialogueOptions
diff --git a/docs/types/_internal_.AlephShareDialogue.html b/docs/types/_internal_.AlephShareDialogue.html
index a2c1eb8c3..60797fcac 100644
--- a/docs/types/_internal_.AlephShareDialogue.html
+++ b/docs/types/_internal_.AlephShareDialogue.html
@@ -1 +1 @@
-AlephShareDialogue | universalviewerType alias AlephShareDialogue
\ No newline at end of file
+AlephShareDialogue | universalviewerType Alias AlephShareDialogue
diff --git a/docs/types/_internal_.AlephShareDialogueContent.html b/docs/types/_internal_.AlephShareDialogueContent.html
index a21841596..8836bccbc 100644
--- a/docs/types/_internal_.AlephShareDialogueContent.html
+++ b/docs/types/_internal_.AlephShareDialogueContent.html
@@ -1 +1 @@
-AlephShareDialogueContent | universalviewerType alias AlephShareDialogueContent
\ No newline at end of file
+AlephShareDialogueContent | universalviewerType Alias AlephShareDialogueContent
diff --git a/docs/types/_internal_.AlephShareDialogueOptions.html b/docs/types/_internal_.AlephShareDialogueOptions.html
index fcbdb3010..46d9090fc 100644
--- a/docs/types/_internal_.AlephShareDialogueOptions.html
+++ b/docs/types/_internal_.AlephShareDialogueOptions.html
@@ -1 +1 @@
-AlephShareDialogueOptions | universalviewerType alias AlephShareDialogueOptions
\ No newline at end of file
+AlephShareDialogueOptions | universalviewerType Alias AlephShareDialogueOptions
diff --git a/docs/types/_internal_.AuthDialogue.html b/docs/types/_internal_.AuthDialogue.html
index 6a9efe9f3..d3a1ea4d5 100644
--- a/docs/types/_internal_.AuthDialogue.html
+++ b/docs/types/_internal_.AuthDialogue.html
@@ -1 +1 @@
-AuthDialogue | universalviewer
\ No newline at end of file
+AuthDialogue | universalviewer
diff --git a/docs/types/_internal_.AuthDialogueContent.html b/docs/types/_internal_.AuthDialogueContent.html
index 1f1ad1e47..cd9863b0a 100644
--- a/docs/types/_internal_.AuthDialogueContent.html
+++ b/docs/types/_internal_.AuthDialogueContent.html
@@ -1 +1 @@
-AuthDialogueContent | universalviewerType alias AuthDialogueContent
AuthDialogueContent: DialogueContent & { cancel: string; confirm: string; } Type declaration
cancel: string
confirm: string
\ No newline at end of file
+AuthDialogueContent | universalviewerType Alias AuthDialogueContent
diff --git a/docs/types/_internal_.AuthDialogueOptions.html b/docs/types/_internal_.AuthDialogueOptions.html
index 564cf09c2..7c1a968d4 100644
--- a/docs/types/_internal_.AuthDialogueOptions.html
+++ b/docs/types/_internal_.AuthDialogueOptions.html
@@ -1 +1 @@
-AuthDialogueOptions | universalviewerType alias AuthDialogueOptions
\ No newline at end of file
+AuthDialogueOptions | universalviewerType Alias AuthDialogueOptions
diff --git a/docs/types/_internal_.BaseConfig.html b/docs/types/_internal_.BaseConfig.html
index f79f596ee..29ad1232d 100644
--- a/docs/types/_internal_.BaseConfig.html
+++ b/docs/types/_internal_.BaseConfig.html
@@ -1 +1 @@
-BaseConfig | universalviewer
\ No newline at end of file
+BaseConfig | universalviewer
diff --git a/docs/types/_internal_.CenterPanel.html b/docs/types/_internal_.CenterPanel.html
index 5cae09a83..dc01100fe 100644
--- a/docs/types/_internal_.CenterPanel.html
+++ b/docs/types/_internal_.CenterPanel.html
@@ -1 +1 @@
-CenterPanel | universalviewer
\ No newline at end of file
+CenterPanel | universalviewer
diff --git a/docs/types/_internal_.CenterPanelContent.html b/docs/types/_internal_.CenterPanelContent.html
index 187235eae..0961a4e3a 100644
--- a/docs/types/_internal_.CenterPanelContent.html
+++ b/docs/types/_internal_.CenterPanelContent.html
@@ -1 +1 @@
-CenterPanelContent | universalviewerType alias CenterPanelContent
CenterPanelContent: {
attribution: string;
}
\ No newline at end of file
+CenterPanelContent | universalviewerType Alias CenterPanelContent
CenterPanelContent: {
attribution: string;
close: string;
closeAttribution: string;
}
diff --git a/docs/types/_internal_.CenterPanelOptions.html b/docs/types/_internal_.CenterPanelOptions.html
index 741ed68ec..6fc87ec6e 100644
--- a/docs/types/_internal_.CenterPanelOptions.html
+++ b/docs/types/_internal_.CenterPanelOptions.html
@@ -1 +1 @@
-CenterPanelOptions | universalviewerType alias CenterPanelOptions
CenterPanelOptions: {
mostSpecificRequiredStatement: boolean;
requiredStatementEnabled: boolean;
subtitleEnabled: boolean;
titleEnabled: boolean;
}
Type declaration
mostSpecificRequiredStatement: boolean
requiredStatementEnabled: boolean
subtitleEnabled: boolean
titleEnabled: boolean
\ No newline at end of file
+CenterPanelOptions | universalviewerType Alias CenterPanelOptions
CenterPanelOptions: {
mostSpecificRequiredStatement: boolean;
requiredStatementEnabled: boolean;
subtitleEnabled: boolean;
titleEnabled: boolean;
}
diff --git a/docs/types/_internal_.ClickThroughDialogue.html b/docs/types/_internal_.ClickThroughDialogue.html
index 40695d201..6600d3b1b 100644
--- a/docs/types/_internal_.ClickThroughDialogue.html
+++ b/docs/types/_internal_.ClickThroughDialogue.html
@@ -1 +1 @@
-ClickThroughDialogue | universalviewerType alias ClickThroughDialogue
\ No newline at end of file
+ClickThroughDialogue | universalviewerType Alias ClickThroughDialogue
diff --git a/docs/types/_internal_.ClickThroughDialogueContent.html b/docs/types/_internal_.ClickThroughDialogueContent.html
index 3d0983abd..ed6d798e0 100644
--- a/docs/types/_internal_.ClickThroughDialogueContent.html
+++ b/docs/types/_internal_.ClickThroughDialogueContent.html
@@ -1 +1 @@
-ClickThroughDialogueContent | universalviewerType alias ClickThroughDialogueContent
\ No newline at end of file
+ClickThroughDialogueContent | universalviewerType Alias ClickThroughDialogueContent
diff --git a/docs/types/_internal_.ClickThroughDialogueOptions.html b/docs/types/_internal_.ClickThroughDialogueOptions.html
index 97167a027..377a30236 100644
--- a/docs/types/_internal_.ClickThroughDialogueOptions.html
+++ b/docs/types/_internal_.ClickThroughDialogueOptions.html
@@ -1 +1 @@
-ClickThroughDialogueOptions | universalviewerType alias ClickThroughDialogueOptions
\ No newline at end of file
+ClickThroughDialogueOptions | universalviewerType Alias ClickThroughDialogueOptions
diff --git a/docs/types/_internal_.Config-1.html b/docs/types/_internal_.Config-1.html
index d59d801d9..5857febd5 100644
--- a/docs/types/_internal_.Config-1.html
+++ b/docs/types/_internal_.Config-1.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-2.html b/docs/types/_internal_.Config-2.html
index c45643de3..1b79460e4 100644
--- a/docs/types/_internal_.Config-2.html
+++ b/docs/types/_internal_.Config-2.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-3.html b/docs/types/_internal_.Config-3.html
index 2178debea..3ef225f70 100644
--- a/docs/types/_internal_.Config-3.html
+++ b/docs/types/_internal_.Config-3.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-4.html b/docs/types/_internal_.Config-4.html
index b8a71e804..a1520d10d 100644
--- a/docs/types/_internal_.Config-4.html
+++ b/docs/types/_internal_.Config-4.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-5.html b/docs/types/_internal_.Config-5.html
index 54366b8b4..2bb6eba59 100644
--- a/docs/types/_internal_.Config-5.html
+++ b/docs/types/_internal_.Config-5.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-6.html b/docs/types/_internal_.Config-6.html
index d0982f1f2..a2338ebd1 100644
--- a/docs/types/_internal_.Config-6.html
+++ b/docs/types/_internal_.Config-6.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config-7.html b/docs/types/_internal_.Config-7.html
index 7dfb8b1aa..5aa64b079 100644
--- a/docs/types/_internal_.Config-7.html
+++ b/docs/types/_internal_.Config-7.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Config.html b/docs/types/_internal_.Config.html
index b80c783b4..7a71d4ae5 100644
--- a/docs/types/_internal_.Config.html
+++ b/docs/types/_internal_.Config.html
@@ -1 +1 @@
-Config | universalviewer
\ No newline at end of file
+Config | universalviewer
diff --git a/docs/types/_internal_.Content.html b/docs/types/_internal_.Content.html
index ac63c8a7f..34f3febdc 100644
--- a/docs/types/_internal_.Content.html
+++ b/docs/types/_internal_.Content.html
@@ -1 +1 @@
-Content | universalviewerContent: {
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
\ No newline at end of file
+Content | universalviewerContent: {
authCORSError: string;
authorisationFailedMessage: string;
canvasIndexOutOfRange: string;
fallbackDegradedLabel: string;
fallbackDegradedMessage: string;
forbiddenResourceMessage: string;
mediaViewer: string;
skipToDownload: string;
termsOfUse: string;
}
diff --git a/docs/types/_internal_.ContentLeftPanel.html b/docs/types/_internal_.ContentLeftPanel.html
index 563ee8b53..e98b7a3e1 100644
--- a/docs/types/_internal_.ContentLeftPanel.html
+++ b/docs/types/_internal_.ContentLeftPanel.html
@@ -1 +1 @@
-ContentLeftPanel | universalviewerType alias ContentLeftPanel
\ No newline at end of file
+ContentLeftPanel | universalviewerType Alias ContentLeftPanel
diff --git a/docs/types/_internal_.ContentLeftPanelContent.html b/docs/types/_internal_.ContentLeftPanelContent.html
index ee4c2f27a..5f37d76f8 100644
--- a/docs/types/_internal_.ContentLeftPanelContent.html
+++ b/docs/types/_internal_.ContentLeftPanelContent.html
@@ -1 +1 @@
-ContentLeftPanelContent | universalviewerType 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
\ No newline at end of file
+ContentLeftPanelContent | universalviewerType Alias ContentLeftPanelContent
ContentLeftPanelContent: ExpandPanelContent & { date: string; index: string; manifestRanges: string; searchResult: string; searchResults: string; sortBy: string; thumbnails: string; title: string; volume: string;}
diff --git a/docs/types/_internal_.ContentLeftPanelOptions.html b/docs/types/_internal_.ContentLeftPanelOptions.html
index 70e5c8fab..f6cd7b536 100644
--- a/docs/types/_internal_.ContentLeftPanelOptions.html
+++ b/docs/types/_internal_.ContentLeftPanelOptions.html
@@ -1,24 +1,25 @@
-ContentLeftPanelOptions | universalviewerType 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
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
thumbsEnabled: boolean
thumbsExtraHeight: number
thumbsImageFadeInDuration: number
thumbsLoadRange: number
treeEnabled: boolean
twoColThumbHeight: number
twoColThumbWidth: number
\ No newline at end of file
+ContentLeftPanelOptions | universalviewerType 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
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
thumbsEnabled: boolean
thumbsExtraHeight: number
thumbsImageFadeInDuration: number
thumbsLoadRange: number
treeEnabled: boolean
twoColThumbHeight: number
twoColThumbWidth: number
diff --git a/docs/types/_internal_.DefaultDownloadDialogue.html b/docs/types/_internal_.DefaultDownloadDialogue.html
index 6866f3620..435ad7c8c 100644
--- a/docs/types/_internal_.DefaultDownloadDialogue.html
+++ b/docs/types/_internal_.DefaultDownloadDialogue.html
@@ -1 +1 @@
-DefaultDownloadDialogue | universalviewerType alias DefaultDownloadDialogue
\ No newline at end of file
+DefaultDownloadDialogue | universalviewerType Alias DefaultDownloadDialogue
diff --git a/docs/types/_internal_.DefaultDownloadDialogueContent.html b/docs/types/_internal_.DefaultDownloadDialogueContent.html
index 09d9c0bd8..dfd2c4cce 100644
--- a/docs/types/_internal_.DefaultDownloadDialogueContent.html
+++ b/docs/types/_internal_.DefaultDownloadDialogueContent.html
@@ -1 +1 @@
-DefaultDownloadDialogueContent | universalviewerType alias DefaultDownloadDialogueContent
\ No newline at end of file
+DefaultDownloadDialogueContent | universalviewerType Alias DefaultDownloadDialogueContent
diff --git a/docs/types/_internal_.DefaultDownloadDialogueOptions.html b/docs/types/_internal_.DefaultDownloadDialogueOptions.html
index 24e4d2672..ad898c212 100644
--- a/docs/types/_internal_.DefaultDownloadDialogueOptions.html
+++ b/docs/types/_internal_.DefaultDownloadDialogueOptions.html
@@ -1 +1 @@
-DefaultDownloadDialogueOptions | universalviewerType alias DefaultDownloadDialogueOptions
\ No newline at end of file
+DefaultDownloadDialogueOptions | universalviewerType Alias DefaultDownloadDialogueOptions
diff --git a/docs/types/_internal_.DefaultSettingsDialogue.html b/docs/types/_internal_.DefaultSettingsDialogue.html
index 16d0f0a25..42629f998 100644
--- a/docs/types/_internal_.DefaultSettingsDialogue.html
+++ b/docs/types/_internal_.DefaultSettingsDialogue.html
@@ -1 +1 @@
-DefaultSettingsDialogue | universalviewerType alias DefaultSettingsDialogue
\ No newline at end of file
+DefaultSettingsDialogue | universalviewerType Alias DefaultSettingsDialogue
diff --git a/docs/types/_internal_.DefaultSettingsDialogueContent.html b/docs/types/_internal_.DefaultSettingsDialogueContent.html
index 15bbc0be6..976eee3e5 100644
--- a/docs/types/_internal_.DefaultSettingsDialogueContent.html
+++ b/docs/types/_internal_.DefaultSettingsDialogueContent.html
@@ -1 +1 @@
-DefaultSettingsDialogueContent | universalviewerType alias DefaultSettingsDialogueContent
\ No newline at end of file
+DefaultSettingsDialogueContent | universalviewerType Alias DefaultSettingsDialogueContent
diff --git a/docs/types/_internal_.DefaultSettingsDialogueOptions.html b/docs/types/_internal_.DefaultSettingsDialogueOptions.html
index 59fd9c804..bcf1900a3 100644
--- a/docs/types/_internal_.DefaultSettingsDialogueOptions.html
+++ b/docs/types/_internal_.DefaultSettingsDialogueOptions.html
@@ -1 +1 @@
-DefaultSettingsDialogueOptions | universalviewerType alias DefaultSettingsDialogueOptions
\ No newline at end of file
+DefaultSettingsDialogueOptions | universalviewerType Alias DefaultSettingsDialogueOptions
diff --git a/docs/types/_internal_.DefaultShareDialogue.html b/docs/types/_internal_.DefaultShareDialogue.html
index 470ba191e..cf19b7a8e 100644
--- a/docs/types/_internal_.DefaultShareDialogue.html
+++ b/docs/types/_internal_.DefaultShareDialogue.html
@@ -1 +1 @@
-DefaultShareDialogue | universalviewerType alias DefaultShareDialogue
\ No newline at end of file
+DefaultShareDialogue | universalviewerType Alias DefaultShareDialogue
diff --git a/docs/types/_internal_.DefaultShareDialogueContent.html b/docs/types/_internal_.DefaultShareDialogueContent.html
index cb3dc4d7d..0a5f108d5 100644
--- a/docs/types/_internal_.DefaultShareDialogueContent.html
+++ b/docs/types/_internal_.DefaultShareDialogueContent.html
@@ -1 +1 @@
-DefaultShareDialogueContent | universalviewerType alias DefaultShareDialogueContent
\ No newline at end of file
+DefaultShareDialogueContent | universalviewerType Alias DefaultShareDialogueContent
diff --git a/docs/types/_internal_.DefaultShareDialogueOptions.html b/docs/types/_internal_.DefaultShareDialogueOptions.html
index 5b0c23a55..eb30a6176 100644
--- a/docs/types/_internal_.DefaultShareDialogueOptions.html
+++ b/docs/types/_internal_.DefaultShareDialogueOptions.html
@@ -1 +1 @@
-DefaultShareDialogueOptions | universalviewerType alias DefaultShareDialogueOptions
\ No newline at end of file
+DefaultShareDialogueOptions | universalviewerType Alias DefaultShareDialogueOptions
diff --git a/docs/types/_internal_.Dialogue.html b/docs/types/_internal_.Dialogue.html
index 228cd697f..089f37e2e 100644
--- a/docs/types/_internal_.Dialogue.html
+++ b/docs/types/_internal_.Dialogue.html
@@ -1 +1 @@
-Dialogue | universalviewer
\ No newline at end of file
+Dialogue | universalviewer
diff --git a/docs/types/_internal_.DialogueContent.html b/docs/types/_internal_.DialogueContent.html
index e6f8017d9..5450f9a6d 100644
--- a/docs/types/_internal_.DialogueContent.html
+++ b/docs/types/_internal_.DialogueContent.html
@@ -1 +1 @@
-DialogueContent | universalviewerType alias DialogueContent
DialogueContent: {
close: string;
}
\ No newline at end of file
+DialogueContent | universalviewerType Alias DialogueContent
DialogueContent: { close: string }
diff --git a/docs/types/_internal_.DialogueOptions.html b/docs/types/_internal_.DialogueOptions.html
index a5c98c4e5..7b5e7d8a0 100644
--- a/docs/types/_internal_.DialogueOptions.html
+++ b/docs/types/_internal_.DialogueOptions.html
@@ -1 +1 @@
-DialogueOptions | universalviewerType alias DialogueOptions
DialogueOptions: {
topCloseButtonEnabled: boolean;
}
Type declaration
topCloseButtonEnabled: boolean
\ No newline at end of file
+DialogueOptions | universalviewerType Alias DialogueOptions
DialogueOptions: { topCloseButtonEnabled: boolean }
diff --git a/docs/types/_internal_.DownloadDialogue.html b/docs/types/_internal_.DownloadDialogue.html
index 5e58d6ea6..b6edba0b0 100644
--- a/docs/types/_internal_.DownloadDialogue.html
+++ b/docs/types/_internal_.DownloadDialogue.html
@@ -1 +1 @@
-DownloadDialogue | universalviewerType alias DownloadDialogue
\ No newline at end of file
+DownloadDialogue | universalviewerType Alias DownloadDialogue
diff --git a/docs/types/_internal_.DownloadDialogueContent.html b/docs/types/_internal_.DownloadDialogueContent.html
index 0fe5c9381..d29270cfa 100644
--- a/docs/types/_internal_.DownloadDialogueContent.html
+++ b/docs/types/_internal_.DownloadDialogueContent.html
@@ -1 +1 @@
-DownloadDialogueContent | universalviewerType 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
\ No newline at end of file
+DownloadDialogueContent | universalviewerType Alias DownloadDialogueContent
DownloadDialogueContent: DialogueContent & { download: string; entireDocument: string; entireFileAsOriginal: string; entireFileAsOriginalWithFormat: string; noneAvailable: string; title: string;}
diff --git a/docs/types/_internal_.DownloadDialogueOptions.html b/docs/types/_internal_.DownloadDialogueOptions.html
index cbc0aa1e5..85c34675c 100644
--- a/docs/types/_internal_.DownloadDialogueOptions.html
+++ b/docs/types/_internal_.DownloadDialogueOptions.html
@@ -1 +1 @@
-DownloadDialogueOptions | universalviewerType alias DownloadDialogueOptions
\ No newline at end of file
+DownloadDialogueOptions | universalviewerType Alias DownloadDialogueOptions
diff --git a/docs/types/_internal_.EbookCenterPanel.html b/docs/types/_internal_.EbookCenterPanel.html
index a01f9df4f..ad728d7e2 100644
--- a/docs/types/_internal_.EbookCenterPanel.html
+++ b/docs/types/_internal_.EbookCenterPanel.html
@@ -1 +1 @@
-EbookCenterPanel | universalviewerType alias EbookCenterPanel
\ No newline at end of file
+EbookCenterPanel | universalviewerType Alias EbookCenterPanel
diff --git a/docs/types/_internal_.EbookCenterPanelContent.html b/docs/types/_internal_.EbookCenterPanelContent.html
index 7c4e34e42..48216ef01 100644
--- a/docs/types/_internal_.EbookCenterPanelContent.html
+++ b/docs/types/_internal_.EbookCenterPanelContent.html
@@ -1 +1 @@
-EbookCenterPanelContent | universalviewerType alias EbookCenterPanelContent
\ No newline at end of file
+EbookCenterPanelContent | universalviewerType Alias EbookCenterPanelContent
diff --git a/docs/types/_internal_.EbookCenterPanelOptions.html b/docs/types/_internal_.EbookCenterPanelOptions.html
index 6c840b6e8..8056ebf8b 100644
--- a/docs/types/_internal_.EbookCenterPanelOptions.html
+++ b/docs/types/_internal_.EbookCenterPanelOptions.html
@@ -1 +1 @@
-EbookCenterPanelOptions | universalviewerType alias EbookCenterPanelOptions
\ No newline at end of file
+EbookCenterPanelOptions | universalviewerType Alias EbookCenterPanelOptions
diff --git a/docs/types/_internal_.EbookDownloadDialogue.html b/docs/types/_internal_.EbookDownloadDialogue.html
index c38b9891b..efcffb579 100644
--- a/docs/types/_internal_.EbookDownloadDialogue.html
+++ b/docs/types/_internal_.EbookDownloadDialogue.html
@@ -1 +1 @@
-EbookDownloadDialogue | universalviewerType alias EbookDownloadDialogue
\ No newline at end of file
+EbookDownloadDialogue | universalviewerType Alias EbookDownloadDialogue
diff --git a/docs/types/_internal_.EbookDownloadDialogueContent.html b/docs/types/_internal_.EbookDownloadDialogueContent.html
index 3b54314e9..27162926b 100644
--- a/docs/types/_internal_.EbookDownloadDialogueContent.html
+++ b/docs/types/_internal_.EbookDownloadDialogueContent.html
@@ -1 +1 @@
-EbookDownloadDialogueContent | universalviewerType alias EbookDownloadDialogueContent
\ No newline at end of file
+EbookDownloadDialogueContent | universalviewerType Alias EbookDownloadDialogueContent
diff --git a/docs/types/_internal_.EbookDownloadDialogueOptions.html b/docs/types/_internal_.EbookDownloadDialogueOptions.html
index b502efc24..ff7041a8d 100644
--- a/docs/types/_internal_.EbookDownloadDialogueOptions.html
+++ b/docs/types/_internal_.EbookDownloadDialogueOptions.html
@@ -1 +1 @@
-EbookDownloadDialogueOptions | universalviewerType alias EbookDownloadDialogueOptions
\ No newline at end of file
+EbookDownloadDialogueOptions | universalviewerType Alias EbookDownloadDialogueOptions
diff --git a/docs/types/_internal_.EbookLeftPanel.html b/docs/types/_internal_.EbookLeftPanel.html
index dca2febd8..67be67c5f 100644
--- a/docs/types/_internal_.EbookLeftPanel.html
+++ b/docs/types/_internal_.EbookLeftPanel.html
@@ -1 +1 @@
-EbookLeftPanel | universalviewerType alias EbookLeftPanel
\ No newline at end of file
+EbookLeftPanel | universalviewerType Alias EbookLeftPanel
diff --git a/docs/types/_internal_.EbookLeftPanelContent.html b/docs/types/_internal_.EbookLeftPanelContent.html
index 5478f3d4c..d5e19f0af 100644
--- a/docs/types/_internal_.EbookLeftPanelContent.html
+++ b/docs/types/_internal_.EbookLeftPanelContent.html
@@ -1 +1 @@
-EbookLeftPanelContent | universalviewerType alias EbookLeftPanelContent
\ No newline at end of file
+EbookLeftPanelContent | universalviewerType Alias EbookLeftPanelContent
diff --git a/docs/types/_internal_.EbookLeftPanelOptions.html b/docs/types/_internal_.EbookLeftPanelOptions.html
index ea18a0dd6..9acf782ca 100644
--- a/docs/types/_internal_.EbookLeftPanelOptions.html
+++ b/docs/types/_internal_.EbookLeftPanelOptions.html
@@ -1 +1 @@
-EbookLeftPanelOptions | universalviewerType alias EbookLeftPanelOptions
\ No newline at end of file
+EbookLeftPanelOptions | universalviewerType Alias EbookLeftPanelOptions
diff --git a/docs/types/_internal_.EbookSettingsDialogue.html b/docs/types/_internal_.EbookSettingsDialogue.html
index ef46f1192..4db6d02a7 100644
--- a/docs/types/_internal_.EbookSettingsDialogue.html
+++ b/docs/types/_internal_.EbookSettingsDialogue.html
@@ -1 +1 @@
-EbookSettingsDialogue | universalviewerType alias EbookSettingsDialogue
\ No newline at end of file
+EbookSettingsDialogue | universalviewerType Alias EbookSettingsDialogue
diff --git a/docs/types/_internal_.EbookSettingsDialogueContent.html b/docs/types/_internal_.EbookSettingsDialogueContent.html
index fdf7e209c..27a2451e3 100644
--- a/docs/types/_internal_.EbookSettingsDialogueContent.html
+++ b/docs/types/_internal_.EbookSettingsDialogueContent.html
@@ -1 +1 @@
-EbookSettingsDialogueContent | universalviewerType alias EbookSettingsDialogueContent
\ No newline at end of file
+EbookSettingsDialogueContent | universalviewerType Alias EbookSettingsDialogueContent
diff --git a/docs/types/_internal_.EbookSettingsDialogueOptions.html b/docs/types/_internal_.EbookSettingsDialogueOptions.html
index f8324ad6e..0c3fdb0e4 100644
--- a/docs/types/_internal_.EbookSettingsDialogueOptions.html
+++ b/docs/types/_internal_.EbookSettingsDialogueOptions.html
@@ -1 +1 @@
-EbookSettingsDialogueOptions | universalviewerType alias EbookSettingsDialogueOptions
\ No newline at end of file
+EbookSettingsDialogueOptions | universalviewerType Alias EbookSettingsDialogueOptions
diff --git a/docs/types/_internal_.EbookShareDialogue.html b/docs/types/_internal_.EbookShareDialogue.html
index 361be36ee..377a5dd86 100644
--- a/docs/types/_internal_.EbookShareDialogue.html
+++ b/docs/types/_internal_.EbookShareDialogue.html
@@ -1 +1 @@
-EbookShareDialogue | universalviewerType alias EbookShareDialogue
\ No newline at end of file
+EbookShareDialogue | universalviewerType Alias EbookShareDialogue
diff --git a/docs/types/_internal_.EbookShareDialogueContent.html b/docs/types/_internal_.EbookShareDialogueContent.html
index 122563b5c..c0d76435f 100644
--- a/docs/types/_internal_.EbookShareDialogueContent.html
+++ b/docs/types/_internal_.EbookShareDialogueContent.html
@@ -1 +1 @@
-EbookShareDialogueContent | universalviewerType alias EbookShareDialogueContent
\ No newline at end of file
+EbookShareDialogueContent | universalviewerType Alias EbookShareDialogueContent
diff --git a/docs/types/_internal_.EbookShareDialogueOptions.html b/docs/types/_internal_.EbookShareDialogueOptions.html
index 9d1a31471..1e59bb34f 100644
--- a/docs/types/_internal_.EbookShareDialogueOptions.html
+++ b/docs/types/_internal_.EbookShareDialogueOptions.html
@@ -1 +1 @@
-EbookShareDialogueOptions | universalviewerType alias EbookShareDialogueOptions
\ No newline at end of file
+EbookShareDialogueOptions | universalviewerType Alias EbookShareDialogueOptions
diff --git a/docs/types/_internal_.ExpandPanel.html b/docs/types/_internal_.ExpandPanel.html
index f1bff8605..0e21778e3 100644
--- a/docs/types/_internal_.ExpandPanel.html
+++ b/docs/types/_internal_.ExpandPanel.html
@@ -1 +1 @@
-ExpandPanel | universalviewer
\ No newline at end of file
+ExpandPanel | universalviewer
diff --git a/docs/types/_internal_.ExpandPanelContent.html b/docs/types/_internal_.ExpandPanelContent.html
index 7616b0eda..ed0cf931d 100644
--- a/docs/types/_internal_.ExpandPanelContent.html
+++ b/docs/types/_internal_.ExpandPanelContent.html
@@ -1 +1 @@
-ExpandPanelContent | universalviewerType alias ExpandPanelContent
ExpandPanelContent: {
collapse: string;
collapseFull: string;
expand: string;
expandFull: string;
}
Type declaration
collapse: string
collapseFull: string
expand: string
expandFull: string
\ No newline at end of file
+ExpandPanelContent | universalviewerType Alias ExpandPanelContent
ExpandPanelContent: {
collapse: string;
collapseFull: string;
expand: string;
expandFull: string;
}
diff --git a/docs/types/_internal_.ExpandPanelOptions.html b/docs/types/_internal_.ExpandPanelOptions.html
index cc4cbe90a..635036778 100644
--- a/docs/types/_internal_.ExpandPanelOptions.html
+++ b/docs/types/_internal_.ExpandPanelOptions.html
@@ -1,6 +1,6 @@
-ExpandPanelOptions | universalviewerType alias ExpandPanelOptions
ExpandPanelOptions: {
expandFullEnabled: boolean;
panelAnimationDuration: number;
panelCollapsedWidth: number;
panelExpandedWidth: number;
panelOpen: boolean;
}
Type declaration
expandFullEnabled: boolean
panelAnimationDuration: number
panelCollapsedWidth: number
panelExpandedWidth: number
panelOpen: boolean
\ No newline at end of file
+ExpandPanelOptions | universalviewerType Alias ExpandPanelOptions
ExpandPanelOptions: {
expandFullEnabled: boolean;
panelAnimationDuration: number;
panelCollapsedWidth: number;
panelExpandedWidth: number;
panelOpen: boolean;
}
Type declaration
expandFullEnabled: boolean
panelAnimationDuration: number
panelCollapsedWidth: number
panelExpandedWidth: number
panelOpen: boolean
diff --git a/docs/types/_internal_.FileLinkCenterPanel.html b/docs/types/_internal_.FileLinkCenterPanel.html
index 3ea9e7887..14b59fadd 100644
--- a/docs/types/_internal_.FileLinkCenterPanel.html
+++ b/docs/types/_internal_.FileLinkCenterPanel.html
@@ -1 +1 @@
-FileLinkCenterPanel | universalviewerType alias FileLinkCenterPanel
\ No newline at end of file
+FileLinkCenterPanel | universalviewerType Alias FileLinkCenterPanel
diff --git a/docs/types/_internal_.FileLinkCenterPanelContent.html b/docs/types/_internal_.FileLinkCenterPanelContent.html
index cf45cd8c4..17cdb552c 100644
--- a/docs/types/_internal_.FileLinkCenterPanelContent.html
+++ b/docs/types/_internal_.FileLinkCenterPanelContent.html
@@ -1 +1 @@
-FileLinkCenterPanelContent | universalviewerType alias FileLinkCenterPanelContent
\ No newline at end of file
+FileLinkCenterPanelContent | universalviewerType Alias FileLinkCenterPanelContent
diff --git a/docs/types/_internal_.FileLinkCenterPanelOptions.html b/docs/types/_internal_.FileLinkCenterPanelOptions.html
index b7562f72c..b2f98d15e 100644
--- a/docs/types/_internal_.FileLinkCenterPanelOptions.html
+++ b/docs/types/_internal_.FileLinkCenterPanelOptions.html
@@ -1 +1 @@
-FileLinkCenterPanelOptions | universalviewerType alias FileLinkCenterPanelOptions
\ No newline at end of file
+FileLinkCenterPanelOptions | universalviewerType Alias FileLinkCenterPanelOptions
diff --git a/docs/types/_internal_.FooterPanel.html b/docs/types/_internal_.FooterPanel.html
index 3c32cc9bc..b8c3c9f25 100644
--- a/docs/types/_internal_.FooterPanel.html
+++ b/docs/types/_internal_.FooterPanel.html
@@ -1 +1 @@
-FooterPanel | universalviewer
\ No newline at end of file
+FooterPanel | universalviewer
diff --git a/docs/types/_internal_.FooterPanelContent.html b/docs/types/_internal_.FooterPanelContent.html
index 9dc0f2a1b..86e72d6bf 100644
--- a/docs/types/_internal_.FooterPanelContent.html
+++ b/docs/types/_internal_.FooterPanelContent.html
@@ -1 +1 @@
-FooterPanelContent | universalviewerType 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
\ No newline at end of file
+FooterPanelContent | universalviewerType Alias FooterPanelContent
FooterPanelContent: {
bookmark: string;
download: string;
embed: string;
exitFullScreen: string;
feedback: string;
fullScreen: string;
moreInfo: string;
open: string;
share: string;
}
diff --git a/docs/types/_internal_.FooterPanelOptions.html b/docs/types/_internal_.FooterPanelOptions.html
index 2c68ee7d0..4b517eb8e 100644
--- a/docs/types/_internal_.FooterPanelOptions.html
+++ b/docs/types/_internal_.FooterPanelOptions.html
@@ -1,11 +1,11 @@
-FooterPanelOptions | universalviewerType 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
downloadEnabled: boolean
embedEnabled: boolean
feedbackEnabled: boolean
fullscreenEnabled: boolean
minimiseButtons: boolean
moreInfoEnabled: boolean
openEnabled: boolean
printEnabled: boolean
shareEnabled: boolean
\ No newline at end of file
+FooterPanelOptions | universalviewerType 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
downloadEnabled: boolean
embedEnabled: boolean
feedbackEnabled: boolean
fullscreenEnabled: boolean
minimiseButtons: boolean
moreInfoEnabled: boolean
openEnabled: boolean
printEnabled: boolean
shareEnabled: boolean
diff --git a/docs/types/_internal_.GenericDialogue.html b/docs/types/_internal_.GenericDialogue.html
index b8f54e165..e11609f36 100644
--- a/docs/types/_internal_.GenericDialogue.html
+++ b/docs/types/_internal_.GenericDialogue.html
@@ -1 +1 @@
-GenericDialogue | universalviewerType alias GenericDialogue
\ No newline at end of file
+GenericDialogue | universalviewerType Alias GenericDialogue
diff --git a/docs/types/_internal_.GenericDialogueContent.html b/docs/types/_internal_.GenericDialogueContent.html
index 3770188e7..dd56ed388 100644
--- a/docs/types/_internal_.GenericDialogueContent.html
+++ b/docs/types/_internal_.GenericDialogueContent.html
@@ -1 +1 @@
-GenericDialogueContent | universalviewerType 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
\ No newline at end of file
+GenericDialogueContent | universalviewerType Alias GenericDialogueContent
GenericDialogueContent: DialogueContent & { emptyValue: string; invalidNumber: string; noMatches: string; ok: string; pageNotFound: string; refresh: string;}
diff --git a/docs/types/_internal_.GenericDialogueOptions.html b/docs/types/_internal_.GenericDialogueOptions.html
index 48367ee3d..cabdd420d 100644
--- a/docs/types/_internal_.GenericDialogueOptions.html
+++ b/docs/types/_internal_.GenericDialogueOptions.html
@@ -1 +1 @@
-GenericDialogueOptions | universalviewerType alias GenericDialogueOptions
\ No newline at end of file
+GenericDialogueOptions | universalviewerType Alias GenericDialogueOptions
diff --git a/docs/types/_internal_.HeaderPanel.html b/docs/types/_internal_.HeaderPanel.html
index 4d770dd65..9dae667d2 100644
--- a/docs/types/_internal_.HeaderPanel.html
+++ b/docs/types/_internal_.HeaderPanel.html
@@ -1 +1 @@
-HeaderPanel | universalviewer
\ No newline at end of file
+HeaderPanel | universalviewer
diff --git a/docs/types/_internal_.HeaderPanelContent.html b/docs/types/_internal_.HeaderPanelContent.html
index a40faa671..19bac9475 100644
--- a/docs/types/_internal_.HeaderPanelContent.html
+++ b/docs/types/_internal_.HeaderPanelContent.html
@@ -1 +1 @@
-HeaderPanelContent | universalviewerType alias HeaderPanelContent
HeaderPanelContent: {
close: string;
settings: string;
}
Type declaration
close: string
settings: string
\ No newline at end of file
+HeaderPanelContent | universalviewerType Alias HeaderPanelContent
HeaderPanelContent: { close: string; settings: string }
diff --git a/docs/types/_internal_.HeaderPanelOptions.html b/docs/types/_internal_.HeaderPanelOptions.html
index 0e8acb685..ad6e53297 100644
--- a/docs/types/_internal_.HeaderPanelOptions.html
+++ b/docs/types/_internal_.HeaderPanelOptions.html
@@ -1,4 +1,4 @@
-HeaderPanelOptions | universalviewerType alias HeaderPanelOptions
HeaderPanelOptions: {
centerOptionsEnabled: boolean;
localeToggleEnabled: boolean;
settingsButtonEnabled: boolean;
}
Type declaration
centerOptionsEnabled: boolean
localeToggleEnabled: boolean
settingsButtonEnabled: boolean
\ No newline at end of file
+HeaderPanelOptions | universalviewerType Alias HeaderPanelOptions
HeaderPanelOptions: {
centerOptionsEnabled: boolean;
localeToggleEnabled: boolean;
settingsButtonEnabled: boolean;
}
Type declaration
centerOptionsEnabled: boolean
localeToggleEnabled: boolean
settingsButtonEnabled: boolean
diff --git a/docs/types/_internal_.HelpDialogue.html b/docs/types/_internal_.HelpDialogue.html
index 1d48d16de..a66cc6bbf 100644
--- a/docs/types/_internal_.HelpDialogue.html
+++ b/docs/types/_internal_.HelpDialogue.html
@@ -1 +1 @@
-HelpDialogue | universalviewer
\ No newline at end of file
+HelpDialogue | universalviewer
diff --git a/docs/types/_internal_.HelpDialogueContent.html b/docs/types/_internal_.HelpDialogueContent.html
index 5320011ce..5c9e6b65d 100644
--- a/docs/types/_internal_.HelpDialogueContent.html
+++ b/docs/types/_internal_.HelpDialogueContent.html
@@ -1 +1 @@
-HelpDialogueContent | universalviewerType alias HelpDialogueContent
Type declaration
text: string
title: string
\ No newline at end of file
+HelpDialogueContent | universalviewerType Alias HelpDialogueContent
diff --git a/docs/types/_internal_.HelpDialogueOptions.html b/docs/types/_internal_.HelpDialogueOptions.html
index cf08a5cca..18e9b9a7c 100644
--- a/docs/types/_internal_.HelpDialogueOptions.html
+++ b/docs/types/_internal_.HelpDialogueOptions.html
@@ -1 +1 @@
-HelpDialogueOptions | universalviewerType alias HelpDialogueOptions
\ No newline at end of file
+HelpDialogueOptions | universalviewerType Alias HelpDialogueOptions
diff --git a/docs/types/_internal_.LeftPanel.html b/docs/types/_internal_.LeftPanel.html
index d2fddaef3..23b7e6fc4 100644
--- a/docs/types/_internal_.LeftPanel.html
+++ b/docs/types/_internal_.LeftPanel.html
@@ -1 +1 @@
-LeftPanel | universalviewer
\ No newline at end of file
+LeftPanel | universalviewer
diff --git a/docs/types/_internal_.Locale.html b/docs/types/_internal_.Locale.html
index 649064760..97e5e4e61 100644
--- a/docs/types/_internal_.Locale.html
+++ b/docs/types/_internal_.Locale.html
@@ -1 +1 @@
-Locale | universalviewerLocale: {
label: string;
name: string;
}
Type declaration
label: string
name: string
\ No newline at end of file
+Locale | universalviewerLocale: { label: string; name: string }
diff --git a/docs/types/_internal_.Localisation.html b/docs/types/_internal_.Localisation.html
index 3fe51912a..6eef1482d 100644
--- a/docs/types/_internal_.Localisation.html
+++ b/docs/types/_internal_.Localisation.html
@@ -1 +1 @@
-Localisation | universalviewerLocalisation: { label: string; locales: Locale[]; }
\ No newline at end of file
+Localisation | universalviewerLocalisation: { label: string; locales: Locale[] }
diff --git a/docs/types/_internal_.LoginDialogue.html b/docs/types/_internal_.LoginDialogue.html
index 927e2d71a..1ed4d129e 100644
--- a/docs/types/_internal_.LoginDialogue.html
+++ b/docs/types/_internal_.LoginDialogue.html
@@ -1 +1 @@
-LoginDialogue | universalviewer
\ No newline at end of file
+LoginDialogue | universalviewer
diff --git a/docs/types/_internal_.LoginDialogueContent.html b/docs/types/_internal_.LoginDialogueContent.html
index db687a263..3f63b30f7 100644
--- a/docs/types/_internal_.LoginDialogueContent.html
+++ b/docs/types/_internal_.LoginDialogueContent.html
@@ -1 +1 @@
-LoginDialogueContent | universalviewerType alias LoginDialogueContent
LoginDialogueContent: DialogueContent & { cancel: string; login: string; logout: string; } Type declaration
cancel: string
login: string
logout: string
\ No newline at end of file
+LoginDialogueContent | universalviewerType Alias LoginDialogueContent
LoginDialogueContent: DialogueContent & { cancel: string; login: string; logout: string;}
diff --git a/docs/types/_internal_.LoginDialogueOptions.html b/docs/types/_internal_.LoginDialogueOptions.html
index 9d653e162..49550fb5e 100644
--- a/docs/types/_internal_.LoginDialogueOptions.html
+++ b/docs/types/_internal_.LoginDialogueOptions.html
@@ -1 +1 @@
-LoginDialogueOptions | universalviewerType alias LoginDialogueOptions
\ No newline at end of file
+LoginDialogueOptions | universalviewerType Alias LoginDialogueOptions
diff --git a/docs/types/_internal_.MediaElementCenterPanel.html b/docs/types/_internal_.MediaElementCenterPanel.html
index e899bc6a2..7a51c2bf6 100644
--- a/docs/types/_internal_.MediaElementCenterPanel.html
+++ b/docs/types/_internal_.MediaElementCenterPanel.html
@@ -1 +1 @@
-MediaElementCenterPanel | universalviewerType alias MediaElementCenterPanel
\ No newline at end of file
+MediaElementCenterPanel | universalviewerType Alias MediaElementCenterPanel
diff --git a/docs/types/_internal_.MediaElementCenterPanelContent.html b/docs/types/_internal_.MediaElementCenterPanelContent.html
index 777332223..000d9e040 100644
--- a/docs/types/_internal_.MediaElementCenterPanelContent.html
+++ b/docs/types/_internal_.MediaElementCenterPanelContent.html
@@ -1 +1 @@
-MediaElementCenterPanelContent | universalviewerType alias MediaElementCenterPanelContent
\ No newline at end of file
+MediaElementCenterPanelContent | universalviewerType Alias MediaElementCenterPanelContent
diff --git a/docs/types/_internal_.MediaElementCenterPanelOptions.html b/docs/types/_internal_.MediaElementCenterPanelOptions.html
index b1e163c9b..3962da277 100644
--- a/docs/types/_internal_.MediaElementCenterPanelOptions.html
+++ b/docs/types/_internal_.MediaElementCenterPanelOptions.html
@@ -1 +1 @@
-MediaElementCenterPanelOptions | universalviewerType alias MediaElementCenterPanelOptions
MediaElementCenterPanelOptions: CenterPanelOptions & { defaultHeight: number; defaultWidth: number; } Type declaration
defaultHeight: number
defaultWidth: number
\ No newline at end of file
+MediaElementCenterPanelOptions | universalviewerType Alias MediaElementCenterPanelOptions
MediaElementCenterPanelOptions: CenterPanelOptions & { autoPlayOnSetTarget: boolean; defaultHeight: number; defaultWidth: number;}
diff --git a/docs/types/_internal_.MediaElementDownloadDialogue.html b/docs/types/_internal_.MediaElementDownloadDialogue.html
index 62d41dcea..475c23280 100644
--- a/docs/types/_internal_.MediaElementDownloadDialogue.html
+++ b/docs/types/_internal_.MediaElementDownloadDialogue.html
@@ -1 +1 @@
-MediaElementDownloadDialogue | universalviewerType alias MediaElementDownloadDialogue
\ No newline at end of file
+MediaElementDownloadDialogue | universalviewerType Alias MediaElementDownloadDialogue
diff --git a/docs/types/_internal_.MediaElementDownloadDialogueContent.html b/docs/types/_internal_.MediaElementDownloadDialogueContent.html
index 680ecc545..7041c5f8f 100644
--- a/docs/types/_internal_.MediaElementDownloadDialogueContent.html
+++ b/docs/types/_internal_.MediaElementDownloadDialogueContent.html
@@ -1 +1 @@
-MediaElementDownloadDialogueContent | universalviewerType alias MediaElementDownloadDialogueContent
\ No newline at end of file
+MediaElementDownloadDialogueContent | universalviewerType Alias MediaElementDownloadDialogueContent
diff --git a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html
index 5ae0a9a0b..3446ad506 100644
--- a/docs/types/_internal_.MediaElementDownloadDialogueOptions.html
+++ b/docs/types/_internal_.MediaElementDownloadDialogueOptions.html
@@ -1 +1 @@
-MediaElementDownloadDialogueOptions | universalviewerType alias MediaElementDownloadDialogueOptions
\ No newline at end of file
+MediaElementDownloadDialogueOptions | universalviewerType Alias MediaElementDownloadDialogueOptions
diff --git a/docs/types/_internal_.MediaElementSettingsDialogue.html b/docs/types/_internal_.MediaElementSettingsDialogue.html
index 14d448b9e..6035f5e5a 100644
--- a/docs/types/_internal_.MediaElementSettingsDialogue.html
+++ b/docs/types/_internal_.MediaElementSettingsDialogue.html
@@ -1 +1 @@
-MediaElementSettingsDialogue | universalviewerType alias MediaElementSettingsDialogue
\ No newline at end of file
+MediaElementSettingsDialogue | universalviewerType Alias MediaElementSettingsDialogue
diff --git a/docs/types/_internal_.MediaElementSettingsDialogueContent.html b/docs/types/_internal_.MediaElementSettingsDialogueContent.html
index 563971e3b..835faf836 100644
--- a/docs/types/_internal_.MediaElementSettingsDialogueContent.html
+++ b/docs/types/_internal_.MediaElementSettingsDialogueContent.html
@@ -1 +1 @@
-MediaElementSettingsDialogueContent | universalviewerType alias MediaElementSettingsDialogueContent
\ No newline at end of file
+MediaElementSettingsDialogueContent | universalviewerType Alias MediaElementSettingsDialogueContent
diff --git a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html
index 2b4bee0ce..17094e4a2 100644
--- a/docs/types/_internal_.MediaElementSettingsDialogueOptions.html
+++ b/docs/types/_internal_.MediaElementSettingsDialogueOptions.html
@@ -1 +1 @@
-MediaElementSettingsDialogueOptions | universalviewerType alias MediaElementSettingsDialogueOptions
\ No newline at end of file
+MediaElementSettingsDialogueOptions | universalviewerType Alias MediaElementSettingsDialogueOptions
diff --git a/docs/types/_internal_.MediaElementShareDialogue.html b/docs/types/_internal_.MediaElementShareDialogue.html
index 96438645c..4f8b87b65 100644
--- a/docs/types/_internal_.MediaElementShareDialogue.html
+++ b/docs/types/_internal_.MediaElementShareDialogue.html
@@ -1 +1 @@
-MediaElementShareDialogue | universalviewerType alias MediaElementShareDialogue
\ No newline at end of file
+MediaElementShareDialogue | universalviewerType Alias MediaElementShareDialogue
diff --git a/docs/types/_internal_.MediaElementShareDialogueContent.html b/docs/types/_internal_.MediaElementShareDialogueContent.html
index a2bb07620..b05394ff2 100644
--- a/docs/types/_internal_.MediaElementShareDialogueContent.html
+++ b/docs/types/_internal_.MediaElementShareDialogueContent.html
@@ -1 +1 @@
-MediaElementShareDialogueContent | universalviewerType alias MediaElementShareDialogueContent
\ No newline at end of file
+MediaElementShareDialogueContent | universalviewerType Alias MediaElementShareDialogueContent
diff --git a/docs/types/_internal_.MediaElementShareDialogueOptions.html b/docs/types/_internal_.MediaElementShareDialogueOptions.html
index e9c4eefae..c67aab57b 100644
--- a/docs/types/_internal_.MediaElementShareDialogueOptions.html
+++ b/docs/types/_internal_.MediaElementShareDialogueOptions.html
@@ -1 +1 @@
-MediaElementShareDialogueOptions | universalviewerType alias MediaElementShareDialogueOptions
\ No newline at end of file
+MediaElementShareDialogueOptions | universalviewerType Alias MediaElementShareDialogueOptions
diff --git a/docs/types/_internal_.MobileFooterPanel.html b/docs/types/_internal_.MobileFooterPanel.html
index 966897226..4c0a4cc5d 100644
--- a/docs/types/_internal_.MobileFooterPanel.html
+++ b/docs/types/_internal_.MobileFooterPanel.html
@@ -1 +1 @@
-MobileFooterPanel | universalviewerType alias MobileFooterPanel
\ No newline at end of file
+MobileFooterPanel | universalviewerType Alias MobileFooterPanel
diff --git a/docs/types/_internal_.MobileFooterPanelContent.html b/docs/types/_internal_.MobileFooterPanelContent.html
index a71b802f4..90f563699 100644
--- a/docs/types/_internal_.MobileFooterPanelContent.html
+++ b/docs/types/_internal_.MobileFooterPanelContent.html
@@ -1 +1 @@
-MobileFooterPanelContent | universalviewerType alias MobileFooterPanelContent
MobileFooterPanelContent: FooterPanelContent & { moreInfo: string; rotateRight: string; zoomIn: string; zoomOut: string; } Type declaration
moreInfo: string
rotateRight: string
zoomIn: string
zoomOut: string
\ No newline at end of file
+MobileFooterPanelContent | universalviewerType Alias MobileFooterPanelContent
MobileFooterPanelContent: FooterPanelContent & { moreInfo: string; rotateRight: string; zoomIn: string; zoomOut: string;}
diff --git a/docs/types/_internal_.MobileFooterPanelOptions.html b/docs/types/_internal_.MobileFooterPanelOptions.html
index 9fde07ca7..0513ac678 100644
--- a/docs/types/_internal_.MobileFooterPanelOptions.html
+++ b/docs/types/_internal_.MobileFooterPanelOptions.html
@@ -1 +1 @@
-MobileFooterPanelOptions | universalviewerType alias MobileFooterPanelOptions
\ No newline at end of file
+MobileFooterPanelOptions | universalviewerType Alias MobileFooterPanelOptions
diff --git a/docs/types/_internal_.ModelViewerCenterPanel.html b/docs/types/_internal_.ModelViewerCenterPanel.html
index 6954f4df0..83972c42b 100644
--- a/docs/types/_internal_.ModelViewerCenterPanel.html
+++ b/docs/types/_internal_.ModelViewerCenterPanel.html
@@ -1 +1 @@
-ModelViewerCenterPanel | universalviewerType alias ModelViewerCenterPanel
\ No newline at end of file
+ModelViewerCenterPanel | universalviewerType Alias ModelViewerCenterPanel
diff --git a/docs/types/_internal_.ModelViewerCenterPanelContent.html b/docs/types/_internal_.ModelViewerCenterPanelContent.html
index 7c947a99a..a46813cef 100644
--- a/docs/types/_internal_.ModelViewerCenterPanelContent.html
+++ b/docs/types/_internal_.ModelViewerCenterPanelContent.html
@@ -1 +1 @@
-ModelViewerCenterPanelContent | universalviewerType alias ModelViewerCenterPanelContent
\ No newline at end of file
+ModelViewerCenterPanelContent | universalviewerType Alias ModelViewerCenterPanelContent
diff --git a/docs/types/_internal_.ModelViewerCenterPanelOptions.html b/docs/types/_internal_.ModelViewerCenterPanelOptions.html
index 1103678af..862deaeea 100644
--- a/docs/types/_internal_.ModelViewerCenterPanelOptions.html
+++ b/docs/types/_internal_.ModelViewerCenterPanelOptions.html
@@ -1,5 +1,5 @@
-ModelViewerCenterPanelOptions | universalviewerType alias ModelViewerCenterPanelOptions
ModelViewerCenterPanelOptions: CenterPanelOptions & { autoRotateEnabled: boolean; cameraChangeDelay: number; doubleClickAnnotationEnabled: boolean; interactionPromptEnabled: boolean; } Type declaration
autoRotateEnabled: boolean
cameraChangeDelay: number
doubleClickAnnotationEnabled: boolean
interactionPromptEnabled: boolean
\ No newline at end of file
+ModelViewerCenterPanelOptions | universalviewerType Alias ModelViewerCenterPanelOptions
ModelViewerCenterPanelOptions: CenterPanelOptions & { autoRotateEnabled: boolean; cameraChangeDelay: number; doubleClickAnnotationEnabled: boolean; interactionPromptEnabled: boolean;} Type declaration
autoRotateEnabled: boolean
cameraChangeDelay: number
doubleClickAnnotationEnabled: boolean
interactionPromptEnabled: boolean
diff --git a/docs/types/_internal_.ModelViewerDownloadDialogue.html b/docs/types/_internal_.ModelViewerDownloadDialogue.html
index eacc4b268..f6e055b59 100644
--- a/docs/types/_internal_.ModelViewerDownloadDialogue.html
+++ b/docs/types/_internal_.ModelViewerDownloadDialogue.html
@@ -1 +1 @@
-ModelViewerDownloadDialogue | universalviewerType alias ModelViewerDownloadDialogue
\ No newline at end of file
+ModelViewerDownloadDialogue | universalviewerType Alias ModelViewerDownloadDialogue
diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html
index 3f7eb0a32..02ba8fd64 100644
--- a/docs/types/_internal_.ModelViewerDownloadDialogueContent.html
+++ b/docs/types/_internal_.ModelViewerDownloadDialogueContent.html
@@ -1 +1 @@
-ModelViewerDownloadDialogueContent | universalviewerType alias ModelViewerDownloadDialogueContent
\ No newline at end of file
+ModelViewerDownloadDialogueContent | universalviewerType Alias ModelViewerDownloadDialogueContent
diff --git a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html
index af79921ff..92eef21eb 100644
--- a/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html
+++ b/docs/types/_internal_.ModelViewerDownloadDialogueOptions.html
@@ -1 +1 @@
-ModelViewerDownloadDialogueOptions | universalviewerType alias ModelViewerDownloadDialogueOptions
\ No newline at end of file
+ModelViewerDownloadDialogueOptions | universalviewerType Alias ModelViewerDownloadDialogueOptions
diff --git a/docs/types/_internal_.ModelViewerSettingsDialogue.html b/docs/types/_internal_.ModelViewerSettingsDialogue.html
index 6e50c10e5..9f49ca1c0 100644
--- a/docs/types/_internal_.ModelViewerSettingsDialogue.html
+++ b/docs/types/_internal_.ModelViewerSettingsDialogue.html
@@ -1 +1 @@
-ModelViewerSettingsDialogue | universalviewerType alias ModelViewerSettingsDialogue
\ No newline at end of file
+ModelViewerSettingsDialogue | universalviewerType Alias ModelViewerSettingsDialogue
diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html
index 6e24c3137..db4114160 100644
--- a/docs/types/_internal_.ModelViewerSettingsDialogueContent.html
+++ b/docs/types/_internal_.ModelViewerSettingsDialogueContent.html
@@ -1 +1 @@
-ModelViewerSettingsDialogueContent | universalviewerType alias ModelViewerSettingsDialogueContent
\ No newline at end of file
+ModelViewerSettingsDialogueContent | universalviewerType Alias ModelViewerSettingsDialogueContent
diff --git a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html
index 2d04d3812..7a76004fb 100644
--- a/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html
+++ b/docs/types/_internal_.ModelViewerSettingsDialogueOptions.html
@@ -1 +1 @@
-ModelViewerSettingsDialogueOptions | universalviewerType alias ModelViewerSettingsDialogueOptions
\ No newline at end of file
+ModelViewerSettingsDialogueOptions | universalviewerType Alias ModelViewerSettingsDialogueOptions
diff --git a/docs/types/_internal_.ModelViewerShareDialogue.html b/docs/types/_internal_.ModelViewerShareDialogue.html
index 0af0ee9a7..dec9a0512 100644
--- a/docs/types/_internal_.ModelViewerShareDialogue.html
+++ b/docs/types/_internal_.ModelViewerShareDialogue.html
@@ -1 +1 @@
-ModelViewerShareDialogue | universalviewerType alias ModelViewerShareDialogue
\ No newline at end of file
+ModelViewerShareDialogue | universalviewerType Alias ModelViewerShareDialogue
diff --git a/docs/types/_internal_.ModelViewerShareDialogueContent.html b/docs/types/_internal_.ModelViewerShareDialogueContent.html
index 4547101f3..063dd8920 100644
--- a/docs/types/_internal_.ModelViewerShareDialogueContent.html
+++ b/docs/types/_internal_.ModelViewerShareDialogueContent.html
@@ -1 +1 @@
-ModelViewerShareDialogueContent | universalviewerType alias ModelViewerShareDialogueContent
\ No newline at end of file
+ModelViewerShareDialogueContent | universalviewerType Alias ModelViewerShareDialogueContent
diff --git a/docs/types/_internal_.ModelViewerShareDialogueOptions.html b/docs/types/_internal_.ModelViewerShareDialogueOptions.html
index bcdd2c53f..1a9114daa 100644
--- a/docs/types/_internal_.ModelViewerShareDialogueOptions.html
+++ b/docs/types/_internal_.ModelViewerShareDialogueOptions.html
@@ -1 +1 @@
-ModelViewerShareDialogueOptions | universalviewerType alias ModelViewerShareDialogueOptions
\ No newline at end of file
+ModelViewerShareDialogueOptions | universalviewerType Alias ModelViewerShareDialogueOptions
diff --git a/docs/types/_internal_.ModuleConfig.html b/docs/types/_internal_.ModuleConfig.html
index d84d26bd3..45f00e21a 100644
--- a/docs/types/_internal_.ModuleConfig.html
+++ b/docs/types/_internal_.ModuleConfig.html
@@ -1 +1 @@
-ModuleConfig | universalviewer
\ No newline at end of file
+ModuleConfig | universalviewer
diff --git a/docs/types/_internal_.ModuleContent.html b/docs/types/_internal_.ModuleContent.html
index 9ecfe738d..4d1b7607b 100644
--- a/docs/types/_internal_.ModuleContent.html
+++ b/docs/types/_internal_.ModuleContent.html
@@ -1 +1 @@
-ModuleContent | universalviewer
\ No newline at end of file
+ModuleContent | universalviewer
diff --git a/docs/types/_internal_.ModuleOptions.html b/docs/types/_internal_.ModuleOptions.html
index 79dd494bf..5c3a8eef3 100644
--- a/docs/types/_internal_.ModuleOptions.html
+++ b/docs/types/_internal_.ModuleOptions.html
@@ -1 +1 @@
-ModuleOptions | universalviewer
\ No newline at end of file
+ModuleOptions | universalviewer
diff --git a/docs/types/_internal_.Modules-1.html b/docs/types/_internal_.Modules-1.html
index 2c29650af..7c4876f58 100644
--- a/docs/types/_internal_.Modules-1.html
+++ b/docs/types/_internal_.Modules-1.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-2.html b/docs/types/_internal_.Modules-2.html
index 9f96763cf..828c9d114 100644
--- a/docs/types/_internal_.Modules-2.html
+++ b/docs/types/_internal_.Modules-2.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-3.html b/docs/types/_internal_.Modules-3.html
index e9a427777..7e1083f4a 100644
--- a/docs/types/_internal_.Modules-3.html
+++ b/docs/types/_internal_.Modules-3.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-4.html b/docs/types/_internal_.Modules-4.html
index e7a4c0d3c..303ab8c98 100644
--- a/docs/types/_internal_.Modules-4.html
+++ b/docs/types/_internal_.Modules-4.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-5.html b/docs/types/_internal_.Modules-5.html
index 022572d5e..5476dd4c6 100644
--- a/docs/types/_internal_.Modules-5.html
+++ b/docs/types/_internal_.Modules-5.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-6.html b/docs/types/_internal_.Modules-6.html
index 96ffc0014..eb2d7188d 100644
--- a/docs/types/_internal_.Modules-6.html
+++ b/docs/types/_internal_.Modules-6.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules-7.html b/docs/types/_internal_.Modules-7.html
index 0b3f76205..bd26ed62c 100644
--- a/docs/types/_internal_.Modules-7.html
+++ b/docs/types/_internal_.Modules-7.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.Modules.html b/docs/types/_internal_.Modules.html
index e47048754..f2825b52f 100644
--- a/docs/types/_internal_.Modules.html
+++ b/docs/types/_internal_.Modules.html
@@ -1 +1 @@
-Modules | universalviewer
\ No newline at end of file
+Modules | universalviewer
diff --git a/docs/types/_internal_.MoreInfoRightPanel.html b/docs/types/_internal_.MoreInfoRightPanel.html
index 1bd96a5f4..d450318ef 100644
--- a/docs/types/_internal_.MoreInfoRightPanel.html
+++ b/docs/types/_internal_.MoreInfoRightPanel.html
@@ -1 +1 @@
-MoreInfoRightPanel | universalviewerType alias MoreInfoRightPanel
\ No newline at end of file
+MoreInfoRightPanel | universalviewerType Alias MoreInfoRightPanel
diff --git a/docs/types/_internal_.MoreInfoRightPanelContent.html b/docs/types/_internal_.MoreInfoRightPanelContent.html
index 35fa12b56..00037b238 100644
--- a/docs/types/_internal_.MoreInfoRightPanelContent.html
+++ b/docs/types/_internal_.MoreInfoRightPanelContent.html
@@ -1 +1 @@
-MoreInfoRightPanelContent | universalviewerType 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
\ No newline at end of file
+MoreInfoRightPanelContent | universalviewerType Alias MoreInfoRightPanelContent
MoreInfoRightPanelContent: DialogueContent & ExpandPanelContent & { attribution: string; canvasHeader: string; collapse: string; collapseFull: string; copiedToClipboard: string; copyToClipboard: string; description: string; expand: string; expandFull: string; holdingText: string; less: string; license: string; logo: string; manifestHeader: string; more: string; noData: string; page: string; rangeHeader: string; title: string;}
diff --git a/docs/types/_internal_.MoreInfoRightPanelOptions.html b/docs/types/_internal_.MoreInfoRightPanelOptions.html
index 453b29dd1..dcb08bc28 100644
--- a/docs/types/_internal_.MoreInfoRightPanelOptions.html
+++ b/docs/types/_internal_.MoreInfoRightPanelOptions.html
@@ -1,11 +1,11 @@
-MoreInfoRightPanelOptions | universalviewerType 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
canvasExclude: string
copyToClipboardEnabled: boolean
limitToRange: boolean
manifestDisplayOrder: string
manifestExclude: string
rtlLanguageCodes: string
showAllLanguages: boolean
textLimit: number
textLimitType: string
\ No newline at end of file
+MoreInfoRightPanelOptions | universalviewerType 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
canvasExclude: string
copyToClipboardEnabled: boolean
limitToRange: boolean
manifestDisplayOrder: string
manifestExclude: string
rtlLanguageCodes: string
showAllLanguages: boolean
textLimit: number
textLimitType: string
diff --git a/docs/types/_internal_.MultiSelectDialogue.html b/docs/types/_internal_.MultiSelectDialogue.html
index e2552568b..7ba1b23ca 100644
--- a/docs/types/_internal_.MultiSelectDialogue.html
+++ b/docs/types/_internal_.MultiSelectDialogue.html
@@ -1 +1 @@
-MultiSelectDialogue | universalviewerType alias MultiSelectDialogue
\ No newline at end of file
+MultiSelectDialogue | universalviewerType Alias MultiSelectDialogue
diff --git a/docs/types/_internal_.MultiSelectDialogueContent.html b/docs/types/_internal_.MultiSelectDialogueContent.html
index 97d8862ce..b69b0ee85 100644
--- a/docs/types/_internal_.MultiSelectDialogueContent.html
+++ b/docs/types/_internal_.MultiSelectDialogueContent.html
@@ -1 +1 @@
-MultiSelectDialogueContent | universalviewerType alias MultiSelectDialogueContent
MultiSelectDialogueContent: DialogueContent & { select: string; selectAll: string; title: string; } Type declaration
select: string
selectAll: string
title: string
\ No newline at end of file
+MultiSelectDialogueContent | universalviewerType Alias MultiSelectDialogueContent
MultiSelectDialogueContent: DialogueContent & { select: string; selectAll: string; title: string;}
diff --git a/docs/types/_internal_.MultiSelectDialogueOptions.html b/docs/types/_internal_.MultiSelectDialogueOptions.html
index 2fa6272ea..61a319e7a 100644
--- a/docs/types/_internal_.MultiSelectDialogueOptions.html
+++ b/docs/types/_internal_.MultiSelectDialogueOptions.html
@@ -1,7 +1,7 @@
-MultiSelectDialogueOptions | universalviewerType alias MultiSelectDialogueOptions
MultiSelectDialogueOptions: DialogueOptions & { galleryThumbChunkedResizingEnabled: boolean; galleryThumbChunkedResizingThreshold: number; galleryThumbHeight: number; galleryThumbLoadPadding: number; galleryThumbWidth: number; pageModeEnabled: boolean; } Type declaration
galleryThumbChunkedResizingEnabled: boolean
galleryThumbChunkedResizingThreshold: number
galleryThumbHeight: number
galleryThumbLoadPadding: number
galleryThumbWidth: number
pageModeEnabled: boolean
\ No newline at end of file
+MultiSelectDialogueOptions | universalviewerType Alias MultiSelectDialogueOptions
MultiSelectDialogueOptions: DialogueOptions & { galleryThumbChunkedResizingEnabled: boolean; galleryThumbChunkedResizingThreshold: number; galleryThumbHeight: number; galleryThumbLoadPadding: number; galleryThumbWidth: number; pageModeEnabled: boolean;} Type declaration
galleryThumbChunkedResizingEnabled: boolean
galleryThumbChunkedResizingThreshold: number
galleryThumbHeight: number
galleryThumbLoadPadding: number
galleryThumbWidth: number
pageModeEnabled: boolean
diff --git a/docs/types/_internal_.OSDDownloadDialogue.html b/docs/types/_internal_.OSDDownloadDialogue.html
index 4ced42e17..b1009d1e2 100644
--- a/docs/types/_internal_.OSDDownloadDialogue.html
+++ b/docs/types/_internal_.OSDDownloadDialogue.html
@@ -1 +1 @@
-OSDDownloadDialogue | universalviewerType alias OSDDownloadDialogue
\ No newline at end of file
+OSDDownloadDialogue | universalviewerType Alias OSDDownloadDialogue
diff --git a/docs/types/_internal_.OSDDownloadDialogueContent.html b/docs/types/_internal_.OSDDownloadDialogueContent.html
index 6b803d24f..c00a72d1d 100644
--- a/docs/types/_internal_.OSDDownloadDialogueContent.html
+++ b/docs/types/_internal_.OSDDownloadDialogueContent.html
@@ -1 +1 @@
-OSDDownloadDialogueContent | universalviewerType 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
\ No newline at end of file
+OSDDownloadDialogueContent | universalviewerType Alias OSDDownloadDialogueContent
OSDDownloadDialogueContent: DownloadDialogueContent & { allPages: string; currentViewAsJpg: string; currentViewAsJpgExplanation: string; download: string; downloadSelection: string; downloadSelectionExplanation: string; editSettings: string; entireDocument: string; entireFileAsOriginal: string; entireFileAsOriginalWithFormat: string; individualPages: string; noneAvailable: string; pagingNote: string; preview: string; selection: string; termsOfUse: string; title: string; wholeImageHighRes: string; wholeImageHighResExplanation: string; wholeImageLowResAsJpg: string; wholeImageLowResAsJpgExplanation: string; wholeImagesHighRes: string; wholeImagesHighResExplanation: string;}
diff --git a/docs/types/_internal_.OSDDownloadDialogueOptions.html b/docs/types/_internal_.OSDDownloadDialogueOptions.html
index a5ef2f8d7..baede60d5 100644
--- a/docs/types/_internal_.OSDDownloadDialogueOptions.html
+++ b/docs/types/_internal_.OSDDownloadDialogueOptions.html
@@ -1,9 +1,9 @@
-OSDDownloadDialogueOptions | universalviewerType alias OSDDownloadDialogueOptions
OSDDownloadDialogueOptions: DownloadDialogueOptions & { confinedImageSize: number; currentViewDisabledPercentage: number; downloadCurrentViewEnabled: boolean; downloadWholeImageHighResEnabled: boolean; downloadWholeImageLowResEnabled: boolean; maxImageWidth: number; optionsExplanatoryTextEnabled: boolean; selectionEnabled: boolean; } Type declaration
confinedImageSize: number
currentViewDisabledPercentage: number
downloadCurrentViewEnabled: boolean
downloadWholeImageHighResEnabled: boolean
downloadWholeImageLowResEnabled: boolean
maxImageWidth: number
optionsExplanatoryTextEnabled: boolean
selectionEnabled: boolean
\ No newline at end of file
+OSDDownloadDialogueOptions | universalviewerType Alias OSDDownloadDialogueOptions
OSDDownloadDialogueOptions: DownloadDialogueOptions & { confinedImageSize: number; currentViewDisabledPercentage: number; downloadCurrentViewEnabled: boolean; downloadWholeImageHighResEnabled: boolean; downloadWholeImageLowResEnabled: boolean; maxImageWidth: number; optionsExplanatoryTextEnabled: boolean; selectionEnabled: boolean;} Type declaration
confinedImageSize: number
currentViewDisabledPercentage: number
downloadCurrentViewEnabled: boolean
downloadWholeImageHighResEnabled: boolean
downloadWholeImageLowResEnabled: boolean
maxImageWidth: number
optionsExplanatoryTextEnabled: boolean
selectionEnabled: boolean
diff --git a/docs/types/_internal_.OSDSettingsDialogue.html b/docs/types/_internal_.OSDSettingsDialogue.html
index 68ce62294..b1b823a8e 100644
--- a/docs/types/_internal_.OSDSettingsDialogue.html
+++ b/docs/types/_internal_.OSDSettingsDialogue.html
@@ -1 +1 @@
-OSDSettingsDialogue | universalviewerType alias OSDSettingsDialogue
\ No newline at end of file
+OSDSettingsDialogue | universalviewerType Alias OSDSettingsDialogue
diff --git a/docs/types/_internal_.OSDSettingsDialogueContent.html b/docs/types/_internal_.OSDSettingsDialogueContent.html
index 01dd19819..37f1b9f47 100644
--- a/docs/types/_internal_.OSDSettingsDialogueContent.html
+++ b/docs/types/_internal_.OSDSettingsDialogueContent.html
@@ -1 +1 @@
-OSDSettingsDialogueContent | universalviewerType alias OSDSettingsDialogueContent
\ No newline at end of file
+OSDSettingsDialogueContent | universalviewerType Alias OSDSettingsDialogueContent
diff --git a/docs/types/_internal_.OSDSettingsDialogueOptions.html b/docs/types/_internal_.OSDSettingsDialogueOptions.html
index 1b2bdedd5..d765dfddc 100644
--- a/docs/types/_internal_.OSDSettingsDialogueOptions.html
+++ b/docs/types/_internal_.OSDSettingsDialogueOptions.html
@@ -1 +1 @@
-OSDSettingsDialogueOptions | universalviewerType alias OSDSettingsDialogueOptions
\ No newline at end of file
+OSDSettingsDialogueOptions | universalviewerType Alias OSDSettingsDialogueOptions
diff --git a/docs/types/_internal_.OSDShareDialogue.html b/docs/types/_internal_.OSDShareDialogue.html
index 0e0723edf..c9639fc46 100644
--- a/docs/types/_internal_.OSDShareDialogue.html
+++ b/docs/types/_internal_.OSDShareDialogue.html
@@ -1 +1 @@
-OSDShareDialogue | universalviewerType alias OSDShareDialogue
\ No newline at end of file
+OSDShareDialogue | universalviewerType Alias OSDShareDialogue
diff --git a/docs/types/_internal_.OSDShareDialogueContent.html b/docs/types/_internal_.OSDShareDialogueContent.html
index fde9a3bcf..1f83dbc41 100644
--- a/docs/types/_internal_.OSDShareDialogueContent.html
+++ b/docs/types/_internal_.OSDShareDialogueContent.html
@@ -1 +1 @@
-OSDShareDialogueContent | universalviewerType alias OSDShareDialogueContent
\ No newline at end of file
+OSDShareDialogueContent | universalviewerType Alias OSDShareDialogueContent
diff --git a/docs/types/_internal_.OSDShareDialogueOptions.html b/docs/types/_internal_.OSDShareDialogueOptions.html
index d84d8f328..2641bae06 100644
--- a/docs/types/_internal_.OSDShareDialogueOptions.html
+++ b/docs/types/_internal_.OSDShareDialogueOptions.html
@@ -1 +1 @@
-OSDShareDialogueOptions | universalviewerType alias OSDShareDialogueOptions
\ No newline at end of file
+OSDShareDialogueOptions | universalviewerType Alias OSDShareDialogueOptions
diff --git a/docs/types/_internal_.OpenSeadragonCenterPanel.html b/docs/types/_internal_.OpenSeadragonCenterPanel.html
index 20847395a..3c8118e22 100644
--- a/docs/types/_internal_.OpenSeadragonCenterPanel.html
+++ b/docs/types/_internal_.OpenSeadragonCenterPanel.html
@@ -1 +1 @@
-OpenSeadragonCenterPanel | universalviewerType alias OpenSeadragonCenterPanel
\ No newline at end of file
+OpenSeadragonCenterPanel | universalviewerType Alias OpenSeadragonCenterPanel
diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html
index 654aeb098..853bd60fe 100644
--- a/docs/types/_internal_.OpenSeadragonCenterPanelContent.html
+++ b/docs/types/_internal_.OpenSeadragonCenterPanelContent.html
@@ -1 +1 @@
-OpenSeadragonCenterPanelContent | universalviewerType 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
\ No newline at end of file
+OpenSeadragonCenterPanelContent | universalviewerType Alias OpenSeadragonCenterPanelContent
OpenSeadragonCenterPanelContent: CenterPanelContent & { adjustImage: string; attribution: string; goHome: string; imageUnavailable: string; nextImage: string; previousImage: string; rotateRight: string; zoomIn: string; zoomOut: string;}
diff --git a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html
index 5313bd8b5..7e49bf9c2 100644
--- a/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html
+++ b/docs/types/_internal_.OpenSeadragonCenterPanelOptions.html
@@ -1,18 +1,20 @@
-OpenSeadragonCenterPanelOptions | universalviewerType 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
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
\ No newline at end of file
+OpenSeadragonCenterPanelOptions | universalviewerType 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
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
diff --git a/docs/types/_internal_.Options.html b/docs/types/_internal_.Options.html
index 0362b2960..666218421 100644
--- a/docs/types/_internal_.Options.html
+++ b/docs/types/_internal_.Options.html
@@ -1,31 +1,32 @@
-Options | universalviewerOptions: { 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
authAPIVersion: number
Optional
bookmarkThumbHeight?: number
Optional
bookmarkThumbWidth?: number
Optional
clickToZoomEnabled?: boolean
Optional
doubleClickAnnotationEnabled?: boolean
Optional
dropEnabled?: boolean
Optional
footerPanelEnabled?: boolean
Optional
headerPanelEnabled?: boolean
Optional
leftPanelEnabled?: boolean
Optional
limitLocales?: boolean
multiSelectionMimeType: string
Optional
navigatorEnabled?: boolean
openTemplate: string
overrideFullScreen: boolean
Optional
pagingEnabled?: boolean
Optional
pagingOptionEnabled?: boolean
Optional
pessimisticAccessControl?: boolean
Optional
preserveViewport?: boolean
Optional
rightPanelEnabled?: boolean
Optional
saveUserSettings?: boolean
Optional
searchWithinEnabled?: boolean
Optional
seeAlsoEnabled?: boolean
termsOfUseEnabled: boolean
theme: string
tokenStorage: string | StorageType
Optional
useArrowKeysToNavigate?: boolean
Optional
zoomToBoundsEnabled?: boolean
Optional
zoomToSearchResultEnabled?: boolean
\ No newline at end of file
+Options | universalviewerOptions: { 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
Optional
allowStealFocus?: boolean
authAPIVersion: number
Optional
bookmarkThumbHeight?: number
Optional
bookmarkThumbWidth?: number
Optional
clickToZoomEnabled?: boolean
Optional
doubleClickAnnotationEnabled?: boolean
Optional
dropEnabled?: boolean
Optional
footerPanelEnabled?: boolean
Optional
headerPanelEnabled?: boolean
Optional
leftPanelEnabled?: boolean
Optional
limitLocales?: boolean
multiSelectionMimeType: string
Optional
navigatorEnabled?: boolean
openTemplate: string
overrideFullScreen: boolean
Optional
pagingEnabled?: boolean
Optional
pagingOptionEnabled?: boolean
Optional
pessimisticAccessControl?: boolean
Optional
preserveViewport?: boolean
Optional
reducedAnimation?: boolean
Optional
rightPanelEnabled?: boolean
Optional
saveUserSettings?: boolean
Optional
searchWithinEnabled?: boolean
Optional
seeAlsoEnabled?: boolean
termsOfUseEnabled: boolean
theme: string
tokenStorage: string | StorageType
Optional
useArrowKeysToNavigate?: boolean
Optional
zoomToBoundsEnabled?: boolean
Optional
zoomToSearchResultEnabled?: boolean
diff --git a/docs/types/_internal_.PDFCenterPanel.html b/docs/types/_internal_.PDFCenterPanel.html
index 5da34b552..07d08b64a 100644
--- a/docs/types/_internal_.PDFCenterPanel.html
+++ b/docs/types/_internal_.PDFCenterPanel.html
@@ -1 +1 @@
-PDFCenterPanel | universalviewerType alias PDFCenterPanel
\ No newline at end of file
+PDFCenterPanel | universalviewerType Alias PDFCenterPanel
diff --git a/docs/types/_internal_.PDFCenterPanelContent.html b/docs/types/_internal_.PDFCenterPanelContent.html
index 4c189058c..0afcd2ad5 100644
--- a/docs/types/_internal_.PDFCenterPanelContent.html
+++ b/docs/types/_internal_.PDFCenterPanelContent.html
@@ -1 +1 @@
-PDFCenterPanelContent | universalviewerType alias PDFCenterPanelContent
\ No newline at end of file
+PDFCenterPanelContent | universalviewerType Alias PDFCenterPanelContent
diff --git a/docs/types/_internal_.PDFCenterPanelOptions.html b/docs/types/_internal_.PDFCenterPanelOptions.html
index fabf3aa83..9212d57db 100644
--- a/docs/types/_internal_.PDFCenterPanelOptions.html
+++ b/docs/types/_internal_.PDFCenterPanelOptions.html
@@ -1,2 +1,2 @@
-PDFCenterPanelOptions | universalviewerType alias PDFCenterPanelOptions
\ No newline at end of file
+PDFCenterPanelOptions | universalviewerType Alias PDFCenterPanelOptions
diff --git a/docs/types/_internal_.PDFDownloadDialogue.html b/docs/types/_internal_.PDFDownloadDialogue.html
index 2667cb783..fe325fe86 100644
--- a/docs/types/_internal_.PDFDownloadDialogue.html
+++ b/docs/types/_internal_.PDFDownloadDialogue.html
@@ -1 +1 @@
-PDFDownloadDialogue | universalviewerType alias PDFDownloadDialogue
\ No newline at end of file
+PDFDownloadDialogue | universalviewerType Alias PDFDownloadDialogue
diff --git a/docs/types/_internal_.PDFDownloadDialogueContent.html b/docs/types/_internal_.PDFDownloadDialogueContent.html
index b613a9446..d2a6f13c6 100644
--- a/docs/types/_internal_.PDFDownloadDialogueContent.html
+++ b/docs/types/_internal_.PDFDownloadDialogueContent.html
@@ -1 +1 @@
-PDFDownloadDialogueContent | universalviewerType alias PDFDownloadDialogueContent
\ No newline at end of file
+PDFDownloadDialogueContent | universalviewerType Alias PDFDownloadDialogueContent
diff --git a/docs/types/_internal_.PDFDownloadDialogueOptions.html b/docs/types/_internal_.PDFDownloadDialogueOptions.html
index 056b6835a..b57552201 100644
--- a/docs/types/_internal_.PDFDownloadDialogueOptions.html
+++ b/docs/types/_internal_.PDFDownloadDialogueOptions.html
@@ -1 +1 @@
-PDFDownloadDialogueOptions | universalviewerType alias PDFDownloadDialogueOptions
\ No newline at end of file
+PDFDownloadDialogueOptions | universalviewerType Alias PDFDownloadDialogueOptions
diff --git a/docs/types/_internal_.PDFHeaderPanel.html b/docs/types/_internal_.PDFHeaderPanel.html
index 5b982f529..c5b0aa74f 100644
--- a/docs/types/_internal_.PDFHeaderPanel.html
+++ b/docs/types/_internal_.PDFHeaderPanel.html
@@ -1 +1 @@
-PDFHeaderPanel | universalviewerType alias PDFHeaderPanel
\ No newline at end of file
+PDFHeaderPanel | universalviewerType Alias PDFHeaderPanel
diff --git a/docs/types/_internal_.PDFHeaderPanelContent.html b/docs/types/_internal_.PDFHeaderPanelContent.html
index 8887565cd..4575249b5 100644
--- a/docs/types/_internal_.PDFHeaderPanelContent.html
+++ b/docs/types/_internal_.PDFHeaderPanelContent.html
@@ -1 +1 @@
-PDFHeaderPanelContent | universalviewerType 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
\ No newline at end of file
+PDFHeaderPanelContent | universalviewerType Alias PDFHeaderPanelContent
PDFHeaderPanelContent: HeaderPanelContent & { emptyValue: string; first: string; go: string; last: string; next: string; of: string; pageSearchLabel: string; previous: string;}
diff --git a/docs/types/_internal_.PDFHeaderPanelOptions.html b/docs/types/_internal_.PDFHeaderPanelOptions.html
index d0219cd34..b3bcb75ae 100644
--- a/docs/types/_internal_.PDFHeaderPanelOptions.html
+++ b/docs/types/_internal_.PDFHeaderPanelOptions.html
@@ -1 +1 @@
-PDFHeaderPanelOptions | universalviewerType alias PDFHeaderPanelOptions
\ No newline at end of file
+PDFHeaderPanelOptions | universalviewerType Alias PDFHeaderPanelOptions
diff --git a/docs/types/_internal_.PDFSettingsDialogue.html b/docs/types/_internal_.PDFSettingsDialogue.html
index f955e070f..1c306cd92 100644
--- a/docs/types/_internal_.PDFSettingsDialogue.html
+++ b/docs/types/_internal_.PDFSettingsDialogue.html
@@ -1 +1 @@
-PDFSettingsDialogue | universalviewerType alias PDFSettingsDialogue
\ No newline at end of file
+PDFSettingsDialogue | universalviewerType Alias PDFSettingsDialogue
diff --git a/docs/types/_internal_.PDFSettingsDialogueContent.html b/docs/types/_internal_.PDFSettingsDialogueContent.html
index 00981b3c5..a21059d0e 100644
--- a/docs/types/_internal_.PDFSettingsDialogueContent.html
+++ b/docs/types/_internal_.PDFSettingsDialogueContent.html
@@ -1 +1 @@
-PDFSettingsDialogueContent | universalviewerType alias PDFSettingsDialogueContent
\ No newline at end of file
+PDFSettingsDialogueContent | universalviewerType Alias PDFSettingsDialogueContent
diff --git a/docs/types/_internal_.PDFSettingsDialogueOptions.html b/docs/types/_internal_.PDFSettingsDialogueOptions.html
index 248197a4b..c54c86e96 100644
--- a/docs/types/_internal_.PDFSettingsDialogueOptions.html
+++ b/docs/types/_internal_.PDFSettingsDialogueOptions.html
@@ -1 +1 @@
-PDFSettingsDialogueOptions | universalviewerType alias PDFSettingsDialogueOptions
\ No newline at end of file
+PDFSettingsDialogueOptions | universalviewerType Alias PDFSettingsDialogueOptions
diff --git a/docs/types/_internal_.PDFShareDialogue.html b/docs/types/_internal_.PDFShareDialogue.html
index 911713d15..e7c5f6e52 100644
--- a/docs/types/_internal_.PDFShareDialogue.html
+++ b/docs/types/_internal_.PDFShareDialogue.html
@@ -1 +1 @@
-PDFShareDialogue | universalviewerType alias PDFShareDialogue
\ No newline at end of file
+PDFShareDialogue | universalviewerType Alias PDFShareDialogue
diff --git a/docs/types/_internal_.PDFShareDialogueContent.html b/docs/types/_internal_.PDFShareDialogueContent.html
index e5dedf049..b1ae253cc 100644
--- a/docs/types/_internal_.PDFShareDialogueContent.html
+++ b/docs/types/_internal_.PDFShareDialogueContent.html
@@ -1 +1 @@
-PDFShareDialogueContent | universalviewerType alias PDFShareDialogueContent
\ No newline at end of file
+PDFShareDialogueContent | universalviewerType Alias PDFShareDialogueContent
diff --git a/docs/types/_internal_.PDFShareDialogueOptions.html b/docs/types/_internal_.PDFShareDialogueOptions.html
index 847b24e7b..a4ff7e302 100644
--- a/docs/types/_internal_.PDFShareDialogueOptions.html
+++ b/docs/types/_internal_.PDFShareDialogueOptions.html
@@ -1 +1 @@
-PDFShareDialogueOptions | universalviewerType alias PDFShareDialogueOptions
\ No newline at end of file
+PDFShareDialogueOptions | universalviewerType Alias PDFShareDialogueOptions
diff --git a/docs/types/_internal_.PagingHeaderPanel.html b/docs/types/_internal_.PagingHeaderPanel.html
index 3637505a0..ffd13b56a 100644
--- a/docs/types/_internal_.PagingHeaderPanel.html
+++ b/docs/types/_internal_.PagingHeaderPanel.html
@@ -1 +1 @@
-PagingHeaderPanel | universalviewerType alias PagingHeaderPanel
\ No newline at end of file
+PagingHeaderPanel | universalviewerType Alias PagingHeaderPanel
diff --git a/docs/types/_internal_.PagingHeaderPanelContent.html b/docs/types/_internal_.PagingHeaderPanelContent.html
index e5ebc79f6..e1bc5cad2 100644
--- a/docs/types/_internal_.PagingHeaderPanelContent.html
+++ b/docs/types/_internal_.PagingHeaderPanelContent.html
@@ -1 +1 @@
-PagingHeaderPanelContent | universalviewerType 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
\ No newline at end of file
+PagingHeaderPanelContent | universalviewerType Alias PagingHeaderPanelContent
PagingHeaderPanelContent: HeaderPanelContent & { emptyValue: string; first: string; firstImage: string; firstPage: string; folio: string; gallery: string; go: string; help: string; image: string; last: string; lastImage: string; lastPage: string; next: string; nextImage: string; nextPage: string; of: string; oneUp: string; page: string; pageSearchLabel: string; previous: string; previousImage: string; previousPage: string; twoUp: string;}
diff --git a/docs/types/_internal_.PagingHeaderPanelOptions.html b/docs/types/_internal_.PagingHeaderPanelOptions.html
index 5de6f3bbe..c2129ad74 100644
--- a/docs/types/_internal_.PagingHeaderPanelOptions.html
+++ b/docs/types/_internal_.PagingHeaderPanelOptions.html
@@ -1,9 +1,9 @@
-PagingHeaderPanelOptions | universalviewerType alias PagingHeaderPanelOptions
PagingHeaderPanelOptions: HeaderPanelOptions & { autoCompleteBoxEnabled: boolean; autocompleteAllowWords: boolean; galleryButtonEnabled: boolean; helpEnabled: boolean; imageSelectionBoxEnabled: boolean; modeOptionsEnabled: boolean; pageModeEnabled: boolean; pagingToggleEnabled: boolean; } Type declaration
autoCompleteBoxEnabled: boolean
autocompleteAllowWords: boolean
galleryButtonEnabled: boolean
helpEnabled: boolean
imageSelectionBoxEnabled: boolean
modeOptionsEnabled: boolean
pageModeEnabled: boolean
pagingToggleEnabled: boolean
\ No newline at end of file
+PagingHeaderPanelOptions | universalviewerType Alias PagingHeaderPanelOptions
PagingHeaderPanelOptions: HeaderPanelOptions & { autocompleteAllowWords: boolean; autoCompleteBoxEnabled: boolean; galleryButtonEnabled: boolean; helpEnabled: boolean; imageSelectionBoxEnabled: boolean; modeOptionsEnabled: boolean; pageModeEnabled: boolean; pagingToggleEnabled: boolean;} Type declaration
autocompleteAllowWords: boolean
autoCompleteBoxEnabled: boolean
galleryButtonEnabled: boolean
helpEnabled: boolean
imageSelectionBoxEnabled: boolean
modeOptionsEnabled: boolean
pageModeEnabled: boolean
pagingToggleEnabled: boolean
diff --git a/docs/types/_internal_.RestrictedDialogue.html b/docs/types/_internal_.RestrictedDialogue.html
index 25b89e55c..a3eda76d9 100644
--- a/docs/types/_internal_.RestrictedDialogue.html
+++ b/docs/types/_internal_.RestrictedDialogue.html
@@ -1 +1 @@
-RestrictedDialogue | universalviewerType alias RestrictedDialogue
\ No newline at end of file
+RestrictedDialogue | universalviewerType Alias RestrictedDialogue
diff --git a/docs/types/_internal_.RestrictedDialogueContent.html b/docs/types/_internal_.RestrictedDialogueContent.html
index 78a5930a0..6a483cea1 100644
--- a/docs/types/_internal_.RestrictedDialogueContent.html
+++ b/docs/types/_internal_.RestrictedDialogueContent.html
@@ -1 +1 @@
-RestrictedDialogueContent | universalviewerType alias RestrictedDialogueContent
\ No newline at end of file
+RestrictedDialogueContent | universalviewerType Alias RestrictedDialogueContent
diff --git a/docs/types/_internal_.RestrictedDialogueOptions.html b/docs/types/_internal_.RestrictedDialogueOptions.html
index 084ef63fb..e5497f3ca 100644
--- a/docs/types/_internal_.RestrictedDialogueOptions.html
+++ b/docs/types/_internal_.RestrictedDialogueOptions.html
@@ -1 +1 @@
-RestrictedDialogueOptions | universalviewerType alias RestrictedDialogueOptions
\ No newline at end of file
+RestrictedDialogueOptions | universalviewerType Alias RestrictedDialogueOptions
diff --git a/docs/types/_internal_.SearchFooterPanel.html b/docs/types/_internal_.SearchFooterPanel.html
index 4650d688b..80707fb67 100644
--- a/docs/types/_internal_.SearchFooterPanel.html
+++ b/docs/types/_internal_.SearchFooterPanel.html
@@ -1 +1 @@
-SearchFooterPanel | universalviewerType alias SearchFooterPanel
\ No newline at end of file
+SearchFooterPanel | universalviewerType Alias SearchFooterPanel
diff --git a/docs/types/_internal_.SearchFooterPanelContent.html b/docs/types/_internal_.SearchFooterPanelContent.html
index 27bcd4d82..b428d90c2 100644
--- a/docs/types/_internal_.SearchFooterPanelContent.html
+++ b/docs/types/_internal_.SearchFooterPanelContent.html
@@ -1 +1 @@
-SearchFooterPanelContent | universalviewerType 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
\ No newline at end of file
+SearchFooterPanelContent | universalviewerType Alias SearchFooterPanelContent
SearchFooterPanelContent: FooterPanelContent & { clearSearch: string; defaultLabel: string; displaying: string; enterKeyword: string; image: string; imageCaps: string; instanceFound: string; instancesFound: string; nextResult: string; page: string; pageCaps: string; previousResult: string; print: string; resultFoundFor: string; resultsFoundFor: string; searchWithin: string;}
diff --git a/docs/types/_internal_.SearchFooterPanelOptions.html b/docs/types/_internal_.SearchFooterPanelOptions.html
index f8c326c4e..056af9aac 100644
--- a/docs/types/_internal_.SearchFooterPanelOptions.html
+++ b/docs/types/_internal_.SearchFooterPanelOptions.html
@@ -1,7 +1,7 @@
-SearchFooterPanelOptions | universalviewerType alias SearchFooterPanelOptions
SearchFooterPanelOptions: FooterPanelOptions & { autocompleteAllowWords: boolean; elideDetailsTermsCount: number; elideResultsTermsCount: number; forceImageMode: boolean; pageModeEnabled: boolean; positionMarkerEnabled: boolean; } Type declaration
autocompleteAllowWords: boolean
elideDetailsTermsCount: number
elideResultsTermsCount: number
forceImageMode: boolean
pageModeEnabled: boolean
positionMarkerEnabled: boolean
\ No newline at end of file
+SearchFooterPanelOptions | universalviewerType Alias SearchFooterPanelOptions
SearchFooterPanelOptions: FooterPanelOptions & { autocompleteAllowWords: boolean; elideDetailsTermsCount: number; elideResultsTermsCount: number; forceImageMode: boolean; pageModeEnabled: boolean; positionMarkerEnabled: boolean;} Type declaration
autocompleteAllowWords: boolean
elideDetailsTermsCount: number
elideResultsTermsCount: number
forceImageMode: boolean
pageModeEnabled: boolean
positionMarkerEnabled: boolean
diff --git a/docs/types/_internal_.SettingsDialogue.html b/docs/types/_internal_.SettingsDialogue.html
index 3374e594a..5ff758433 100644
--- a/docs/types/_internal_.SettingsDialogue.html
+++ b/docs/types/_internal_.SettingsDialogue.html
@@ -1 +1 @@
-SettingsDialogue | universalviewerType alias SettingsDialogue
\ No newline at end of file
+SettingsDialogue | universalviewerType Alias SettingsDialogue
diff --git a/docs/types/_internal_.SettingsDialogueContent.html b/docs/types/_internal_.SettingsDialogueContent.html
index c854c6517..d68c37c7e 100644
--- a/docs/types/_internal_.SettingsDialogueContent.html
+++ b/docs/types/_internal_.SettingsDialogueContent.html
@@ -1 +1 @@
-SettingsDialogueContent | universalviewerType 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
\ No newline at end of file
+SettingsDialogueContent | universalviewerType Alias SettingsDialogueContent
SettingsDialogueContent: DialogueContent & { clickToZoomEnabled: string; locale: string; navigatorEnabled: string; pagingEnabled: string; preserveViewport: string; reducedMotion: string; title: string; truncateThumbnailLabels: string; website: string;}
diff --git a/docs/types/_internal_.SettingsDialogueOptions.html b/docs/types/_internal_.SettingsDialogueOptions.html
index 9999da25b..0921db5ea 100644
--- a/docs/types/_internal_.SettingsDialogueOptions.html
+++ b/docs/types/_internal_.SettingsDialogueOptions.html
@@ -1 +1 @@
-SettingsDialogueOptions | universalviewerType alias SettingsDialogueOptions
\ No newline at end of file
+SettingsDialogueOptions | universalviewerType Alias SettingsDialogueOptions
diff --git a/docs/types/_internal_.ShareDialogue.html b/docs/types/_internal_.ShareDialogue.html
index 47e050cb1..95f24d584 100644
--- a/docs/types/_internal_.ShareDialogue.html
+++ b/docs/types/_internal_.ShareDialogue.html
@@ -1 +1 @@
-ShareDialogue | universalviewer
\ No newline at end of file
+ShareDialogue | universalviewer
diff --git a/docs/types/_internal_.ShareDialogueContent.html b/docs/types/_internal_.ShareDialogueContent.html
index 3561a4a93..1a316dedb 100644
--- a/docs/types/_internal_.ShareDialogueContent.html
+++ b/docs/types/_internal_.ShareDialogueContent.html
@@ -1 +1 @@
-ShareDialogueContent | universalviewerType 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
\ No newline at end of file
+ShareDialogueContent | universalviewerType Alias ShareDialogueContent
ShareDialogueContent: DialogueContent & { customSize: string; embed: string; embedInstructions: string; height: string; iiif: string; share: string; shareInstructions: string; shareUrl: string; size: string; width: string;}
diff --git a/docs/types/_internal_.ShareDialogueOptions.html b/docs/types/_internal_.ShareDialogueOptions.html
index 2f258f0a7..5380664aa 100644
--- a/docs/types/_internal_.ShareDialogueOptions.html
+++ b/docs/types/_internal_.ShareDialogueOptions.html
@@ -1,7 +1,7 @@
-ShareDialogueOptions | universalviewerType alias ShareDialogueOptions
ShareDialogueOptions: DialogueOptions & { embedEnabled: boolean; embedTemplate: string; instructionsEnabled: boolean; shareEnabled: boolean; shareFrameEnabled: boolean; shareManifestsEnabled: boolean; } Type declaration
embedEnabled: boolean
embedTemplate: string
instructionsEnabled: boolean
shareEnabled: boolean
shareFrameEnabled: boolean
shareManifestsEnabled: boolean
\ No newline at end of file
+ShareDialogueOptions | universalviewerType Alias ShareDialogueOptions
ShareDialogueOptions: DialogueOptions & { embedEnabled: boolean; embedTemplate: string; instructionsEnabled: boolean; shareEnabled: boolean; shareFrameEnabled: boolean; shareManifestsEnabled: boolean;} Type declaration
embedEnabled: boolean
embedTemplate: string
instructionsEnabled: boolean
shareEnabled: boolean
shareFrameEnabled: boolean
shareManifestsEnabled: boolean
diff --git a/docs/types/_internal_.ThumbsCacheInvalidation.html b/docs/types/_internal_.ThumbsCacheInvalidation.html
index aa5fa90bc..e390f41f2 100644
--- a/docs/types/_internal_.ThumbsCacheInvalidation.html
+++ b/docs/types/_internal_.ThumbsCacheInvalidation.html
@@ -1,3 +1,3 @@
-ThumbsCacheInvalidation | universalviewerType alias ThumbsCacheInvalidation
ThumbsCacheInvalidation: {
enabled: boolean;
paramType: string;
}
Type declaration
enabled: boolean
paramType: string
\ No newline at end of file
+ThumbsCacheInvalidation | universalviewerType Alias ThumbsCacheInvalidation
ThumbsCacheInvalidation: { enabled: boolean; paramType: string }
Type declaration
enabled: boolean
paramType: string
diff --git a/package-lock.json b/package-lock.json
index e524edadc..c49ffff0a 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -73,8 +73,8 @@
"ts-jest": "^29",
"ts-loader": "^9.5.1",
"tslint-config-prettier": "^1.18.0",
- "typedoc": "^0.25.4",
- "typedoc-plugin-missing-exports": "^2.1.0",
+ "typedoc": "^0.27.2",
+ "typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5",
"typescript-tslint-plugin": "^1.0.2",
"url-loader": "4.1.1",
@@ -1147,6 +1147,17 @@
"node": ">=18"
}
},
+ "node_modules/@gerrit0/mini-shiki": {
+ "version": "1.24.1",
+ "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.24.1.tgz",
+ "integrity": "sha512-PNP/Gjv3VqU7z7DjRgO3F9Ok5frTKqtpV+LJW1RzMcr2zpRk0ulhEWnbcNGXzPC7BZyWMIHrkfQX2GZRfxrn6Q==",
+ "dev": true,
+ "dependencies": {
+ "@shikijs/engine-oniguruma": "^1.24.0",
+ "@shikijs/types": "^1.24.0",
+ "@shikijs/vscode-textmate": "^9.3.0"
+ }
+ },
"node_modules/@google/model-viewer": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.1.tgz",
@@ -3175,6 +3186,32 @@
"node": ">=12"
}
},
+ "node_modules/@shikijs/engine-oniguruma": {
+ "version": "1.24.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.0.tgz",
+ "integrity": "sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==",
+ "dev": true,
+ "dependencies": {
+ "@shikijs/types": "1.24.0",
+ "@shikijs/vscode-textmate": "^9.3.0"
+ }
+ },
+ "node_modules/@shikijs/types": {
+ "version": "1.24.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.0.tgz",
+ "integrity": "sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==",
+ "dev": true,
+ "dependencies": {
+ "@shikijs/vscode-textmate": "^9.3.0",
+ "@types/hast": "^3.0.4"
+ }
+ },
+ "node_modules/@shikijs/vscode-textmate": {
+ "version": "9.3.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz",
+ "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==",
+ "dev": true
+ },
"node_modules/@sideway/address": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz",
@@ -3436,6 +3473,15 @@
"@types/node": "*"
}
},
+ "node_modules/@types/hast": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
+ "dev": true,
+ "dependencies": {
+ "@types/unist": "*"
+ }
+ },
"node_modules/@types/html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
@@ -3679,6 +3725,12 @@
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz",
"integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="
},
+ "node_modules/@types/unist": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
+ "dev": true
+ },
"node_modules/@types/ws": {
"version": "8.5.12",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz",
@@ -4187,12 +4239,6 @@
"ansi-html": "bin/ansi-html"
}
},
- "node_modules/ansi-sequence-parser": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz",
- "integrity": "sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==",
- "dev": true
- },
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
@@ -11735,12 +11781,6 @@
"node": ">=6"
}
},
- "node_modules/jsonc-parser": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz",
- "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==",
- "dev": true
- },
"node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
@@ -11972,6 +12012,15 @@
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"license": "MIT"
},
+ "node_modules/linkify-it": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
+ "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
+ "dev": true,
+ "dependencies": {
+ "uc.micro": "^2.0.0"
+ }
+ },
"node_modules/lit": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/lit/-/lit-2.5.0.tgz",
@@ -12199,18 +12248,29 @@
"node": ">=0.10.0"
}
},
- "node_modules/marked": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
- "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
+ "node_modules/markdown-it": {
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
+ "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
"dev": true,
- "bin": {
- "marked": "bin/marked.js"
+ "dependencies": {
+ "argparse": "^2.0.1",
+ "entities": "^4.4.0",
+ "linkify-it": "^5.0.0",
+ "mdurl": "^2.0.0",
+ "punycode.js": "^2.3.1",
+ "uc.micro": "^2.1.0"
},
- "engines": {
- "node": ">= 12"
+ "bin": {
+ "markdown-it": "bin/markdown-it.mjs"
}
},
+ "node_modules/markdown-it/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ },
"node_modules/marks-pane": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/marks-pane/-/marks-pane-1.0.9.tgz",
@@ -12231,6 +12291,12 @@
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
+ "node_modules/mdurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
+ "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
+ "dev": true
+ },
"node_modules/media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -14128,6 +14194,15 @@
"node": ">=6"
}
},
+ "node_modules/punycode.js": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
+ "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
+ "dev": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/puppeteer": {
"version": "23.6.0",
"resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.6.0.tgz",
@@ -15531,18 +15606,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/shiki": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.5.tgz",
- "integrity": "sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==",
- "dev": true,
- "dependencies": {
- "ansi-sequence-parser": "^1.1.0",
- "jsonc-parser": "^3.2.0",
- "vscode-oniguruma": "^1.7.0",
- "vscode-textmate": "^8.0.0"
- }
- },
"node_modules/side-channel": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
@@ -17086,33 +17149,36 @@
}
},
"node_modules/typedoc": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.4.tgz",
- "integrity": "sha512-Du9ImmpBCw54bX275yJrxPVnjdIyJO/84co0/L9mwe0R3G4FSR6rQ09AlXVRvZEGMUg09+z/usc8mgygQ1aidA==",
+ "version": "0.27.4",
+ "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.4.tgz",
+ "integrity": "sha512-wXPQs1AYC2Crk+1XFpNuutLIkNWleokZf1UNf/X8w9KsMnirkvT+LzxTXDvfF6ug3TSLf3Xu5ZXRKGfoXPX7IA==",
"dev": true,
+ "license": "Apache-2.0",
"dependencies": {
+ "@gerrit0/mini-shiki": "^1.24.0",
"lunr": "^2.3.9",
- "marked": "^4.3.0",
- "minimatch": "^9.0.3",
- "shiki": "^0.14.1"
+ "markdown-it": "^14.1.0",
+ "minimatch": "^9.0.5",
+ "yaml": "^2.6.1"
},
"bin": {
"typedoc": "bin/typedoc"
},
"engines": {
- "node": ">= 16"
+ "node": ">= 18"
},
"peerDependencies": {
- "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x"
+ "typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x"
}
},
"node_modules/typedoc-plugin-missing-exports": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-2.1.0.tgz",
- "integrity": "sha512-+1DhqZCEu7Vu5APnrqpPwl31D+hXpt1fV0Le9ycCRL1eLVdatdl6KVt4SEVwPxnEpKwgOn2dNX6I9+0F1aO2aA==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-3.1.0.tgz",
+ "integrity": "sha512-Sogbaj+qDa21NjB3SlIw4JXSwmcl/WOjwiPNaVEcPhpNG/MiRTtpwV81cT7h1cbu9StpONFPbddYWR0KV/fTWA==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
- "typedoc": "0.24.x || 0.25.x"
+ "typedoc": "0.26.x || 0.27.x"
}
},
"node_modules/typedoc/node_modules/brace-expansion": {
@@ -17125,9 +17191,9 @@
}
},
"node_modules/typedoc/node_modules/minimatch": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
- "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dev": true,
"dependencies": {
"brace-expansion": "^2.0.1"
@@ -17165,6 +17231,12 @@
"vscode-languageserver": "^5.2.1"
}
},
+ "node_modules/uc.micro": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
+ "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
+ "dev": true
+ },
"node_modules/unbzip2-stream": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
@@ -17582,18 +17654,6 @@
"integrity": "sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A==",
"dev": true
},
- "node_modules/vscode-oniguruma": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz",
- "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==",
- "dev": true
- },
- "node_modules/vscode-textmate": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz",
- "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==",
- "dev": true
- },
"node_modules/vscode-uri": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz",
@@ -18492,6 +18552,18 @@
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
},
+ "node_modules/yaml": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
+ "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
+ "dev": true,
+ "bin": {
+ "yaml": "bin.mjs"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
"node_modules/yargs": {
"version": "16.2.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
@@ -19208,6 +19280,17 @@
"integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
"optional": true
},
+ "@gerrit0/mini-shiki": {
+ "version": "1.24.1",
+ "resolved": "https://registry.npmjs.org/@gerrit0/mini-shiki/-/mini-shiki-1.24.1.tgz",
+ "integrity": "sha512-PNP/Gjv3VqU7z7DjRgO3F9Ok5frTKqtpV+LJW1RzMcr2zpRk0ulhEWnbcNGXzPC7BZyWMIHrkfQX2GZRfxrn6Q==",
+ "dev": true,
+ "requires": {
+ "@shikijs/engine-oniguruma": "^1.24.0",
+ "@shikijs/types": "^1.24.0",
+ "@shikijs/vscode-textmate": "^9.3.0"
+ }
+ },
"@google/model-viewer": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@google/model-viewer/-/model-viewer-1.12.1.tgz",
@@ -20738,6 +20821,32 @@
}
}
},
+ "@shikijs/engine-oniguruma": {
+ "version": "1.24.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-1.24.0.tgz",
+ "integrity": "sha512-Eua0qNOL73Y82lGA4GF5P+G2+VXX9XnuUxkiUuwcxQPH4wom+tE39kZpBFXfUuwNYxHSkrSxpB1p4kyRW0moSg==",
+ "dev": true,
+ "requires": {
+ "@shikijs/types": "1.24.0",
+ "@shikijs/vscode-textmate": "^9.3.0"
+ }
+ },
+ "@shikijs/types": {
+ "version": "1.24.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-1.24.0.tgz",
+ "integrity": "sha512-aptbEuq1Pk88DMlCe+FzXNnBZ17LCiLIGWAeCWhoFDzia5Q5Krx3DgnULLiouSdd6+LUM39XwXGppqYE0Ghtug==",
+ "dev": true,
+ "requires": {
+ "@shikijs/vscode-textmate": "^9.3.0",
+ "@types/hast": "^3.0.4"
+ }
+ },
+ "@shikijs/vscode-textmate": {
+ "version": "9.3.0",
+ "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-9.3.0.tgz",
+ "integrity": "sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==",
+ "dev": true
+ },
"@sideway/address": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz",
@@ -20973,6 +21082,15 @@
"@types/node": "*"
}
},
+ "@types/hast": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
+ "dev": true,
+ "requires": {
+ "@types/unist": "*"
+ }
+ },
"@types/html-minifier-terser": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
@@ -21198,6 +21316,12 @@
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz",
"integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg=="
},
+ "@types/unist": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
+ "dev": true
+ },
"@types/ws": {
"version": "8.5.12",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.12.tgz",
@@ -21616,12 +21740,6 @@
"integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==",
"dev": true
},
- "ansi-sequence-parser": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz",
- "integrity": "sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==",
- "dev": true
- },
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
@@ -27190,12 +27308,6 @@
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="
},
- "jsonc-parser": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz",
- "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==",
- "dev": true
- },
"jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
@@ -27366,6 +27478,15 @@
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
},
+ "linkify-it": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
+ "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
+ "dev": true,
+ "requires": {
+ "uc.micro": "^2.0.0"
+ }
+ },
"lit": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/lit/-/lit-2.5.0.tgz",
@@ -27560,11 +27681,27 @@
"object-visit": "^1.0.0"
}
},
- "marked": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
- "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
- "dev": true
+ "markdown-it": {
+ "version": "14.1.0",
+ "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
+ "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
+ "dev": true,
+ "requires": {
+ "argparse": "^2.0.1",
+ "entities": "^4.4.0",
+ "linkify-it": "^5.0.0",
+ "mdurl": "^2.0.0",
+ "punycode.js": "^2.3.1",
+ "uc.micro": "^2.1.0"
+ },
+ "dependencies": {
+ "argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ }
+ }
},
"marks-pane": {
"version": "1.0.9",
@@ -27586,6 +27723,12 @@
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz",
"integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow=="
},
+ "mdurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
+ "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
+ "dev": true
+ },
"media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -28986,6 +29129,12 @@
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
},
+ "punycode.js": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
+ "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
+ "dev": true
+ },
"puppeteer": {
"version": "23.6.0",
"resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.6.0.tgz",
@@ -29994,18 +30143,6 @@
"integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
"optional": true
},
- "shiki": {
- "version": "0.14.5",
- "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.5.tgz",
- "integrity": "sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==",
- "dev": true,
- "requires": {
- "ansi-sequence-parser": "^1.1.0",
- "jsonc-parser": "^3.2.0",
- "vscode-oniguruma": "^1.7.0",
- "vscode-textmate": "^8.0.0"
- }
- },
"side-channel": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
@@ -31119,15 +31256,16 @@
}
},
"typedoc": {
- "version": "0.25.4",
- "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.4.tgz",
- "integrity": "sha512-Du9ImmpBCw54bX275yJrxPVnjdIyJO/84co0/L9mwe0R3G4FSR6rQ09AlXVRvZEGMUg09+z/usc8mgygQ1aidA==",
+ "version": "0.27.4",
+ "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.27.4.tgz",
+ "integrity": "sha512-wXPQs1AYC2Crk+1XFpNuutLIkNWleokZf1UNf/X8w9KsMnirkvT+LzxTXDvfF6ug3TSLf3Xu5ZXRKGfoXPX7IA==",
"dev": true,
"requires": {
+ "@gerrit0/mini-shiki": "^1.24.0",
"lunr": "^2.3.9",
- "marked": "^4.3.0",
- "minimatch": "^9.0.3",
- "shiki": "^0.14.1"
+ "markdown-it": "^14.1.0",
+ "minimatch": "^9.0.5",
+ "yaml": "^2.6.1"
},
"dependencies": {
"brace-expansion": {
@@ -31140,9 +31278,9 @@
}
},
"minimatch": {
- "version": "9.0.3",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz",
- "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==",
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dev": true,
"requires": {
"brace-expansion": "^2.0.1"
@@ -31151,9 +31289,9 @@
}
},
"typedoc-plugin-missing-exports": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-2.1.0.tgz",
- "integrity": "sha512-+1DhqZCEu7Vu5APnrqpPwl31D+hXpt1fV0Le9ycCRL1eLVdatdl6KVt4SEVwPxnEpKwgOn2dNX6I9+0F1aO2aA==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-3.1.0.tgz",
+ "integrity": "sha512-Sogbaj+qDa21NjB3SlIw4JXSwmcl/WOjwiPNaVEcPhpNG/MiRTtpwV81cT7h1cbu9StpONFPbddYWR0KV/fTWA==",
"dev": true
},
"typescript": {
@@ -31173,6 +31311,12 @@
"vscode-languageserver": "^5.2.1"
}
},
+ "uc.micro": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
+ "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
+ "dev": true
+ },
"unbzip2-stream": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
@@ -31474,18 +31618,6 @@
"integrity": "sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A==",
"dev": true
},
- "vscode-oniguruma": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz",
- "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==",
- "dev": true
- },
- "vscode-textmate": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz",
- "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==",
- "dev": true
- },
"vscode-uri": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.8.tgz",
@@ -32098,6 +32230,12 @@
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
"optional": true
},
+ "yaml": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
+ "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
+ "dev": true
+ },
"yargs": {
"version": "16.2.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
diff --git a/package.json b/package.json
index 042028869..6ed695c58 100644
--- a/package.json
+++ b/package.json
@@ -23,7 +23,7 @@
"build-es": "node ./esbuild.mjs",
"build-tsc": "tsc --skipLibCheck --module CommonJS --esModuleInterop --declarationDir ./dist/cjs --declaration --outDir ./dist/cjs -p . && npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.svg dist/cjs && copyfiles -u 1 src/**/*.gif dist/cjs && copyfiles -u 1 src/**/*.less dist/cjs && copyfiles -u 1 src/extensions/**/*.less dist/cjs && copyfiles -u 1 src/**/*.css dist/cjs",
- "docs": "typedoc --plugin typedoc-plugin-missing-exports",
+ "docs": "typedoc --plugin typedoc-plugin-missing-exports --gitRevision dev",
"test": "jest",
"prepublishOnly": "npm run build && npm run build-tsc && npm run build-es"
},
@@ -72,8 +72,8 @@
"ts-jest": "^29",
"ts-loader": "^9.5.1",
"tslint-config-prettier": "^1.18.0",
- "typedoc": "^0.25.4",
- "typedoc-plugin-missing-exports": "^2.1.0",
+ "typedoc": "^0.27.2",
+ "typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5",
"typescript-tslint-plugin": "^1.0.2",
"url-loader": "4.1.1",
Determines if ranges auto advance
-