@operato/shell 1.2.11 → 1.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ### [1.2.16](https://github.com/hatiolab/operato/compare/v1.2.15...v1.2.16) (2023-03-30)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * add base types into shell ([7a8787d](https://github.com/hatiolab/operato/commit/7a8787dd2d2bd199ebe94bd65ec301d6950255f3))
12
+
13
+
14
+
6
15
  ### [1.2.11](https://github.com/hatiolab/operato/compare/v1.2.10...v1.2.11) (2023-03-26)
7
16
 
8
17
  **Note:** Version bump only for package @operato/shell
@@ -1,3 +1,4 @@
1
+ export * from './types';
1
2
  export * from './store';
2
3
  export * from './actions';
3
4
  export * from './app/pages/page-view';
package/dist/src/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './types';
1
2
  export * from './store';
2
3
  export * from './actions';
3
4
  export * from './app/pages/page-view';
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,uBAAuB,CAAA","sourcesContent":["export * from './store'\nexport * from './actions'\nexport * from './app/pages/page-view'\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,WAAW,CAAA;AACzB,cAAc,uBAAuB,CAAA","sourcesContent":["export * from './types'\nexport * from './store'\nexport * from './actions'\nexport * from './app/pages/page-view'\n"]}
@@ -0,0 +1,16 @@
1
+ export declare class Domain {
2
+ readonly id?: string;
3
+ name?: string;
4
+ description?: string;
5
+ subdomain?: string;
6
+ extType?: string;
7
+ timezone?: string;
8
+ systemFlag?: boolean;
9
+ brandName?: string;
10
+ brandImage?: string;
11
+ contentImage?: string;
12
+ owner?: string;
13
+ theme?: string;
14
+ createdAt?: Date;
15
+ updatedAt?: Date;
16
+ }
@@ -0,0 +1,3 @@
1
+ export class Domain {
2
+ }
3
+ //# sourceMappingURL=domain.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"domain.js","sourceRoot":"","sources":["../../../src/types/domain.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,MAAM;CAqBlB","sourcesContent":["export class Domain {\n readonly id?: string\n\n name?: string\n description?: string\n\n subdomain?: string\n\n extType?: string\n timezone?: string\n systemFlag?: boolean\n\n brandName?: string\n brandImage?: string\n contentImage?: string\n\n owner?: string\n theme?: string\n\n createdAt?: Date\n updatedAt?: Date\n}\n"]}
@@ -0,0 +1,4 @@
1
+ export * from './domain';
2
+ export * from './privilege';
3
+ export * from './role';
4
+ export * from './user';
@@ -0,0 +1,5 @@
1
+ export * from './domain';
2
+ export * from './privilege';
3
+ export * from './role';
4
+ export * from './user';
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAA;AAC3B,cAAc,QAAQ,CAAA;AACtB,cAAc,QAAQ,CAAA","sourcesContent":["export * from './domain'\nexport * from './privilege'\nexport * from './role'\nexport * from './user'\n"]}
@@ -0,0 +1,16 @@
1
+ import { Role } from './role';
2
+ import { User } from './user';
3
+ export declare class Privilege {
4
+ id?: string;
5
+ name?: string;
6
+ category?: string;
7
+ nullable?: true;
8
+ description?: string;
9
+ roles?: Role[];
10
+ creator?: User;
11
+ creatorId?: string;
12
+ updater?: User;
13
+ updaterId?: string;
14
+ createdAt?: Date;
15
+ updatedAt?: Date;
16
+ }
@@ -0,0 +1,3 @@
1
+ export class Privilege {
2
+ }
3
+ //# sourceMappingURL=privilege.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"privilege.js","sourceRoot":"","sources":["../../../src/types/privilege.ts"],"names":[],"mappings":"AAGA,MAAM,OAAO,SAAS;CAwBrB","sourcesContent":["import { Role } from './role'\nimport { User } from './user'\n\nexport class Privilege {\n id?: string\n\n name?: string\n\n category?: string\n\n nullable?: true\n\n description?: string\n\n roles?: Role[]\n\n creator?: User\n\n creatorId?: string\n\n updater?: User\n\n updaterId?: string\n\n createdAt?: Date\n\n updatedAt?: Date\n}\n"]}
@@ -0,0 +1,19 @@
1
+ import { Domain } from './domain';
2
+ import { User } from './user';
3
+ import { Privilege } from './privilege';
4
+ export declare class Role {
5
+ readonly id?: string;
6
+ domain?: Domain;
7
+ domainId?: string;
8
+ name?: string;
9
+ users?: User[];
10
+ privileges?: Privilege[];
11
+ nullable?: true;
12
+ description?: string;
13
+ creator?: User;
14
+ creatorId?: string;
15
+ updater?: User;
16
+ updaterId?: string;
17
+ createdAt?: Date;
18
+ updatedAt?: Date;
19
+ }
@@ -0,0 +1,3 @@
1
+ export class Role {
2
+ }
3
+ //# sourceMappingURL=role.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"role.js","sourceRoot":"","sources":["../../../src/types/role.ts"],"names":[],"mappings":"AAIA,MAAM,OAAO,IAAI;CA4BhB","sourcesContent":["import { Domain } from './domain'\nimport { User } from './user'\nimport { Privilege } from './privilege'\n\nexport class Role {\n readonly id?: string\n\n domain?: Domain\n\n domainId?: string\n\n name?: string\n\n users?: User[]\n\n privileges?: Privilege[]\n\n nullable?: true\n\n description?: string\n\n creator?: User\n\n creatorId?: string\n\n updater?: User\n\n updaterId?: string\n\n createdAt?: Date\n\n updatedAt?: Date\n}\n"]}
@@ -0,0 +1,18 @@
1
+ export declare enum UserStatus {
2
+ INACTIVE = "inactive",
3
+ ACTIVATED = "activated",
4
+ DELETED = "deleted",
5
+ LOCKED = "locked",
6
+ BANNED = "banned",
7
+ PWD_RESET_REQUIRED = "password_reset_required"
8
+ }
9
+ export declare class User {
10
+ readonly id?: string;
11
+ name?: string;
12
+ description?: string;
13
+ email?: string;
14
+ creator?: User;
15
+ updater?: User;
16
+ createdAt?: Date;
17
+ updatedAt?: Date;
18
+ }
@@ -0,0 +1,12 @@
1
+ export var UserStatus;
2
+ (function (UserStatus) {
3
+ UserStatus["INACTIVE"] = "inactive";
4
+ UserStatus["ACTIVATED"] = "activated";
5
+ UserStatus["DELETED"] = "deleted";
6
+ UserStatus["LOCKED"] = "locked";
7
+ UserStatus["BANNED"] = "banned";
8
+ UserStatus["PWD_RESET_REQUIRED"] = "password_reset_required";
9
+ })(UserStatus || (UserStatus = {}));
10
+ export class User {
11
+ }
12
+ //# sourceMappingURL=user.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user.js","sourceRoot":"","sources":["../../../src/types/user.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IACpB,mCAAqB,CAAA;IACrB,qCAAuB,CAAA;IACvB,iCAAmB,CAAA;IACnB,+BAAiB,CAAA;IACjB,+BAAiB,CAAA;IACjB,4DAA8C,CAAA;AAChD,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAED,MAAM,OAAO,IAAI;CAahB","sourcesContent":["export enum UserStatus {\n INACTIVE = 'inactive',\n ACTIVATED = 'activated',\n DELETED = 'deleted',\n LOCKED = 'locked',\n BANNED = 'banned',\n PWD_RESET_REQUIRED = 'password_reset_required'\n}\n\nexport class User {\n readonly id?: string\n\n name?: string\n description?: string\n\n email?: string\n\n creator?: User\n updater?: User\n\n createdAt?: Date\n updatedAt?: Date\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","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.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/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","../../../node_modules/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/index.ts","../src/object-store.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/mocha/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},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980",{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"7ed9e9171143f9e565a55d9b9e8b52a70946490021141395ed8a6083d2026bc1","signature":"c0dab6e6130fcc1162e18e1d7ee3038525ee9daebaa8f4f221fb67440ae38509"},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},{"version":"c49b0e5a71a930657eb78879ffd2eeb2908fdd06ab79641da36429adce1a8ab3","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"740cb9304e6498873ad5c53d86c78e1c3027befe245f8afa11d19ccd073fe74c","signature":"9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e"},{"version":"dbafe8734014446e224714be75f829f12ec13242f8b1b69728317ae9299bf742","signature":"d8afb84d78023735e55f1b96e06b3e221eb7ce5473ca1c93564d30e7efb0f991"},"52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","3cbcdf2a84c93c6b62d8d4584f613c8af7c6330ac2ba1ff781d10a3e0935beb9","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true},"3f30c6b57bf5eb7a7d4298506b78b18d428a39a409e1eadd93a3fdd0299d2687","62da965db3bd1b4ce135048ae8a317d7eb1949068824cb949dd4a91f7e3d6c2d","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","241000969e5367a9a9b9a4f57963e54e5a012c9d89c273526c0115650a7b9e5f","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"831c69ecdbfd9b1a941199093a398ff621df5e6461585a36b002d35f86bd4d39","signature":"6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1"},{"version":"891593d6c5f3647ceb478ca3637da5fec0cd466cd165ede60ed95b3205427e50","signature":"5257b95e47714b754c367ce742ada7042aade5bf8c88bc7dd5a23194e3a50fb0"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"7a9b5d885b67d43f2aff182b88b0e79630613fddc88d73db9f3c9a21fec40244","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","33fd0884c97e9999b9dc573334d46af764e6e3d209b92e6283d854d792dc151f",{"version":"cd6e5c223922f1b1bf2a35a08f2b81968b271e0ed162fa46f73269e16e104101","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"fdec01c831cb7c40699061016742faf26811b5690fde7ce414d0c7a3780a09ee"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"79f6932003c4c5650124a7b5a0ff908f775ff9d60bf2519ab4c3dc5c622e48b4"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"54ba7456adb777a685250cd144115ea51379784012ba1311255b715c6bdcff2a","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5450889a3b688f9da80e7c96963b2cfebc6097e8e95790a23a48558b61e6aea7","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[195],[94,195],[102,195],[94,102,195],[94,102,110,195],[92,93,195],[101,130,131,132,195],[101,138,139,140,143,145,195],[101,146,195],[101,138,139,140,195],[101,141,195],[101,195],[101,131,133,135,136,195],[101,137,195],[131,195],[132,134,195],[130,135,195],[84,195],[72,74,75,76,77,78,79,80,81,82,83,84,195],[72,73,75,76,77,78,79,80,81,82,83,84,195],[73,74,75,76,77,78,79,80,81,82,83,84,195],[72,73,74,76,77,78,79,80,81,82,83,84,195],[72,73,74,75,77,78,79,80,81,82,83,84,195],[72,73,74,75,76,78,79,80,81,82,83,84,195],[72,73,74,75,76,77,79,80,81,82,83,84,195],[72,73,74,75,76,77,78,80,81,82,83,84,195],[72,73,74,75,76,77,78,79,81,82,83,84,195],[72,73,74,75,76,77,78,79,80,82,83,84,195],[72,73,74,75,76,77,78,79,80,81,83,84,195],[72,73,74,75,76,77,78,79,80,81,82,84,195],[72,73,74,75,76,77,78,79,80,81,82,83,195],[149,195],[152,195],[153,158,186,195],[154,165,166,173,183,194,195],[154,155,165,173,195],[156,195],[157,158,166,174,195],[158,183,191,195],[159,161,165,173,195],[160,195],[161,162,195],[165,195],[163,165,195],[165,166,167,183,194,195],[165,166,167,180,183,186,195],[195,199],[161,168,173,183,194,195],[165,166,168,169,173,183,191,194,195],[168,170,183,191,194,195],[149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,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],[165,171,195],[172,194,195],[161,165,173,183,195],[174,195],[175,195],[152,176,195],[177,193,195,199],[178,195],[179,195],[165,180,181,195],[180,182,195,197],[153,165,183,184,185,186,195],[153,183,185,195],[183,184,195],[186,195],[187,195],[165,189,190,195],[189,190,195],[158,173,183,191,195],[192,195],[173,193,195],[153,168,179,194,195],[158,195],[183,195,196],[195,197],[195,198],[153,158,165,167,176,183,194,195,197,199],[183,195,200],[95,195],[94,98,195],[98,195],[97,98,195],[96,97,195],[103,104,105,106,107,108,109,110,111,195],[144,195],[94,98,99,100,195],[45,195],[45,47,195],[44,195],[44,70,87,90,195],[44,69,87,89,195],[44,101,195],[43,44,69,89,91,101,112,117,118,119,127,195],[44,101,112,114,195],[44,87,89,101,112,113,195],[44,101,112,142,147,195],[44,89,91,114,195],[44,69,70,195],[44,85,86,87,195],[44,45,46,48,71,88,195],[120,121,122,123,124,125,126,195],[49,50,51,52,53,54,55,56,57,58,59,62,63,64,65,66,67,68,195],[60,61,195],[61,195],[60,195],[70,87,90],[101],[98,101,114],[98,101,142,147],[89,91,114],[45,46]],"referencedMap":[[92,1],[102,2],[103,3],[106,4],[104,4],[108,4],[111,5],[110,1],[109,4],[107,4],[105,3],[93,1],[94,6],[130,1],[132,1],[139,1],[133,7],[131,1],[146,8],[147,9],[141,10],[142,11],[143,12],[137,13],[138,14],[140,15],[135,16],[136,17],[134,1],[113,18],[85,18],[73,19],[74,20],[72,21],[75,22],[76,23],[77,24],[78,25],[79,26],[80,27],[81,28],[82,29],[83,30],[84,31],[203,1],[149,32],[150,32],[152,33],[153,34],[154,35],[155,36],[156,37],[157,38],[158,39],[159,40],[160,41],[161,42],[162,42],[164,43],[163,44],[165,43],[166,45],[167,46],[151,47],[201,1],[168,48],[169,49],[170,50],[202,51],[171,52],[172,53],[173,54],[174,55],[175,56],[176,57],[177,58],[178,59],[179,60],[180,61],[181,61],[182,62],[183,63],[185,64],[184,65],[186,66],[187,67],[188,1],[189,68],[190,69],[191,70],[192,71],[193,72],[194,73],[195,74],[196,75],[197,76],[198,77],[199,78],[200,79],[96,80],[95,1],[99,81],[97,82],[144,83],[100,1],[98,84],[112,85],[145,86],[101,87],[118,88],[46,88],[86,1],[119,1],[48,89],[47,88],[45,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[43,1],[70,90],[87,90],[91,91],[90,92],[117,93],[128,94],[129,95],[114,96],[148,97],[115,98],[116,90],[71,99],[88,100],[89,101],[126,12],[124,1],[125,12],[120,12],[127,102],[121,12],[122,12],[123,12],[65,1],[50,1],[63,1],[58,1],[52,1],[59,1],[68,1],[51,1],[64,1],[55,1],[69,103],[66,1],[53,1],[56,1],[57,1],[49,1],[67,1],[54,1],[62,104],[60,105],[61,106]],"exportedModulesMap":[[92,1],[102,2],[103,3],[106,4],[104,4],[108,4],[111,5],[110,1],[109,4],[107,4],[105,3],[93,1],[94,6],[130,1],[132,1],[139,1],[133,7],[131,1],[146,8],[147,9],[141,10],[142,11],[143,12],[137,13],[138,14],[140,15],[135,16],[136,17],[134,1],[113,18],[85,18],[73,19],[74,20],[72,21],[75,22],[76,23],[77,24],[78,25],[79,26],[80,27],[81,28],[82,29],[83,30],[84,31],[203,1],[149,32],[150,32],[152,33],[153,34],[154,35],[155,36],[156,37],[157,38],[158,39],[159,40],[160,41],[161,42],[162,42],[164,43],[163,44],[165,43],[166,45],[167,46],[151,47],[201,1],[168,48],[169,49],[170,50],[202,51],[171,52],[172,53],[173,54],[174,55],[175,56],[176,57],[177,58],[178,59],[179,60],[180,61],[181,61],[182,62],[183,63],[185,64],[184,65],[186,66],[187,67],[188,1],[189,68],[190,69],[191,70],[192,71],[193,72],[194,73],[195,74],[196,75],[197,76],[198,77],[199,78],[200,79],[96,80],[95,1],[99,81],[97,82],[144,83],[100,1],[98,84],[112,85],[145,86],[101,87],[118,88],[46,88],[86,1],[119,1],[48,89],[47,88],[45,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[43,1],[91,107],[117,108],[129,109],[114,108],[148,110],[115,111],[89,112],[126,12],[124,1],[125,12],[120,12],[127,102],[121,12],[122,12],[123,12],[65,1],[50,1],[63,1],[58,1],[52,1],[59,1],[68,1],[51,1],[64,1],[55,1],[69,103],[66,1],[53,1],[56,1],[57,1],[49,1],[67,1],[54,1],[62,104],[60,105],[61,106]],"semanticDiagnosticsPerFile":[92,102,103,106,104,108,111,110,109,107,105,93,94,130,132,139,133,131,146,147,141,142,143,137,138,140,135,136,134,113,85,73,74,72,75,76,77,78,79,80,81,82,83,84,203,149,150,152,153,154,155,156,157,158,159,160,161,162,164,163,165,166,167,151,201,168,169,170,202,171,172,173,174,175,176,177,178,179,180,181,182,183,185,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,96,95,99,97,144,100,98,112,145,101,118,46,86,119,48,47,45,44,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,43,70,87,91,90,117,128,129,114,148,115,116,71,88,89,126,124,125,120,127,121,122,123,65,50,63,58,52,59,68,51,64,55,69,66,53,56,57,49,67,54,62,60,61]},"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","../@types/global/index.d.ts","../../../node_modules/tslib/tslib.d.ts","../src/types/domain.ts","../src/types/user.ts","../src/types/role.ts","../src/types/privilege.ts","../src/types/index.ts","../../../node_modules/redux/index.d.ts","../../../node_modules/pwa-helpers/lazy-reducer-enhancer.d.ts","../../../node_modules/redux-thunk/es/types.d.ts","../../../node_modules/redux-thunk/es/index.d.ts","../../utils/dist/src/sleep.d.ts","../../utils/dist/src/async-lock.d.ts","../../utils/dist/src/file-drop-helper.d.ts","../../utils/dist/src/context-path.d.ts","../../utils/dist/src/os.d.ts","../../utils/dist/src/swipe-listener.d.ts","../../utils/dist/src/fullscreen.d.ts","../../utils/dist/src/parse-jwt.d.ts","../../utils/dist/src/password-pattern.d.ts","../../utils/dist/src/closest-element.d.ts","../../utils/dist/src/detect-overflow.d.ts","../../utils/dist/src/timecapsule/snapshot-taker.d.ts","../../utils/dist/src/timecapsule/timecapsule.d.ts","../../utils/dist/src/timecapsule/index.d.ts","../../utils/dist/src/clipboard.d.ts","../../utils/dist/src/format.d.ts","../../utils/dist/src/adjust-list-param.d.ts","../../utils/dist/src/is-unvalued.d.ts","../../utils/dist/src/stringify-bignum.d.ts","../../utils/dist/src/encode-form-params.d.ts","../../utils/dist/src/index.d.ts","../src/actions/app.ts","../src/reducers/app.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash-es/startcase.d.ts","../../../node_modules/pwa-helpers/metadata.d.ts","../src/actions/const.ts","../src/reducers/route.ts","../src/store.ts","../src/actions/route.ts","../src/actions/index.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/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","../../../node_modules/@types/lodash-es/isequal.d.ts","../src/app/pages/page-view.ts","../src/index.ts","../src/object-store.ts","../src/app/app-style.ts","../../../node_modules/pwa-helpers/connect-mixin.d.ts","../../../node_modules/pwa-helpers/router.d.ts","../../styles/dist/src/headroom-styles.d.ts","../../styles/dist/src/scrollbar-styles.d.ts","../../styles/dist/src/spinner-styles.d.ts","../../styles/dist/src/tooltip-styles.d.ts","../../styles/dist/src/common-button-styles.d.ts","../../styles/dist/src/common-grist-styles.d.ts","../../styles/dist/src/button-container-styles.d.ts","../../styles/dist/src/index.d.ts","../src/app/app.ts","../src/app/pages/page-404.ts","../../../node_modules/@material/base/foundation.d.ts","../../../node_modules/@material/mwc-base/utils.d.ts","../../../node_modules/@material/base/types.d.ts","../../../node_modules/@material/mwc-base/base-element.d.ts","../../../node_modules/@material/ripple/types.d.ts","../../../node_modules/@material/ripple/adapter.d.ts","../../../node_modules/@material/ripple/foundation.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple-base.d.ts","../../../node_modules/@material/mwc-ripple/mwc-ripple.d.ts","../../../node_modules/@material/mwc-base/aria-property.d.ts","../../../node_modules/@material/mwc-ripple/ripple-handlers.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button-base.d.ts","../../../node_modules/@material/mwc-icon-button/mwc-icon-button.d.ts","../../../node_modules/@material/mwc-icon/mwc-icon.d.ts","../../../node_modules/lit-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.d.ts","../../../node_modules/@material/mwc-button/mwc-button-base.d.ts","../../../node_modules/@material/mwc-button/mwc-button.d.ts","../src/entries/public/home.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.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/mocha/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},"439ece86b8b4d4af78af97e74d373ae1cd657c7169f4dee55038648217ca9fcf","f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980",{"version":"99b772888fd71e82f91719a3a92aaa4fc69b2116caf91bfb64dd5edd77e9f635","signature":"4d4cf93a6b4c81851ad759e4569b6feb7a701e80b13a6f9d8d9c6012bbb86bd6"},{"version":"3c95b84d9e94d627563fb5831f395e301262c97d9c1698eea3fee971df6cb5ef","signature":"2e6035af8f3e43bf95e4983329c8277d66f9b271106af27b99a85d1c1b9daf4a"},{"version":"ceb0826ca35e1d2593e91abca066a1fefbbc6c04cea71a7c85ee9c28c0949fad","signature":"774308610e8d4a9954cd93840f99decbf340accfe3ad7365547950ede8162c92"},{"version":"e4150841614359d71012379b3fff85faeb01ebb5d5e46f5dfb4752f7bcd3fbfa","signature":"36c15dd26c66c97b9df26ce34baacdb13fc760c5b9a2d789dcc317d27b189257"},{"version":"dfdeb58a22299cce8b58be699731b92c6dd396ce52ecaf3c1151e3e6331a6a74","signature":"44a967eeba769bc2a7ea7df4338fa7921cff46a21070f623c13a9053af6bf75d"},{"version":"fd624f7d7b264922476685870f08c5e1c6d6a0f05dee2429a9747b41f6b699d4","affectsGlobalScope":true},"701978f3975f96e76e3ffc2e1762e3a97e3d323812049fb6fdfd559579b89708","d50a158fc581be7b1c51253ad33cb29c0a8ce3c42ca38775ffadf104c36376d0","1f2cdbf59d0b7933678a64ac26ae2818c48ff9ebf93249dde775dc3e173e16bf","05cfea0488751015b0b85911b6cdcde7c6cebdd9b8cada1ec0b5c1736357a552","7bc8c357aad90fb446b9baa522b1bed5901d1a1cbc59a7a658d64546c97999b4","4d5e201faa4bceca840b652dfc10795170c061f498e19429a06e056490aa69aa","74a8a08e5d642a108ae7b23e72bded7b9d784c665458affdfb1770c1b19bcdd1","fc5a5d8060efb1270b9d98ce50e6eb8900cc5229603d7afb73c7f4b4272e0d9c","f8c86fcbfb0a1e69a0ed28d3249cc33c312fa23a39c17e15cbbcc539bdcdc303","85e0f00b17c3ae8cd88438c754a2c43f4a9361e685b97a70e52e33afbf62488f","39d2d450df6efbf38585fd316f18922c8ac3fdfd4c3fc412d0bee34e2bc86378","7470dedadf72566f57f46fa8a8950afe388a4e90935b4e4b3d33add9a611929d","90feb2c17c1fd53720e1dd8738c6660aa14402394bb30caed6f2a7cdd54fea40","75f8b003f4362cb9a9e1d9d8b00c6a1e866868f05b27ede146dd8830b675bdf7","7b61337d7e26f5f9329b74dffb93941388d97b78282f611363d8dafa37d0a2a0","70926949fb828e317443687c9f3b5288e1ef6ec1e5130c1001f406b4ba3665ff","f499d7fb533781939c7a5ab778ac6e6c8ffe65601b1a61a843c36ee0013f05b6","572e62cf5f264524b956685124bdbfd9651c8f628129b627080657281090ea43","c8f7da57a17479145ea922b90a1efb2ff8e8096992bb0a4658606c9fbd944efc","28b3ab6f54b290c19897dff3d4346b7f1caf6e7d2057119ec6332dc1ddf25e85","1e73d612f806d183d6c16c4135c16c1a14dd827c1a67097e72ab1841852bfcb9","f39f94e8457643c4a7361d5a7330c705ae5921067b639228af3e961b9b71ae6f","cb2de9f1d7d286191834eeb331d23dc69eeb322745114ddad1695e4c575b5feb","9238230f389fb9c868643333566c6bf4a1725006958768af29f8c840593d8bca",{"version":"7b48718e216c87c95034533cb162482b9e7d8135b830089e31796aa192b45e29","signature":"641089f0b8094ef74b9d4b3364d5dec1592d5e3b8a51c1ba491bc8872049e79a"},{"version":"7ed9e9171143f9e565a55d9b9e8b52a70946490021141395ed8a6083d2026bc1","signature":"c0dab6e6130fcc1162e18e1d7ee3038525ee9daebaa8f4f221fb67440ae38509"},"1171e4dfda53f093511e29b1f993a21fca24925055640cacc94226eefb7bb062","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"4d180dd4d0785f2cd140bc069d56285d0121d95b53e4348feb4f62db2d7035d3","66e64ed8de436d3ceabe6c3f59dd0a39a5237991bccfda5751c78d129e436f68",{"version":"93621eb03f607927957920ba4eef6f8b6fb0898ed79e848cc533344907b8f1eb","signature":"7af29b0589483f7bb8a99405ddb849f34bc053146184561ed4179e02f5fe4d0f"},{"version":"aeb7e98e44ccf93b887e377de3182b9382e8b0f8047eae1f40eca0985486280a","signature":"7611542379a72f7b8a92110271908b9d1913d72a581e14a779491c9083dc33db"},{"version":"c49b0e5a71a930657eb78879ffd2eeb2908fdd06ab79641da36429adce1a8ab3","signature":"4ab17f80ced148d509345cee706b2b85941515dd76e32cf47118bcdf6a4bd56a","affectsGlobalScope":true},{"version":"740cb9304e6498873ad5c53d86c78e1c3027befe245f8afa11d19ccd073fe74c","signature":"9197b3ca76c01df6120b4ee288fe2d08f8a2089221da97956bee402de0ffd37e"},{"version":"dbafe8734014446e224714be75f829f12ec13242f8b1b69728317ae9299bf742","signature":"d8afb84d78023735e55f1b96e06b3e221eb7ce5473ca1c93564d30e7efb0f991"},"52dd370c807255c61765347fc90a9bee3c522b8744dc222714e2bf6b5be3a823","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a","3cbcdf2a84c93c6b62d8d4584f613c8af7c6330ac2ba1ff781d10a3e0935beb9","2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38",{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true},"c567d37119d6f56381af48eb7516030ccf35a36f9aca045e238d9c207a7c536c","aae185c19d58ae87321fe0a24a7daef3ece43c2ad1c110e33f147a56e513ab30","eba7cf33380cc3a3cf614faf67300e14d0bdff9ea6c5cd6f4b040b1756a48ab1","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","241000969e5367a9a9b9a4f57963e54e5a012c9d89c273526c0115650a7b9e5f","ac388c7c7a262213a3700451bc921e382a93fb27c0252c34ccf03540b4ce044b","097a7e3badfd1c4b35f72aa0f722f5714a4f6a84e53fca5a79dcfebbfc5e718d","fb0107c83e2e0e75b77dacd0c3c6c3ab6844e98dce2a8f858c6f0a57c12136a6","0a478dcb6e6bd8a5d871165659c79cee7b8c3b7a87289118d22e1a04d171e252","e385eb01000d045ea07cea09c488f66e051709a9ac460bf271623f9984e0c419","bf69beba89702c85d84546269e0d4e8b128d32e26b314ee9b501b0b32c82490b","46f3a421b048670d16a3c02589261f17c1cea687f2602eed31e1335b53aed785","4bcb813ea56182beaaab1e8274524eb9f1449b0d8e79efc4a0399de09e43f816","c784eab1cf838d9d6527bce3d9f2d373145606666b68f7610291a7adf6e6bda9","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","da66c1b3e50ef9908e31ce7a281b137b2db41423c2b143c62524f97a536a53d9",{"version":"831c69ecdbfd9b1a941199093a398ff621df5e6461585a36b002d35f86bd4d39","signature":"6bf72b2541469cac7a7882468d25a04fdff489625452ff7d3e670c764e5a9ba1"},{"version":"5b1fa5987c8c265c4ead30dea4416291f8000e2e9aca14534e4e010610fc04f8","signature":"9d696793a977926a52f6a244917ef8ca205f1a105654a0ec277105e35570bf57"},{"version":"4f1a2df041b302d49a7637e72f2a48d04f84d4a738e01d4351aff891f93a6cc4","signature":"fc48282c397084016a939e1b3f91dcaf4199b6cba339d91d8b2dc2acade79762"},{"version":"7a9b5d885b67d43f2aff182b88b0e79630613fddc88d73db9f3c9a21fec40244","signature":"561e8c7af0e65a4ea90af6b43a54399db172aec993f14981ff45769ee8b6a33e"},"23c05cc4d97aa608b5ea8badadb4e1b0c4e306ed5d651c5d1760552e91d1ad92","452807fa3050dbc39caf1ffd2e9cf9b36e719e36ee062f6adebe50be426790d3","cf93fb9208a01c80f0fad245c4360356e5de6c2384b7641acf0b9cc2f5c42448","336398b0efaf964124e636a9b29c4edd5870aee79ac64bf87be58a9d66b7c048","571bc65ec37ba124e762bb822e14a2b8502dc684e356be8feaccbd6b9cadd023","2bbbefc1235500bdb5091f240dc8cba861a95342272f7d11b7574a0d2ef4f85e","7cd455fc4c4818f19263d73b29c59f3fb5fd54b45a6ab83ca3eb3661281db56b","1c6b9b5501774a2ece6574be8e26092800e3f1f836f8c179b4f9fdd271a620f8","bcd2426fd141157e04e3a8eff914b575403587f398cf0878f07c2f283e0d1afd","33fd0884c97e9999b9dc573334d46af764e6e3d209b92e6283d854d792dc151f",{"version":"cd6e5c223922f1b1bf2a35a08f2b81968b271e0ed162fa46f73269e16e104101","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f61767413d019de6565fb8a382405ae71b71344a7dfbf272cfbf8a8f5364ceb9","signature":"fdec01c831cb7c40699061016742faf26811b5690fde7ce414d0c7a3780a09ee"},"a0667520a6521c12128fc28cbd5b2af58eef11c5b2a7441e0f0d47f50bf6c8e3","0dcf4c2bf1bb547e2ae5b8dce4656a56fbd15e3401ff5236ea0b93b6c60f9249","820c26194ad4089bc503b02bbedbd86a865e9c8a05c58ef88c8d19d9c019712a","790b453e1b76814112c3870d6e12f5db992d3194fdb3529445317dd75cb538be","d375de88ab19f6c105a65fc89eca1ae782362c5c395283b0c85ef39c7b835dfe","aeda2fffbc651fe1fa60b913d45f291f5544c4840206cb3b1badc16d9f01a0f0","7b3c1d688dcb8645b5a6c37bce5b047da92b4c298ed8709e03e987e0efb035b1","29c64e1acb5b73f08a60e71154c65c8a34f885f1f2cc55ffa06dfd244c058883",{"version":"7d176f155e5f6fc9756ddcc1a6d3eb2673030a066e2b7846dfc81b5271f3e269","affectsGlobalScope":true},"024fea9ee598cfe747f18340ad74e4ea428fc2a7988250ff9fcfce5673b7d422","aea18a267a0770c365cc390ad0a0b9725ed7a4540e9a96319b0f5094ee0ca124","a5a7c7d197c7b1918bddb0dd30bf8979a38828b24467ec45db093bf4621507ef",{"version":"afcd875785333f656f79bf1b3a445ceecc6aaf8e2b7cde59309a8778f41de613","affectsGlobalScope":true},{"version":"27b285e901600242883d62a5fff9f5d262c6fa128b6e6c6963f981f2630a957e","affectsGlobalScope":true},"147cb5b590b77c8c58e4ef0af1ff11ee90ee2b34262816df0665b6ff8fd50aad","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","ae1351ed65b27a2b29a70a238024c957910e944aabbffce286099ed2b04f9baf",{"version":"3c19b3fb2f88bbd8f103fe2de0d6c0700dd9bf6678553f6db803162620b49e27","affectsGlobalScope":true},{"version":"189a87911d606781877614ad113ea2fe307de05dddc1891b49a4c196b67d77b6","signature":"79f6932003c4c5650124a7b5a0ff908f775ff9d60bf2519ab4c3dc5c622e48b4"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":5,"useDefineForClassFields":false},"fileIdsList":[[200],[99,200],[107,200],[99,107,200],[99,107,115,200],[97,98,200],[106,135,136,137,200],[106,143,144,145,148,150,200],[106,151,200],[106,143,144,145,200],[106,146,200],[106,200],[106,136,138,140,141,200],[106,142,200],[136,200],[137,139,200],[135,140,200],[89,200],[77,79,80,81,82,83,84,85,86,87,88,89,200],[77,78,80,81,82,83,84,85,86,87,88,89,200],[78,79,80,81,82,83,84,85,86,87,88,89,200],[77,78,79,81,82,83,84,85,86,87,88,89,200],[77,78,79,80,82,83,84,85,86,87,88,89,200],[77,78,79,80,81,83,84,85,86,87,88,89,200],[77,78,79,80,81,82,84,85,86,87,88,89,200],[77,78,79,80,81,82,83,85,86,87,88,89,200],[77,78,79,80,81,82,83,84,86,87,88,89,200],[77,78,79,80,81,82,83,84,85,87,88,89,200],[77,78,79,80,81,82,83,84,85,86,88,89,200],[77,78,79,80,81,82,83,84,85,86,87,89,200],[77,78,79,80,81,82,83,84,85,86,87,88,200],[154,200],[157,200],[158,163,191,200],[159,170,171,178,188,199,200],[159,160,170,178,200],[161,200],[162,163,171,179,200],[163,188,196,200],[164,166,170,178,200],[165,200],[166,167,200],[170,200],[168,170,200],[170,171,172,188,199,200],[170,171,172,185,188,191,200],[200,204],[166,173,178,188,199,200],[170,171,173,174,178,188,196,199,200],[173,175,188,196,199,200],[154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,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],[170,176,200],[177,199,200],[166,170,178,188,200],[179,200],[180,200],[157,181,200],[182,198,200,204],[183,200],[184,200],[170,185,186,200],[185,187,200,202],[158,170,188,189,190,191,200],[158,188,190,200],[188,189,200],[191,200],[192,200],[170,194,195,200],[194,195,200],[163,178,188,196,200],[197,200],[178,198,200],[158,173,184,199,200],[163,200],[188,200,201],[200,202],[200,203],[158,163,170,172,181,188,199,200,202,204],[188,200,205],[100,200],[99,103,200],[103,200],[102,103,200],[101,102,200],[108,109,110,111,112,113,114,115,116,200],[149,200],[99,103,104,105,200],[50,200],[50,52,200],[44,200],[44,75,92,95,200],[44,74,92,94,200],[44,106,200],[43,44,74,94,96,106,117,122,123,124,132,200],[44,106,117,119,200],[44,92,94,106,117,118,200],[44,106,117,147,152,200],[44,49,94,96,119,200],[44,74,75,200],[44,90,91,92,200],[44,50,51,53,76,93,200],[44,45,46,47,48,200],[44,46,47,200],[44,45,46,48,200],[125,126,127,128,129,130,131,200],[54,55,56,57,58,59,60,61,62,63,64,67,68,69,70,71,72,73,200],[65,66,200],[66,200],[65,200],[75,92,95],[106],[103,106,119],[103,106,147,152],[49,94,96,119],[50,51],[45,46,47,48],[46,47],[45,46,48]],"referencedMap":[[97,1],[107,2],[108,3],[111,4],[109,4],[113,4],[116,5],[115,1],[114,4],[112,4],[110,3],[98,1],[99,6],[135,1],[137,1],[144,1],[138,7],[136,1],[151,8],[152,9],[146,10],[147,11],[148,12],[142,13],[143,14],[145,15],[140,16],[141,17],[139,1],[118,18],[90,18],[78,19],[79,20],[77,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[208,1],[154,32],[155,32],[157,33],[158,34],[159,35],[160,36],[161,37],[162,38],[163,39],[164,40],[165,41],[166,42],[167,42],[169,43],[168,44],[170,43],[171,45],[172,46],[156,47],[206,1],[173,48],[174,49],[175,50],[207,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,57],[182,58],[183,59],[184,60],[185,61],[186,61],[187,62],[188,63],[190,64],[189,65],[191,66],[192,67],[193,1],[194,68],[195,69],[196,70],[197,71],[198,72],[199,73],[200,74],[201,75],[202,76],[203,77],[204,78],[205,79],[101,80],[100,1],[104,81],[102,82],[149,83],[105,1],[103,84],[117,85],[150,86],[106,87],[123,88],[51,88],[91,1],[124,1],[53,89],[52,88],[50,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[43,1],[75,90],[92,90],[96,91],[95,92],[122,93],[133,94],[134,95],[119,96],[153,97],[120,98],[121,90],[76,99],[93,100],[94,101],[45,90],[49,102],[48,103],[47,104],[46,90],[131,12],[129,1],[130,12],[125,12],[132,105],[126,12],[127,12],[128,12],[70,1],[55,1],[68,1],[63,1],[57,1],[64,1],[73,1],[56,1],[69,1],[60,1],[74,106],[71,1],[58,1],[61,1],[62,1],[54,1],[72,1],[59,1],[67,107],[65,108],[66,109]],"exportedModulesMap":[[97,1],[107,2],[108,3],[111,4],[109,4],[113,4],[116,5],[115,1],[114,4],[112,4],[110,3],[98,1],[99,6],[135,1],[137,1],[144,1],[138,7],[136,1],[151,8],[152,9],[146,10],[147,11],[148,12],[142,13],[143,14],[145,15],[140,16],[141,17],[139,1],[118,18],[90,18],[78,19],[79,20],[77,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[208,1],[154,32],[155,32],[157,33],[158,34],[159,35],[160,36],[161,37],[162,38],[163,39],[164,40],[165,41],[166,42],[167,42],[169,43],[168,44],[170,43],[171,45],[172,46],[156,47],[206,1],[173,48],[174,49],[175,50],[207,51],[176,52],[177,53],[178,54],[179,55],[180,56],[181,57],[182,58],[183,59],[184,60],[185,61],[186,61],[187,62],[188,63],[190,64],[189,65],[191,66],[192,67],[193,1],[194,68],[195,69],[196,70],[197,71],[198,72],[199,73],[200,74],[201,75],[202,76],[203,77],[204,78],[205,79],[101,80],[100,1],[104,81],[102,82],[149,83],[105,1],[103,84],[117,85],[150,86],[106,87],[123,88],[51,88],[91,1],[124,1],[53,89],[52,88],[50,1],[44,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[43,1],[96,110],[122,111],[134,112],[119,111],[153,113],[120,114],[94,115],[49,116],[48,117],[47,118],[131,12],[129,1],[130,12],[125,12],[132,105],[126,12],[127,12],[128,12],[70,1],[55,1],[68,1],[63,1],[57,1],[64,1],[73,1],[56,1],[69,1],[60,1],[74,106],[71,1],[58,1],[61,1],[62,1],[54,1],[72,1],[59,1],[67,107],[65,108],[66,109]],"semanticDiagnosticsPerFile":[97,107,108,111,109,113,116,115,114,112,110,98,99,135,137,144,138,136,151,152,146,147,148,142,143,145,140,141,139,118,90,78,79,77,80,81,82,83,84,85,86,87,88,89,208,154,155,157,158,159,160,161,162,163,164,165,166,167,169,168,170,171,172,156,206,173,174,175,207,176,177,178,179,180,181,182,183,184,185,186,187,188,190,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,101,100,104,102,149,105,103,117,150,106,123,51,91,124,53,52,50,44,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,43,75,92,96,95,122,133,134,119,153,120,121,76,93,94,45,49,48,47,46,131,129,130,125,132,126,127,128,70,55,68,63,57,64,73,56,69,60,74,71,58,61,62,54,72,59,67,65,66]},"version":"4.9.5"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/shell",
3
3
  "description": "WebApplication architecturing shell following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "1.2.11",
