@operato/help 2.0.0-alpha.63 → 2.0.0-alpha.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/demo/index.html +13 -2
- package/dist/src/components/ox-help-icon.d.ts +1 -1
- package/dist/src/components/ox-help-icon.js +4 -4
- package/dist/src/components/ox-help-icon.js.map +1 -1
- package/dist/src/components/ox-title-with-help.d.ts +1 -1
- package/dist/src/components/ox-title-with-help.js +4 -4
- package/dist/src/components/ox-title-with-help.js.map +1 -1
- package/dist/src/help-style.js +2 -2
- package/dist/src/help-style.js.map +1 -1
- package/dist/src/pages/ox-help-home.d.ts +1 -1
- package/dist/src/pages/ox-help-home.js +8 -8
- package/dist/src/pages/ox-help-home.js.map +1 -1
- package/dist/src/viewparts/ox-help-panel.d.ts +1 -1
- package/dist/src/viewparts/ox-help-panel.js +13 -21
- package/dist/src/viewparts/ox-help-panel.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/components/ox-help-icon.ts +4 -4
- package/src/components/ox-title-with-help.ts +4 -4
- package/src/help-style.ts +2 -2
- package/src/pages/ox-help-home.ts +11 -16
- package/src/viewparts/ox-help-panel.ts +13 -21
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,23 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [2.0.0-alpha.68](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.67...v2.0.0-alpha.68) (2024-04-13)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* mwc=>md for context ([2bc13f2](https://github.com/hatiolab/operato/commit/2bc13f285f257782f73e5d7b5d1ddd197df85393))
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
## [2.0.0-alpha.64](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.63...v2.0.0-alpha.64) (2024-04-13)
|
16
|
+
|
17
|
+
**Note:** Version bump only for package @operato/help
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
6
23
|
## [2.0.0-alpha.63](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.62...v2.0.0-alpha.63) (2024-04-12)
|
7
24
|
|
8
25
|
**Note:** Version bump only for package @operato/help
|
package/demo/index.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<!
|
1
|
+
<!doctype html>
|
2
2
|
<html lang="en-GB">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8" />
|
@@ -16,7 +16,18 @@
|
|
16
16
|
}
|
17
17
|
</style>
|
18
18
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" />
|
19
|
-
<link
|
19
|
+
<link
|
20
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1"
|
21
|
+
rel="stylesheet"
|
22
|
+
/>
|
23
|
+
<link
|
24
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL@20..48,100..700,0..1"
|
25
|
+
rel="stylesheet"
|
26
|
+
/>
|
27
|
+
<link
|
28
|
+
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL@20..48,100..700,0..1"
|
29
|
+
rel="stylesheet"
|
30
|
+
/>
|
20
31
|
</head>
|
21
32
|
<body>
|
22
33
|
<div id="demo"></div>
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import '@material/
|
2
|
+
import '@material/web/icon/icon.js';
|
3
3
|
import { css, html, LitElement } from 'lit';
|
4
4
|
import { customElement, property } from 'lit/decorators.js';
|
5
5
|
import { openHelp } from '../controller/help.js';
|
@@ -19,11 +19,11 @@ let HelpIcon = class HelpIcon extends LitElement {
|
|
19
19
|
}
|
20
20
|
render() {
|
21
21
|
const topic = this.topic;
|
22
|
-
return html `${topic ? html `<
|
22
|
+
return html `${topic ? html `<md-icon>help</md-icon>` : html ``}`;
|
23
23
|
}
|
24
24
|
};
|
25
25
|
HelpIcon.styles = css `
|
26
|
-
|
26
|
+
md-icon {
|
27
27
|
position: relative;
|
28
28
|
top: 4px;
|
29
29
|
cursor: help;
|
@@ -33,7 +33,7 @@ HelpIcon.styles = css `
|
|
33
33
|
line-height: 0;
|
34
34
|
}
|
35
35
|
|
36
|
-
|
36
|
+
md-icon:hover {
|
37
37
|
opacity: var(--help-icon-hover-opacity);
|
38
38
|
color: var(--help-icon-hover-color);
|
39
39
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-help-icon.js","sourceRoot":"","sources":["../../../src/components/ox-help-icon.ts"],"names":[],"mappings":";AAAA,OAAO,
|
1
|
+
{"version":3,"file":"ox-help-icon.js","sourceRoot":"","sources":["../../../src/components/ox-help-icon.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAEnC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE3D,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAGzC,IAAM,QAAQ,GAAd,MAAM,QAAS,SAAQ,UAAU;IAAjC;;QAoBL,YAAO,GAAG,CAAC,CAAQ,EAAE,EAAE;YACrB,CAAC,CAAC,eAAe,EAAE,CAAA;YAEnB,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;QACtB,CAAC,CAAA;QAED,gBAAW,GAAgE,CAAC,CAAQ,EAAE,EAAE;YACtF,CAAC,CAAC,eAAe,EAAE,CAAA;QACrB,CAAC,CAAA;QAED,cAAS,GAAgE,CAAC,CAAQ,EAAE,EAAE;YACpF,CAAC,CAAC,eAAe,EAAE,CAAA;QACrB,CAAC,CAAA;IAOH,CAAC;IALC,MAAM;QACJ,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAA;QAExB,OAAO,IAAI,CAAA,GAAG,KAAK,CAAC,CAAC,CAAC,IAAI,CAAA,yBAAyB,CAAC,CAAC,CAAC,IAAI,CAAA,EAAE,EAAE,CAAA;IAChE,CAAC;;AArCM,eAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;GAelB,AAfY,CAeZ;AAE2B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;uCAAe;AAlB/B,QAAQ;IADpB,aAAa,CAAC,cAAc,CAAC;GACjB,QAAQ,CAuCpB","sourcesContent":["import '@material/web/icon/icon.js'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { openHelp } from '../controller/help.js'\n\n@customElement('ox-help-icon')\nexport class HelpIcon extends LitElement {\n static styles = css`\n md-icon {\n position: relative;\n top: 4px;\n cursor: help;\n opacity: var(--help-icon-opacity);\n color: var(--help-icon-color);\n font-size: var(--help-icon-size);\n line-height: 0;\n }\n\n md-icon:hover {\n opacity: var(--help-icon-hover-opacity);\n color: var(--help-icon-hover-color);\n }\n `\n\n @property({ type: String }) topic!: string\n\n onclick = (e: Event) => {\n e.stopPropagation()\n\n openHelp(this.topic)\n }\n\n onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null = (e: Event) => {\n e.stopPropagation()\n }\n\n onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null = (e: Event) => {\n e.stopPropagation()\n }\n\n render() {\n const topic = this.topic\n\n return html`${topic ? html`<md-icon>help</md-icon>` : html``}`\n }\n}\n"]}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import '@material/
|
2
|
+
import '@material/web/icon/icon.js';
|
3
3
|
import { css, html, LitElement } from 'lit';
|
4
4
|
import { customElement, property } from 'lit/decorators.js';
|
5
5
|
import { i18next, localize } from '@operato/i18n';
|
@@ -8,11 +8,11 @@ let TitleWithHelp = class TitleWithHelp extends localize(i18next)(LitElement) {
|
|
8
8
|
render() {
|
9
9
|
const title = i18next.t(this.msgid);
|
10
10
|
const topic = this.topic;
|
11
|
-
return html ` ${title} ${topic ? html `<
|
11
|
+
return html ` ${title} ${topic ? html `<md-icon @click=${() => openHelp(topic)}>help</md-icon>` : html ``} `;
|
12
12
|
}
|
13
13
|
};
|
14
14
|
TitleWithHelp.styles = css `
|
15
|
-
|
15
|
+
md-icon {
|
16
16
|
position: relative;
|
17
17
|
top: 4px;
|
18
18
|
cursor: help;
|
@@ -21,7 +21,7 @@ TitleWithHelp.styles = css `
|
|
21
21
|
font-size: var(--help-icon-size);
|
22
22
|
line-height: 0;
|
23
23
|
}
|
24
|
-
|
24
|
+
md-icon:hover {
|
25
25
|
opacity: var(--help-icon-hover-opacity);
|
26
26
|
color: var(--help-icon-hover-color);
|
27
27
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-title-with-help.js","sourceRoot":"","sources":["../../../src/components/ox-title-with-help.ts"],"names":[],"mappings":";AAAA,OAAO,
|
1
|
+
{"version":3,"file":"ox-title-with-help.js","sourceRoot":"","sources":["../../../src/components/ox-title-with-help.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AAEnC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE3D,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAEjD,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAGzC,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,QAAQ,CAAC,OAAO,CAAC,CAAC,UAAU,CAAC;IAoB9D,MAAM;QACJ,MAAM,KAAK,GAAG,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;QACnC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAA;QAExB,OAAO,IAAI,CAAA,IAAI,KAAK,IAAI,KAAK,CAAC,CAAC,CAAC,IAAI,CAAA,mBAAmB,GAAG,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,IAAI,CAAA,EAAE,GAAG,CAAA;IAC3G,CAAC;;AAxBM,oBAAM,GAAG,GAAG,CAAA;;;;;;;;;;;;;;GAclB,AAdY,CAcZ;AAE2B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;4CAAe;AACd;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;4CAAe;AAlB/B,aAAa;IADzB,aAAa,CAAC,oBAAoB,CAAC;GACvB,aAAa,CA0BzB","sourcesContent":["import '@material/web/icon/icon.js'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { i18next, localize } from '@operato/i18n'\n\nimport { openHelp } from '../controller/help.js'\n\n@customElement('ox-title-with-help')\nexport class TitleWithHelp extends localize(i18next)(LitElement) {\n static styles = css`\n md-icon {\n position: relative;\n top: 4px;\n cursor: help;\n opacity: var(--help-icon-opacity);\n color: var(--help-icon-color);\n font-size: var(--help-icon-size);\n line-height: 0;\n }\n md-icon:hover {\n opacity: var(--help-icon-hover-opacity);\n color: var(--help-icon-hover-color);\n }\n `\n\n @property({ type: String }) msgid!: string\n @property({ type: String }) topic!: string\n\n render() {\n const title = i18next.t(this.msgid)\n const topic = this.topic\n\n return html` ${title} ${topic ? html`<md-icon @click=${() => openHelp(topic)}>help</md-icon>` : html``} `\n }\n}\n"]}
|
package/dist/src/help-style.js
CHANGED
@@ -21,7 +21,7 @@ export const HelpStyle = css `
|
|
21
21
|
font-size: var(--help-panel-h3-title-font-size);
|
22
22
|
color: var(--help-panel-h3-title-color);
|
23
23
|
}
|
24
|
-
|
24
|
+
md-icon {
|
25
25
|
vertical-align: middle;
|
26
26
|
}
|
27
27
|
|
@@ -91,7 +91,7 @@ export const HelpStyle = css `
|
|
91
91
|
font-size: var(--fontsize-default);
|
92
92
|
text-decoration: underline;
|
93
93
|
}
|
94
|
-
a
|
94
|
+
a md-icon {
|
95
95
|
font-size: var(--help-panel-a-icon-size);
|
96
96
|
margin: 0;
|
97
97
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"help-style.js","sourceRoot":"","sources":["../../src/help-style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuH3B,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const HelpStyle = css`\n h1 {\n background-color: var(--help-panel-title-background-color);\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h1-title-font-size);\n text-transform: capitalize;\n color: var(--help-panel-h1-title-color);\n }\n h2 {\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h2-title-font-size);\n color: var(--help-panel-h2-title-color);\n text-transform: capitalize;\n }\n h3 {\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h3-title-font-size);\n color: var(--help-panel-h3-title-color);\n }\n
|
1
|
+
{"version":3,"file":"help-style.js","sourceRoot":"","sources":["../../src/help-style.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAEzB,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuH3B,CAAA","sourcesContent":["import { css } from 'lit'\n\nexport const HelpStyle = css`\n h1 {\n background-color: var(--help-panel-title-background-color);\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h1-title-font-size);\n text-transform: capitalize;\n color: var(--help-panel-h1-title-color);\n }\n h2 {\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h2-title-font-size);\n color: var(--help-panel-h2-title-color);\n text-transform: capitalize;\n }\n h3 {\n margin: var(--help-panel-title-margin);\n padding: var(--help-panel-title-padding);\n font-size: var(--help-panel-h3-title-font-size);\n color: var(--help-panel-h3-title-color);\n }\n md-icon {\n vertical-align: middle;\n }\n\n img {\n display: block;\n margin: var(--margin-narrow) var(--margin-default);\n max-width: 100%;\n }\n img[src*='#icon25'] {\n width: 25px;\n height: 25px;\n }\n img[src*='#icon50'] {\n width: 50px;\n height: 50px;\n }\n img[src*='#icon100'] {\n width: 100px;\n height: 100px;\n }\n img[src*='#icon25inlined'],\n img[src*='#icon50inlined'],\n img[src*='#icon100inlined'] {\n display: inline-block;\n margin: var(--margin-narrow);\n }\n p {\n margin: var(--help-panel-paragraph-margin);\n font-size: var(--help-panel-font-size);\n }\n [focusBox] {\n display: block;\n padding: var(--help-panel-focusBox-padding);\n border: var(--help-panel-focusBox-border);\n border-radius: var(--help-panel-focusBox-border-radius);\n background-color: var(--help-panel-focusBox-background-color);\n color: var(--help-panel-focusBox-color);\n }\n\n [subtitle] {\n font-weight: bold;\n }\n [subtitle]::before {\n content: '';\n width: 7px;\n height: 7px;\n display: inline-block;\n border: 3px solid var(--theme-white-color);\n border-radius: 50%;\n margin-right: var(--margin-narrow);\n }\n p + ol,\n p + ul {\n font-size: var(--help-panel-content-font-size);\n }\n ol,\n ul {\n padding: 0 0 0 30px;\n }\n ol li,\n ul li {\n margin: 0 0 2px 0;\n }\n a {\n margin-bottom: 0 !important;\n color: var(--help-panel-a-color);\n font-size: var(--fontsize-default);\n text-decoration: underline;\n }\n a md-icon {\n font-size: var(--help-panel-a-icon-size);\n margin: 0;\n }\n a:hover {\n background-color: var(--opacity-light-dark-color);\n font-weight: bold;\n }\n\n table {\n border-collapse: collapse;\n border: var(--border-dark-color);\n font-size: 0.9em;\n }\n th {\n border-top: 3px solid var(--primary-color);\n background-color: var(--main-section-background-color);\n color: var(--secondary-color);\n }\n th,\n td {\n border-bottom: var(--border-dark-color);\n padding: var(--padding-narrow);\n }\n tr:nth-child(even) {\n background-color: #f6f6f6;\n }\n`\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import '@material/
|
2
|
+
import '@material/web/icon/icon.js';
|
3
3
|
import { css, html } from 'lit';
|
4
4
|
import { customElement, property, query } from 'lit/decorators.js';
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js';
|
@@ -23,13 +23,13 @@ let HelpHome = class HelpHome extends connect(store)(localize(i18next)(PageView)
|
|
23
23
|
<ox-markdown id="content" .src=${src} toc></ox-markdown>
|
24
24
|
|
25
25
|
<div id="navigation">
|
26
|
-
<
|
27
|
-
<
|
28
|
-
<
|
29
|
-
</div>
|
26
|
+
<md-icon @click=${() => navigate('help')} ?disabled=${this.topic == 'index'}>home</md-icon>
|
27
|
+
<md-icon @click=${() => window.history.back()}>keyboard_arrow_left</md-icon>
|
28
|
+
<md-icon @click=${() => window.history.forward()}>keyboard_arrow_right</md-icon>
|
29
|
+
</div>
|
30
30
|
|
31
31
|
${this.showGotoTop
|
32
|
-
? html ` <
|
32
|
+
? html ` <md-icon id="upward" @click=${(e) => this.gotoTop(e)}>arrow_upward</md-icon> `
|
33
33
|
: html ``}
|
34
34
|
`;
|
35
35
|
}
|
@@ -77,7 +77,7 @@ HelpHome.styles = [
|
|
77
77
|
background-color: white;
|
78
78
|
}
|
79
79
|
|
80
|
-
#navigation
|
80
|
+
#navigation md-icon {
|
81
81
|
padding: var(--help-navigation-icon-padding);
|
82
82
|
border-right: var(--help-navigation-icon-border);
|
83
83
|
cursor: pointer;
|
@@ -93,7 +93,7 @@ HelpHome.styles = [
|
|
93
93
|
}
|
94
94
|
|
95
95
|
#upward {
|
96
|
-
--
|
96
|
+
--md-icon-size: 26px;
|
97
97
|
position: absolute;
|
98
98
|
bottom: var(--data-list-fab-position-vertical);
|
99
99
|
right: var(--data-list-fab-position-horizontal);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-help-home.js","sourceRoot":"","sources":["../../../src/pages/ox-help-home.ts"],"names":[],"mappings":";AAAA,OAAO,
|
1
|
+
{"version":3,"file":"ox-help-home.js","sourceRoot":"","sources":["../../../src/pages/ox-help-home.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/web/icon/icon.js'\n\nimport { css, html } from 'lit'\nimport { customElement, property, query } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport Headroom from '@operato/headroom'\nimport { i18next, localize } from '@operato/i18n'\nimport { navigate, PageView, store } from '@operato/shell'\nimport { HeadroomStyles, ScrollbarStyles } from '@operato/styles'\n\n@customElement('ox-help-home')\nclass HelpHome extends connect(store)(localize(i18next)(PageView)) {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n overflow: hidden;\n position: relative;\n }\n\n #navigation {\n position: absolute;\n display: flex;\n width: 100%;\n padding: var(--help-navigation-padding);\n border-bottom: var(--help-navigation-bottom);\n background-color: white;\n }\n\n #navigation md-icon {\n padding: var(--help-navigation-icon-padding);\n border-right: var(--help-navigation-icon-border);\n cursor: pointer;\n color: var(--help-icon-color);\n }\n\n #content {\n flex: 1;\n\n overflow: auto;\n padding: var(--help-panel-content-padding);\n margin: var(--help-panel-margin);\n }\n\n #upward {\n --md-icon-size: 26px;\n position: absolute;\n bottom: var(--data-list-fab-position-vertical);\n right: var(--data-list-fab-position-horizontal);\n background-color: rgba(255, 255, 255, 0.7);\n border-radius: 20px;\n color: var(--data-list-fab-color);\n box-shadow: var(--data-list-fab-shadow);\n padding: 7px;\n\n scroll-padding-top: 65px;\n }\n `\n ]\n\n @property({ type: String }) topic!: string\n @property({ type: Boolean }) showGotoTop: boolean = false\n\n @query('#content') content!: HTMLElement\n @query('#navigation') navigation!: HTMLElement\n\n get context() {\n return {\n title: i18next.t('text.help')\n }\n }\n\n render() {\n const src = this.topic && `/helps/${this.topic || 'index'}.md`\n\n return html`\n <ox-markdown id=\"content\" .src=${src} toc></ox-markdown>\n\n <div id=\"navigation\">\n <md-icon @click=${() => navigate('help')} ?disabled=${this.topic == 'index'}>home</md-icon>\n <md-icon @click=${() => window.history.back()}>keyboard_arrow_left</md-icon>\n <md-icon @click=${() => window.history.forward()}>keyboard_arrow_right</md-icon>\n </div>\n\n ${this.showGotoTop\n ? html` <md-icon id=\"upward\" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</md-icon> `\n : html``}\n `\n }\n\n override async firstUpdated() {\n this.content.addEventListener('scroll', (e: Event) => {\n this.showGotoTop = (e.target as HTMLElement)?.scrollTop !== 0\n })\n\n await this.requestUpdate()\n\n var originPaddingTop = parseFloat(getComputedStyle(this.content, null).getPropertyValue('padding-top'))\n this.content.style.paddingTop = this.navigation.clientHeight + originPaddingTop + 'px'\n\n var headroom = new Headroom(this.navigation, {\n scroller: this.content\n })\n\n headroom.init()\n }\n\n override async pageUpdated(changes: any, lifecycle: any) {\n if (this.active) {\n this.topic = lifecycle.params['topic'] || 'index'\n this.content.scrollTop = 0\n }\n }\n\n gotoTop(e: Event) {\n this.content.scrollTop = 0\n\n e.stopPropagation()\n }\n}\n"]}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js';
|
2
2
|
import '@operato/markdown/ox-markdown.js';
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
|
-
import '@material/
|
2
|
+
import '@material/web/icon/icon.js';
|
3
3
|
import '@operato/markdown/ox-markdown.js';
|
4
4
|
import { css, html, LitElement } from 'lit';
|
5
5
|
import { customElement, property, query, state } from 'lit/decorators.js';
|
@@ -19,28 +19,20 @@ let HelpPanel = class HelpPanel extends connect(store)(LitElement) {
|
|
19
19
|
const src = this.topic && `/helps/${this.topic}.md`;
|
20
20
|
return html `
|
21
21
|
<div id="navigation">
|
22
|
-
<
|
23
|
-
icon
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
></mwc-icon-button>
|
32
|
-
<mwc-icon-button
|
33
|
-
icon="keyboard_arrow_right"
|
34
|
-
@click=${() => this.historyForward()}
|
35
|
-
?disabled=${this.historyIndex >= this.history.length - 1}
|
36
|
-
></mwc-icon-button>
|
37
|
-
<mwc-icon-button icon="open_in_new" @click=${() => navigate(`help?topic=${this.topic}`)}></mwc-icon-button>
|
38
|
-
<mwc-icon-button icon="close" id="close" @click=${() => closeOverlay('help')}></mwc-icon-button>
|
22
|
+
<md-icon @click=${() => this.goHome()} ?disabled=${this.history[0] === this.history[this.historyIndex]}
|
23
|
+
>home</md-icon
|
24
|
+
>
|
25
|
+
<md-icon @click=${() => this.historyBack()} ?disabled=${this.historyIndex < 1}>keyboard_arrow_left</md-icon>
|
26
|
+
<md-icon @click=${() => this.historyForward()} ?disabled=${this.historyIndex >= this.history.length - 1}
|
27
|
+
>keyboard_arrow_right</md-icon
|
28
|
+
>
|
29
|
+
<md-icon @click=${() => navigate(`help?topic=${this.topic}`)}>open_in_new</md-icon>
|
30
|
+
<md-icon id="close" @click=${() => closeOverlay('help')}>close</md-icon>
|
39
31
|
</div>
|
40
32
|
|
41
33
|
${!this.showGotoTop
|
42
34
|
? html ``
|
43
|
-
: html ` <
|
35
|
+
: html ` <md-icon id="upward" @click=${(e) => this.gotoTop(e)}>arrow_upward</md-icon> `}
|
44
36
|
<ox-markdown id="content" .src=${src}></ox-markdown>
|
45
37
|
`;
|
46
38
|
}
|
@@ -152,7 +144,7 @@ HelpPanel.styles = [
|
|
152
144
|
border-bottom: var(--help-navigation-bottom);
|
153
145
|
background-color: white;
|
154
146
|
}
|
155
|
-
#navigation
|
147
|
+
#navigation md-icon {
|
156
148
|
border-right: var(--help-navigation-icon-border);
|
157
149
|
cursor: pointer;
|
158
150
|
color: var(--help-icon-color);
|
@@ -171,7 +163,7 @@ HelpPanel.styles = [
|
|
171
163
|
}
|
172
164
|
|
173
165
|
#upward {
|
174
|
-
--
|
166
|
+
--md-icon-size: 26px;
|
175
167
|
position: absolute;
|
176
168
|
bottom: var(--data-list-fab-position-vertical);
|
177
169
|
right: var(--data-list-fab-position-horizontal);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ox-help-panel.js","sourceRoot":"","sources":["../../../src/viewparts/ox-help-panel.ts"],"names":[],"mappings":"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","sourcesContent":["import '@material/mwc-icon-button'\nimport '@operato/markdown/ox-markdown.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport Headroom from '@operato/headroom'\nimport { closeOverlay } from '@operato/layout'\nimport { navigate, store } from '@operato/shell'\nimport { HeadroomStyles, ScrollbarStyles } from '@operato/styles'\n\n@customElement('ox-help-panel')\nclass HelpPanel extends connect(store)(LitElement) {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n background-color: var(--help-panel-background-color);\n\n position: relative;\n width: var(--help-panel-width);\n max-height: 90%;\n border-radius: var(--help-panel-border-raidus);\n border: var(--help-panel-border);\n box-shadow: var(--help-panel-box-shadow);\n color: var(--help-panel-color);\n margin: 4px;\n\n overflow: hidden;\n }\n\n :host(:focus) {\n outline: none;\n }\n\n #navigation {\n display: flex;\n position: absolute;\n width: 100%;\n padding: var(--help-navigation-padding);\n border-bottom: var(--help-navigation-bottom);\n background-color: white;\n }\n #navigation mwc-icon-button {\n border-right: var(--help-navigation-icon-border);\n cursor: pointer;\n color: var(--help-icon-color);\n }\n\n #close {\n margin-left: auto;\n border-right: 0;\n }\n\n #content {\n flex: 1;\n overflow: auto;\n padding: var(--help-panel-content-padding);\n margin: var(--help-panel-margin);\n }\n\n #upward {\n --mdc-icon-size: 26px;\n position: absolute;\n bottom: var(--data-list-fab-position-vertical);\n right: var(--data-list-fab-position-horizontal);\n background-color: rgba(255, 255, 255, 0.7);\n border-radius: 20px;\n color: var(--data-list-fab-color);\n box-shadow: var(--data-list-fab-shadow);\n padding: 7px;\n }\n\n @media screen and (max-width: 460px) {\n :host {\n height: 100%;\n max-height: 100%;\n margin: 0;\n }\n }\n `\n ]\n\n @property({ type: String }) topic!: string\n @property({ type: Boolean }) showGotoTop: boolean = false\n\n @state() historyIndex: number = -1\n @state() history: string[] = []\n\n @query('#content') content!: HTMLElement\n @query('#navigation') navigation!: HTMLElement\n\n render() {\n const src = this.topic && `/helps/${this.topic}.md`\n\n return html`\n <div id=\"navigation\">\n <mwc-icon-button\n icon=\"home\"\n @click=${() => this.goHome()}\n ?disabled=${this.history[0] === this.history[this.historyIndex]}\n ></mwc-icon-button>\n <mwc-icon-button\n icon=\"keyboard_arrow_left\"\n @click=${() => this.historyBack()}\n ?disabled=${this.historyIndex < 1}\n ></mwc-icon-button>\n <mwc-icon-button\n icon=\"keyboard_arrow_right\"\n @click=${() => this.historyForward()}\n ?disabled=${this.historyIndex >= this.history.length - 1}\n ></mwc-icon-button>\n <mwc-icon-button icon=\"open_in_new\" @click=${() => navigate(`help?topic=${this.topic}`)}></mwc-icon-button>\n <mwc-icon-button icon=\"close\" id=\"close\" @click=${() => closeOverlay('help')}></mwc-icon-button>\n </div>\n\n ${!this.showGotoTop\n ? html``\n : html` <mwc-icon id=\"upward\" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</mwc-icon> `}\n <ox-markdown id=\"content\" .src=${src}></ox-markdown>\n `\n }\n\n async firstUpdated() {\n this.setupRouter()\n\n this.content.addEventListener('scroll', (e: Event) => {\n this.showGotoTop = (e.target as HTMLElement)?.scrollTop !== 0\n })\n\n await this.requestUpdate()\n\n var originPaddingTop = parseFloat(getComputedStyle(this.content, null).getPropertyValue('padding-top'))\n this.content.style.paddingTop = this.navigation.clientHeight + originPaddingTop + 'px'\n\n var headroom = new Headroom(this.navigation, {\n scroller: this.content\n })\n headroom.init()\n }\n\n async updated(changes: PropertyValues<this>) {\n if (changes.has('topic')) {\n if (this.historyIndex === -1) {\n this.history = [this.topic]\n this.historyIndex = 0\n }\n }\n\n if (changes.has('historyIndex')) {\n this.topic = this.history[this.historyIndex]\n this.content.scrollTop = 0\n }\n }\n\n setupRouter() {\n this.addEventListener('click', e => {\n if (e.defaultPrevented || e.button !== 0 || e.metaKey || e.ctrlKey || e.shiftKey) {\n return\n }\n\n const anchor = e.composedPath().filter(n => (n as HTMLElement).tagName === 'A')[0] as HTMLAnchorElement\n if (!anchor || anchor.target || anchor.hasAttribute('download') || anchor.getAttribute('rel') === 'external') {\n return\n }\n\n const href = anchor.href\n const newUrl = new URL(href, document.baseURI)\n if (!href || href.indexOf('mailto:') !== -1 || newUrl.origin !== location.origin) {\n return\n }\n\n e.preventDefault()\n e.stopPropagation()\n\n const pathname = newUrl.pathname\n const topic = newUrl.searchParams?.get('topic')\n if (pathname.endsWith('/help') && topic) {\n this.history = [...this.history.slice(0, this.historyIndex + 1), topic]\n this.historyIndex++\n this.topic = topic\n } else {\n navigate(href)\n }\n\n return\n })\n }\n\n gotoTop(e: Event) {\n this.content.scrollTop = 0\n\n e.stopPropagation()\n }\n\n goHome() {\n if (!this.history?.[0] || this.history[0] == this.topic) {\n return\n }\n this.history.push(this.history[0])\n this.historyIndex = this.history.length - 1\n }\n\n historyBack() {\n this.historyIndex > 0 && this.historyIndex--\n }\n\n historyForward() {\n this.history && this.historyIndex < this.history.length - 1 && this.historyIndex++\n }\n}\n"]}
|
1
|
+
{"version":3,"file":"ox-help-panel.js","sourceRoot":"","sources":["../../../src/viewparts/ox-help-panel.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,kCAAkC,CAAA;AAEzC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAkB,MAAM,KAAK,CAAA;AAC3D,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAA;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAA;AAEtD,OAAO,QAAQ,MAAM,mBAAmB,CAAA;AACxC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAA;AAC9C,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAChD,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAGjE,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,OAAO,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC;IAAlD;;QA2E+B,gBAAW,GAAY,KAAK,CAAA;QAEhD,iBAAY,GAAW,CAAC,CAAC,CAAA;QACzB,YAAO,GAAa,EAAE,CAAA;IAmHjC,CAAC;IA9GC,MAAM;QACJ,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,IAAI,UAAU,IAAI,CAAC,KAAK,KAAK,CAAA;QAEnD,OAAO,IAAI,CAAA;;0BAEW,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,EAAE,cAAc,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC;;;0BAGpF,GAAG,EAAE,CAAC,IAAI,CAAC,WAAW,EAAE,cAAc,IAAI,CAAC,YAAY,GAAG,CAAC;0BAC3D,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,cAAc,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;;;0BAGrF,GAAG,EAAE,CAAC,QAAQ,CAAC,cAAc,IAAI,CAAC,KAAK,EAAE,CAAC;qCAC/B,GAAG,EAAE,CAAC,YAAY,CAAC,MAAM,CAAC;;;QAGvD,CAAC,IAAI,CAAC,WAAW;YACjB,CAAC,CAAC,IAAI,CAAA,EAAE;YACR,CAAC,CAAC,IAAI,CAAA,gCAAgC,CAAC,CAAQ,EAAE,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,0BAA0B;uCAC9D,GAAG;KACrC,CAAA;IACH,CAAC;IAED,KAAK,CAAC,YAAY;QAChB,IAAI,CAAC,WAAW,EAAE,CAAA;QAElB,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,QAAQ,EAAE,CAAC,CAAQ,EAAE,EAAE;;YACnD,IAAI,CAAC,WAAW,GAAG,CAAA,MAAC,CAAC,CAAC,MAAsB,0CAAE,SAAS,MAAK,CAAC,CAAA;QAC/D,CAAC,CAAC,CAAA;QAEF,MAAM,IAAI,CAAC,aAAa,EAAE,CAAA;QAE1B,IAAI,gBAAgB,GAAG,UAAU,CAAC,gBAAgB,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAC,CAAA;QACvG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,GAAG,gBAAgB,GAAG,IAAI,CAAA;QAEtF,IAAI,QAAQ,GAAG,IAAI,QAAQ,CAAC,IAAI,CAAC,UAAU,EAAE;YAC3C,QAAQ,EAAE,IAAI,CAAC,OAAO;SACvB,CAAC,CAAA;QACF,QAAQ,CAAC,IAAI,EAAE,CAAA;IACjB,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,OAA6B;QACzC,IAAI,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC;YACzB,IAAI,IAAI,CAAC,YAAY,KAAK,CAAC,CAAC,EAAE,CAAC;gBAC7B,IAAI,CAAC,OAAO,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;gBAC3B,IAAI,CAAC,YAAY,GAAG,CAAC,CAAA;YACvB,CAAC;QACH,CAAC;QAED,IAAI,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,EAAE,CAAC;YAChC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,CAAA;YAC5C,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,CAAC,CAAA;QAC5B,CAAC;IACH,CAAC;IAED,WAAW;QACT,IAAI,CAAC,gBAAgB,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE;;YACjC,IAAI,CAAC,CAAC,gBAAgB,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC;gBACjF,OAAM;YACR,CAAC;YAED,MAAM,MAAM,GAAG,CAAC,CAAC,YAAY,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAE,CAAiB,CAAC,OAAO,KAAK,GAAG,CAAC,CAAC,CAAC,CAAsB,CAAA;YACvG,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC,MAAM,IAAI,MAAM,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,MAAM,CAAC,YAAY,CAAC,KAAK,CAAC,KAAK,UAAU,EAAE,CAAC;gBAC7G,OAAM;YACR,CAAC;YAED,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAA;YACxB,MAAM,MAAM,GAAG,IAAI,GAAG,CAAC,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC,CAAA;YAC9C,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,IAAI,MAAM,CAAC,MAAM,KAAK,QAAQ,CAAC,MAAM,EAAE,CAAC;gBACjF,OAAM;YACR,CAAC;YAED,CAAC,CAAC,cAAc,EAAE,CAAA;YAClB,CAAC,CAAC,eAAe,EAAE,CAAA;YAEnB,MAAM,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAA;YAChC,MAAM,KAAK,GAAG,MAAA,MAAM,CAAC,YAAY,0CAAE,GAAG,CAAC,OAAO,CAAC,CAAA;YAC/C,IAAI,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,KAAK,EAAE,CAAC;gBACxC,IAAI,CAAC,OAAO,GAAG,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,YAAY,GAAG,CAAC,CAAC,EAAE,KAAK,CAAC,CAAA;gBACvE,IAAI,CAAC,YAAY,EAAE,CAAA;gBACnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;YACpB,CAAC;iBAAM,CAAC;gBACN,QAAQ,CAAC,IAAI,CAAC,CAAA;YAChB,CAAC;YAED,OAAM;QACR,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,OAAO,CAAC,CAAQ;QACd,IAAI,CAAC,OAAO,CAAC,SAAS,GAAG,CAAC,CAAA;QAE1B,CAAC,CAAC,eAAe,EAAE,CAAA;IACrB,CAAC;IAED,MAAM;;QACJ,IAAI,CAAC,CAAA,MAAA,IAAI,CAAC,OAAO,0CAAG,CAAC,CAAC,CAAA,IAAI,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,KAAK,EAAE,CAAC;YACxD,OAAM;QACR,CAAC;QACD,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAA;QAClC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,CAAA;IAC7C,CAAC;IAED,WAAW;QACT,IAAI,CAAC,YAAY,GAAG,CAAC,IAAI,IAAI,CAAC,YAAY,EAAE,CAAA;IAC9C,CAAC;IAED,cAAc;QACZ,IAAI,CAAC,OAAO,IAAI,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,IAAI,CAAC,YAAY,EAAE,CAAA;IACpF,CAAC;;AA/LM,gBAAM,GAAG;IACd,eAAe;IACf,cAAc;IACd,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAmEF;CACF,AAvEY,CAuEZ;AAE2B;IAA3B,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;wCAAe;AACb;IAA5B,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;8CAA6B;AAEhD;IAAR,KAAK,EAAE;+CAA0B;AACzB;IAAR,KAAK,EAAE;0CAAuB;AAEZ;IAAlB,KAAK,CAAC,UAAU,CAAC;0CAAsB;AAClB;IAArB,KAAK,CAAC,aAAa,CAAC;6CAAyB;AAjF1C,SAAS;IADd,aAAa,CAAC,eAAe,CAAC;GACzB,SAAS,CAiMd","sourcesContent":["import '@material/web/icon/icon.js'\nimport '@operato/markdown/ox-markdown.js'\n\nimport { css, html, LitElement, PropertyValues } from 'lit'\nimport { customElement, property, query, state } from 'lit/decorators.js'\nimport { connect } from 'pwa-helpers/connect-mixin.js'\n\nimport Headroom from '@operato/headroom'\nimport { closeOverlay } from '@operato/layout'\nimport { navigate, store } from '@operato/shell'\nimport { HeadroomStyles, ScrollbarStyles } from '@operato/styles'\n\n@customElement('ox-help-panel')\nclass HelpPanel extends connect(store)(LitElement) {\n static styles = [\n ScrollbarStyles,\n HeadroomStyles,\n css`\n :host {\n display: flex;\n flex-direction: column;\n background-color: var(--help-panel-background-color);\n\n position: relative;\n width: var(--help-panel-width);\n max-height: 90%;\n border-radius: var(--help-panel-border-raidus);\n border: var(--help-panel-border);\n box-shadow: var(--help-panel-box-shadow);\n color: var(--help-panel-color);\n margin: 4px;\n\n overflow: hidden;\n }\n\n :host(:focus) {\n outline: none;\n }\n\n #navigation {\n display: flex;\n position: absolute;\n width: 100%;\n padding: var(--help-navigation-padding);\n border-bottom: var(--help-navigation-bottom);\n background-color: white;\n }\n #navigation md-icon {\n border-right: var(--help-navigation-icon-border);\n cursor: pointer;\n color: var(--help-icon-color);\n }\n\n #close {\n margin-left: auto;\n border-right: 0;\n }\n\n #content {\n flex: 1;\n overflow: auto;\n padding: var(--help-panel-content-padding);\n margin: var(--help-panel-margin);\n }\n\n #upward {\n --md-icon-size: 26px;\n position: absolute;\n bottom: var(--data-list-fab-position-vertical);\n right: var(--data-list-fab-position-horizontal);\n background-color: rgba(255, 255, 255, 0.7);\n border-radius: 20px;\n color: var(--data-list-fab-color);\n box-shadow: var(--data-list-fab-shadow);\n padding: 7px;\n }\n\n @media screen and (max-width: 460px) {\n :host {\n height: 100%;\n max-height: 100%;\n margin: 0;\n }\n }\n `\n ]\n\n @property({ type: String }) topic!: string\n @property({ type: Boolean }) showGotoTop: boolean = false\n\n @state() historyIndex: number = -1\n @state() history: string[] = []\n\n @query('#content') content!: HTMLElement\n @query('#navigation') navigation!: HTMLElement\n\n render() {\n const src = this.topic && `/helps/${this.topic}.md`\n\n return html`\n <div id=\"navigation\">\n <md-icon @click=${() => this.goHome()} ?disabled=${this.history[0] === this.history[this.historyIndex]}\n >home</md-icon\n >\n <md-icon @click=${() => this.historyBack()} ?disabled=${this.historyIndex < 1}>keyboard_arrow_left</md-icon>\n <md-icon @click=${() => this.historyForward()} ?disabled=${this.historyIndex >= this.history.length - 1}\n >keyboard_arrow_right</md-icon\n >\n <md-icon @click=${() => navigate(`help?topic=${this.topic}`)}>open_in_new</md-icon>\n <md-icon id=\"close\" @click=${() => closeOverlay('help')}>close</md-icon>\n </div>\n\n ${!this.showGotoTop\n ? html``\n : html` <md-icon id=\"upward\" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</md-icon> `}\n <ox-markdown id=\"content\" .src=${src}></ox-markdown>\n `\n }\n\n async firstUpdated() {\n this.setupRouter()\n\n this.content.addEventListener('scroll', (e: Event) => {\n this.showGotoTop = (e.target as HTMLElement)?.scrollTop !== 0\n })\n\n await this.requestUpdate()\n\n var originPaddingTop = parseFloat(getComputedStyle(this.content, null).getPropertyValue('padding-top'))\n this.content.style.paddingTop = this.navigation.clientHeight + originPaddingTop + 'px'\n\n var headroom = new Headroom(this.navigation, {\n scroller: this.content\n })\n headroom.init()\n }\n\n async updated(changes: PropertyValues<this>) {\n if (changes.has('topic')) {\n if (this.historyIndex === -1) {\n this.history = [this.topic]\n this.historyIndex = 0\n }\n }\n\n if (changes.has('historyIndex')) {\n this.topic = this.history[this.historyIndex]\n this.content.scrollTop = 0\n }\n }\n\n setupRouter() {\n this.addEventListener('click', e => {\n if (e.defaultPrevented || e.button !== 0 || e.metaKey || e.ctrlKey || e.shiftKey) {\n return\n }\n\n const anchor = e.composedPath().filter(n => (n as HTMLElement).tagName === 'A')[0] as HTMLAnchorElement\n if (!anchor || anchor.target || anchor.hasAttribute('download') || anchor.getAttribute('rel') === 'external') {\n return\n }\n\n const href = anchor.href\n const newUrl = new URL(href, document.baseURI)\n if (!href || href.indexOf('mailto:') !== -1 || newUrl.origin !== location.origin) {\n return\n }\n\n e.preventDefault()\n e.stopPropagation()\n\n const pathname = newUrl.pathname\n const topic = newUrl.searchParams?.get('topic')\n if (pathname.endsWith('/help') && topic) {\n this.history = [...this.history.slice(0, this.historyIndex + 1), topic]\n this.historyIndex++\n this.topic = topic\n } else {\n navigate(href)\n }\n\n return\n })\n }\n\n gotoTop(e: Event) {\n this.content.scrollTop = 0\n\n e.stopPropagation()\n }\n\n goHome() {\n if (!this.history?.[0] || this.history[0] == this.topic) {\n return\n }\n this.history.push(this.history[0])\n this.historyIndex = this.history.length - 1\n }\n\n historyBack() {\n this.historyIndex > 0 && this.historyIndex--\n }\n\n historyForward() {\n this.history && this.historyIndex < this.history.length - 1 && this.historyIndex++\n }\n}\n"]}
|
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/help-style.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/mwc-icon/node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@material/mwc-icon/node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@material/mwc-icon/node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit-html/directive.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit-html/lit-html.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit-element/lit-element.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit-html/is-server.d.ts","../../../node_modules/@material/mwc-icon/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit-html/lit-html.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit-html/directive.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../src/controller/help.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/components/ox-help-icon.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.d.ts","../../data-grist/dist/src/data-grid/data-grid-accum-field.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filter-select-buttons.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/utils/list-param.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../src/grist/help-decorated-renderer.ts","../src/components/ox-inline-help.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/components/ox-title-with-help.ts","../src/index.ts","../../../node_modules/@material/mwc-icon-button/node_modules/lit/index.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/pages/ox-help-home.ts","../../markdown/dist/src/ox-markdown.d.ts","../src/viewparts/ox-help-panel.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e056bb30bf82271634daeee81f772f4a7960085f01f6d4d09c8da1ebe5f6a623","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576",{"version":"86492a546c3308feaf1dde967afd325c321483b5e96f5fa9e9b6e691dc23fa9e","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","2524f58c8d67af441b487c0ce0e0dd9c18bf3d06c05f621874dcda9780d8e22c","c7dd759e5948a94b42422ba7cf70eb8455416def9447614a3bdc1a99b81fc8bb","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"ccbad3fba3de6a57cfb2be45320ed37844d167c3587fcef5f17197f089c40ff1","signature":"0e01ded08c522ec0489b59ffc043d9f72b71ce33662982135f7a4c6e92eb7e71"},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","bbbdb165aa809434877352b36d1828259f6e2fa83b849da0cd36ded2dac074fc","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","eee4830208488d834cf35c684a7775c516b27e04ebe5a0d5c058d89a56ed1f65","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","cf9ea56da5e5ff29d5bcc81494fc845509b35d7bb498455b491b53feb40573e2","e59262ddaae67dec2d226f8a5d05cf6c4dc353c0d9b1e4980a61d7fcf9a2b051","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576","470b8c2386c916bad4aa0d05e89b271a47dbe1250cb25dc0f93102b457228dde","7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","4ddf3962990379d1ea59b369a5516c7533b7944010d6998e0e9b1ab35d5af1f0","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"4f8a45a1604827a71eaa7758e123fd195188338b4738117f9a667fe5a3e9a462","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","8bb8931e629d9adfac6fe0c067de1a3c2f82b47262f83fa76eb0772ef13808e8","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},"94db7a880875b44f748ba26d2ac2d2bd3b70b24b548abc89f2806243721cbd0f","3a4c8803928a0f5ea958413ca323def3518941fc65a94c880ba8a571311daf81","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","67eee3f60d04105614d4bed2b3eef28dc7a3a746dcf59dffcc4254d7fd023762","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244",{"version":"0a222bfffa97938a767d60e541922bc0455cde9dcbf25a1685ec202a7057ee9c","signature":"a3ec644a6d3c4b142baab2ce25823e716804f5ed2018e32547377a82607830a2"},"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","1cc188904259bd0985b24d9dc2a160891cb5e94210901466b951716fcdb4ff62","732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea",{"version":"76591fdb027d053109268fcdb759ae3b22831afe43a1bc3f8fdf3c9be1b5980d","signature":"4198376980e77bdbacdb54f150437670cc3f1de4b453608188f69cf50e25bf0a"},"cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","09c3ceafecc2e08f123ca5ee0886564dd574bfb3963d3d102bb31f0b1b6a8ecc","328771615e1dd9055b6f487f90d1e99b958bbaf303c2b3b35ca6ad2beebf57f4","fc32e1e56aead89cf0ff04e9346f63ad36e7fa8f390127435eac59ec4c6406b9","fe0e774326bff14b64b8208e648b6f374db8e09e39879dd6a09441ef6bea9c74","5fcfd437406657025030a8e985f1c762548087dc0db0195d9139dfe520d11965","f4ce147c4745d8662c66dc47cc77226bf79eb00766801c8225b570d1335f0de0","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","3d9c5289873e27c3c4fafb5b5302d384484495d517b64892e515a7b30ee8903b","f9b56f9d07cb05a23ad19b491d9d0d6950a1e8b2e9ef3d827ea6c2e1b64cbb59","325ed40ce0219dd26de91b25a23fa0e17b9b6c8bd2921dec6178d81aaf7fc969","6a82472fbb0445e81d7975c7c63d3deb69285ce74081268ca3b3a66863ac54b2","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","e0a32d1c7b757d25b3b1619accddc87a957a100ed065d187f00aa0c0897d9459","7bb77541f0eca958dc247605adb72cec5cd5938780f2b601532372ee73a09190","7d7013f449f336b924d6ce7520e5628b4b0beaf162709adaf52c05f89416f38d","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","d55838a1d000c98fd596e2b7d39342b564151355e9256117e83bb1b613801168","a5352463052128493313d93f3648c837f1365e24a0ec5fd640e0a6468e47654b","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","70594838909a394e4017449b7eb8d414d90f4fab1b1dd493588f6a22f2b575cf","87708ffc11fa926c5f972309ef9f9bd07f2d70dfce4ca2924c276a1961269450","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","988e6ed31d7d505106c63046218e13120a1d058854dc0007ce729fea94e5a557","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","8c25ae69aa019b934abf435c960a99cf743762cbba8efad5d0066ff5f85eec00","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","45d0f7764762786437b6c56387f6dc20a8b3cee0d41764c009638c62dbffb01a","386e5858ba95acd2c0fa5ed0c5bff19addb0ef8c32ebcaf171d5bdcbb9ab8a3e","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a208a319c19376e0e8d953d58ddee7b2cc8de3be72e110f97c7fbaa23bf1e5b4","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","3854977cd654de296953b729bfd49a31b1073d6d1276f3c79a8c68704694af3e","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1",{"version":"e674cab128f374b99a143d30a0bb929d943bf09c8193454b18fdfebb453a6989","signature":"72c83a2e8bc082f5221401930d6b474c3a1db69f7e2eafdf155a002dfc4456af"},{"version":"94ceee5d1ca5c49356f1c1af4134dd1b91df75d72acbb9e2370a1602b8928f15","signature":"af05e83f95c8ff11685deb777025050304076cc0580b2969a8aff800c791bf8c"},"c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"5a3058d334aa34d5c3b63aca6ce3bcdf6b3d3734a587bb7f9e28b54438c97183","signature":"cac0f164dd52b2f51d44ad7342f51d53519bfc747e71d7d6bfbf001a99f08fcd"},{"version":"fc3f152a75ea09e6a83b3b94d074315fad4b4e6011c629b641ed179e695ebab7","signature":"d7a767976ba46e5dbac26693a8dc976d4eb44e501001c8f2f447a3cc72a55065"},"dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","35c1202e93852c1c233191971b8c4aefe5d3f9df287991585fe305078c0880e6","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"ad79bcc398c5fed8d09d83b3362307fb84fc29270a3c1a0ea36df2e2c4c7f0f6","signature":"aa216aba33ab746bf7da2b3857a8a62c8bde4b05fd760a37db69c3581dfb1948"},"506bc0cf38a9399347ef115acc6609b2f9c05086651fe60583e557247157ac4d",{"version":"e052ef1b936b42b105d910c9e77595d4812034e26955c245d6966931d63b7506","signature":"1eac25c2c161e0d4b943e33ede9bcb5bc7dba6c14ebf265013bfd3e5525d1d83"},"acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[58,127,139,220,221,228,229,245,247],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[128],[50,128],[50,128,136],[130],[48,49],[86,91,93,94],[81,83,84,85],[86,87,101,102,103,108],[86,109],[83],[82,83],[82],[107],[86,101,102,103],[86,231],[86],[79,80],[81,83],[52,82],[86,93,95,97,98],[86,100],[93],[94,96],[91,97],[148,150,151,152,153,154,155,156,157,158,159,160],[148,149,151,152,153,154,155,156,157,158,159,160],[149,150,151,152,153,154,155,156,157,158,159,160],[148,149,150,152,153,154,155,156,157,158,159,160],[148,149,150,151,153,154,155,156,157,158,159,160],[148,149,150,151,152,154,155,156,157,158,159,160],[148,149,150,151,152,153,155,156,157,158,159,160],[148,149,150,151,152,153,154,156,157,158,159,160],[148,149,150,151,152,153,154,155,157,158,159,160],[148,149,150,151,152,153,154,155,156,158,159,160],[148,149,150,151,152,153,154,155,156,157,159,160],[148,149,150,151,152,153,154,155,156,157,158,160],[148,149,150,151,152,153,154,155,156,157,158,159],[248],[284],[285,290,319],[286,297,298,305,316,327],[286,287,297,305],[288,328],[289,290,298,306],[290,316,324],[291,293,297,305],[284,292],[293,294],[297],[295,297],[284,297],[297,298,299,316,327],[297,298,299,312,316,319],[282,285,332],[293,297,300,305,316,327],[297,298,300,301,305,316,324,327],[300,302,316,324,327],[248,249,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334],[297,303],[304,327,332],[293,297,305,316],[306],[307],[284,308],[309,326,332],[310],[311],[297,312,313],[312,314,328,330],[285,297,316,317,318,319],[285,316,318],[316,317],[319],[320],[284,316],[297,322,323],[322,323],[290,305,316,324],[325],[305,326],[285,300,311,327],[290,328],[316,329],[304,330],[331],[285,290,297,299,308,316,327,330,332],[316,333],[51],[50,54],[54],[52,53],[129,130,131,132,133,134,135,136,137],[50,54,55,56],[65],[259,263,327],[259,316,327],[254],[256,259,324,327],[305,324],[335],[254,335],[256,259,305,327],[251,252,255,258,285,297,316,327],[251,257],[255,259,285,319,327,335],[285,335],[275,285,335],[253,254,335],[259],[253,254,255,256,257,258,259,260,261,263,264,265,266,267,268,269,270,271,272,273,274,276,277,278,279,280,281],[259,266,267],[257,259,267,268],[258],[251,254,259],[259,263,267,268],[263],[257,259,262,327],[251,256,257,259,263,266],[285,316],[254,259,275,285,332,335],[218],[191],[57,191],[87,141],[54,57,87,145,163,175],[54,57,87,140,141,173,174,191],[54,57,142,147,160,191],[54,57,87,191],[57,78,87,191],[54,57,145,146,161,162,163,191],[54,57,164,168,169,170,191],[54,57,87,163,167],[54,57,87,165,166,173,191],[54,57,170,191,195],[54,57,176,191],[54,57,191,193,194],[177,178,179],[54,177],[54,57,142,191],[177,191],[54,57,87],[57,88,191],[181,182,183,184,185,186,187,188],[212],[214],[210],[171,173,180,189,191,192,196,209,211,213,215,216,217],[144,172],[54,57,87,144,171],[54,57,87,142,191],[54,57,87,142,143,191],[190,197,198,199,200,201,202,203,204,205,206,207,208],[54,57,190],[190,191],[54,140,141,142,165,166,167,175,176,180,189,190],[234],[47,57,87,127,138],[47,57,127,138],[47,57,87,127,138,227],[47,126],[47,54,139,219],[47,57],[47,127,139,220,221,228],[47,57,76,138,227,232,233,235,244],[47,57,76,126,138,232,233,235,244,246],[222],[223,224,225,226],[57,222],[54,57],[57,114],[77,114,115,117,118,119,120,121,122,123,124,125],[76],[112,116],[87,110],[53,57],[78,88,89,90,111,113],[57,112],[54,57,78,87],[54,57,78],[54,57,89],[54,57,87,110],[68,69,70,71],[57],[64,67,72,73,74,75],[65,66],[59,60,61,62,63],[60,61],[59,60,62],[236,237,238,239,240,241,242,243],[139,219],[127,139,220,221,228],[232],[232,246]],"referencedMap":[[129,1],[132,2],[130,2],[134,2],[137,3],[136,2],[135,2],[133,2],[131,4],[50,5],[95,6],[92,7],[109,8],[110,9],[106,10],[107,11],[105,12],[108,13],[104,7],[231,14],[232,15],[230,7],[87,16],[81,17],[84,18],[82,10],[83,19],[86,7],[100,20],[101,21],[99,7],[103,22],[97,23],[98,24],[149,25],[150,26],[148,27],[151,28],[152,29],[153,30],[154,31],[155,32],[156,33],[157,34],[158,35],[159,36],[160,37],[248,38],[249,38],[284,39],[285,40],[286,41],[287,42],[288,43],[289,44],[290,45],[291,46],[292,47],[293,48],[294,48],[296,49],[295,50],[297,51],[298,52],[299,53],[283,54],[300,55],[301,56],[302,57],[335,58],[303,59],[304,60],[305,61],[306,62],[307,63],[308,64],[309,65],[310,66],[311,67],[312,68],[313,68],[314,69],[316,70],[318,71],[317,72],[319,73],[320,74],[321,75],[322,76],[323,77],[324,78],[325,79],[326,80],[327,81],[328,82],[329,83],[330,84],[331,85],[332,86],[333,87],[52,88],[55,89],[53,90],[54,91],[138,92],[57,93],[233,94],[66,94],[266,95],[273,96],[265,95],[280,97],[257,98],[256,99],[279,100],[274,101],[277,102],[259,103],[258,104],[254,105],[253,106],[276,107],[255,108],[260,109],[264,109],[282,110],[281,109],[268,111],[269,112],[271,113],[267,114],[270,115],[275,100],[262,116],[263,117],[272,118],[252,119],[278,120],[219,121],[192,122],[140,123],[174,124],[141,123],[169,125],[175,126],[170,122],[147,123],[161,127],[142,123],[162,128],[146,129],[164,130],[171,131],[166,123],[165,123],[168,132],[167,133],[163,123],[196,134],[194,135],[195,136],[176,123],[180,137],[179,138],[177,139],[178,140],[145,141],[184,122],[183,122],[185,122],[186,122],[187,122],[182,122],[188,142],[189,143],[181,122],[213,144],[215,145],[214,122],[211,146],[210,122],[218,147],[173,148],[172,149],[143,150],[144,151],[209,152],[198,122],[199,122],[200,122],[207,122],[206,122],[208,122],[201,122],[202,122],[203,153],[205,122],[204,122],[190,139],[197,154],[216,123],[191,155],[217,122],[235,156],[139,157],[221,158],[228,159],[127,160],[220,161],[58,162],[229,163],[245,164],[247,165],[223,166],[227,167],[224,168],[226,169],[225,169],[123,170],[124,94],[116,169],[125,169],[126,171],[77,172],[119,173],[120,173],[117,173],[118,173],[122,173],[121,173],[115,174],[246,175],[114,176],[113,177],[112,141],[88,178],[89,179],[90,180],[78,169],[111,181],[72,182],[73,183],[76,184],[67,185],[64,186],[62,187],[61,188],[242,183],[241,183],[243,183],[236,183],[244,189],[237,183],[238,183],[239,183]],"exportedModulesMap":[[129,1],[132,2],[130,2],[134,2],[137,3],[136,2],[135,2],[133,2],[131,4],[50,5],[95,6],[92,7],[109,8],[110,9],[106,10],[107,11],[105,12],[108,13],[104,7],[231,14],[232,15],[230,7],[87,16],[81,17],[84,18],[82,10],[83,19],[86,7],[100,20],[101,21],[99,7],[103,22],[97,23],[98,24],[149,25],[150,26],[148,27],[151,28],[152,29],[153,30],[154,31],[155,32],[156,33],[157,34],[158,35],[159,36],[160,37],[248,38],[249,38],[284,39],[285,40],[286,41],[287,42],[288,43],[289,44],[290,45],[291,46],[292,47],[293,48],[294,48],[296,49],[295,50],[297,51],[298,52],[299,53],[283,54],[300,55],[301,56],[302,57],[335,58],[303,59],[304,60],[305,61],[306,62],[307,63],[308,64],[309,65],[310,66],[311,67],[312,68],[313,68],[314,69],[316,70],[318,71],[317,72],[319,73],[320,74],[321,75],[322,76],[323,77],[324,78],[325,79],[326,80],[327,81],[328,82],[329,83],[330,84],[331,85],[332,86],[333,87],[52,88],[55,89],[53,90],[54,91],[138,92],[57,93],[233,94],[66,94],[266,95],[273,96],[265,95],[280,97],[257,98],[256,99],[279,100],[274,101],[277,102],[259,103],[258,104],[254,105],[253,106],[276,107],[255,108],[260,109],[264,109],[282,110],[281,109],[268,111],[269,112],[271,113],[267,114],[270,115],[275,100],[262,116],[263,117],[272,118],[252,119],[278,120],[219,121],[192,122],[140,123],[174,124],[141,123],[169,125],[175,126],[170,122],[147,123],[161,127],[142,123],[162,128],[146,129],[164,130],[171,131],[166,123],[165,123],[168,132],[167,133],[163,123],[196,134],[194,135],[195,136],[176,123],[180,137],[179,138],[177,139],[178,140],[145,141],[184,122],[183,122],[185,122],[186,122],[187,122],[182,122],[188,142],[189,143],[181,122],[213,144],[215,145],[214,122],[211,146],[210,122],[218,147],[173,148],[172,149],[143,150],[144,151],[209,152],[198,122],[199,122],[200,122],[207,122],[206,122],[208,122],[201,122],[202,122],[203,153],[205,122],[204,122],[190,139],[197,154],[216,123],[191,155],[217,122],[235,156],[139,141],[221,169],[228,141],[220,190],[58,183],[229,191],[245,192],[247,193],[223,166],[227,167],[224,168],[226,169],[225,169],[123,170],[124,94],[116,169],[125,169],[126,171],[77,172],[119,173],[120,173],[117,173],[118,173],[122,173],[121,173],[115,174],[246,175],[114,176],[113,177],[112,141],[88,178],[89,179],[90,180],[78,169],[111,181],[72,182],[73,183],[76,184],[67,185],[64,186],[62,187],[61,188],[242,183],[241,183],[243,183],[236,183],[244,189],[237,183],[238,183],[239,183]],"semanticDiagnosticsPerFile":[48,128,129,132,130,134,137,136,135,133,131,49,50,91,94,102,95,92,93,109,110,106,107,105,108,104,231,232,230,87,79,80,81,84,82,85,83,86,100,101,99,103,97,98,96,149,150,148,151,152,153,154,155,156,157,158,159,160,336,248,249,284,285,286,287,288,289,290,291,292,293,294,296,295,297,298,299,283,334,300,301,302,335,303,304,305,306,307,308,309,310,311,312,313,314,315,316,318,317,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,52,51,250,222,55,53,56,54,138,57,233,66,65,47,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,266,273,265,280,257,256,279,274,277,259,258,254,253,276,255,260,261,264,251,282,281,268,269,271,267,270,275,262,263,272,252,278,219,192,140,174,141,169,175,170,147,161,142,162,146,164,171,166,165,168,167,163,196,194,195,176,193,180,179,177,178,145,184,183,185,186,187,182,188,189,181,213,212,215,214,211,210,218,173,172,143,144,209,198,199,200,207,206,208,201,202,203,205,204,190,197,216,191,217,234,235,139,221,228,127,220,58,229,245,247,223,227,224,226,225,123,124,116,125,126,77,119,120,117,118,122,121,115,246,114,113,112,88,89,90,78,111,68,70,71,72,69,73,75,76,74,67,59,64,62,61,63,60,242,240,241,243,236,244,237,238,239]},"version":"5.4.5"}
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/lit-html/lit-html.d.ts","../../../node_modules/lit-element/lit-element.d.ts","../../../node_modules/lit-html/is-server.d.ts","../../../node_modules/lit/index.d.ts","../src/help-style.ts","../../shell/dist/src/types/domain.d.ts","../../shell/dist/src/types/user.d.ts","../../shell/dist/src/types/role.d.ts","../../shell/dist/src/types/privilege.d.ts","../../shell/dist/src/types/types.d.ts","../../shell/dist/src/types/index.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../shell/dist/src/store.d.ts","../../shell/dist/src/actions/app.d.ts","../../shell/dist/src/actions/route.d.ts","../../shell/dist/src/actions/busy.d.ts","../../shell/dist/src/actions/const.d.ts","../../shell/dist/src/actions/index.d.ts","../../shell/dist/src/app/pages/page-view.d.ts","../../shell/dist/src/object-store.d.ts","../../shell/dist/src/custom-alert.d.ts","../../shell/dist/src/index.d.ts","../../layout/dist/src/initializer.d.ts","../../popup/dist/src/ox-popup.d.ts","../../../node_modules/@material/web/icon/internal/icon.d.ts","../../../node_modules/@material/web/icon/icon.d.ts","../../popup/dist/src/ox-popup-list.d.ts","../../popup/dist/src/ox-popup-menu.d.ts","../../popup/dist/src/ox-popup-menuitem.d.ts","../../../node_modules/@material/web/elevation/internal/elevation.d.ts","../../../node_modules/@material/web/elevation/elevation.d.ts","../../../node_modules/@material/web/internal/controller/attachable-controller.d.ts","../../../node_modules/@material/web/focus/internal/focus-ring.d.ts","../../../node_modules/@material/web/focus/md-focus-ring.d.ts","../../../node_modules/@material/web/ripple/internal/ripple.d.ts","../../../node_modules/@material/web/ripple/ripple.d.ts","../../../node_modules/@material/web/labs/behaviors/mixin.d.ts","../../../node_modules/@material/web/labs/behaviors/element-internals.d.ts","../../../node_modules/@material/web/internal/controller/form-submitter.d.ts","../../../node_modules/@material/web/button/internal/button.d.ts","../../../node_modules/@material/web/button/internal/elevated-button.d.ts","../../../node_modules/@material/web/button/elevated-button.d.ts","../../popup/dist/src/ox-prompt.d.ts","../../popup/dist/src/ox-floating-overlay.d.ts","../../popup/dist/src/open-popup.d.ts","../../popup/dist/src/index.d.ts","../../layout/dist/src/layouts/ox-snack-bar.d.ts","../../layout/dist/src/components/ox-resize-splitter.d.ts","../../layout/dist/src/layouts/ox-header-bar.d.ts","../../layout/dist/src/layouts/ox-nav-bar.d.ts","../../layout/dist/src/layouts/ox-aside-bar.d.ts","../../layout/dist/src/layouts/ox-footer-bar.d.ts","../../layout/dist/src/layouts/ox-page-header-bar.d.ts","../../layout/dist/src/layouts/ox-page-footer-bar.d.ts","../../layout/dist/src/actions/layout.d.ts","../../layout/dist/src/actions/snackbar.d.ts","../../layout/dist/src/components/ox-split-pane.d.ts","../../layout/dist/src/index.d.ts","../src/controller/help.ts","../../../node_modules/@lit/reactive-element/decorators/base.d.ts","../../../node_modules/@lit/reactive-element/decorators/custom-element.d.ts","../../../node_modules/@lit/reactive-element/decorators/property.d.ts","../../../node_modules/@lit/reactive-element/decorators/state.d.ts","../../../node_modules/@lit/reactive-element/decorators/event-options.d.ts","../../../node_modules/@lit/reactive-element/decorators/query.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-all.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-async.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-nodes.d.ts","../../../node_modules/@lit/reactive-element/decorators/query-assigned-elements.d.ts","../../../node_modules/lit/decorators.d.ts","../src/components/ox-help-icon.ts","../../data-grist/dist/src/data-card/data-card-field.d.ts","../../data-grist/dist/src/data-card/data-card-gutter.d.ts","../../data-grist/dist/src/data-grid/data-grid-field.d.ts","../../data-grist/dist/src/record-view/record-view-body.d.ts","../../data-grist/dist/src/record-view/record-view.d.ts","../../data-grist/dist/src/empty-note.d.ts","../../data-grist/dist/src/data-grid/data-grid-header.d.ts","../../data-grist/dist/src/data-grid/data-grid-accum-field.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../data-grist/dist/src/data-grid/data-grid-body.d.ts","../../data-grist/dist/src/data-grid/data-grid-footer.d.ts","../../data-grist/dist/src/data-manipulator.d.ts","../../data-grist/dist/src/data-grid/data-grid.d.ts","../../data-grist/dist/src/data-list/data-list-gutter.d.ts","../../data-grist/dist/src/data-list/data-list-field.d.ts","../../data-grist/dist/src/data-list/record-partial.d.ts","../../data-grist/dist/src/data-list/data-list.d.ts","../../data-grist/dist/src/data-card/data-card.d.ts","../../data-grist/dist/src/data-consumer.d.ts","../../data-grist/dist/src/data-grist.d.ts","../../data-grist/dist/src/record-view/record-creator.d.ts","../../data-grist/dist/src/record-view/index.d.ts","../../data-grist/dist/src/data-card/data-card-gutter-menu.d.ts","../../data-grist/dist/src/data-card/record-card.d.ts","../../data-grist/dist/src/data-report/data-report-field.d.ts","../../data-grist/dist/src/editors/ox-grist-editor.d.ts","../../data-grist/dist/src/editors/registry.d.ts","../../data-grist/dist/src/editors/ox-grist-editor-image.d.ts","../../data-grist/dist/src/editors/index.d.ts","../../data-grist/dist/src/filters/registry.d.ts","../../data-grist/dist/src/filters/filter-select.d.ts","../../data-grist/dist/src/filters/filter-input.d.ts","../../data-grist/dist/src/filters/filter-checkbox.d.ts","../../data-grist/dist/src/filters/filter-range-date.d.ts","../../data-grist/dist/src/filters/filter-range-number.d.ts","../../data-grist/dist/src/filters/filter-select-buttons.d.ts","../../data-grist/dist/src/filters/filters-form.d.ts","../../data-grist/dist/src/filters/index.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer.d.ts","../../data-grist/dist/src/types.d.ts","../../data-grist/dist/src/configure/zero-config.d.ts","../../data-grist/dist/src/data-report/data-report-header.d.ts","../../data-grist/dist/src/data-report/data-report-body.d.ts","../../data-grist/dist/src/data-report/data-report-component.d.ts","../../data-grist/dist/src/data-report.d.ts","../../data-grist/dist/src/renderers/registry.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-boolean.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-color.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-date.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-link.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-password.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-progress.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-text.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-select.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-image.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-file.d.ts","../../data-grist/dist/src/renderers/ox-grist-renderer-json5.d.ts","../../data-grist/dist/src/renderers/index.d.ts","../../data-grist/dist/src/handlers/registry.d.ts","../../data-grist/dist/src/handlers/index.d.ts","../../data-grist/dist/src/formatters/registry.d.ts","../../data-grist/dist/src/formatters/index.d.ts","../../data-grist/dist/src/gutters/registry.d.ts","../../data-grist/dist/src/gutters/index.d.ts","../../data-grist/dist/src/sorters/sorters-control.d.ts","../../data-grist/dist/src/utils/list-param.d.ts","../../data-grist/dist/src/index.d.ts","../../data-grist/dist/index.d.ts","../src/grist/help-decorated-renderer.ts","../src/components/ox-inline-help.ts","../../../node_modules/i18next/index.d.ts","../../i18n/dist/src/config.d.ts","../../i18n/dist/src/localize.d.ts","../../i18n/dist/src/ox-i18n.d.ts","../../i18n/dist/src/ox-i18n-selector.d.ts","../../i18n/dist/src/index.d.ts","../src/components/ox-title-with-help.ts","../src/index.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../headroom/dist/src/headroom.d.ts","../../headroom/dist/src/index.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/common-header-styles.d.ts","../../styles/dist/src/index.d.ts","../src/pages/ox-help-home.ts","../../markdown/dist/src/ox-markdown.d.ts","../src/viewparts/ox-help-panel.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@types/mocha/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e056bb30bf82271634daeee81f772f4a7960085f01f6d4d09c8da1ebe5f6a623","5e30131b6a5587fe666926ad1d9807e733c0a597ed12d682669fcaa331aea576",{"version":"86492a546c3308feaf1dde967afd325c321483b5e96f5fa9e9b6e691dc23fa9e","affectsGlobalScope":true},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"d4b4f6148a6444ec92db4ac4c7dd7050ffc32b21a10276a59498e04740e8fd8d","2524f58c8d67af441b487c0ce0e0dd9c18bf3d06c05f621874dcda9780d8e22c","c7dd759e5948a94b42422ba7cf70eb8455416def9447614a3bdc1a99b81fc8bb","1bcd560deed90a43c51b08aa18f7f55229f2e30974ab5ed1b7bb5721be379013","dc08fe04e50bc24d1baded4f33e942222bbdd5d77d6341a93cfe6e4e4586a3be",{"version":"e9caa4b2557336e231ee215b5afa41f2ce8320cc4f43dd8c7cf1ba9177a78d3d","signature":"0e01ded08c522ec0489b59ffc043d9f72b71ce33662982135f7a4c6e92eb7e71"},"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6","2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a","774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92","36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257","3d7c0b593a29d717b2b2ba3f03f819c3c48bf9e250d79c4a31860af80f177e8c","f228d440342f5d0933f5db093aafab2f07de24a427b4488ccfae27b7457d7666",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708",{"version":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a","bbbdb165aa809434877352b36d1828259f6e2fa83b849da0cd36ded2dac074fc","b42033bf1067564808e4d360d79281667c2b3b0792c2d615ab641eb85974d4ba","7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f","78faa3783191b2d5d5f7a9e835ee3f6a1456dc391d6eb5b40d3a27dfd9decd6e","08d32a8fc63dbf34214ebb90c547ef20082d7d60126ad146ef8704528fb5e99d","fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762","eee4830208488d834cf35c684a7775c516b27e04ebe5a0d5c058d89a56ed1f65","a6203646763fb7340123eace99b924c9586ea3cf56f65fe8c56308e6ecb2b805","60997095f458b8c2c94af5759c796d9d17678e740a41a04c3e518c14c47f2ee7","cf9ea56da5e5ff29d5bcc81494fc845509b35d7bb498455b491b53feb40573e2","5565deadc1d553f9f1ef370351432c258d2a6f1a5ca47e574e5430db824468c7",{"version":"4ae1ed87c59518f4e0918a21409ec3020e97037a386b57953c6b9fed9cad6949","affectsGlobalScope":true},"a71c55c9a1b3b2ec65730253d006210e146e9e6dea66ddd6ead989f4594b38c5","d033de6f37b4734cea6214bdde25f0eb60999f8f803856eae89eb804c0b6e0fe","6d8223035d3e6d8ed0760d4579dc0cc582c8972ea198e4919c8080ec3e9baf0a","6184309fe39e2fe444f4ba94e7cd1abef48fcb48e258457c3b77c65828184241",{"version":"98c511f60c3079d731a35353a47bfa89dd79eeacad48a45d07170d22ef4bfd02","affectsGlobalScope":true},"905800cc110167503d0cf58bb0dd6fa4aaac1e9cedc9bd9c48e5d1f8b5b8d4c8","d17be577b99e59611df19ca2cf0356df554f55bb06617c21321fc4ec06b820d0",{"version":"5f30145fbc8ca508ae4e0d90a4fe9eaff490783f380a92f6aa262accdf7887b7","affectsGlobalScope":true},"2c887f29f6796ea68247c626acbef560ff29bb8d0042b641e4fc69559841463d",{"version":"f882b77c5939860d599b4b7bc39f741ebcd56123e18b284500f4b8923acd2e72","affectsGlobalScope":true},"0230bc76ed3a464531a43d2434d315b9cc2096aaca28bdaa65b8f9dce9f3bc81","559d2d1cd7f37dc2ac59e7adce198ad16a5eb0c7273d67b8e4ff72821b7c853f","afa8760622183e35e86f516574217eb1853b08cf2168be0bfe991643ece1a8fe","55abfe582ce4b1917687712edf558626a341b1b1f339452509d879b633a94557","0cb349f3a6866eb4ec6424b3844fa51498b32402f922d5a571d069d7cf44c68f",{"version":"517dd6f73e4d20b38841f7be1edb2fb6f4152775ac3a9c04e319ff0b3509c8ba","affectsGlobalScope":true},"93458a5ce30da930d0ed8922929cddf433fc6f4200815b6097d3e28c5ea87488","b6b0e59158a1c8ad34747722a19398d7bf26701e9ee2a130d80a52a815a8bb92","c97f742ef6e8c0bc4e5e4ad8d90b4489cdd3bd1c007510ee4a2e4c09266a11d2","6a17f676d06d3e695520b275dd483b4fe62d34b84926c0bf6425c08490ee2c41","0a393c9c5788e5d01bb34be9e2bd5f48363fb5541ff083e4a24360284d584790","5582fb24ca35ef8a72d61a095d62ae2ada8143c33bc56febf626e333d3a5b013","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","9d89de778f5c38f0fa4cbd27236724c9fa24d796032062a929772c8cd3baffa5","47b1df5805c9eb0fcd841d15513b4c0d6b59e4751cc7ea51ccfe1185637987aa","c36d51dd36b3887d7c2b81ebbffa009fa0ef62f4421f6b6b2ac8f06fcc6328e6","86d239790a025b4f1213571ed5d578b9080415e1218b253b499ed73ac436ae63","9d7d5dd5b13904d5bf406a43a74fc562bebb68e45d4bc86af60ff00c394e1244",{"version":"0a222bfffa97938a767d60e541922bc0455cde9dcbf25a1685ec202a7057ee9c","signature":"a3ec644a6d3c4b142baab2ce25823e716804f5ed2018e32547377a82607830a2"},"cdeae34aca6700620ebf3f27cf7d439c3af97595dd6e2729fa4780483add5680","3ff87ea3471b51beaf4aa8fd8f4422862b11d343fdbb55bf383e0f8cc195a445","1cc188904259bd0985b24d9dc2a160891cb5e94210901466b951716fcdb4ff62","732fb71ecb695d6f36ddcbb72ebfe4ff6b6491d45101a00fa2b75a26b80d640f","039cb05125d7621f8143616c495b8e6b54249c4e64d2754b80ff93867f7f4b01","1b81f1fa82ad30af01ab1cae91ccaddc10c48f5916bbd6d282155e44a65d858d","a0fc7a02a75802678a67000607f20266cf1a49dc0e787967efe514e31b9ed0c3","5ebf098a1d81d400b8af82807cf19893700335cf91a7b9dbd83a5d737af34b11","101cf83ac3f9c5e1a7355a02e4fbe988877ef83c4ebec0ff0f02b2af022254a3","d017e2fcd44b46ca80cd2b592a6314e75f5caab5bda230f0f4a45e964049a43a","a8992b852521a66f63e0cedc6e1f054b28f972232b6fa5ca59771db6a1c8bbea",{"version":"3c73aaf9cd26313b8623fecc775235b39136694fb57522ab0d3c02436d5ffc25","signature":"566d4f6a1b7d3769b2652f79a550999f5ed3c0d8d598dd3b6a83505212e053fc"},"cc6bcd576056d8ccc3bb297b152e9e4d694fa13a3790078fc9c03f361d82060b","038f7ba9c3cb0d2097d1fb3f6294c355999e257e42d6769280e1a978c84f871c","09c3ceafecc2e08f123ca5ee0886564dd574bfb3963d3d102bb31f0b1b6a8ecc","48ad022e52419d1016325b379d0ec9983e7543fa291d85bab1e05db4ba4d991e","9ca4c5743ac77f84a83e5c6812ca41880b5f532c8a344343c0ec5a307b8d5fe3","b4e0c5592f4108bc1c855177aaa1b61d09d02f8e0f59089388aba7206c47d4d7","be88db092944405c7145d8c0242b9ad8434792fc6b709b03a10b349c32936d14","f4ce147c4745d8662c66dc47cc77226bf79eb00766801c8225b570d1335f0de0","b8442e9db28157344d1bc5d8a5a256f1692de213f0c0ddeb84359834015a008c","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","da2b6356b84a40111aaecb18304ea4e4fcb43d70efb1c13ca7d7a906445ee0d3","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6f294731b495c65ecf46a5694f0082954b961cf05463bea823f8014098eaffa0","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","68a0d0c508e1b6d8d23a519a8a0a3303dc5baa4849ca049f21e5bad41945e3fc","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","b03afe4bec768ae333582915146f48b161e567a81b5ebc31c4d78af089770ac9","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","3d9c5289873e27c3c4fafb5b5302d384484495d517b64892e515a7b30ee8903b","cdc4e7fd1b86c67e46621ee7ab6b709a582912caa997d9874e13c9896a0b9cc9","325ed40ce0219dd26de91b25a23fa0e17b9b6c8bd2921dec6178d81aaf7fc969","6a82472fbb0445e81d7975c7c63d3deb69285ce74081268ca3b3a66863ac54b2","27fd44ac917b8f78d65173dccad092de47f408db592e1abb355f661d49646312","700828225cf903b1fce7dbac7d6afe27aab606cf6f38d29382f6d8cce445f3f9","beab932797dc68066e0d458ee92dcc8cd6bc356599a70689007f68e74e340c8e","832b1083b3fe23aaa13484835124c9150c7ccb80f3a8c2bf007ce183f2592b07","03f3f03872ff6a90ecf2f05abf86b743b479e28111a53860316cbd3acd16e652","5125dcacb1417e6bfaf4ddebbc2c0574f29d8770f0b2f83c478c3a070566342a","d55838a1d000c98fd596e2b7d39342b564151355e9256117e83bb1b613801168","9351b38c9e979dc5cfdfe72a3a84adf234366740c69181c86036b362144bfb8a","15b4d80e51b3ea458c75c3a68644a41024f7d83c12f1b37715a53a8a7f0fe9f8","7df0848e1a42b4e997f23f3d432ef1920a6c3b0587d32aedb6ae851f3b1aee2b","b5d1c04406f012961931edc572ce53e835d8308178b58ae127624dbfdc63fec3","998699eba617b9157327ec3be6a0da70bc0ffd86a40a20c21ed619f6f5eda300","988e6ed31d7d505106c63046218e13120a1d058854dc0007ce729fea94e5a557","32acecbba5dbfbe22f171d1aeffbd1df9c8d8d17e386479eabbde7209e936917","5b2dafe66896138a12fc33743126ed316f93971f5233fccaf602784a3c8ac22d","99a2a7093ce043534c17c2ebebdce37f1c14ac2b77780a476cfb70e5a9d035e2","4285b3976062212af73781ab61cd2d35014d6c8922ccbc082272ea14b56c4119","f0512312084ae789be5862be6bbbb4bd4ece73ca1bdaa3193b1a2e3dc0b8ea42","e1925458d0ea29d0b4d314ac029c368dcc5b5b0421be3c05c36a12df92840401","ea65e3ce32dcbb61edb379f86b303732103a887fcfe61fb0434cd5398fc8c272","19236d2b3a4d329eecb7d867e62ba2ce8ff2a1c290d9b9cadc246e1e860232ca","c348a5e4481d61843505811ed74ca62234d5bde08db286a719a7421bf64fc8c2","5e0042ca0dbe77639779a6f861c2a32fdff5094031e013fccf95508b49f6d7ee","8c25ae69aa019b934abf435c960a99cf743762cbba8efad5d0066ff5f85eec00","e9dd5f52c1e6edc780ececd7b176b1ad8ce106f35a9f0fdb67f3c8668522e839","19f4c3da100f6ae2baeb548f5334cd238ea8da4a62812afe579f9ecc4fd6b35a","45d0f7764762786437b6c56387f6dc20a8b3cee0d41764c009638c62dbffb01a","386e5858ba95acd2c0fa5ed0c5bff19addb0ef8c32ebcaf171d5bdcbb9ab8a3e","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","a208a319c19376e0e8d953d58ddee7b2cc8de3be72e110f97c7fbaa23bf1e5b4","709f62b8c98e1db14602e873218cc5d22f81d64cd88f25adb5b4d2705a7e5d5c","284bf56773e6da050a953484eaca4beaceedce83b49be512a527ce88111a9a1a","b248a2c86a9608ef3f4c5480fda53e28daaa858fdfbfbe9ed31e0e0a0aa83b69","04a54102a8f6780bee6e4fb11f2a4385bd5db1c108232b61ebf197296005fc55","a5acce94760166021b02598b5b4e9048d761cd713d0094743979f8dc97171395","c75c4ce24b1f7976aabe62f58b079210dda7c8bff461cb852903ce0063b876f5","1b0dddfa3431d9cf7489393f6eda8c39d64b0ad5006e61b323b41e946de1cb64","69f943fd9ea150bdae776e0753da4e9e7cb5bcd2c3b357241669cb7b1146a8ef","2f3641dc015c1f0d5a0c6d3425c05cccb6b4a58960014138e988d7ac7e89e95b","d76e3643450c47b47c246ddefcaee7210175a5200f96c68c36f22290ae908999","c4178d7f38a1a95f9e7763e4ede95a8ff29c134ce9dde7a5532c617489e73e32","9cac36fd227125723097775e2700432838e54d9c1530cd45f36653e20513dc61","1905cf2a2c68efce92637b0637dd1db38e2fd5683e61901e6447bcf8fca752f7","b461bba9fdefa4860fbbe4ab8d584aba4ff2410d7a940ccd08d797ba62b9b4ad","d38038c1daa64482b31d0ec1fa336d9a47b09e647cf788ceef2fb3e8310bb09f","a2ce66067019351078533b6eddb5240e96f01686f8014f8959d63a2587557fb7","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","5a6534f5d0435656321853f3e16dd4c7f944162ec9af7a99ff9d0142947bf359","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","b1d629950cf09eed9cc08a0f2f4ac780de6f05c2e542b907777f7eedfe77097f","27909ca3d149c1c6f45b29b6e2ef4b1cbf709bfe6c0c66276d4541f6afc8031d","d5d357f555e6f34eae1b87fa0d2622cd4d243145c705dc6408ceae7f591cfd40","30d0c3169d63adaa3d171a6c5fad4bb3c904d70608bea6024d1d906baca96be1","3854977cd654de296953b729bfd49a31b1073d6d1276f3c79a8c68704694af3e","80a3bbe0e4fdfaac2c0a8b92a3ed66d3ded5e8f454c5790c8d593872fc1197f1",{"version":"e674cab128f374b99a143d30a0bb929d943bf09c8193454b18fdfebb453a6989","signature":"72c83a2e8bc082f5221401930d6b474c3a1db69f7e2eafdf155a002dfc4456af"},{"version":"94ceee5d1ca5c49356f1c1af4134dd1b91df75d72acbb9e2370a1602b8928f15","signature":"af05e83f95c8ff11685deb777025050304076cc0580b2969a8aff800c791bf8c"},"c1a660a90d6565c602fa458f53849140c9008b7000ce8823443a2b1ae9ca46a3","0f81a53d54fd2b4ae2bf60067d616de99884bda21cb5784d942089d52319fb97","86d356e64ab8d56852623677eb1bed0c106703aed9b7788ad8a5a56e647822cb","29dca1b5f0cac95b675f86c7846f9d587ed47cc46609dd00d152bcb37683b069","231d829c892caeb88dd469e0847bf9d14e29c82b8b158b381ec866c868adf9af","48ba49f8bfce8c08ad1e7e54f0b85da9db7317ca76835d1c2640567e3fbd50c6",{"version":"291373c40dcdc724749f0f5d06cef74025f7dc333cada29848cf2cf004715c17","signature":"ddb32d0e7656270981182c6ffe28c996790c6132166fa858bcad497c280c6e3b"},{"version":"fc3f152a75ea09e6a83b3b94d074315fad4b4e6011c629b641ed179e695ebab7","signature":"d7a767976ba46e5dbac26693a8dc976d4eb44e501001c8f2f447a3cc72a55065"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","769c966ef166205a08c0382a298a6c5877951599d805931a963ae5650ee46391","35c1202e93852c1c233191971b8c4aefe5d3f9df287991585fe305078c0880e6","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","bac8ff394e831e4dd3f0961d6abb414b0e2b4ba16fdeb502d087ebf0340ed5f6","b8965484c1a08eeac238cf02a1498d72f3f3610059570a2c0fd207eb34245146",{"version":"abbcef0d9c856dc6115ebecaafba8ce205f47de44629f81d0a20d4b435992637","signature":"1011c26502d6f0b281a247ea558b2ac45417ba3d6a4167dfd3a6274236f3390b"},"506bc0cf38a9399347ef115acc6609b2f9c05086651fe60583e557247157ac4d",{"version":"2127565c17407664c5cd5b34966d5402470718edfdba4c904eba337e6c3317c7","signature":"fa1568c349e65d6c5a3e91b73b60357586ed12c3ab7ae0d9a4f22a2526e93b1f"},"acdc9fb9638a235a69bd270003d8db4d6153ada2b7ccbea741ade36b295e431e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"7fd7fcbf021a5845bdd9397d4649fcf2fe17152d2098140fc723099a215d19ad","affectsGlobalScope":true},"df3389f71a71a38bc931aaf1ef97a65fada98f0a27f19dd12f8b8de2b0f4e461","d69a3298a197fe5d59edba0ec23b4abf2c8e7b8c6718eac97833633cd664e4c9",{"version":"a9544f6f8af0d046565e8dde585502698ebc99eef28b715bad7c2bded62e4a32","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"8b809082dfeffc8cc4f3b9c59f55c0ff52ba12f5ae0766cb5c35deee83b8552e","affectsGlobalScope":true},"bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","d4f9d3ae2fe1ae199e1c832cca2c44f45e0b305dfa2808afdd51249b6f4a5163","7525257b4aa35efc7a1bbc00f205a9a96c4e4ab791da90db41b77938c4e0c18e","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"9c611eff81287837680c1f4496daf9e737d6f3a1ff17752207814b8f8e1265af","affectsGlobalScope":true},"fe1fd6afdfe77976d4c702f3746c05fb05a7e566845c890e0e970fe9376d6a90","b5d4e3e524f2eead4519c8e819eaf7fa44a27c22418eff1b7b2d0ebc5fdc510d","afb1701fd4be413a8a5a88df6befdd4510c30a31372c07a4138facf61594c66d","9bd8e5984676cf28ebffcc65620b4ab5cb38ab2ec0aac0825df8568856895653","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","5e8dc64e7e68b2b3ea52ed685cf85239e0d5fb9df31aabc94370c6bc7e19077b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"c07146dbbbd8b347241b5df250a51e48f2d7bef19b1e187b1a3f20c849988ff1","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"46755a4afc53df75f0bfce72259fb971daac826b0cdd8c4eaccad2755a817403","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7fa32887f8a97909fca35ebba3740f8caf8df146618d8fff957a3f89f67a2f6a","9a9634296cca836c3308923ba7aa094fa6ed76bb1e366d8ddcf5c65888ab1024",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","4b55240c2a03b2c71e98a7fc528b16136faa762211c92e781a01c37821915ea6","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"94c086dff8dbc5998749326bc69b520e8e4273fb5b7b58b50e0210e0885dfcde","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"ebe5facd12fd7745cda5f4bc3319f91fb29dc1f96e57e9c6f8b260a7cc5b67ee","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","21c56c6e8eeacef15f63f373a29fab6a2b36e4705be7a528aae8c51469e2737b",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc",{"version":"0ea93d01083b3d5863cc98cb589b5d0eac55d14417487f9e5e455dfa0b17c660","affectsGlobalScope":true}],"root":[58,113,125,206,207,214,215,228,230],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[114],[50,114],[50,114,122],[116],[48,49],[57,95],[54,57,88,90,91,92,93],[54,85,94],[57,84],[54,57],[57,86],[57,87],[57,79],[57],[57,92],[57,91],[54,57,86],[57,89],[134,136,137,138,139,140,141,142,143,144,145,146],[134,135,137,138,139,140,141,142,143,144,145,146],[135,136,137,138,139,140,141,142,143,144,145,146],[134,135,136,138,139,140,141,142,143,144,145,146],[134,135,136,137,139,140,141,142,143,144,145,146],[134,135,136,137,138,140,141,142,143,144,145,146],[134,135,136,137,138,139,141,142,143,144,145,146],[134,135,136,137,138,139,140,142,143,144,145,146],[134,135,136,137,138,139,140,141,143,144,145,146],[134,135,136,137,138,139,140,141,142,144,145,146],[134,135,136,137,138,139,140,141,142,143,145,146],[134,135,136,137,138,139,140,141,142,143,144,146],[134,135,136,137,138,139,140,141,142,143,144,145],[231],[267],[268,273,302],[269,280,281,288,299,310],[269,270,280,288],[271,311],[272,273,281,289],[273,299,307],[274,276,280,288],[267,275],[276,277],[280],[278,280],[267,280],[280,281,282,299,310],[280,281,282,295,299,302],[265,268,315],[276,280,283,288,299,310],[280,281,283,284,288,299,307,310],[283,285,299,307,310],[231,232,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317],[280,286],[287,310,315],[276,280,288,299],[289],[290],[267,291],[292,309,315],[293],[294],[280,295,296],[295,297,311,313],[268,280,299,300,301,302],[268,299,301],[299,300],[302],[303],[267,299],[280,305,306],[305,306],[273,288,299,307],[308],[288,309],[268,283,294,310],[273,311],[299,312],[287,313],[314],[268,273,280,282,291,299,310,313,315],[299,316],[51],[50,54],[54],[52,53],[115,116,117,118,119,120,121,122,123],[50,54,55,56],[65],[242,246,310],[242,299,310],[237],[239,242,307,310],[288,307],[318],[237,318],[239,242,288,310],[234,235,238,241,268,280,299,310],[234,240],[238,242,268,302,310,318],[268,318],[258,268,318],[236,237,318],[242],[236,237,238,239,240,241,242,243,244,246,247,248,249,250,251,252,253,254,255,256,257,259,260,261,262,263,264],[242,249,250],[240,242,250,251],[241],[234,237,242],[242,246,250,251],[246],[240,242,245,310],[234,239,240,242,246,249],[268,299],[237,242,258,268,315,318],[204],[177],[57,177],[80,127],[54,57,80,131,149,161],[54,57,80,126,127,159,160,177],[54,57,128,133,146,177],[54,57,80,177],[57,78,80,177],[54,57,131,132,147,148,149,177],[54,57,150,154,155,156,177],[54,57,80,149,153],[54,57,80,151,152,159,177],[54,57,156,177,181],[54,57,162,177],[54,57,177,179,180],[163,164,165],[54,163],[54,57,128,177],[163,177],[54,57,80],[57,81,177],[167,168,169,170,171,172,173,174],[198],[200],[196],[157,159,166,175,177,178,182,195,197,199,201,202,203],[130,158],[54,57,80,130,157],[54,57,80,128,177],[54,57,80,128,129,177],[176,183,184,185,186,187,188,189,190,191,192,193,194],[54,57,176],[176,177],[54,126,127,128,151,152,153,161,162,166,175,176],[217],[47,57,80,113,124],[47,57,113,124],[47,57,80,113,124,213],[47,112],[47,54,125,205],[47,57],[47,113,125,206,207,214],[47,57,76,80,124,213,216,218,227],[47,57,76,80,112,124,216,218,227,229],[208],[209,210,211,212],[57,208],[57,100],[77,100,101,103,104,105,106,107,108,109,110,111],[76],[98,102],[80,96],[53,57],[78,81,82,83,97,99],[57,98],[54,57,78,80],[54,57,78],[54,57,82],[54,57,80,96],[68,69,70,71],[64,67,72,73,74,75],[65,66],[59,60,61,62,63],[60,61],[59,60,62],[219,220,221,222,223,224,225,226],[125,205],[113,125,206,207,214],[80],[80,229]],"referencedMap":[[115,1],[118,2],[116,2],[120,2],[123,3],[122,2],[121,2],[119,2],[117,4],[50,5],[96,6],[94,7],[95,8],[85,9],[84,10],[87,11],[88,12],[80,13],[79,10],[86,14],[93,15],[92,16],[89,17],[90,18],[135,19],[136,20],[134,21],[137,22],[138,23],[139,24],[140,25],[141,26],[142,27],[143,28],[144,29],[145,30],[146,31],[231,32],[232,32],[267,33],[268,34],[269,35],[270,36],[271,37],[272,38],[273,39],[274,40],[275,41],[276,42],[277,42],[279,43],[278,44],[280,45],[281,46],[282,47],[266,48],[283,49],[284,50],[285,51],[318,52],[286,53],[287,54],[288,55],[289,56],[290,57],[291,58],[292,59],[293,60],[294,61],[295,62],[296,62],[297,63],[299,64],[301,65],[300,66],[302,67],[303,68],[304,69],[305,70],[306,71],[307,72],[308,73],[309,74],[310,75],[311,76],[312,77],[313,78],[314,79],[315,80],[316,81],[52,82],[55,83],[53,84],[54,85],[124,86],[57,87],[216,88],[66,88],[249,89],[256,90],[248,89],[263,91],[240,92],[239,93],[262,94],[257,95],[260,96],[242,97],[241,98],[237,99],[236,100],[259,101],[238,102],[243,103],[247,103],[265,104],[264,103],[251,105],[252,106],[254,107],[250,108],[253,109],[258,94],[245,110],[246,111],[255,112],[235,113],[261,114],[205,115],[178,116],[126,117],[160,118],[127,117],[155,119],[161,120],[156,116],[133,117],[147,121],[128,117],[148,122],[132,123],[150,124],[157,125],[152,117],[151,117],[154,126],[153,127],[149,117],[182,128],[180,129],[181,130],[162,117],[166,131],[165,132],[163,133],[164,134],[131,135],[170,116],[169,116],[171,116],[172,116],[173,116],[168,116],[174,136],[175,137],[167,116],[199,138],[201,139],[200,116],[197,140],[196,116],[204,141],[159,142],[158,143],[129,144],[130,145],[195,146],[184,116],[185,116],[186,116],[193,116],[192,116],[194,116],[187,116],[188,116],[189,147],[191,116],[190,116],[176,133],[183,148],[202,117],[177,149],[203,116],[218,150],[125,151],[207,152],[214,153],[113,154],[206,155],[58,156],[215,157],[228,158],[230,159],[209,160],[213,161],[210,162],[212,10],[211,10],[109,163],[110,88],[102,10],[111,10],[112,164],[77,165],[105,166],[106,166],[103,166],[104,166],[108,166],[107,166],[101,167],[229,168],[100,169],[99,170],[98,135],[81,171],[82,172],[83,173],[78,10],[97,174],[72,175],[73,14],[76,176],[67,177],[64,178],[62,179],[61,180],[225,14],[224,14],[226,14],[219,14],[227,181],[220,14],[221,14],[222,14]],"exportedModulesMap":[[115,1],[118,2],[116,2],[120,2],[123,3],[122,2],[121,2],[119,2],[117,4],[50,5],[96,6],[94,7],[95,8],[85,9],[84,10],[87,11],[88,12],[80,13],[79,10],[86,14],[93,15],[92,16],[89,17],[90,18],[135,19],[136,20],[134,21],[137,22],[138,23],[139,24],[140,25],[141,26],[142,27],[143,28],[144,29],[145,30],[146,31],[231,32],[232,32],[267,33],[268,34],[269,35],[270,36],[271,37],[272,38],[273,39],[274,40],[275,41],[276,42],[277,42],[279,43],[278,44],[280,45],[281,46],[282,47],[266,48],[283,49],[284,50],[285,51],[318,52],[286,53],[287,54],[288,55],[289,56],[290,57],[291,58],[292,59],[293,60],[294,61],[295,62],[296,62],[297,63],[299,64],[301,65],[300,66],[302,67],[303,68],[304,69],[305,70],[306,71],[307,72],[308,73],[309,74],[310,75],[311,76],[312,77],[313,78],[314,79],[315,80],[316,81],[52,82],[55,83],[53,84],[54,85],[124,86],[57,87],[216,88],[66,88],[249,89],[256,90],[248,89],[263,91],[240,92],[239,93],[262,94],[257,95],[260,96],[242,97],[241,98],[237,99],[236,100],[259,101],[238,102],[243,103],[247,103],[265,104],[264,103],[251,105],[252,106],[254,107],[250,108],[253,109],[258,94],[245,110],[246,111],[255,112],[235,113],[261,114],[205,115],[178,116],[126,117],[160,118],[127,117],[155,119],[161,120],[156,116],[133,117],[147,121],[128,117],[148,122],[132,123],[150,124],[157,125],[152,117],[151,117],[154,126],[153,127],[149,117],[182,128],[180,129],[181,130],[162,117],[166,131],[165,132],[163,133],[164,134],[131,135],[170,116],[169,116],[171,116],[172,116],[173,116],[168,116],[174,136],[175,137],[167,116],[199,138],[201,139],[200,116],[197,140],[196,116],[204,141],[159,142],[158,143],[129,144],[130,145],[195,146],[184,116],[185,116],[186,116],[193,116],[192,116],[194,116],[187,116],[188,116],[189,147],[191,116],[190,116],[176,133],[183,148],[202,117],[177,149],[203,116],[218,150],[125,135],[207,10],[214,135],[206,182],[58,14],[215,183],[228,184],[230,185],[209,160],[213,161],[210,162],[212,10],[211,10],[109,163],[110,88],[102,10],[111,10],[112,164],[77,165],[105,166],[106,166],[103,166],[104,166],[108,166],[107,166],[101,167],[229,168],[100,169],[99,170],[98,135],[81,171],[82,172],[83,173],[78,10],[97,174],[72,175],[73,14],[76,176],[67,177],[64,178],[62,179],[61,180],[225,14],[224,14],[226,14],[219,14],[227,181],[220,14],[221,14],[222,14]],"semanticDiagnosticsPerFile":[48,114,115,118,116,120,123,122,121,119,117,49,50,96,94,95,85,84,87,88,80,79,86,93,92,91,89,90,135,136,134,137,138,139,140,141,142,143,144,145,146,319,231,232,267,268,269,270,271,272,273,274,275,276,277,279,278,280,281,282,266,317,283,284,285,318,286,287,288,289,290,291,292,293,294,295,296,297,298,299,301,300,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,52,51,233,208,55,53,56,54,124,57,216,66,65,47,45,46,8,10,9,2,11,12,13,14,15,16,17,18,3,19,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,249,256,248,263,240,239,262,257,260,242,241,237,236,259,238,243,244,247,234,265,264,251,252,254,250,253,258,245,246,255,235,261,205,178,126,160,127,155,161,156,133,147,128,148,132,150,157,152,151,154,153,149,182,180,181,162,179,166,165,163,164,131,170,169,171,172,173,168,174,175,167,199,198,201,200,197,196,204,159,158,129,130,195,184,185,186,193,192,194,187,188,189,191,190,176,183,202,177,203,217,218,125,207,214,113,206,58,215,228,230,209,213,210,212,211,109,110,102,111,112,77,105,106,103,104,108,107,101,229,100,99,98,81,82,83,78,97,68,70,71,72,69,73,75,76,74,67,59,64,62,61,63,60,225,223,224,226,219,227,220,221,222]},"version":"5.4.5"}
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/help",
|
3
3
|
"description": "Webcomponent help following open-wc recommendations",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "2.0.0-alpha.
|
5
|
+
"version": "2.0.0-alpha.68",
|
6
6
|
"main": "dist/src/index.js",
|
7
7
|
"module": "dist/src/index.js",
|
8
8
|
"exports": {
|
@@ -63,13 +63,13 @@
|
|
63
63
|
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
64
64
|
},
|
65
65
|
"dependencies": {
|
66
|
-
"@material/
|
67
|
-
"@operato/data-grist": "^2.0.0-alpha.
|
68
|
-
"@operato/layout": "^2.0.0-alpha.
|
69
|
-
"@operato/markdown": "^2.0.0-alpha.
|
70
|
-
"@operato/shell": "^2.0.0-alpha.
|
71
|
-
"@operato/styles": "^2.0.0-alpha.
|
72
|
-
"@operato/utils": "^2.0.0-alpha.
|
66
|
+
"@material/web": "^1.4.0",
|
67
|
+
"@operato/data-grist": "^2.0.0-alpha.68",
|
68
|
+
"@operato/layout": "^2.0.0-alpha.68",
|
69
|
+
"@operato/markdown": "^2.0.0-alpha.68",
|
70
|
+
"@operato/shell": "^2.0.0-alpha.68",
|
71
|
+
"@operato/styles": "^2.0.0-alpha.68",
|
72
|
+
"@operato/utils": "^2.0.0-alpha.68",
|
73
73
|
"lit": "^3.1.2",
|
74
74
|
"pwa-helpers": "^0.9.1"
|
75
75
|
},
|
@@ -105,5 +105,5 @@
|
|
105
105
|
"prettier --write"
|
106
106
|
]
|
107
107
|
},
|
108
|
-
"gitHead": "
|
108
|
+
"gitHead": "147f2ca9e09180c6851dccacf340fc660e7548ab"
|
109
109
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js'
|
2
2
|
|
3
3
|
import { css, html, LitElement } from 'lit'
|
4
4
|
import { customElement, property } from 'lit/decorators.js'
|
@@ -8,7 +8,7 @@ import { openHelp } from '../controller/help.js'
|
|
8
8
|
@customElement('ox-help-icon')
|
9
9
|
export class HelpIcon extends LitElement {
|
10
10
|
static styles = css`
|
11
|
-
|
11
|
+
md-icon {
|
12
12
|
position: relative;
|
13
13
|
top: 4px;
|
14
14
|
cursor: help;
|
@@ -18,7 +18,7 @@ export class HelpIcon extends LitElement {
|
|
18
18
|
line-height: 0;
|
19
19
|
}
|
20
20
|
|
21
|
-
|
21
|
+
md-icon:hover {
|
22
22
|
opacity: var(--help-icon-hover-opacity);
|
23
23
|
color: var(--help-icon-hover-color);
|
24
24
|
}
|
@@ -43,6 +43,6 @@ export class HelpIcon extends LitElement {
|
|
43
43
|
render() {
|
44
44
|
const topic = this.topic
|
45
45
|
|
46
|
-
return html`${topic ? html`<
|
46
|
+
return html`${topic ? html`<md-icon>help</md-icon>` : html``}`
|
47
47
|
}
|
48
48
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js'
|
2
2
|
|
3
3
|
import { css, html, LitElement } from 'lit'
|
4
4
|
import { customElement, property } from 'lit/decorators.js'
|
@@ -10,7 +10,7 @@ import { openHelp } from '../controller/help.js'
|
|
10
10
|
@customElement('ox-title-with-help')
|
11
11
|
export class TitleWithHelp extends localize(i18next)(LitElement) {
|
12
12
|
static styles = css`
|
13
|
-
|
13
|
+
md-icon {
|
14
14
|
position: relative;
|
15
15
|
top: 4px;
|
16
16
|
cursor: help;
|
@@ -19,7 +19,7 @@ export class TitleWithHelp extends localize(i18next)(LitElement) {
|
|
19
19
|
font-size: var(--help-icon-size);
|
20
20
|
line-height: 0;
|
21
21
|
}
|
22
|
-
|
22
|
+
md-icon:hover {
|
23
23
|
opacity: var(--help-icon-hover-opacity);
|
24
24
|
color: var(--help-icon-hover-color);
|
25
25
|
}
|
@@ -32,6 +32,6 @@ export class TitleWithHelp extends localize(i18next)(LitElement) {
|
|
32
32
|
const title = i18next.t(this.msgid)
|
33
33
|
const topic = this.topic
|
34
34
|
|
35
|
-
return html` ${title} ${topic ? html`<
|
35
|
+
return html` ${title} ${topic ? html`<md-icon @click=${() => openHelp(topic)}>help</md-icon>` : html``} `
|
36
36
|
}
|
37
37
|
}
|
package/src/help-style.ts
CHANGED
@@ -22,7 +22,7 @@ export const HelpStyle = css`
|
|
22
22
|
font-size: var(--help-panel-h3-title-font-size);
|
23
23
|
color: var(--help-panel-h3-title-color);
|
24
24
|
}
|
25
|
-
|
25
|
+
md-icon {
|
26
26
|
vertical-align: middle;
|
27
27
|
}
|
28
28
|
|
@@ -92,7 +92,7 @@ export const HelpStyle = css`
|
|
92
92
|
font-size: var(--fontsize-default);
|
93
93
|
text-decoration: underline;
|
94
94
|
}
|
95
|
-
a
|
95
|
+
a md-icon {
|
96
96
|
font-size: var(--help-panel-a-icon-size);
|
97
97
|
margin: 0;
|
98
98
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js'
|
2
2
|
|
3
3
|
import { css, html } from 'lit'
|
4
4
|
import { customElement, property, query } from 'lit/decorators.js'
|
@@ -31,7 +31,7 @@ class HelpHome extends connect(store)(localize(i18next)(PageView)) {
|
|
31
31
|
background-color: white;
|
32
32
|
}
|
33
33
|
|
34
|
-
#navigation
|
34
|
+
#navigation md-icon {
|
35
35
|
padding: var(--help-navigation-icon-padding);
|
36
36
|
border-right: var(--help-navigation-icon-border);
|
37
37
|
cursor: pointer;
|
@@ -47,7 +47,7 @@ class HelpHome extends connect(store)(localize(i18next)(PageView)) {
|
|
47
47
|
}
|
48
48
|
|
49
49
|
#upward {
|
50
|
-
--
|
50
|
+
--md-icon-size: 26px;
|
51
51
|
position: absolute;
|
52
52
|
bottom: var(--data-list-fab-position-vertical);
|
53
53
|
right: var(--data-list-fab-position-horizontal);
|
@@ -81,19 +81,14 @@ class HelpHome extends connect(store)(localize(i18next)(PageView)) {
|
|
81
81
|
<ox-markdown id="content" .src=${src} toc></ox-markdown>
|
82
82
|
|
83
83
|
<div id="navigation">
|
84
|
-
<
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
${
|
93
|
-
this.showGotoTop
|
94
|
-
? html` <mwc-icon id="upward" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</mwc-icon> `
|
95
|
-
: html``
|
96
|
-
}
|
84
|
+
<md-icon @click=${() => navigate('help')} ?disabled=${this.topic == 'index'}>home</md-icon>
|
85
|
+
<md-icon @click=${() => window.history.back()}>keyboard_arrow_left</md-icon>
|
86
|
+
<md-icon @click=${() => window.history.forward()}>keyboard_arrow_right</md-icon>
|
87
|
+
</div>
|
88
|
+
|
89
|
+
${this.showGotoTop
|
90
|
+
? html` <md-icon id="upward" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</md-icon> `
|
91
|
+
: html``}
|
97
92
|
`
|
98
93
|
}
|
99
94
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import '@material/
|
1
|
+
import '@material/web/icon/icon.js'
|
2
2
|
import '@operato/markdown/ox-markdown.js'
|
3
3
|
|
4
4
|
import { css, html, LitElement, PropertyValues } from 'lit'
|
@@ -45,7 +45,7 @@ class HelpPanel extends connect(store)(LitElement) {
|
|
45
45
|
border-bottom: var(--help-navigation-bottom);
|
46
46
|
background-color: white;
|
47
47
|
}
|
48
|
-
#navigation
|
48
|
+
#navigation md-icon {
|
49
49
|
border-right: var(--help-navigation-icon-border);
|
50
50
|
cursor: pointer;
|
51
51
|
color: var(--help-icon-color);
|
@@ -64,7 +64,7 @@ class HelpPanel extends connect(store)(LitElement) {
|
|
64
64
|
}
|
65
65
|
|
66
66
|
#upward {
|
67
|
-
--
|
67
|
+
--md-icon-size: 26px;
|
68
68
|
position: absolute;
|
69
69
|
bottom: var(--data-list-fab-position-vertical);
|
70
70
|
right: var(--data-list-fab-position-horizontal);
|
@@ -99,28 +99,20 @@ class HelpPanel extends connect(store)(LitElement) {
|
|
99
99
|
|
100
100
|
return html`
|
101
101
|
<div id="navigation">
|
102
|
-
<
|
103
|
-
icon
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
></mwc-icon-button>
|
112
|
-
<mwc-icon-button
|
113
|
-
icon="keyboard_arrow_right"
|
114
|
-
@click=${() => this.historyForward()}
|
115
|
-
?disabled=${this.historyIndex >= this.history.length - 1}
|
116
|
-
></mwc-icon-button>
|
117
|
-
<mwc-icon-button icon="open_in_new" @click=${() => navigate(`help?topic=${this.topic}`)}></mwc-icon-button>
|
118
|
-
<mwc-icon-button icon="close" id="close" @click=${() => closeOverlay('help')}></mwc-icon-button>
|
102
|
+
<md-icon @click=${() => this.goHome()} ?disabled=${this.history[0] === this.history[this.historyIndex]}
|
103
|
+
>home</md-icon
|
104
|
+
>
|
105
|
+
<md-icon @click=${() => this.historyBack()} ?disabled=${this.historyIndex < 1}>keyboard_arrow_left</md-icon>
|
106
|
+
<md-icon @click=${() => this.historyForward()} ?disabled=${this.historyIndex >= this.history.length - 1}
|
107
|
+
>keyboard_arrow_right</md-icon
|
108
|
+
>
|
109
|
+
<md-icon @click=${() => navigate(`help?topic=${this.topic}`)}>open_in_new</md-icon>
|
110
|
+
<md-icon id="close" @click=${() => closeOverlay('help')}>close</md-icon>
|
119
111
|
</div>
|
120
112
|
|
121
113
|
${!this.showGotoTop
|
122
114
|
? html``
|
123
|
-
: html` <
|
115
|
+
: html` <md-icon id="upward" @click=${(e: Event) => this.gotoTop(e)}>arrow_upward</md-icon> `}
|
124
116
|
<ox-markdown id="content" .src=${src}></ox-markdown>
|
125
117
|
`
|
126
118
|
}
|