@progressive-development/pd-spa-helper 0.1.36 → 0.1.38
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/dist/src/PdSpaHelper.d.ts +1 -1
- package/dist/src/defaultpage/default-confirm-popup.d.ts +16 -0
- package/dist/src/defaultpage/default-confirm-popup.js +39 -0
- package/dist/src/defaultpage/default-confirm-popup.js.map +1 -0
- package/dist/src/defaultpage/default-dialog-popup.d.ts +15 -0
- package/dist/src/defaultpage/default-dialog-popup.js +66 -0
- package/dist/src/defaultpage/default-dialog-popup.js.map +1 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.js +2 -1
- package/dist/src/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/defaultpage/{default-popup.ts → default-confirm-popup.ts} +20 -11
- package/src/defaultpage/default-dialog-popup.ts +82 -0
- package/src/index.ts +3 -1
|
@@ -105,7 +105,7 @@ export declare abstract class PdSpaHelper extends PdSpaHelper_base {
|
|
|
105
105
|
activateLoginHandler(): void;
|
|
106
106
|
render(): TemplateResult<1>;
|
|
107
107
|
private _getMainClass;
|
|
108
|
-
_renderMenu(pageConfig: NavigationPage, hideTeaser: boolean):
|
|
108
|
+
_renderMenu(pageConfig: NavigationPage, hideTeaser: boolean): TemplateResult<1> | "";
|
|
109
109
|
_renderTeaser(): TemplateResult | string;
|
|
110
110
|
_renderFooter(): TemplateResult<1>;
|
|
111
111
|
/**
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { LitElement, CSSResultGroup, HTMLTemplateResult } from "lit";
|
|
2
|
+
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
3
|
+
export declare const KEY_ABORT = "1";
|
|
4
|
+
export declare const ABORT_EVENT_NAME = "close-popup";
|
|
5
|
+
export declare const KEY_STORE = "2";
|
|
6
|
+
export declare const STORE_EVENT_NAME = "store";
|
|
7
|
+
export type PopupType = "info" | "help" | "warn" | "error";
|
|
8
|
+
export declare abstract class DefaultConfirmPopup extends LitElement {
|
|
9
|
+
abstract _popupTitle: string;
|
|
10
|
+
abstract _singleButton: boolean;
|
|
11
|
+
abstract _type?: PopupType;
|
|
12
|
+
static styles: CSSResultGroup;
|
|
13
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
14
|
+
protected _handleButtonClick(e: CustomEvent): void;
|
|
15
|
+
abstract _renderContent(): HTMLTemplateResult;
|
|
16
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { html, LitElement, css } from "lit";
|
|
2
|
+
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
3
|
+
export const KEY_ABORT = "1";
|
|
4
|
+
export const ABORT_EVENT_NAME = "close-popup";
|
|
5
|
+
export const KEY_STORE = "2";
|
|
6
|
+
export const STORE_EVENT_NAME = "store";
|
|
7
|
+
const CONFIRM_BUTTONS = [
|
|
8
|
+
{ key: KEY_ABORT, name: "Cancel" },
|
|
9
|
+
{ key: KEY_STORE, name: "Ok", primary: true }
|
|
10
|
+
];
|
|
11
|
+
const SINGLE_BUTTON = [
|
|
12
|
+
{ key: KEY_STORE, name: "Ok", primary: true }
|
|
13
|
+
];
|
|
14
|
+
export class DefaultConfirmPopup extends LitElement {
|
|
15
|
+
render() {
|
|
16
|
+
return html `
|
|
17
|
+
<pd-popup-dialog @submit-button-clicked="${this._handleButtonClick}"
|
|
18
|
+
title="${this._popupTitle}" .buttons="${this._singleButton ? SINGLE_BUTTON : CONFIRM_BUTTONS}" type="${this._type}">
|
|
19
|
+
|
|
20
|
+
${this._renderContent()}
|
|
21
|
+
|
|
22
|
+
</pd-popup-dialog>
|
|
23
|
+
`;
|
|
24
|
+
}
|
|
25
|
+
_handleButtonClick(e) {
|
|
26
|
+
this.dispatchEvent(new CustomEvent(e.detail.button === KEY_STORE ? STORE_EVENT_NAME : ABORT_EVENT_NAME));
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
DefaultConfirmPopup.styles = [
|
|
30
|
+
css `
|
|
31
|
+
:host {
|
|
32
|
+
--pd-popup-max-width: 600px;
|
|
33
|
+
--pd-popup-header-height: 50px;
|
|
34
|
+
--pd-popup-header-font-size: 1em;
|
|
35
|
+
--pd-popup-header-col: var(--app-primary-dark-col);
|
|
36
|
+
}
|
|
37
|
+
`
|
|
38
|
+
];
|
|
39
|
+
//# sourceMappingURL=default-confirm-popup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-confirm-popup.js","sourceRoot":"","sources":["../../../src/defaultpage/default-confirm-popup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,EAAsC,MAAM,KAAK,CAAC;AAGhF,OAAO,uDAAuD,CAAC;AAG/D,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC;AAC7B,MAAM,CAAC,MAAM,gBAAgB,GAAG,aAAa,CAAC;AAE9C,MAAM,CAAC,MAAM,SAAS,GAAG,GAAG,CAAC;AAC7B,MAAM,CAAC,MAAM,gBAAgB,GAAG,OAAO,CAAC;AAIxC,MAAM,eAAe,GAAG;IACtB,EAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAC;IAChC,EAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAC;CAC5C,CAAC;AAEF,MAAM,aAAa,GAAG;IACpB,EAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAC;CAC5C,CAAC;AAEF,MAAM,OAAgB,mBAAoB,SAAQ,UAAU;IAoB1D,MAAM;QACJ,OAAO,IAAI,CAAA;iDACkC,IAAI,CAAC,kBAAkB;iBACvD,IAAI,CAAC,WAAW,eAAe,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,eAAe,WAAW,IAAI,CAAC,KAAK;;UAE/G,IAAI,CAAC,cAAc,EAAE;;;KAG1B,CAAC;IACJ,CAAC;IAES,kBAAkB,CAAC,CAAc;QACzC,IAAI,CAAC,aAAa,CAChB,IAAI,WAAW,CACb,CAAC,CAAC,MAAM,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,gBAAgB,CACpE,CACF,CAAC;IACJ,CAAC;;AA5BM,0BAAM,GAAG;IACd,GAAG,CAAA;;;;;;;KAOF;CACgB,CAAC","sourcesContent":["import { html, LitElement, css, CSSResultGroup, HTMLTemplateResult } from \"lit\";\nimport { property } from \"lit/decorators.js\";\n\nimport '@progressive-development/pd-dialog/pd-popup-dialog.js';\n\n\nexport const KEY_ABORT = \"1\";\nexport const ABORT_EVENT_NAME = \"close-popup\";\n\nexport const KEY_STORE = \"2\";\nexport const STORE_EVENT_NAME = \"store\";\n\nexport type PopupType = \"info\" | \"help\" | \"warn\" | \"error\";\n\nconst CONFIRM_BUTTONS = [\n {key: KEY_ABORT, name: \"Cancel\"},\n {key: KEY_STORE, name: \"Ok\", primary: true}\n];\n\nconst SINGLE_BUTTON = [\n {key: KEY_STORE, name: \"Ok\", primary: true}\n];\n\nexport abstract class DefaultConfirmPopup extends LitElement {\n\n abstract _popupTitle: string;\n\n abstract _singleButton: boolean;\n\n abstract _type?: PopupType;\n \n\n static styles = [ \n css`\n :host {\n --pd-popup-max-width: 600px;\n --pd-popup-header-height: 50px;\n --pd-popup-header-font-size: 1em;\n --pd-popup-header-col: var(--app-primary-dark-col);\n }\n `\n ] as CSSResultGroup;\n\n render() { \n return html`\n <pd-popup-dialog @submit-button-clicked=\"${this._handleButtonClick}\"\n title=\"${this._popupTitle}\" .buttons=\"${this._singleButton ? SINGLE_BUTTON : CONFIRM_BUTTONS}\" type=\"${this._type}\">\n \n ${this._renderContent()}\n\n </pd-popup-dialog>\n `;\n }\n\n protected _handleButtonClick(e: CustomEvent) {\n this.dispatchEvent(\n new CustomEvent(\n e.detail.button === KEY_STORE ? STORE_EVENT_NAME : ABORT_EVENT_NAME\n )\n );\n }\n\n abstract _renderContent(): HTMLTemplateResult; \n\n}"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { LitElement, CSSResultGroup, HTMLTemplateResult } from "lit";
|
|
2
|
+
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
3
|
+
import '@progressive-development/pd-forms/pd-form-container.js';
|
|
4
|
+
export declare abstract class DefaultDialogPopup<T> extends LitElement {
|
|
5
|
+
protected _dialogButtons: Array<any>;
|
|
6
|
+
protected _requiredFieldInfo: boolean;
|
|
7
|
+
abstract _popupTitle: string;
|
|
8
|
+
static styles: CSSResultGroup;
|
|
9
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
10
|
+
protected _handleButtonClick(e: CustomEvent): void;
|
|
11
|
+
protected _triggerValidateForm(): void;
|
|
12
|
+
abstract _isValidFormData(): boolean;
|
|
13
|
+
abstract _getFormData(): T;
|
|
14
|
+
abstract _renderContent(): HTMLTemplateResult;
|
|
15
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { __decorate } from "tslib";
|
|
2
|
+
import { html, LitElement, css } from "lit";
|
|
3
|
+
import { property } from "lit/decorators.js";
|
|
4
|
+
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
5
|
+
import '@progressive-development/pd-forms/pd-form-container.js';
|
|
6
|
+
import { ABORT_EVENT_NAME, KEY_ABORT, KEY_STORE, STORE_EVENT_NAME } from "./default-confirm-popup.js";
|
|
7
|
+
export class DefaultDialogPopup extends LitElement {
|
|
8
|
+
constructor() {
|
|
9
|
+
super(...arguments);
|
|
10
|
+
this._dialogButtons = [
|
|
11
|
+
{ key: KEY_ABORT, name: "Cancel" },
|
|
12
|
+
{ key: KEY_STORE, name: "Save", disabled: true, primary: true }
|
|
13
|
+
];
|
|
14
|
+
this._requiredFieldInfo = true;
|
|
15
|
+
}
|
|
16
|
+
render() {
|
|
17
|
+
return html `
|
|
18
|
+
<pd-popup-dialog @submit-button-clicked="${this._handleButtonClick}"
|
|
19
|
+
title="${this._popupTitle}" .buttons="${this._dialogButtons}">
|
|
20
|
+
|
|
21
|
+
<pd-form-container slot="content" id="formContainerId" ?requiredFieldInfo="${this._requiredFieldInfo}">
|
|
22
|
+
|
|
23
|
+
${this._renderContent()}
|
|
24
|
+
|
|
25
|
+
</pd-form-container>
|
|
26
|
+
|
|
27
|
+
</pd-popup-dialog>
|
|
28
|
+
`;
|
|
29
|
+
}
|
|
30
|
+
_handleButtonClick(e) {
|
|
31
|
+
let newEvent;
|
|
32
|
+
if (e.detail.button === KEY_STORE && this._isValidFormData()) {
|
|
33
|
+
newEvent = new CustomEvent(STORE_EVENT_NAME, {
|
|
34
|
+
detail: this._getFormData()
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
else {
|
|
38
|
+
newEvent = new CustomEvent(ABORT_EVENT_NAME);
|
|
39
|
+
}
|
|
40
|
+
this.dispatchEvent(newEvent);
|
|
41
|
+
}
|
|
42
|
+
_triggerValidateForm() {
|
|
43
|
+
var _a, _b;
|
|
44
|
+
// trigger validate by event (needed for form wich is initial filled, otherwise "Pflichfeld" occurs in red => must be fixed in the component)
|
|
45
|
+
const detail = {
|
|
46
|
+
errorMap: new Map()
|
|
47
|
+
};
|
|
48
|
+
(_b = (_a = this.shadowRoot) === null || _a === void 0 ? void 0 : _a.getElementById("formContainerId")) === null || _b === void 0 ? void 0 : _b.dispatchEvent(new CustomEvent("validate-form", { detail }));
|
|
49
|
+
// trigger also button check (initial valid)
|
|
50
|
+
this._dialogButtons[1].disabled = this._isValidFormData();
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
DefaultDialogPopup.styles = [
|
|
54
|
+
css `
|
|
55
|
+
:host {
|
|
56
|
+
--pd-popup-max-width: 800px;
|
|
57
|
+
--pd-popup-header-height: 50px;
|
|
58
|
+
--pd-popup-header-font-size: 1em;
|
|
59
|
+
--pd-popup-header-col: var(--app-primary-dark-col);
|
|
60
|
+
}
|
|
61
|
+
`
|
|
62
|
+
];
|
|
63
|
+
__decorate([
|
|
64
|
+
property({ type: Array, state: true })
|
|
65
|
+
], DefaultDialogPopup.prototype, "_dialogButtons", void 0);
|
|
66
|
+
//# sourceMappingURL=default-dialog-popup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-dialog-popup.js","sourceRoot":"","sources":["../../../src/defaultpage/default-dialog-popup.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,EAAsC,MAAM,KAAK,CAAC;AAChF,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAE7C,OAAO,uDAAuD,CAAC;AAC/D,OAAO,wDAAwD,CAAC;AAEhE,OAAO,EAAE,gBAAgB,EAAE,SAAS,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAGtG,MAAM,OAAgB,kBAAsB,SAAQ,UAAU;IAA9D;;QAGY,mBAAc,GAAe;YACrC,EAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAC;YAChC,EAAC,GAAG,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAC;SAC9D,CAAC;QAEQ,uBAAkB,GAAY,IAAI,CAAC;IAgE/C,CAAC;IAjDC,MAAM;QACJ,OAAO,IAAI,CAAA;iDACkC,IAAI,CAAC,kBAAkB;iBACvD,IAAI,CAAC,WAAW,eAAe,IAAI,CAAC,cAAc;;qFAEkB,IAAI,CAAC,kBAAkB;;YAEhG,IAAI,CAAC,cAAc,EAAE;;;;;KAK5B,CAAC;IACJ,CAAC;IAES,kBAAkB,CAAC,CAAc;QACzC,IAAI,QAAQ,CAAC;QACb,IAAI,CAAC,CAAC,MAAM,CAAC,MAAM,KAAK,SAAS,IAAI,IAAI,CAAC,gBAAgB,EAAE,EAAE;YAC5D,QAAQ,GAAG,IAAI,WAAW,CAAC,gBAAgB,EACzC;gBACE,MAAM,EAAE,IAAI,CAAC,YAAY,EAAE;aAC5B,CACF,CAAC;SACH;aAAM;YACL,QAAQ,GAAG,IAAI,WAAW,CAAC,gBAAgB,CAAC,CAAC;SAC9C;QACD,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;IAC/B,CAAC;IAES,oBAAoB;;QAE5B,6IAA6I;QAC7I,MAAM,MAAM,GAAG;YACb,QAAQ,EAAE,IAAI,GAAG,EAAE;SACpB,CAAC;QACF,MAAA,MAAA,IAAI,CAAC,UAAU,0CAAE,cAAc,CAAC,iBAAiB,CAAC,0CAAE,aAAa,CAC/D,IAAI,WAAW,CAAC,eAAe,EAAE,EAAC,MAAM,EAAC,CAAC,CAC3C,CAAC;QAEF,4CAA4C;QAC5C,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,QAAQ,GAAG,IAAI,CAAC,gBAAgB,EAAE,CAAC;IAC5D,CAAC;;AApDM,yBAAM,GAAG;IACd,GAAG,CAAA;;;;;;;KAOF;CACgB,CAAC;AAlBpB;IADC,QAAQ,CAAC,EAAC,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAC,CAAC;0DAInC","sourcesContent":["import { html, LitElement, css, CSSResultGroup, HTMLTemplateResult } from \"lit\";\nimport { property } from \"lit/decorators.js\";\n\nimport '@progressive-development/pd-dialog/pd-popup-dialog.js';\nimport '@progressive-development/pd-forms/pd-form-container.js';\n\nimport { ABORT_EVENT_NAME, KEY_ABORT, KEY_STORE, STORE_EVENT_NAME } from \"./default-confirm-popup.js\";\n\n\nexport abstract class DefaultDialogPopup<T> extends LitElement {\n\n @property({type: Array, state: true})\n protected _dialogButtons: Array<any> = [\n {key: KEY_ABORT, name: \"Cancel\"},\n {key: KEY_STORE, name: \"Save\", disabled: true, primary: true}\n ];\n\n protected _requiredFieldInfo: boolean = true; \n\n abstract _popupTitle: string;\n\n static styles = [ \n css`\n :host {\n --pd-popup-max-width: 800px;\n --pd-popup-header-height: 50px;\n --pd-popup-header-font-size: 1em;\n --pd-popup-header-col: var(--app-primary-dark-col);\n }\n `\n ] as CSSResultGroup;\n\n render() { \n return html`\n <pd-popup-dialog @submit-button-clicked=\"${this._handleButtonClick}\"\n title=\"${this._popupTitle}\" .buttons=\"${this._dialogButtons}\">\n \n <pd-form-container slot=\"content\" id=\"formContainerId\" ?requiredFieldInfo=\"${this._requiredFieldInfo}\">\n\n ${this._renderContent()}\n\n </pd-form-container>\n\n </pd-popup-dialog>\n `;\n }\n\n protected _handleButtonClick(e: CustomEvent) {\n let newEvent;\n if (e.detail.button === KEY_STORE && this._isValidFormData()) {\n newEvent = new CustomEvent(STORE_EVENT_NAME, \n {\n detail: this._getFormData()\n }\n );\n } else {\n newEvent = new CustomEvent(ABORT_EVENT_NAME);\n }\n this.dispatchEvent(newEvent);\n }\n\n protected _triggerValidateForm() {\n \n // trigger validate by event (needed for form wich is initial filled, otherwise \"Pflichfeld\" occurs in red => must be fixed in the component)\n const detail = {\n errorMap: new Map()\n };\n this.shadowRoot?.getElementById(\"formContainerId\")?.dispatchEvent(\n new CustomEvent(\"validate-form\", {detail})\n );\n\n // trigger also button check (initial valid)\n this._dialogButtons[1].disabled = this._isValidFormData();\n }\n\n abstract _isValidFormData(): boolean;\n\n abstract _getFormData(): T;\n\n abstract _renderContent(): HTMLTemplateResult; \n\n}"]}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { PdSpaHelper, AppConfiguration, startInit, NavigationConfig, NavigationPage, MenuElement, LinkObj, Footer } from './PdSpaHelper.js';
|
|
2
|
-
export {
|
|
2
|
+
export { DefaultConfirmPopup, PopupType, ABORT_EVENT_NAME, STORE_EVENT_NAME } from './defaultpage/default-confirm-popup.js';
|
|
3
|
+
export { DefaultDialogPopup } from './defaultpage/default-dialog-popup.js';
|
|
3
4
|
export { DefaultWizard } from './defaultpage/default-wizard.js';
|
|
4
5
|
export { DefaultWizardStep } from './defaultpage/default-wizard-step.js';
|
|
5
6
|
export { DefaultStepAddress } from './defaultpage/default-step-address.js';
|
package/dist/src/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { PdSpaHelper, startInit } from './PdSpaHelper.js';
|
|
2
|
-
export {
|
|
2
|
+
export { DefaultConfirmPopup, ABORT_EVENT_NAME, STORE_EVENT_NAME } from './defaultpage/default-confirm-popup.js';
|
|
3
|
+
export { DefaultDialogPopup } from './defaultpage/default-dialog-popup.js';
|
|
3
4
|
export { DefaultWizard } from './defaultpage/default-wizard.js';
|
|
4
5
|
export { DefaultWizardStep } from './defaultpage/default-wizard-step.js';
|
|
5
6
|
export { DefaultStepAddress } from './defaultpage/default-step-address.js';
|
package/dist/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EAEX,SAAS,EAMV,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EAEX,SAAS,EAMV,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EAAC,mBAAmB,EAAa,gBAAgB,EAAE,gBAAgB,EAAC,MAAM,wCAAwC,CAAC;AAE1H,OAAO,EAAC,kBAAkB,EAAC,MAAM,uCAAuC,CAAC;AAEzE,OAAO,EAAC,aAAa,EAAC,MAAM,iCAAiC,CAAC;AAE9D,OAAO,EAAC,iBAAiB,EAAC,MAAM,sCAAsC,CAAC;AAEvE,OAAO,EAAC,kBAAkB,EAAC,MAAM,uCAAuC,CAAC;AAEzE,OAAO,EAAC,kBAAkB,EAAY,MAAM,uCAAuC,CAAC;AAEpF,OAAO,EAKL,YAAY,EACb,MAAM,gCAAgC,CAAA;AAEvC,OAAO,EACL,KAAK,GACN,MAAM,gCAAgC,CAAA;AAEvC,OAAO,EACL,KAAK,EACL,MAAM,EACN,eAAe,EAChB,MAAM,oBAAoB,CAAA;AAG3B,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,OAAW,EAAE,GAAU,EAAE,SAAiB,EAAE,OAAe,EAAE,EAAE;IAChG,OAAO,CAAC,aAAa,CAAC,IAAI,WAAW,CAAC,aAAa,EAAC;QAClD,MAAM,EAAE;YACN,GAAG;YACH,SAAS;YACT,OAAO;SACR;QACD,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,IAAI;KACf,CAAC,CAAC,CAAC;AACN,CAAC,CAAA","sourcesContent":["export { \n PdSpaHelper, \n AppConfiguration,\n startInit, \n NavigationConfig,\n NavigationPage,\n MenuElement,\n LinkObj,\n Footer\n} from './PdSpaHelper.js';\n\nexport {DefaultConfirmPopup, PopupType, ABORT_EVENT_NAME, STORE_EVENT_NAME} from './defaultpage/default-confirm-popup.js';\n\nexport {DefaultDialogPopup} from './defaultpage/default-dialog-popup.js';\n\nexport {DefaultWizard} from './defaultpage/default-wizard.js';\n\nexport {DefaultWizardStep} from './defaultpage/default-wizard-step.js';\n\nexport {DefaultStepAddress} from './defaultpage/default-step-address.js';\n\nexport {DefaultStepSummary, OrderStep} from './defaultpage/default-step-summary.js';\n\nexport {\n FunctionDefinition,\n FunctionResult,\n FunctionParam,\n FunctionsConfig,\n callFunction\n} from './firebase/functions-client.js'\n\nexport {\n getDB,\n} from './firebase/firestore-client.js'\n\nexport {\n login,\n logout,\n isAuthenticated\n} from './firebase/auth.js'\n\n\nexport const dispatchToastEvent = (element:any, txt:string, isSuccess:boolean, isError:boolean) => {\n element.dispatchEvent(new CustomEvent(\"toast-event\",{\n detail: {\n txt,\n isSuccess,\n isError\n },\n bubbles: true,\n composed: true\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.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/tslib/tslib.d.ts","../node_modules/@firebase/component/dist/src/provider.d.ts","../node_modules/@firebase/component/dist/src/component_container.d.ts","../node_modules/@firebase/component/dist/src/types.d.ts","../node_modules/@firebase/component/dist/src/component.d.ts","../node_modules/@firebase/component/dist/index.d.ts","../node_modules/@firebase/util/dist/util-public.d.ts","../node_modules/@firebase/logger/dist/src/logger.d.ts","../node_modules/@firebase/logger/dist/index.d.ts","../node_modules/@firebase/app/dist/app-public.d.ts","../node_modules/firebase/app/dist/app/index.d.ts","../node_modules/@firebase/firestore/dist/index.d.ts","../node_modules/firebase/firestore/dist/firestore/index.d.ts","../src/firebase/firestore-client.ts","../node_modules/@firebase/functions/dist/functions-public.d.ts","../node_modules/firebase/functions/dist/functions/index.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","../node_modules/@lit-labs/task/task.d.ts","../node_modules/@lit-labs/task/index.d.ts","../src/service-call-controller2.ts","../src/firebase/functions-client.ts","../src/InitApplicationData.ts","../node_modules/@firebase/auth/dist/auth-public.d.ts","../node_modules/firebase/auth/dist/auth/index.d.ts","../node_modules/lit-element-router/lit-element-router.d.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/firebase/auth.ts","../src/router/AppMain.ts","../src/tmpown/pd-login.ts","../src/defaultpage/default-login.ts","../node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit/directives/class-map.d.ts","../node_modules/@types/hammerjs/index.d.ts","../src/tmpown/pd-panel-viewer.ts","../src/tmpown/pd-panel.ts","../src/tmpown/pd-toast.ts","../src/PdSpaHelper.ts","../src/defaultpage/default-popup.ts","../src/defaultpage/default-wizard.ts","../src/defaultpage/default-wizard-step.ts","../src/defaultpage/default-step-address.ts","../src/defaultpage/default-step-summary.ts","../src/index.ts","../src/pd-spa-helper.ts","../stories/index.stories.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../node_modules/chai-a11y-axe/src/accessible.d.ts","../node_modules/chai-a11y-axe/index.d.ts","../node_modules/@types/chai-dom/index.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/@types/sinon/index.d.ts","../node_modules/@types/sinon-chai/index.d.ts","../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../node_modules/@open-wc/testing-helpers/types/src/elementUpdated.d.ts","../node_modules/lit-html/static.d.ts","../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../node_modules/@open-wc/dedupe-mixin/index.d.ts","../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../node_modules/@open-wc/scoped-elements/types/src/ScopedElementsMixin.d.ts","../node_modules/@open-wc/scoped-elements/types/index.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixtureWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../node_modules/@open-wc/testing-helpers/types/src/scopedElementsWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/litFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/stringFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/index.d.ts","../node_modules/@open-wc/testing/index.d.ts","../test/pd-spa-helper.test.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/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/accepts/index.d.ts","../node_modules/@types/babel__code-frame/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/co-body/index.d.ts","../node_modules/@types/command-line-args/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/convert-source-map/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/debounce/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/long/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/resolve/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e94b01c6c9221682a1ffd8577103408642c5433923420e517d8d8c695c4875c0","466a15bf7238ebd3900d136db38eec3af69d0761c0286ab59952870eedd6e319","9113ebe8d776516d3a302ec431d28915c9398a75beaef1eb38cd66ae0bfeb014","1f4df460bfe98e20fae494ade49e50c98ed1997143c7eae7a00a1cd93bfd4307","e179bf25417780781dc994f657e724419e6dcbe5a136dbfa55efefe36bdb4b63","2a0fdc4e3ff0daab68692c115db4609206e029061fc2803a342973da34f57901","a0abcb32b7a9291276879912c9a3205fbd1d6930ae4f29e91fe30227e2762893","b67fb584ca2449669c113e75866d339ee4e6bc74a441efd00c1beac460412584","90e7ca3372483129ad265c604b2225e250a4739ed966c3859648332ae36ed4fa","0f79f9784797e5358bbed18b363b220eaed94de7c1ed2f193465ac232fe48eb1","ebd814bbb00e31e80c488b3e0b75bcceb8806580663ef5919dc9253951d540a9","1e73e8d1bbef5f4b2cd652df6eacf50cbb9a91cd41f974320541d2cfe08ee316",{"version":"f5e34b89cceea7c3f2170eb2903da7989d1a8d8952620dc0ec9cab95b6c9b12e","signature":"cef2afeffdff1ca5b5bc09bd3b49c5c5540061ea64d2bb69331b2bc25052d185"},"0dc164463e333b02a0f92e23c54a4142e9b714954c912cebbd08a61b3098d0e8","5a8ea8f4b933fe2a58dad240bd625f3625b952aa3bb70c15b3a34c214d9c7c34","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","ccf8ea81b0ac699c220b874b804ad02b8aabc5b494e1c3bda0d255ec8d08694d","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"17f2b4d00e42e0cc1dfc3be692a6da5a14a6cb73b87259e6d20ff02bcd6d573f","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","307f088012744cf2e7bd53f4165108d9f77576b37721c7bf1b7d2c336e6eef6e","456fd4db1a34732c4c4b51a43007c2a2747bdffad79f32c50a258e13c6cf089a",{"version":"b4701edbd91d1433a98a0f6663cebaea1c155d2af66cf179e6a2d5e2e9c1517a","signature":"17c6226831c63a2f84af72c0ceceda46c04f5b53d8771b8dcb1e259ade647dc4"},{"version":"ee407a5c4156dadd88d6abedacf413614f39362a019f56aa375926cc0dedbb26","signature":"17d6d7206e99683f105e1a1c162206674347c67120a603199a3018f44e064499"},{"version":"ee00df667d0bf74f5e510f78129804988c1679936351de50514bca13421a967b","signature":"77d01931dc0eaf342d2d0c7e228ae5f5603adcf77eb073037ee184490cfa4812"},"ccd344713e6f39583ac472a097e8dd307998d1c27d43b0b0f4558db1569ee3fc","6187d97d074e4a66a0179ff2cdd845e1809b70ff5d7b857e0c686f52a86f62f7","43fe650d6596e6f9bff164927de8f99918481899814a45a026e3262ee5ae01a6","d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"ffa8db1997eb4d9c37352a907392e1ef0487ed2d5d41d5d2da4d4463c3a34e96","signature":"adbbb798e0cff28025b68e76e1477458858d084299c887abca10200f28dd5632"},{"version":"ec008f4714666ae53f5e4603bb975fb73460cd4dcd71d69097fa0f052b7838f7","signature":"43dc5181097ad5a48146de82f60ca17637631d8369dc3d60e6a93febc79785ec"},{"version":"db77c6bb23ee7b63ff2d09b139b1057b645aec7c71163d1e809d8ee024dcb4e4","signature":"2f5218c4f1c576adbe7ab8284148246cd1962b2577a4b330f0f28fcf1db4239b"},{"version":"95419cb1ef63469caf936feff67d8bc8f323defb9b2c15ea9585bd0c27336111","signature":"4938f1ef16d7603b17561e33d6b205d28046015f56b03d89f31d06ad51a0f227"},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e",{"version":"73808ea8b4b1ca7fa6811986367ef2d93cc94d9b5a1edc5ca009b52492c88e49","affectsGlobalScope":true},{"version":"da05cd112e7c5a02335c271fe8165d2f76abef86d59ab5dc2ba9fdc640c6f5f5","signature":"1984a2fb53f612b15ca74b5e4988af5ba66fb4e4ca78d9c01f69ab4ae99b6698"},{"version":"9c5682b7737b276f87e16f2af0a008aa98632fba56c06b4209c1750f506c0566","signature":"d8052766cfb16c6376d88bdfa04bdf6d78c01ddb80f73c1f2d30abb9458aeb42"},{"version":"7eda90d6b52470015aec43b28718bc509d4de340082cbe48e333eb000ee69ea9","signature":"d9805b58baf1f3b43891c26d7482a05d374362bd47b805fb3c0e2e3682295e0c"},{"version":"e6673c4e8442ef8e3a2a3ca14b76dc16442191d1c54cafe04105f552202e8d61","signature":"e47a9155b52bc4c112a56e36df8a4cc7d87501c30d3ec9bb1d6b801ac8105d50"},{"version":"ee4107e4f051c95b91fe8800b4310a48fb07e090ec12e446fe2e9e2968f070f1","signature":"7518d36e10509be4f3634c1c3bd11a9b46fef7ef47c3b3b8fbe3f96efb664b17"},{"version":"bea9b3d335a15fe2e5744bfe795467aab1dfab26c0ee2a71d1805422481e6fb8","signature":"f862b229a3837130aec6a36d0028eab2415d1ef39dc5d4229a038dae0e3d759d"},{"version":"f2c9f2b4438cbec3740a3f64f71c84fefade7f137bbed0ae5ca0d447a9c76722","signature":"05f5d8d62dbc8550376a1191b420f660c46bc733e9d794d980fa48e8fccdf83a"},{"version":"2e5e48ad430d116fea13cd94b5177c01f3a1667d70efe07e0c589410cc3a5bed","signature":"243bb1f0c2b803cbad039736078b6930f0b3796e3a03b6368876ad8b17b0b6ff"},{"version":"b76ff4b1877e6068d2be0d36541c997482da4daeb8da6de1d2d070dbea9553b5","signature":"533f94205ee00c08af8dd92887fe92196b2c4ac7d3250fd46259bfc714660c28"},{"version":"734b70422d1955be337121cb30473aa5f9091f80fb62d2561ea3ffb9a0b59d48","signature":"5b1ab6e1bdf4411997aa1a5618a6d184ace794a155948916e1a5eaa6e7aef81b"},{"version":"5586f94aa197beba2d31e464cfc52ae8abcd143d53f5c93fd733ecd75910806d","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"58c0edc30265397d8ce49e461a77b0f6be7bb2118d884af688cf285c7d790f98","signature":"5a74da1f894803938406f5412137ad4ac2d50597bfb50cf5e9ea379b607c69bb"},{"version":"268e85cc5d35666a8988dcc657aaa083e54cc92147a1919e01e8c394d271d423","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"2d412861573a672bd90fdcb1e48740593324565f3b3aaf6808c0e3e2f0d54ae8","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"507e2131e89b515ce40c05c0c2fef6cc575ba8947703f92e8cdf36078747a9ff","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"31214658e22c23eb58ff8383346bf6c8d135b3eab0748f3226aa7b6f30d2021f","affectsGlobalScope":true},"cc75216f6b332971954ef74bf3d14c3881c461e82987050d5f62af3e5966e845","ee1fb501d38eaafa8099e00bd1fc7014ccc99bee616c660f605ae3559324793d",{"version":"4b93bb181cf4f25ccbf2ec1f559912c81678433a9784ce84163b5c9e1548998f","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","359f23bc7fccaec08632ee5c33eb333a5b207fc8ae17c881c7b69919aced4d58","51bce1535d9cb87390d75581866d79de7b2e2cb525a89fba84411c8bb5be52d2","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"d40075d9f1c08b4a8d8e468076f5258900e99895e7259c40f3923b7044bbed6c","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","0b5817d9435c019648f2a2326eaf1086efb72e8e90e28eb53a58b2f31f61e161","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","d30c69f9eb16583b0a406358224c312b865514a6a7c787a57f16ef08e49b1886","5e02756608c1ac8ddf96878c3af3d4db7ed4e272aef24837e255859ee0a4fb71","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","905fbc07f65451b05cb5594d162674eb3ef8f2bf5f13552a1702215664aae3e7","50f63746fc2a779d1f9c5657fd78e292045dc98b540e026799e039ea629f2943",{"version":"317da6b41e240cdc9e8e82289d6b34170e4bb65f9a7a5f37fcd060dd7856e7c5","signature":"e2163846f7c36dfc18f943ae762f94e730f7763853e04d89d37ba3e20e4ca6e5"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"62486c25ff70799e9faac5c6108820969617daeb6e65644c212d03cdb5902a3c","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","ad8848c289c0b633452e58179f46edccd14b5a0fe90ebce411f79ff040b803e0",{"version":"5d4ef3f46c7f9d62f7c964f9f9ccdd293be99fb3dcc66c983f2aea7430e3c7c6","affectsGlobalScope":true},"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","59d8f064f86a4a2be03b33c0efcc9e7a268ad27b22f82dce16899f3364f70ba8","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"f49fb15c4aa06b65b0dce4db4584bfd8a9f74644baef1511b404dc95be34af00","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d3f4c342fb62f348f25f54b473b0ab7371828cbf637134194fa9cdf04856f87b","6738101ae8e56cd3879ab3f99630ada7d78097fc9fd334df7e766216778ca219","ef437dd282a112d1172b50ac7fd86713d475a496da7aeb31119f529f1313c8d5","82819f9ecc249a6a3e284003540d02ea1b1f56f410c23231797b9e1e4b9622df","81a109b6bb6adf5ed70f2c7e6d907b8c3adcf7b47b5ee09701c5f97370fd29b7","c7da551241b7be719b7bd654ab12a5098c3206fbb189076dd2d8871011a6ab5a","f78253406029c78c96d8923b15e89a5900836e47a2b98bee6c83dc142421d395","5ae76b5a59f2f787e9eb2d4f1a066ceb4505a52bf8fe77ac321d791ef2e72000","64fcc79ee3c237816b9cef0a9289b00bf3da5b17040cd970ac04ba03c4ac1595","49f1d42ac650932fe64a9b623c27ea6e681335ea2e7cda52a5358f4248701001","f6218314af6f492ce5461bdadac5b829f5b4b31a3d1da3d04e77ed0afe0829fb","7167d932a7e2e991084421bb22af20024ada5a046d948c742de0f89996de5d0b","e2d3bfa79f0fad3ad67dfb0685c50dbe19b364a440160a2d40d0e3f44c75938c",{"version":"1c598f8d911f0bc39f04910c8c93f2f76fbb65f892ee5ecc38a2b58bb95af752","affectsGlobalScope":true},"4eadf1158f1ae8f7b0deea0f96b391359042cf74d1eb3ce1dacdb69de96e590d","f0120fc76274f614e7b8f5420a74abce69eee25b81e2084479fa426f33ccd46a","003f07cf566395059625b39785398f18652c8952e19790e7d6eeb22a9cbe0440","432dc46f22f9790797d98ccf09f7dc4a897bb5e874921217b951fb808947446b","28ed61ddc42936537ad29ade1404d533b4b28967460e29811409e5a40d9fc3b3","a36023d4a654c11e071b99cde8203d55d9feaf4940c766b9c960b8e0eb4f4c1f","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","e98185f4249720ace1921d59c1ff4612fa5c633a183fc9bf28e2e7b8e3c7fd51","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","c79bd2f3e5c05e7ad80dc82ce8d339cac23ac1f5e6cfab96c860bb70d5162873","e3328cedfe4d7fac23ba75d00bf5169269800ab949d0837cd88c4211a52c3762","dd89872dd0647dfd63665f3d525c06d114310a2f7a5a9277e5982a152b31be2b","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","fa849c825ac37d70ca78097a1cd06bb5ac281651f765fff8e491cfb0709de57b","c39e1ee964fa0bb318ee2db72c430b3aede3b50dbde414b03b4e43915f80c292","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","5fdc3a2b97a9b1987cea799a36c6a4ea2f34fb60e52734361451cb5445f11a94"],"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},"fileIdsList":[[48,49,51,216],[49,52,216],[44,45,46,47,216],[46,216],[44,46,47,216],[45,46,47,216],[45,216],[49,51,52,216],[50,216],[216],[69,216],[60,216],[61,216],[77,216],[61,77,216],[61,77,85,216],[59,60,216],[125,216],[61,123,124,216],[61,123,216],[107,108,216],[109,216],[108,110,216],[120,121,128,129,130,132,133,216],[122,126,216],[127,216],[123,216],[122,127,131,216],[68,216],[122,216],[107,119,134,216],[111,114,115,118,216],[189,216,223],[189,216,223,226],[107,216],[189,216,223,228],[189,216,223,226,239,240],[186,189,216,223,228,234,235],[216,227,228,236,238],[216,245],[216,246],[216,251],[186,189,190,194,200,215,216,223,224,231,237,240,241,244,250],[137,216],[173,216],[174,179,207,216],[175,186,187,194,204,215,216],[175,176,186,194,216],[177,216],[178,179,187,195,216],[179,204,212,216],[180,182,186,194,216],[181,216],[182,183,216],[186,216],[184,186,216],[173,186,216],[186,187,188,204,215,216],[186,187,188,201,204,207,216],[171,216,220],[182,186,189,194,204,215,216],[186,187,189,190,194,204,212,215,216],[189,191,204,212,215,216],[137,138,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222],[186,192,216],[193,215,216,220],[182,186,194,204,216],[195,216],[196,216],[173,197,216],[198,214,216,220],[199,216],[200,216],[186,201,202,216],[201,203,216,218],[174,186,204,205,206,207,216],[174,204,206,216],[204,205,216],[207,216],[208,216],[173,204,216],[186,210,211,216],[210,211,216],[179,194,204,212,216],[213,216],[194,214,216],[174,189,200,215,216],[179,216],[204,216,217],[193,216,218],[216,219],[174,179,186,188,197,204,215,216,218,220],[204,216,221],[216,255],[216,256],[216,223],[187,204,216,223,233],[189,216,223,233,237],[107,117,216],[116,216],[62,216],[186,189,191,194,204,212,215,216,221,223],[186,204,216,223],[113,216],[112,216],[52,216],[74,216],[54,216],[57,216],[61,65,216],[65,216],[64,65,216],[63,64,216],[78,79,80,81,82,83,84,85,86,216],[92,216],[61,65,66,67,216],[148,152,215,216],[148,204,215,216],[143,216],[145,148,212,215,216],[194,212,216],[143,216,223],[145,148,194,215,216],[140,141,144,147,174,186,204,215,216],[140,146,216],[144,148,174,207,215,216,223],[174,216,223],[164,174,216,223],[142,143,216,223],[148,216],[142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,216],[148,155,156,216],[146,148,156,157,216],[147,216],[140,143,148,216],[148,152,156,157,216],[152,216],[146,148,151,215,216],[140,145,146,148,152,155,216],[174,204,216],[143,148,164,174,216,220,223],[43,53,56,72,216],[43,53,68,71,72,73,75,76,87,88,89,91,95,96,97,216],[43,68,87,90,216],[43,68,87,216],[43,68,101,216],[43,68,87,101,216],[43,75,216],[43,53,55,216],[43,53,58,68,71,216],[43,56,72,88,98,99,100,101,102,103,216],[43,68,76,87,216],[43,68,70,72,216],[43,68,87,88,216],[43,68,87,93,94,216],[43,68,216],[43,68,104,135,216],[53,72],[53,68,71,72,75,76,89,91,95,96,97],[65,68,90],[65,68],[65,101],[68],[75],[53,55],[53,68,71],[56,72,88,98,99,100,101,102,103],[65,68,76],[68,72],[65,68,94]],"referencedMap":[[52,1],[74,2],[48,3],[47,4],[45,5],[44,6],[46,7],[54,8],[57,2],[51,9],[50,10],[49,10],[70,11],[69,12],[59,10],[77,13],[78,14],[81,15],[79,15],[83,15],[86,16],[85,10],[84,15],[82,15],[80,14],[60,10],[61,17],[123,10],[126,18],[125,19],[124,20],[109,21],[110,22],[108,10],[111,23],[134,24],[120,10],[127,25],[128,26],[129,10],[130,27],[132,28],[122,29],[131,30],[133,26],[135,31],[119,32],[224,33],[225,10],[227,34],[115,35],[107,10],[229,36],[230,10],[226,33],[231,10],[232,10],[241,37],[242,10],[243,10],[236,38],[239,39],[94,10],[244,10],[237,10],[245,10],[246,40],[247,41],[248,10],[249,10],[240,10],[250,42],[251,43],[252,10],[233,10],[253,10],[137,44],[138,44],[173,45],[174,46],[175,47],[176,48],[177,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,54],[185,55],[184,56],[186,57],[187,58],[188,59],[172,60],[222,10],[189,61],[190,62],[191,63],[223,64],[192,65],[193,66],[194,67],[195,68],[196,69],[197,70],[198,71],[199,72],[200,73],[201,74],[202,74],[203,75],[204,76],[206,77],[205,78],[207,79],[208,80],[209,81],[210,82],[211,83],[212,84],[213,85],[214,86],[215,87],[216,88],[217,89],[218,90],[219,91],[220,92],[221,93],[254,10],[256,94],[255,95],[228,10],[235,10],[257,96],[234,97],[238,98],[118,99],[117,100],[116,10],[63,101],[62,10],[258,102],[259,103],[139,10],[112,35],[114,104],[113,105],[53,106],[75,107],[55,108],[58,109],[76,10],[66,110],[64,111],[92,112],[67,10],[65,113],[121,111],[87,114],[93,115],[68,116],[43,10],[8,10],[10,10],[9,10],[2,10],[11,10],[12,10],[13,10],[14,10],[15,10],[16,10],[17,10],[18,10],[3,10],[4,10],[22,10],[19,10],[20,10],[21,10],[23,10],[24,10],[25,10],[5,10],[26,10],[27,10],[28,10],[29,10],[6,10],[33,10],[30,10],[31,10],[32,10],[34,10],[7,10],[35,10],[40,10],[41,10],[36,10],[37,10],[38,10],[39,10],[1,10],[42,10],[155,117],[162,118],[154,117],[169,119],[146,120],[145,121],[168,96],[163,122],[166,123],[148,124],[147,125],[143,126],[142,127],[165,128],[144,129],[149,130],[150,10],[153,130],[140,10],[171,131],[170,130],[157,132],[158,133],[160,134],[156,135],[159,136],[164,96],[151,137],[152,138],[161,139],[141,140],[167,141],[73,142],[98,143],[91,144],[99,145],[102,146],[103,147],[101,145],[100,145],[88,148],[56,149],[72,150],[104,151],[105,10],[89,152],[71,153],[90,154],[95,155],[96,145],[97,145],[106,156],[136,157]],"exportedModulesMap":[[52,1],[74,2],[48,3],[47,4],[45,5],[44,6],[46,7],[54,8],[57,2],[51,9],[50,10],[49,10],[70,11],[69,12],[59,10],[77,13],[78,14],[81,15],[79,15],[83,15],[86,16],[85,10],[84,15],[82,15],[80,14],[60,10],[61,17],[123,10],[126,18],[125,19],[124,20],[109,21],[110,22],[108,10],[111,23],[134,24],[120,10],[127,25],[128,26],[129,10],[130,27],[132,28],[122,29],[131,30],[133,26],[135,31],[119,32],[224,33],[225,10],[227,34],[115,35],[107,10],[229,36],[230,10],[226,33],[231,10],[232,10],[241,37],[242,10],[243,10],[236,38],[239,39],[94,10],[244,10],[237,10],[245,10],[246,40],[247,41],[248,10],[249,10],[240,10],[250,42],[251,43],[252,10],[233,10],[253,10],[137,44],[138,44],[173,45],[174,46],[175,47],[176,48],[177,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,54],[185,55],[184,56],[186,57],[187,58],[188,59],[172,60],[222,10],[189,61],[190,62],[191,63],[223,64],[192,65],[193,66],[194,67],[195,68],[196,69],[197,70],[198,71],[199,72],[200,73],[201,74],[202,74],[203,75],[204,76],[206,77],[205,78],[207,79],[208,80],[209,81],[210,82],[211,83],[212,84],[213,85],[214,86],[215,87],[216,88],[217,89],[218,90],[219,91],[220,92],[221,93],[254,10],[256,94],[255,95],[228,10],[235,10],[257,96],[234,97],[238,98],[118,99],[117,100],[116,10],[63,101],[62,10],[258,102],[259,103],[139,10],[112,35],[114,104],[113,105],[53,106],[75,107],[55,108],[58,109],[76,10],[66,110],[64,111],[92,112],[67,10],[65,113],[121,111],[87,114],[93,115],[68,116],[43,10],[8,10],[10,10],[9,10],[2,10],[11,10],[12,10],[13,10],[14,10],[15,10],[16,10],[17,10],[18,10],[3,10],[4,10],[22,10],[19,10],[20,10],[21,10],[23,10],[24,10],[25,10],[5,10],[26,10],[27,10],[28,10],[29,10],[6,10],[33,10],[30,10],[31,10],[32,10],[34,10],[7,10],[35,10],[40,10],[41,10],[36,10],[37,10],[38,10],[39,10],[1,10],[42,10],[155,117],[162,118],[154,117],[169,119],[146,120],[145,121],[168,96],[163,122],[166,123],[148,124],[147,125],[143,126],[142,127],[165,128],[144,129],[149,130],[150,10],[153,130],[140,10],[171,131],[170,130],[157,132],[158,133],[160,134],[156,135],[159,136],[164,96],[151,137],[152,138],[161,139],[141,140],[167,141],[73,158],[98,159],[91,160],[99,161],[102,162],[103,162],[101,163],[100,161],[88,164],[56,165],[72,166],[104,167],[89,168],[71,169],[90,161],[95,170],[96,161],[97,161],[106,163]],"semanticDiagnosticsPerFile":[52,74,48,47,45,44,46,54,57,51,50,49,70,69,59,77,78,81,79,83,86,85,84,82,80,60,61,123,126,125,124,109,110,108,111,134,120,127,128,129,130,132,122,131,133,135,119,224,225,227,115,107,229,230,226,231,232,241,242,243,236,239,94,244,237,245,246,247,248,249,240,250,251,252,233,253,137,138,173,174,175,176,177,178,179,180,181,182,183,185,184,186,187,188,172,222,189,190,191,223,192,193,194,195,196,197,198,199,200,201,202,203,204,206,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,254,256,255,228,235,257,234,238,118,117,116,63,62,258,259,139,112,114,113,53,75,55,58,76,66,64,92,67,65,121,87,93,68,43,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,155,162,154,169,146,145,168,163,166,148,147,143,142,165,144,149,150,153,140,171,170,157,158,160,156,159,164,151,152,161,141,167,73,98,91,99,102,103,101,100,88,56,72,104,105,89,71,90,95,96,97,106,136]},"version":"4.9.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.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/tslib/tslib.d.ts","../node_modules/@firebase/component/dist/src/provider.d.ts","../node_modules/@firebase/component/dist/src/component_container.d.ts","../node_modules/@firebase/component/dist/src/types.d.ts","../node_modules/@firebase/component/dist/src/component.d.ts","../node_modules/@firebase/component/dist/index.d.ts","../node_modules/@firebase/util/dist/util-public.d.ts","../node_modules/@firebase/logger/dist/src/logger.d.ts","../node_modules/@firebase/logger/dist/index.d.ts","../node_modules/@firebase/app/dist/app-public.d.ts","../node_modules/firebase/app/dist/app/index.d.ts","../node_modules/@firebase/firestore/dist/index.d.ts","../node_modules/firebase/firestore/dist/firestore/index.d.ts","../src/firebase/firestore-client.ts","../node_modules/@firebase/functions/dist/functions-public.d.ts","../node_modules/firebase/functions/dist/functions/index.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","../node_modules/@lit-labs/task/task.d.ts","../node_modules/@lit-labs/task/index.d.ts","../src/service-call-controller2.ts","../src/firebase/functions-client.ts","../src/InitApplicationData.ts","../node_modules/@firebase/auth/dist/auth-public.d.ts","../node_modules/firebase/auth/dist/auth/index.d.ts","../node_modules/lit-element-router/lit-element-router.d.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/firebase/auth.ts","../src/router/AppMain.ts","../src/tmpown/pd-login.ts","../src/defaultpage/default-login.ts","../node_modules/lit-html/directives/class-map.d.ts","../node_modules/lit/directives/class-map.d.ts","../node_modules/@types/hammerjs/index.d.ts","../src/tmpown/pd-panel-viewer.ts","../src/tmpown/pd-panel.ts","../src/tmpown/pd-toast.ts","../src/PdSpaHelper.ts","../src/defaultpage/default-confirm-popup.ts","../src/defaultpage/default-dialog-popup.ts","../src/defaultpage/default-wizard.ts","../src/defaultpage/default-wizard-step.ts","../src/defaultpage/default-step-address.ts","../src/defaultpage/default-step-summary.ts","../src/index.ts","../src/pd-spa-helper.ts","../stories/index.stories.ts","../node_modules/@types/chai/index.d.ts","../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../node_modules/chai-a11y-axe/src/accessible.d.ts","../node_modules/chai-a11y-axe/index.d.ts","../node_modules/@types/chai-dom/index.d.ts","../node_modules/@types/sinonjs__fake-timers/index.d.ts","../node_modules/@types/sinon/index.d.ts","../node_modules/@types/sinon-chai/index.d.ts","../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../node_modules/@open-wc/testing-helpers/types/src/elementUpdated.d.ts","../node_modules/lit-html/static.d.ts","../node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../node_modules/@open-wc/dedupe-mixin/index.d.ts","../node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../node_modules/@open-wc/scoped-elements/types/src/ScopedElementsMixin.d.ts","../node_modules/@open-wc/scoped-elements/types/index.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/fixtureWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../node_modules/@open-wc/testing-helpers/types/src/scopedElementsWrapper.d.ts","../node_modules/@open-wc/testing-helpers/types/src/litFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/src/stringFixture.d.ts","../node_modules/@open-wc/testing-helpers/types/index.d.ts","../node_modules/@open-wc/testing/index.d.ts","../test/pd-spa-helper.test.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/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/accepts/index.d.ts","../node_modules/@types/babel__code-frame/index.d.ts","../node_modules/@types/connect/index.d.ts","../node_modules/@types/body-parser/index.d.ts","../node_modules/@types/qs/index.d.ts","../node_modules/@types/co-body/index.d.ts","../node_modules/@types/command-line-args/index.d.ts","../node_modules/@types/content-disposition/index.d.ts","../node_modules/@types/convert-source-map/index.d.ts","../node_modules/@types/mime/index.d.ts","../node_modules/@types/send/index.d.ts","../node_modules/@types/range-parser/index.d.ts","../node_modules/@types/express-serve-static-core/index.d.ts","../node_modules/@types/http-errors/index.d.ts","../node_modules/@types/serve-static/index.d.ts","../node_modules/@types/express/index.d.ts","../node_modules/@types/keygrip/index.d.ts","../node_modules/@types/cookies/index.d.ts","../node_modules/@types/debounce/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/http-assert/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/koa-compose/index.d.ts","../node_modules/@types/koa/index.d.ts","../node_modules/@types/long/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/resolve/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","e94b01c6c9221682a1ffd8577103408642c5433923420e517d8d8c695c4875c0","466a15bf7238ebd3900d136db38eec3af69d0761c0286ab59952870eedd6e319","9113ebe8d776516d3a302ec431d28915c9398a75beaef1eb38cd66ae0bfeb014","1f4df460bfe98e20fae494ade49e50c98ed1997143c7eae7a00a1cd93bfd4307","e179bf25417780781dc994f657e724419e6dcbe5a136dbfa55efefe36bdb4b63","2a0fdc4e3ff0daab68692c115db4609206e029061fc2803a342973da34f57901","a0abcb32b7a9291276879912c9a3205fbd1d6930ae4f29e91fe30227e2762893","b67fb584ca2449669c113e75866d339ee4e6bc74a441efd00c1beac460412584","90e7ca3372483129ad265c604b2225e250a4739ed966c3859648332ae36ed4fa","0f79f9784797e5358bbed18b363b220eaed94de7c1ed2f193465ac232fe48eb1","ebd814bbb00e31e80c488b3e0b75bcceb8806580663ef5919dc9253951d540a9","1e73e8d1bbef5f4b2cd652df6eacf50cbb9a91cd41f974320541d2cfe08ee316",{"version":"f5e34b89cceea7c3f2170eb2903da7989d1a8d8952620dc0ec9cab95b6c9b12e","signature":"cef2afeffdff1ca5b5bc09bd3b49c5c5540061ea64d2bb69331b2bc25052d185"},"0dc164463e333b02a0f92e23c54a4142e9b714954c912cebbd08a61b3098d0e8","5a8ea8f4b933fe2a58dad240bd625f3625b952aa3bb70c15b3a34c214d9c7c34","52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","ccf8ea81b0ac699c220b874b804ad02b8aabc5b494e1c3bda0d255ec8d08694d","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"a4a5a79b9d9b4e4dfa18279d85686fac7eb155b828ddf7a677ceb57f9384f043","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","b448dfbb5a6c4505f6b6beab587cf41f180ad62bcb506b44e3f2c09d20ba63a9","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","307f088012744cf2e7bd53f4165108d9f77576b37721c7bf1b7d2c336e6eef6e","456fd4db1a34732c4c4b51a43007c2a2747bdffad79f32c50a258e13c6cf089a",{"version":"b4701edbd91d1433a98a0f6663cebaea1c155d2af66cf179e6a2d5e2e9c1517a","signature":"17c6226831c63a2f84af72c0ceceda46c04f5b53d8771b8dcb1e259ade647dc4"},{"version":"ee407a5c4156dadd88d6abedacf413614f39362a019f56aa375926cc0dedbb26","signature":"17d6d7206e99683f105e1a1c162206674347c67120a603199a3018f44e064499"},{"version":"ee00df667d0bf74f5e510f78129804988c1679936351de50514bca13421a967b","signature":"77d01931dc0eaf342d2d0c7e228ae5f5603adcf77eb073037ee184490cfa4812"},"ccd344713e6f39583ac472a097e8dd307998d1c27d43b0b0f4558db1569ee3fc","6187d97d074e4a66a0179ff2cdd845e1809b70ff5d7b857e0c686f52a86f62f7","43fe650d6596e6f9bff164927de8f99918481899814a45a026e3262ee5ae01a6","d45c02bf8b85203f35de2971eafb8f8092090d150c7805a189b3e197f53b12b6","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","ea410c8280b0ec480acb195c7dd36c1f054403f5fccee0beca85717777cf8562","628bceb593b3a5b3d73ff44a808a347ec07d6ee397104a1d88b0f9a20d8b4599","57e25505a5de058216a8f4416ca850788bfc3a412c8e90109b2ef91f75fdd615","2ba453918c1fcf1cbb2836f731534f356d5fe65ed9628811f686e8de3920ed0e","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","cc689acd4eff461c808e01225be6a16d1787e44d451310be5dd556dd7ab08457","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a",{"version":"ffa8db1997eb4d9c37352a907392e1ef0487ed2d5d41d5d2da4d4463c3a34e96","signature":"adbbb798e0cff28025b68e76e1477458858d084299c887abca10200f28dd5632"},{"version":"ec008f4714666ae53f5e4603bb975fb73460cd4dcd71d69097fa0f052b7838f7","signature":"43dc5181097ad5a48146de82f60ca17637631d8369dc3d60e6a93febc79785ec"},{"version":"db77c6bb23ee7b63ff2d09b139b1057b645aec7c71163d1e809d8ee024dcb4e4","signature":"2f5218c4f1c576adbe7ab8284148246cd1962b2577a4b330f0f28fcf1db4239b"},{"version":"95419cb1ef63469caf936feff67d8bc8f323defb9b2c15ea9585bd0c27336111","signature":"4938f1ef16d7603b17561e33d6b205d28046015f56b03d89f31d06ad51a0f227"},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e",{"version":"a9e85d2ca379e6768c0b7c1c7ef1f9535238fbc5983c095e92f0cd97923bca0b","affectsGlobalScope":true},{"version":"da05cd112e7c5a02335c271fe8165d2f76abef86d59ab5dc2ba9fdc640c6f5f5","signature":"1984a2fb53f612b15ca74b5e4988af5ba66fb4e4ca78d9c01f69ab4ae99b6698"},{"version":"9c5682b7737b276f87e16f2af0a008aa98632fba56c06b4209c1750f506c0566","signature":"d8052766cfb16c6376d88bdfa04bdf6d78c01ddb80f73c1f2d30abb9458aeb42"},{"version":"7eda90d6b52470015aec43b28718bc509d4de340082cbe48e333eb000ee69ea9","signature":"d9805b58baf1f3b43891c26d7482a05d374362bd47b805fb3c0e2e3682295e0c"},{"version":"e6673c4e8442ef8e3a2a3ca14b76dc16442191d1c54cafe04105f552202e8d61","signature":"e583b0c9e5471c86e780963df819fe746fc2989c94850179c5218c94a08a2b32"},{"version":"2825e44db4dca2ec91c3261cbd89a5501713744b08b021aa11c449ca6f530596","signature":"391b7c92194c5d4989b562ee253bc93df3951dcf44416a9e765d0edd6b5c0978"},{"version":"da84fafd6c160e78918aaa7b0ea8f022c369879dafa1be207c4dc77f09f68f62","signature":"ba4a8e72d0e78bb5929e16316923e607d1ab34128903ca3c850373b8d9690e1a"},{"version":"bea9b3d335a15fe2e5744bfe795467aab1dfab26c0ee2a71d1805422481e6fb8","signature":"f862b229a3837130aec6a36d0028eab2415d1ef39dc5d4229a038dae0e3d759d"},{"version":"f2c9f2b4438cbec3740a3f64f71c84fefade7f137bbed0ae5ca0d447a9c76722","signature":"05f5d8d62dbc8550376a1191b420f660c46bc733e9d794d980fa48e8fccdf83a"},{"version":"2e5e48ad430d116fea13cd94b5177c01f3a1667d70efe07e0c589410cc3a5bed","signature":"243bb1f0c2b803cbad039736078b6930f0b3796e3a03b6368876ad8b17b0b6ff"},{"version":"b76ff4b1877e6068d2be0d36541c997482da4daeb8da6de1d2d070dbea9553b5","signature":"533f94205ee00c08af8dd92887fe92196b2c4ac7d3250fd46259bfc714660c28"},{"version":"efc8705584e344cf5ff76da86feb4640c68a4b531ab6264df2153e92d821f242","signature":"115140a41efd0481d1087d22d0ec365ae5ddbecf50a8204e07177477d14ea5c6"},{"version":"5586f94aa197beba2d31e464cfc52ae8abcd143d53f5c93fd733ecd75910806d","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},{"version":"58c0edc30265397d8ce49e461a77b0f6be7bb2118d884af688cf285c7d790f98","signature":"5a74da1f894803938406f5412137ad4ac2d50597bfb50cf5e9ea379b607c69bb"},{"version":"1501609e517a632d22e61a7bf3e8c73cd801260baba54203435387c1fef9d9d6","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"2d412861573a672bd90fdcb1e48740593324565f3b3aaf6808c0e3e2f0d54ae8","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"507e2131e89b515ce40c05c0c2fef6cc575ba8947703f92e8cdf36078747a9ff","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"e7be17cfcbe98809c052f384c230ecea9e1cee045edac9db0659e997a988ff9e","affectsGlobalScope":true},"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","5adc55aaebfb20914e274a1202b5c78638260364997d724dec52d7b2704b461c",{"version":"525b52b38b44420fb1758c0917e7b67cf379f7f9477d2ba7343f3d5f50a44258","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","359f23bc7fccaec08632ee5c33eb333a5b207fc8ae17c881c7b69919aced4d58","51bce1535d9cb87390d75581866d79de7b2e2cb525a89fba84411c8bb5be52d2","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"4adff7bda52ad8e5570a03f896ddb148abf3a7305ba35cbbcfc880d0f4d0c664","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","0b5817d9435c019648f2a2326eaf1086efb72e8e90e28eb53a58b2f31f61e161","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","d30c69f9eb16583b0a406358224c312b865514a6a7c787a57f16ef08e49b1886","5e02756608c1ac8ddf96878c3af3d4db7ed4e272aef24837e255859ee0a4fb71","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","905fbc07f65451b05cb5594d162674eb3ef8f2bf5f13552a1702215664aae3e7","50f63746fc2a779d1f9c5657fd78e292045dc98b540e026799e039ea629f2943",{"version":"317da6b41e240cdc9e8e82289d6b34170e4bb65f9a7a5f37fcd060dd7856e7c5","signature":"e2163846f7c36dfc18f943ae762f94e730f7763853e04d89d37ba3e20e4ca6e5"},"09df3b4f1c937f02e7fee2836d4c4d7a63e66db70fd4d4e97126f4542cc21d9d","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","adda9e3915c6bf15e360356a41d950881a51dbe44f9a6088155836b040820663","b4855526ac5a822d6e0005e4b62ee49c599bf89897e4109135283d660e60291c","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","80ad053918e96087d9da8d092ff9f90520c9fc199c8bfd9340266dd8f38f364e","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","d70119390aece1794bf4988f10ea750d13455f5286977d35027d43dd2e9841cf",{"version":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"5a856afb15f9dc9983faa391dde989826995a33983c1cccb173e9606688e9709","affectsGlobalScope":true},"546ab07e19116d935ad982e76a223275b53bff7771dab94f433b7ab04652936e","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"aefb5a4a209f756b580eb53ea771cca8aad411603926f307a5e5b8ec6b16dcf6","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","f5a8b7ec4b798c88679194a8ebc25dcb6f5368e6e5811fcda9fe12b0d445b8db","b86e1a45b29437f3a99bad4147cb9fe2357617e8008c0484568e5bb5138d6e13","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","42c431e7965b641106b5e25ab3283aa4865ca7bb9909610a2abfa6226e4348be","0b7e732af0a9599be28c091d6bd1cb22c856ec0d415d4749c087c3881ca07a56","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"8d6138a264ddc6f94f16e99d4e117a2d6eb31b217891cf091b6437a2f114d561","affectsGlobalScope":true},"3b4c85eea12187de9929a76792b98406e8778ce575caca8c574f06da82622c54","f788131a39c81e0c9b9e463645dd7132b5bc1beb609b0e31e5c1ceaea378b4df","0c236069ce7bded4f6774946e928e4b3601894d294054af47a553f7abcafe2c1","21894466693f64957b9bd4c80fa3ec7fdfd4efa9d1861e070aca23f10220c9b2","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"6ec93c745c5e3e25e278fa35451bf18ef857f733de7e57c15e7920ac463baa2a","affectsGlobalScope":true},"91f8b5abcdff8f9ecb9656b9852878718416fb7700b2c4fad8331e5b97c080bb","30c2ec6abf6aaa60eb4f32fb1235531506b7961c6d1bdc7430711aec8fd85295","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"308b84e1943ef30015469770e931eb21b795348893b2a6562ca54ea8f0b3c41c","affectsGlobalScope":true},{"version":"d48009cbe8a30a504031cc82e1286f78fed33b7a42abf7602c23b5547b382563","affectsGlobalScope":true},"7aaeb5e62f90e1b2be0fc4844df78cdb1be15c22b427bc6c39d57308785b8f10","3ba30205a029ebc0c91d7b1ab4da73f6277d730ca1fc6692d5a9144c6772c76b","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"24ba151e213906027e2b1f5223d33575a3612b0234a0e2b56119520bbe0e594b","affectsGlobalScope":true},{"version":"cbf046714f3a3ba2544957e1973ac94aa819fa8aa668846fa8de47eb1c41b0b2","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eae74e3d50820f37c72c0679fed959cd1e63c98f6a146a55b8c4361582fa6a52","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"aed89e3c18f4c659ee8153a76560dffda23e2d801e1e60d7a67abd84bc555f8d","affectsGlobalScope":true},{"version":"0ed13c80faeb2b7160bffb4926ff299c468e67a37a645b3ae0917ba0db633c1b","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","2f940651c2f30e6b29f8743fae3f40b7b1c03615184f837132b56ea75edad08b","5749c327c3f789f658072f8340786966c8b05ea124a56c1d8d60e04649495a4d",{"version":"c9d62b2a51b2ff166314d8be84f6881a7fcbccd37612442cf1c70d27d5352f50","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","3dcefe176e6dce7a06bd345522e19f631f7fdb370335e2e93bc225b3afbb0bd0","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","fedd311d427fdafac411b4e0edc0d1014668853679e021e04717a6de45ff5c0c","7578ed901eec5f590609fc7a6ba9027be5735ad1aedef119aa56d53a22dfbe02","5b7206ca5f2f6eeaac6daa285664f424e0b728f3e31937da89deb8696c5f1dbc","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","1e87d58d3678958d89e2a94454afcc827f1aa6363abbcbd4f99729e65ab47995","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"4d0536bbf67bc4301ebb5154eeb38168db0f7b34c490a80b6fa41bc6b751bcb4","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","34118be360cdd3381bbebbfd4b093c394460c8fc5df40688d58f45d86ab1448b","5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","0da232091e24c6d49c78d4168477ff98d92f57b87b41cb8067227b3de7b467bb","2125380d127f602090671355ecc9f021caf3af71b79c7c9fbc8cfd9cfec45b10","072099609280e6659eb29b1d2a601e95708c90b7db2aba2571ebda50d1be0dd5","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","3f841292a135503a4cc1a9029af59dae135595810cfad5ca62ec1b2ad9846e8e","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","0d0a431dda18aaaeaa5f0eee95a956ad63bba7606835537a38b003e36132a531","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185"],"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},"fileIdsList":[[48,49,51,217],[49,52,217],[44,45,46,47,217],[46,217],[44,46,47,217],[45,46,47,217],[45,217],[49,51,52,217],[50,217],[217],[69,217],[60,217],[61,217],[77,217],[61,77,217],[61,77,85,217],[59,60,217],[126,217],[61,124,125,217],[61,124,217],[108,109,217],[110,217],[109,111,217],[121,122,129,130,131,133,134,217],[123,127,217],[128,217],[124,217],[123,128,132,217],[68,217],[123,217],[108,120,135,217],[112,115,116,119,217],[190,217,224],[190,217,224,227],[108,217],[190,217,224,229],[190,217,224,227,240,241],[187,190,217,224,229,235,236],[217,228,229,237,239],[217,246],[217,247],[217,252],[187,190,191,195,201,216,217,224,225,232,238,241,242,245,251],[138,217],[174,217],[175,180,208,217],[176,187,188,195,205,216,217],[176,177,187,195,217],[178,217],[179,180,188,196,217],[180,205,213,217],[181,183,187,195,217],[182,217],[183,184,217],[187,217],[185,187,217],[174,187,217],[187,188,189,205,216,217],[187,188,189,202,205,208,217],[172,217,221],[183,187,190,195,205,216,217],[187,188,190,191,195,205,213,216,217],[190,192,205,213,216,217],[138,139,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223],[187,193,217],[194,216,217,221],[183,187,195,205,217],[196,217],[197,217],[174,198,217],[199,215,217,221],[200,217],[201,217],[187,202,203,217],[202,204,217,219],[175,187,205,206,207,208,217],[175,205,207,217],[205,206,217],[208,217],[209,217],[174,205,217],[187,211,212,217],[211,212,217],[180,195,205,213,217],[214,217],[195,215,217],[175,190,201,216,217],[180,217],[205,217,218],[194,217,219],[217,220],[175,180,187,189,198,205,216,217,219,221],[205,217,222],[217,256],[217,257],[217,224],[188,205,217,224,234],[190,217,224,234,238],[108,118,217],[117,217],[62,217],[187,190,192,195,205,213,216,217,222,224],[187,205,217,224],[114,217],[113,217],[52,217],[74,217],[54,217],[57,217],[61,65,217],[65,217],[64,65,217],[63,64,217],[78,79,80,81,82,83,84,85,86,217],[92,217],[61,65,66,67,217],[149,153,216,217],[149,205,216,217],[144,217],[146,149,213,216,217],[195,213,217],[144,217,224],[146,149,195,216,217],[141,142,145,148,175,187,205,216,217],[141,147,217],[145,149,175,208,216,217,224],[175,217,224],[165,175,217,224],[143,144,217,224],[149,217],[143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,217],[149,156,157,217],[147,149,157,158,217],[148,217],[141,144,149,217],[149,153,157,158,217],[153,217],[147,149,152,216,217],[141,146,147,149,153,156,217],[175,205,217],[144,149,165,175,217,221,224],[43,53,56,72,217],[43,53,68,71,72,73,75,76,87,88,89,91,95,96,97,217],[43,68,87,217],[43,68,87,99,217],[43,68,87,90,217],[43,68,102,217],[43,68,87,102,217],[43,75,217],[43,53,55,217],[43,53,58,68,71,217],[43,56,72,88,98,99,100,101,102,103,104,217],[43,68,76,87,217],[43,68,70,72,217],[43,68,87,88,217],[43,68,87,93,94,217],[43,68,217],[43,68,105,136,217],[53,72],[53,68,71,72,75,76,89,91,95,96,97],[65,68],[65,68,90],[65,102],[68],[75],[53,55],[53,68,71],[56,72,88,98,99,100,101,102,103,104],[65,68,76],[68,72],[65,68,94]],"referencedMap":[[52,1],[74,2],[48,3],[47,4],[45,5],[44,6],[46,7],[54,8],[57,2],[51,9],[50,10],[49,10],[70,11],[69,12],[59,10],[77,13],[78,14],[81,15],[79,15],[83,15],[86,16],[85,10],[84,15],[82,15],[80,14],[60,10],[61,17],[124,10],[127,18],[126,19],[125,20],[110,21],[111,22],[109,10],[112,23],[135,24],[121,10],[128,25],[129,26],[130,10],[131,27],[133,28],[123,29],[132,30],[134,26],[136,31],[120,32],[225,33],[226,10],[228,34],[116,35],[108,10],[230,36],[231,10],[227,33],[232,10],[233,10],[242,37],[243,10],[244,10],[237,38],[240,39],[94,10],[245,10],[238,10],[246,10],[247,40],[248,41],[249,10],[250,10],[241,10],[251,42],[252,43],[253,10],[234,10],[254,10],[138,44],[139,44],[174,45],[175,46],[176,47],[177,48],[178,49],[179,50],[180,51],[181,52],[182,53],[183,54],[184,54],[186,55],[185,56],[187,57],[188,58],[189,59],[173,60],[223,10],[190,61],[191,62],[192,63],[224,64],[193,65],[194,66],[195,67],[196,68],[197,69],[198,70],[199,71],[200,72],[201,73],[202,74],[203,74],[204,75],[205,76],[207,77],[206,78],[208,79],[209,80],[210,81],[211,82],[212,83],[213,84],[214,85],[215,86],[216,87],[217,88],[218,89],[219,90],[220,91],[221,92],[222,93],[255,10],[257,94],[256,95],[229,10],[236,10],[258,96],[235,97],[239,98],[119,99],[118,100],[117,10],[63,101],[62,10],[259,102],[260,103],[140,10],[113,35],[115,104],[114,105],[53,106],[75,107],[55,108],[58,109],[76,10],[66,110],[64,111],[92,112],[67,10],[65,113],[122,111],[87,114],[93,115],[68,116],[43,10],[8,10],[10,10],[9,10],[2,10],[11,10],[12,10],[13,10],[14,10],[15,10],[16,10],[17,10],[18,10],[3,10],[4,10],[22,10],[19,10],[20,10],[21,10],[23,10],[24,10],[25,10],[5,10],[26,10],[27,10],[28,10],[29,10],[6,10],[33,10],[30,10],[31,10],[32,10],[34,10],[7,10],[35,10],[40,10],[41,10],[36,10],[37,10],[38,10],[39,10],[1,10],[42,10],[156,117],[163,118],[155,117],[170,119],[147,120],[146,121],[169,96],[164,122],[167,123],[149,124],[148,125],[144,126],[143,127],[166,128],[145,129],[150,130],[151,10],[154,130],[141,10],[172,131],[171,130],[158,132],[159,133],[161,134],[157,135],[160,136],[165,96],[152,137],[153,138],[162,139],[142,140],[168,141],[73,142],[98,143],[99,144],[100,145],[91,146],[103,147],[104,148],[102,144],[101,144],[88,149],[56,150],[72,151],[105,152],[106,10],[89,153],[71,154],[90,155],[95,156],[96,144],[97,144],[107,157],[137,158]],"exportedModulesMap":[[52,1],[74,2],[48,3],[47,4],[45,5],[44,6],[46,7],[54,8],[57,2],[51,9],[50,10],[49,10],[70,11],[69,12],[59,10],[77,13],[78,14],[81,15],[79,15],[83,15],[86,16],[85,10],[84,15],[82,15],[80,14],[60,10],[61,17],[124,10],[127,18],[126,19],[125,20],[110,21],[111,22],[109,10],[112,23],[135,24],[121,10],[128,25],[129,26],[130,10],[131,27],[133,28],[123,29],[132,30],[134,26],[136,31],[120,32],[225,33],[226,10],[228,34],[116,35],[108,10],[230,36],[231,10],[227,33],[232,10],[233,10],[242,37],[243,10],[244,10],[237,38],[240,39],[94,10],[245,10],[238,10],[246,10],[247,40],[248,41],[249,10],[250,10],[241,10],[251,42],[252,43],[253,10],[234,10],[254,10],[138,44],[139,44],[174,45],[175,46],[176,47],[177,48],[178,49],[179,50],[180,51],[181,52],[182,53],[183,54],[184,54],[186,55],[185,56],[187,57],[188,58],[189,59],[173,60],[223,10],[190,61],[191,62],[192,63],[224,64],[193,65],[194,66],[195,67],[196,68],[197,69],[198,70],[199,71],[200,72],[201,73],[202,74],[203,74],[204,75],[205,76],[207,77],[206,78],[208,79],[209,80],[210,81],[211,82],[212,83],[213,84],[214,85],[215,86],[216,87],[217,88],[218,89],[219,90],[220,91],[221,92],[222,93],[255,10],[257,94],[256,95],[229,10],[236,10],[258,96],[235,97],[239,98],[119,99],[118,100],[117,10],[63,101],[62,10],[259,102],[260,103],[140,10],[113,35],[115,104],[114,105],[53,106],[75,107],[55,108],[58,109],[76,10],[66,110],[64,111],[92,112],[67,10],[65,113],[122,111],[87,114],[93,115],[68,116],[43,10],[8,10],[10,10],[9,10],[2,10],[11,10],[12,10],[13,10],[14,10],[15,10],[16,10],[17,10],[18,10],[3,10],[4,10],[22,10],[19,10],[20,10],[21,10],[23,10],[24,10],[25,10],[5,10],[26,10],[27,10],[28,10],[29,10],[6,10],[33,10],[30,10],[31,10],[32,10],[34,10],[7,10],[35,10],[40,10],[41,10],[36,10],[37,10],[38,10],[39,10],[1,10],[42,10],[156,117],[163,118],[155,117],[170,119],[147,120],[146,121],[169,96],[164,122],[167,123],[149,124],[148,125],[144,126],[143,127],[166,128],[145,129],[150,130],[151,10],[154,130],[141,10],[172,131],[171,130],[158,132],[159,133],[161,134],[157,135],[160,136],[165,96],[152,137],[153,138],[162,139],[142,140],[168,141],[73,159],[98,160],[99,161],[100,161],[91,162],[103,163],[104,163],[102,164],[101,161],[88,165],[56,166],[72,167],[105,168],[89,169],[71,170],[90,161],[95,171],[96,161],[97,161],[107,164]],"semanticDiagnosticsPerFile":[52,74,48,47,45,44,46,54,57,51,50,49,70,69,59,77,78,81,79,83,86,85,84,82,80,60,61,124,127,126,125,110,111,109,112,135,121,128,129,130,131,133,123,132,134,136,120,225,226,228,116,108,230,231,227,232,233,242,243,244,237,240,94,245,238,246,247,248,249,250,241,251,252,253,234,254,138,139,174,175,176,177,178,179,180,181,182,183,184,186,185,187,188,189,173,223,190,191,192,224,193,194,195,196,197,198,199,200,201,202,203,204,205,207,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,255,257,256,229,236,258,235,239,119,118,117,63,62,259,260,140,113,115,114,53,75,55,58,76,66,64,92,67,65,122,87,93,68,43,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,156,163,155,170,147,146,169,164,167,149,148,144,143,166,145,150,151,154,141,172,171,158,159,161,157,160,165,152,153,162,142,168,73,98,99,100,91,103,104,102,101,88,56,72,105,106,89,71,90,95,96,97,107,137]},"version":"4.9.5"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent pd-spa-helper following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "pd-spa-helper",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.38",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@lit-labs/task": "^1.1.3",
|
|
25
|
-
"@progressive-development/pd-dialog": "^0.1.
|
|
25
|
+
"@progressive-development/pd-dialog": "^0.1.55",
|
|
26
26
|
"@progressive-development/pd-forms": "^0.1.47",
|
|
27
27
|
"@progressive-development/pd-icon": "^0.1.16",
|
|
28
|
-
"@progressive-development/pd-order": "^0.1.
|
|
29
|
-
"@progressive-development/pd-page": "^0.1.
|
|
28
|
+
"@progressive-development/pd-order": "^0.1.71",
|
|
29
|
+
"@progressive-development/pd-page": "^0.1.84",
|
|
30
30
|
"@progressive-development/pd-wizard": "^0.1.48",
|
|
31
|
-
"@types/hammerjs": "^2.0.
|
|
31
|
+
"@types/hammerjs": "^2.0.43",
|
|
32
32
|
"firebase": "^9.23.0",
|
|
33
33
|
"hammerjs": "^2.0.8",
|
|
34
34
|
"lit": "^2.8.0",
|
|
@@ -4,27 +4,36 @@ import { property } from "lit/decorators.js";
|
|
|
4
4
|
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
const KEY_ABORT = "1";
|
|
7
|
+
export const KEY_ABORT = "1";
|
|
8
8
|
export const ABORT_EVENT_NAME = "close-popup";
|
|
9
9
|
|
|
10
|
-
const KEY_STORE = "2";
|
|
10
|
+
export const KEY_STORE = "2";
|
|
11
11
|
export const STORE_EVENT_NAME = "store";
|
|
12
12
|
|
|
13
|
+
export type PopupType = "info" | "help" | "warn" | "error";
|
|
14
|
+
|
|
15
|
+
const CONFIRM_BUTTONS = [
|
|
16
|
+
{key: KEY_ABORT, name: "Cancel"},
|
|
17
|
+
{key: KEY_STORE, name: "Ok", primary: true}
|
|
18
|
+
];
|
|
19
|
+
|
|
20
|
+
const SINGLE_BUTTON = [
|
|
21
|
+
{key: KEY_STORE, name: "Ok", primary: true}
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
export abstract class DefaultConfirmPopup extends LitElement {
|
|
13
25
|
|
|
14
|
-
export abstract class DefaultPopup extends LitElement {
|
|
15
|
-
|
|
16
26
|
abstract _popupTitle: string;
|
|
17
27
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
];
|
|
28
|
+
abstract _singleButton: boolean;
|
|
29
|
+
|
|
30
|
+
abstract _type?: PopupType;
|
|
31
|
+
|
|
23
32
|
|
|
24
33
|
static styles = [
|
|
25
34
|
css`
|
|
26
35
|
:host {
|
|
27
|
-
--pd-popup-max-width:
|
|
36
|
+
--pd-popup-max-width: 600px;
|
|
28
37
|
--pd-popup-header-height: 50px;
|
|
29
38
|
--pd-popup-header-font-size: 1em;
|
|
30
39
|
--pd-popup-header-col: var(--app-primary-dark-col);
|
|
@@ -35,7 +44,7 @@ export abstract class DefaultPopup extends LitElement {
|
|
|
35
44
|
render() {
|
|
36
45
|
return html`
|
|
37
46
|
<pd-popup-dialog @submit-button-clicked="${this._handleButtonClick}"
|
|
38
|
-
title="${this._popupTitle}" .buttons="${this.
|
|
47
|
+
title="${this._popupTitle}" .buttons="${this._singleButton ? SINGLE_BUTTON : CONFIRM_BUTTONS}" type="${this._type}">
|
|
39
48
|
|
|
40
49
|
${this._renderContent()}
|
|
41
50
|
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { html, LitElement, css, CSSResultGroup, HTMLTemplateResult } from "lit";
|
|
2
|
+
import { property } from "lit/decorators.js";
|
|
3
|
+
|
|
4
|
+
import '@progressive-development/pd-dialog/pd-popup-dialog.js';
|
|
5
|
+
import '@progressive-development/pd-forms/pd-form-container.js';
|
|
6
|
+
|
|
7
|
+
import { ABORT_EVENT_NAME, KEY_ABORT, KEY_STORE, STORE_EVENT_NAME } from "./default-confirm-popup.js";
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
export abstract class DefaultDialogPopup<T> extends LitElement {
|
|
11
|
+
|
|
12
|
+
@property({type: Array, state: true})
|
|
13
|
+
protected _dialogButtons: Array<any> = [
|
|
14
|
+
{key: KEY_ABORT, name: "Cancel"},
|
|
15
|
+
{key: KEY_STORE, name: "Save", disabled: true, primary: true}
|
|
16
|
+
];
|
|
17
|
+
|
|
18
|
+
protected _requiredFieldInfo: boolean = true;
|
|
19
|
+
|
|
20
|
+
abstract _popupTitle: string;
|
|
21
|
+
|
|
22
|
+
static styles = [
|
|
23
|
+
css`
|
|
24
|
+
:host {
|
|
25
|
+
--pd-popup-max-width: 800px;
|
|
26
|
+
--pd-popup-header-height: 50px;
|
|
27
|
+
--pd-popup-header-font-size: 1em;
|
|
28
|
+
--pd-popup-header-col: var(--app-primary-dark-col);
|
|
29
|
+
}
|
|
30
|
+
`
|
|
31
|
+
] as CSSResultGroup;
|
|
32
|
+
|
|
33
|
+
render() {
|
|
34
|
+
return html`
|
|
35
|
+
<pd-popup-dialog @submit-button-clicked="${this._handleButtonClick}"
|
|
36
|
+
title="${this._popupTitle}" .buttons="${this._dialogButtons}">
|
|
37
|
+
|
|
38
|
+
<pd-form-container slot="content" id="formContainerId" ?requiredFieldInfo="${this._requiredFieldInfo}">
|
|
39
|
+
|
|
40
|
+
${this._renderContent()}
|
|
41
|
+
|
|
42
|
+
</pd-form-container>
|
|
43
|
+
|
|
44
|
+
</pd-popup-dialog>
|
|
45
|
+
`;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
protected _handleButtonClick(e: CustomEvent) {
|
|
49
|
+
let newEvent;
|
|
50
|
+
if (e.detail.button === KEY_STORE && this._isValidFormData()) {
|
|
51
|
+
newEvent = new CustomEvent(STORE_EVENT_NAME,
|
|
52
|
+
{
|
|
53
|
+
detail: this._getFormData()
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
} else {
|
|
57
|
+
newEvent = new CustomEvent(ABORT_EVENT_NAME);
|
|
58
|
+
}
|
|
59
|
+
this.dispatchEvent(newEvent);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
protected _triggerValidateForm() {
|
|
63
|
+
|
|
64
|
+
// trigger validate by event (needed for form wich is initial filled, otherwise "Pflichfeld" occurs in red => must be fixed in the component)
|
|
65
|
+
const detail = {
|
|
66
|
+
errorMap: new Map()
|
|
67
|
+
};
|
|
68
|
+
this.shadowRoot?.getElementById("formContainerId")?.dispatchEvent(
|
|
69
|
+
new CustomEvent("validate-form", {detail})
|
|
70
|
+
);
|
|
71
|
+
|
|
72
|
+
// trigger also button check (initial valid)
|
|
73
|
+
this._dialogButtons[1].disabled = this._isValidFormData();
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
abstract _isValidFormData(): boolean;
|
|
77
|
+
|
|
78
|
+
abstract _getFormData(): T;
|
|
79
|
+
|
|
80
|
+
abstract _renderContent(): HTMLTemplateResult;
|
|
81
|
+
|
|
82
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -9,7 +9,9 @@ export {
|
|
|
9
9
|
Footer
|
|
10
10
|
} from './PdSpaHelper.js';
|
|
11
11
|
|
|
12
|
-
export {
|
|
12
|
+
export {DefaultConfirmPopup, PopupType, ABORT_EVENT_NAME, STORE_EVENT_NAME} from './defaultpage/default-confirm-popup.js';
|
|
13
|
+
|
|
14
|
+
export {DefaultDialogPopup} from './defaultpage/default-dialog-popup.js';
|
|
13
15
|
|
|
14
16
|
export {DefaultWizard} from './defaultpage/default-wizard.js';
|
|
15
17
|
|