5
+ "version": "1.2.16",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -99,5 +99,5 @@
99
99
  "prettier --write"
100
100
  ]
101
101
  },
102
- "gitHead": "7280ba28cb8d80f58556be3107132b9b7be104dd"
102
+ "gitHead": "d29535ddeeb6c1553eb41e657a54de91c8f84333"
103
103
  }
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './types'
1
2
  export * from './store'
2
3
  export * from './actions'
3
4
  export * from './app/pages/page-view'
@@ -0,0 +1,22 @@
1
+ export class Domain {
2
+ readonly id?: string
3
+
4
+ name?: string
5
+ description?: string
6
+
7
+ subdomain?: string
8
+
9
+ extType?: string
10
+ timezone?: string
11
+ systemFlag?: boolean
12
+
13
+ brandName?: string
14
+ brandImage?: string
15
+ contentImage?: string
16
+
17
+ owner?: string
18
+ theme?: string
19
+
20
+ createdAt?: Date
21
+ updatedAt?: Date
22
+ }
@@ -0,0 +1,4 @@
1
+ export * from './domain'
2
+ export * from './privilege'
3
+ export * from './role'
4
+ export * from './user'
@@ -0,0 +1,28 @@
1
+ import { Role } from './role'
2
+ import { User } from './user'
3
+
4
+ export class Privilege {
5
+ id?: string
6
+
7
+ name?: string
8
+
9
+ category?: string
10
+
11
+ nullable?: true
12
+
13
+ description?: string
14
+
15
+ roles?: Role[]
16
+
17
+ creator?: User
18
+
19
+ creatorId?: string
20
+
21
+ updater?: User
22
+
23
+ updaterId?: string
24
+
25
+ createdAt?: Date
26
+
27
+ updatedAt?: Date
28
+ }
@@ -0,0 +1,33 @@
1
+ import { Domain } from './domain'
2
+ import { User } from './user'
3
+ import { Privilege } from './privilege'
4
+
5
+ export class Role {
6
+ readonly id?: string
7
+
8
+ domain?: Domain
9
+
10
+ domainId?: string
11
+
12
+ name?: string
13
+
14
+ users?: User[]
15
+
16
+ privileges?: Privilege[]
17
+
18
+ nullable?: true
19
+
20
+ description?: string
21
+
22
+ creator?: User
23
+
24
+ creatorId?: string
25
+
26
+ updater?: User
27
+
28
+ updaterId?: string
29
+
30
+ createdAt?: Date
31
+
32
+ updatedAt?: Date
33
+ }
@@ -0,0 +1,23 @@
1
+ export enum UserStatus {
2
+ INACTIVE = 'inactive',
3
+ ACTIVATED = 'activated',
4
+ DELETED = 'deleted',
5
+ LOCKED = 'locked',
6
+ BANNED = 'banned',
7
+ PWD_RESET_REQUIRED = 'password_reset_required'
8
+ }
9
+
10
+ export class User {
11
+ readonly id?: string
12
+
13
+ name?: string
14
+ description?: string
15
+
16
+ email?: string
17
+
18
+ creator?: User
19
+ updater?: User
20
+
21
+ createdAt?: Date
22
+ updatedAt?: Date
23
+ }
@@ -1,26 +0,0 @@
1
- /// <reference types="sweetalert2" />
2
- /**
3
- * Custom Alert utilized sweetalert2 to produce a simple pop-up message box.
4
- * *Side note: Did not fully utilize sweet alert capability, just added some common usage.
5
- * @param {string} type - ['success', 'error', 'warning', 'info', 'question']
6
- * @param {string} icon - ['success', 'error', 'warning', 'info', 'question']
7
- * @param {string} title - Title for the message box.
8
- * @param {string} text - Description for the message box. Input can be in html format.
9
- * @param {string} footer - Footer message. Input can be in html format
10
- * @param {string} [position = 'center'] - Position of the message box. ['top', 'top-start', 'top-end', 'center', 'center-start', 'center-end', 'bottom', 'bottom-start', 'bottom-end']
11
- * @param {boolean} toast - Set to 'True' to display as toast.
12
- * @param {object} confirmButton - Confirm button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.
13
- * text is the required field of the object. When the object is populated, the confirm button will automatically shown.
14
- * @param {object} cancelButton - Cancel button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.
15
- * text is the required field of the object. When the object is populated, the cancel button will automatically shown.
16
- * @param {boolean} [invertButton = false] - Invert button to swap the position of the buttons.
17
- * eg. Confirm button on the right, Cancel button on the left.
18
- * @param {function} callback - Accepts a function with an input parameter. Will invoked after swal.fire. It is a promise chaining function.
19
- * @param {function} onBeforeOpen - Accepts a function with no parameter. Function to run when modal built, but not shown yet. Provides modal DOM element as the first argument.
20
- * @param {function} onOpen - Accepts a function with no parameter. Function to run when modal opens, provides modal DOM element as the first argument.
21
- * @param {function} onRender - Accepts a function with no parameter. Function to run after modal DOM has been updated. eg. After Swal.fire() or Swal.update()
22
- * @param {function} onClose - Accepts a function with no parameter. Function to run when modal closes, provides modal DOM element as the first argument.
23
- * @param {function} onAfterClose - Accepts a function with no parameter. Function to run after modal has been disposed.
24
- * @param {boolean} [debug = false] - Check all parameters are set properly. When set to 'true', simple checking will be done on the input parameters to verify the type.
25
- */
26
- export declare function CustomAlert({ type, icon, title, text, allowOutsideClick, allowEscapeKey, footer, position, toast, timer, confirmButton, cancelButton, invertButton, callback, onBeforeOpen, onOpen, onRender, onClose, onAfterClose, debug }: any): Promise<import("sweetalert2").SweetAlertResult<any> | undefined>;
@@ -1,98 +0,0 @@
1
- import Swal from 'sweetalert2';
2
- /**
3
- * Custom Alert utilized sweetalert2 to produce a simple pop-up message box.
4
- * *Side note: Did not fully utilize sweet alert capability, just added some common usage.
5
- * @param {string} type - ['success', 'error', 'warning', 'info', 'question']
6
- * @param {string} icon - ['success', 'error', 'warning', 'info', 'question']
7
- * @param {string} title - Title for the message box.
8
- * @param {string} text - Description for the message box. Input can be in html format.
9
- * @param {string} footer - Footer message. Input can be in html format
10
- * @param {string} [position = 'center'] - Position of the message box. ['top', 'top-start', 'top-end', 'center', 'center-start', 'center-end', 'bottom', 'bottom-start', 'bottom-end']
11
- * @param {boolean} toast - Set to 'True' to display as toast.
12
- * @param {object} confirmButton - Confirm button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.
13
- * text is the required field of the object. When the object is populated, the confirm button will automatically shown.
14
- * @param {object} cancelButton - Cancel button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.
15
- * text is the required field of the object. When the object is populated, the cancel button will automatically shown.
16
- * @param {boolean} [invertButton = false] - Invert button to swap the position of the buttons.
17
- * eg. Confirm button on the right, Cancel button on the left.
18
- * @param {function} callback - Accepts a function with an input parameter. Will invoked after swal.fire. It is a promise chaining function.
19
- * @param {function} onBeforeOpen - Accepts a function with no parameter. Function to run when modal built, but not shown yet. Provides modal DOM element as the first argument.
20
- * @param {function} onOpen - Accepts a function with no parameter. Function to run when modal opens, provides modal DOM element as the first argument.
21
- * @param {function} onRender - Accepts a function with no parameter. Function to run after modal DOM has been updated. eg. After Swal.fire() or Swal.update()
22
- * @param {function} onClose - Accepts a function with no parameter. Function to run when modal closes, provides modal DOM element as the first argument.
23
- * @param {function} onAfterClose - Accepts a function with no parameter. Function to run after modal has been disposed.
24
- * @param {boolean} [debug = false] - Check all parameters are set properly. When set to 'true', simple checking will be done on the input parameters to verify the type.
25
- */
26
- export async function CustomAlert({ type = 'info', icon, title, text, allowOutsideClick = true, allowEscapeKey = true, footer, position = 'center', toast, timer, confirmButton = {}, cancelButton = {}, invertButton = false, callback, onBeforeOpen, onOpen, onRender, onClose, onAfterClose, debug = false }) {
27
- try {
28
- if (debug) {
29
- let arrTypes = ['success', 'error', 'warning', 'info', 'question'];
30
- let err = '';
31
- if (!arrTypes.includes(type)) {
32
- err = err + 'Invalid Alert Type.\n';
33
- }
34
- if (title && typeof title !== 'string')
35
- err = err + 'Invalid Title.\n';
36
- if (text && typeof text !== 'string')
37
- err = err + 'Invalid Text.\n';
38
- if (footer && typeof text !== 'string')
39
- err = err + 'Invalid Footer.\n';
40
- if (typeof position !== 'string')
41
- err = err + 'Invalid Position.\n';
42
- if (toast && typeof toast !== 'boolean')
43
- err = err + 'Invalid Footer.\n';
44
- if (Object.keys(confirmButton).length > 0 &&
45
- (typeof confirmButton !== 'object' || !confirmButton.hasOwnProperty('text')))
46
- err = err + 'Invalid Confirm Button.\n';
47
- if (Object.keys(cancelButton).length > 0 &&
48
- (typeof cancelButton !== 'object' || !cancelButton.hasOwnProperty('text')))
49
- err = err + 'Invalid Cancel Button.\n';
50
- if (err !== '')
51
- throw new Error(err);
52
- }
53
- const result = await Swal.fire({
54
- icon: icon || type,
55
- title: title,
56
- text: text,
57
- timer: timer ? timer : 0,
58
- timerProgressBar: timer ? true : 0,
59
- allowOutsideClick: allowOutsideClick,
60
- allowEscapeKey: allowEscapeKey,
61
- footer: footer,
62
- position: position,
63
- showConfirmButton: Object.keys(confirmButton).length > 0 ? true : false,
64
- showCancelButton: Object.keys(cancelButton).length > 0 ? true : false,
65
- confirmButtonText: confirmButton.hasOwnProperty('text') ? confirmButton.text : 'confirm',
66
- cancelButtonText: cancelButton.hasOwnProperty('text') ? cancelButton.text : 'cancel',
67
- confirmButtonColor: confirmButton.hasOwnProperty('color') ? confirmButton.color : '#22a6a7',
68
- cancelButtonColor: cancelButton.hasOwnProperty('color') ? cancelButton.color : '#cfcfcf',
69
- toast: toast,
70
- reverseButtons: invertButton,
71
- willOpen: () => {
72
- onBeforeOpen ? onBeforeOpen() : undefined;
73
- },
74
- didOpen: () => {
75
- onOpen ? onOpen() : undefined;
76
- },
77
- didRender: () => {
78
- onRender ? onRender() : undefined;
79
- },
80
- willClose: () => {
81
- onClose ? onClose() : undefined;
82
- },
83
- didClose: () => {
84
- onAfterClose ? onAfterClose() : undefined;
85
- }
86
- });
87
- if (callback && typeof callback === 'function') {
88
- callback(result);
89
- }
90
- else {
91
- return Promise.resolve(result);
92
- }
93
- }
94
- catch (error) {
95
- console.log('%c(Custom-Alert)\n' + error, 'color:Red');
96
- }
97
- }
98
- //# sourceMappingURL=custom-alert.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"custom-alert.js","sourceRoot":"","sources":["../../../src/elements/custom-alert.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,aAAa,CAAA;AAE9B;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAEH,MAAM,CAAC,KAAK,UAAU,WAAW,CAAC,EAChC,IAAI,GAAG,MAAM,EACb,IAAI,EACJ,KAAK,EACL,IAAI,EACJ,iBAAiB,GAAG,IAAI,EACxB,cAAc,GAAG,IAAI,EACrB,MAAM,EACN,QAAQ,GAAG,QAAQ,EACnB,KAAK,EACL,KAAK,EACL,aAAa,GAAG,EAAE,EAClB,YAAY,GAAG,EAAE,EACjB,YAAY,GAAG,KAAK,EACpB,QAAQ,EACR,YAAY,EACZ,MAAM,EACN,QAAQ,EACR,OAAO,EACP,YAAY,EACZ,KAAK,GAAG,KAAK,EACT;IACJ,IAAI;QACF,IAAI,KAAK,EAAE;YACT,IAAI,QAAQ,GAAG,CAAC,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,UAAU,CAAC,CAAA;YAClE,IAAI,GAAG,GAAG,EAAE,CAAA;YACZ,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;gBAC5B,GAAG,GAAG,GAAG,GAAG,uBAAuB,CAAA;aACpC;YAED,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ;gBAAE,GAAG,GAAG,GAAG,GAAG,kBAAkB,CAAA;YACtE,IAAI,IAAI,IAAI,OAAO,IAAI,KAAK,QAAQ;gBAAE,GAAG,GAAG,GAAG,GAAG,iBAAiB,CAAA;YACnE,IAAI,MAAM,IAAI,OAAO,IAAI,KAAK,QAAQ;gBAAE,GAAG,GAAG,GAAG,GAAG,mBAAmB,CAAA;YACvE,IAAI,OAAO,QAAQ,KAAK,QAAQ;gBAAE,GAAG,GAAG,GAAG,GAAG,qBAAqB,CAAA;YACnE,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,SAAS;gBAAE,GAAG,GAAG,GAAG,GAAG,mBAAmB,CAAA;YACxE,IACE,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,MAAM,GAAG,CAAC;gBACrC,CAAC,OAAO,aAAa,KAAK,QAAQ,IAAI,CAAC,aAAa,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;gBAE5E,GAAG,GAAG,GAAG,GAAG,2BAA2B,CAAA;YACzC,IACE,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,MAAM,GAAG,CAAC;gBACpC,CAAC,OAAO,YAAY,KAAK,QAAQ,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;gBAE1E,GAAG,GAAG,GAAG,GAAG,0BAA0B,CAAA;YAExC,IAAI,GAAG,KAAK,EAAE;gBAAE,MAAM,IAAI,KAAK,CAAC,GAAG,CAAC,CAAA;SACrC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC;YAC7B,IAAI,EAAE,IAAI,IAAI,IAAI;YAClB,KAAK,EAAE,KAAK;YACZ,IAAI,EAAE,IAAI;YACV,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YACxB,gBAAgB,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;YAClC,iBAAiB,EAAE,iBAAiB;YACpC,cAAc,EAAE,cAAc;YAC9B,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,QAAQ;YAClB,iBAAiB,EAAE,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;YACvE,gBAAgB,EAAE,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK;YACrE,iBAAiB,EAAE,aAAa,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS;YACxF,gBAAgB,EAAE,YAAY,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ;YACpF,kBAAkB,EAAE,aAAa,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS;YAC3F,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS;YACxF,KAAK,EAAE,KAAK;YACZ,cAAc,EAAE,YAAY;YAC5B,QAAQ,EAAE,GAAG,EAAE;gBACb,YAAY,CAAC,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;YAC3C,CAAC;YACD,OAAO,EAAE,GAAG,EAAE;gBACZ,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;YAC/B,CAAC;YACD,SAAS,EAAE,GAAG,EAAE;gBACd,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;YACnC,CAAC;YACD,SAAS,EAAE,GAAG,EAAE;gBACd,OAAO,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;YACjC,CAAC;YACD,QAAQ,EAAE,GAAG,EAAE;gBACb,YAAY,CAAC,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,SAAS,CAAA;YAC3C,CAAC;SACK,CAAC,CAAA;QAET,IAAI,QAAQ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;YAC9C,QAAQ,CAAC,MAAM,CAAC,CAAA;SACjB;aAAM;YACL,OAAO,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;SAC/B;KACF;IAAC,OAAO,KAAK,EAAE;QACd,OAAO,CAAC,GAAG,CAAC,oBAAoB,GAAG,KAAK,EAAE,WAAW,CAAC,CAAA;KACvD;AACH,CAAC","sourcesContent":["import Swal from 'sweetalert2'\n\n/**\n * Custom Alert utilized sweetalert2 to produce a simple pop-up message box.\n * *Side note: Did not fully utilize sweet alert capability, just added some common usage.\n * @param {string} type - ['success', 'error', 'warning', 'info', 'question']\n * @param {string} icon - ['success', 'error', 'warning', 'info', 'question']\n * @param {string} title - Title for the message box.\n * @param {string} text - Description for the message box. Input can be in html format.\n * @param {string} footer - Footer message. Input can be in html format\n * @param {string} [position = 'center'] - Position of the message box. ['top', 'top-start', 'top-end', 'center', 'center-start', 'center-end', 'bottom', 'bottom-start', 'bottom-end']\n * @param {boolean} toast - Set to 'True' to display as toast.\n * @param {object} confirmButton - Confirm button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.\n * text is the required field of the object. When the object is populated, the confirm button will automatically shown.\n * @param {object} cancelButton - Cancel button is an object type. The text and color of the button can be changed by adding 'text' or 'color' property into the object.\n * text is the required field of the object. When the object is populated, the cancel button will automatically shown.\n * @param {boolean} [invertButton = false] - Invert button to swap the position of the buttons.\n * eg. Confirm button on the right, Cancel button on the left.\n * @param {function} callback - Accepts a function with an input parameter. Will invoked after swal.fire. It is a promise chaining function.\n * @param {function} onBeforeOpen - Accepts a function with no parameter. Function to run when modal built, but not shown yet. Provides modal DOM element as the first argument.\n * @param {function} onOpen - Accepts a function with no parameter. Function to run when modal opens, provides modal DOM element as the first argument.\n * @param {function} onRender - Accepts a function with no parameter. Function to run after modal DOM has been updated. eg. After Swal.fire() or Swal.update()\n * @param {function} onClose - Accepts a function with no parameter. Function to run when modal closes, provides modal DOM element as the first argument.\n * @param {function} onAfterClose - Accepts a function with no parameter. Function to run after modal has been disposed.\n * @param {boolean} [debug = false] - Check all parameters are set properly. When set to 'true', simple checking will be done on the input parameters to verify the type.\n */\n\nexport async function CustomAlert({\n type = 'info',\n icon,\n title,\n text,\n allowOutsideClick = true,\n allowEscapeKey = true,\n footer,\n position = 'center',\n toast,\n timer,\n confirmButton = {},\n cancelButton = {},\n invertButton = false,\n callback,\n onBeforeOpen,\n onOpen,\n onRender,\n onClose,\n onAfterClose,\n debug = false\n}: any) {\n try {\n if (debug) {\n let arrTypes = ['success', 'error', 'warning', 'info', 'question']\n let err = ''\n if (!arrTypes.includes(type)) {\n err = err + 'Invalid Alert Type.\\n'\n }\n\n if (title && typeof title !== 'string') err = err + 'Invalid Title.\\n'\n if (text && typeof text !== 'string') err = err + 'Invalid Text.\\n'\n if (footer && typeof text !== 'string') err = err + 'Invalid Footer.\\n'\n if (typeof position !== 'string') err = err + 'Invalid Position.\\n'\n if (toast && typeof toast !== 'boolean') err = err + 'Invalid Footer.\\n'\n if (\n Object.keys(confirmButton).length > 0 &&\n (typeof confirmButton !== 'object' || !confirmButton.hasOwnProperty('text'))\n )\n err = err + 'Invalid Confirm Button.\\n'\n if (\n Object.keys(cancelButton).length > 0 &&\n (typeof cancelButton !== 'object' || !cancelButton.hasOwnProperty('text'))\n )\n err = err + 'Invalid Cancel Button.\\n'\n\n if (err !== '') throw new Error(err)\n }\n\n const result = await Swal.fire({\n icon: icon || type,\n title: title,\n text: text,\n timer: timer ? timer : 0,\n timerProgressBar: timer ? true : 0,\n allowOutsideClick: allowOutsideClick,\n allowEscapeKey: allowEscapeKey,\n footer: footer,\n position: position,\n showConfirmButton: Object.keys(confirmButton).length > 0 ? true : false,\n showCancelButton: Object.keys(cancelButton).length > 0 ? true : false,\n confirmButtonText: confirmButton.hasOwnProperty('text') ? confirmButton.text : 'confirm',\n cancelButtonText: cancelButton.hasOwnProperty('text') ? cancelButton.text : 'cancel',\n confirmButtonColor: confirmButton.hasOwnProperty('color') ? confirmButton.color : '#22a6a7',\n cancelButtonColor: cancelButton.hasOwnProperty('color') ? cancelButton.color : '#cfcfcf',\n toast: toast,\n reverseButtons: invertButton,\n willOpen: () => {\n onBeforeOpen ? onBeforeOpen() : undefined\n },\n didOpen: () => {\n onOpen ? onOpen() : undefined\n },\n didRender: () => {\n onRender ? onRender() : undefined\n },\n willClose: () => {\n onClose ? onClose() : undefined\n },\n didClose: () => {\n onAfterClose ? onAfterClose() : undefined\n }\n } as any)\n\n if (callback && typeof callback === 'function') {\n callback(result)\n } else {\n return Promise.resolve(result)\n }\n } catch (error) {\n console.log('%c(Custom-Alert)\\n' + error, 'color:Red')\n }\n}\n"]}