@digital-realty/ix-toast 1.1.8 → 1.3.1-alpha.1

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.
@@ -1,5 +1,4 @@
1
1
  import { render, html, css, LitElement } from 'lit';
2
- import { v4 as uuidv4 } from 'uuid';
3
2
  import './ToastDemo.js';
4
3
  import '../dist/src/ix-toasters.js';
5
4
  import '../dist/src/ix-message-toast.js';
@@ -12,11 +11,11 @@ class ToasterDemo extends LitElement {
12
11
  }
13
12
 
14
13
  .p-2 {
15
- padding: 0.5rem;
14
+ padding: 0.5rem;
16
15
  }
17
16
 
18
17
  .m-2 {
19
- margin: 0.5rem;
18
+ margin: 0.5rem;
20
19
  }
21
20
  `;
22
21
 
@@ -28,7 +27,7 @@ class ToasterDemo extends LitElement {
28
27
 
29
28
  constructor() {
30
29
  super();
31
- this._uuid = uuidv4();
30
+ this._uuid = crypto.randomUUID();
32
31
  this._popupNo = 1;
33
32
  }
34
33
 
@@ -48,7 +47,7 @@ class ToasterDemo extends LitElement {
48
47
  above: formData.get('above') === 'on' ? true : false,
49
48
  } });
50
49
  window.dispatchEvent(event);
51
- this._uuid = uuidv4();
50
+ this._uuid = crypto.randomUUID();
52
51
  this._popupNo += 1;
53
52
  return formData;
54
53
  }
@@ -165,7 +164,7 @@ class ToasterDemo extends LitElement {
165
164
  <div slot="heading">A heading</div>
166
165
  Hello world error</ix-message-toast>
167
166
  <button type="button" @click=${() => this.createToast({content: html`hello world`})}>Make simple toast</button>
168
- <button type="button" @click=${() => this.createMessageToast({id: uuidv4()})}>Make message toast</button>
167
+ <button type="button" @click=${() => this.createMessageToast({id: crypto.randomUUID()})}>Make message toast</button>
169
168
  `
170
169
  };
171
170
 
@@ -3,13 +3,12 @@ import { html, LitElement, css } from 'lit';
3
3
  import { classMap } from 'lit/directives/class-map.js';
4
4
  import { animate, AnimateController } from '@lit-labs/motion';
5
5
  import { property, state } from 'lit/decorators.js';
6
- import { v4 as uuidv4 } from 'uuid';
7
6
  export class IxToast extends LitElement {
8
7
  constructor() {
9
8
  super(...arguments);
10
9
  this.animated = false;
11
- this.uuid = uuidv4();
12
- this.toastId = uuidv4();
10
+ this.uuid = crypto.randomUUID();
11
+ this.toastId = crypto.randomUUID();
13
12
  this.toasterId = '';
14
13
  this.autoClose = 0;
15
14
  this.shown = true;
@@ -1 +1 @@
1
- {"version":3,"file":"IxToast.js","sourceRoot":"","sources":["../../src/IxToast.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, css } from 'lit';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { animate, AnimateController } from '@lit-labs/motion';\nimport { property, state } from 'lit/decorators.js';\nimport { v4 as uuidv4 } from 'uuid';\n\nexport class IxToast extends LitElement {\n @property({ type: Boolean }) animated: Boolean = false;\n\n @property({ type: String }) uuid: string = uuidv4();\n\n @property({ type: String, attribute: 'data-id' }) toastId: string = uuidv4();\n\n @property({ type: String }) toasterId: string = '';\n\n @property({ type: Number }) autoClose: number = 0;\n\n @property({ type: Boolean }) shown: boolean = true;\n\n @property({ type: Number }) durationOut: number = 333;\n\n @state()\n private _timeout!: ReturnType<typeof setTimeout>;\n\n static styles = [\n css`\n .toast {\n opacity: 0;\n }\n .shown {\n opacity: 1;\n }\n `,\n ];\n\n private _setAutoClose() {\n if (this.autoClose > 0) {\n this._timeout = setTimeout(() => {\n this.removeToast();\n }, this.autoClose);\n }\n }\n\n private _animationCompleted() {\n if (!this.shown) {\n this._dispatchEvent('toast-closed', 'toast closed');\n }\n }\n\n private _dispatchEvent(name: string, message: string) {\n this.dispatchEvent(\n new CustomEvent(name, {\n detail: {\n message,\n id: this.toastId,\n uuid: this.uuid,\n toasterId: this.toasterId,\n },\n bubbles: true,\n composed: true,\n })\n );\n }\n\n private _mouseover() {\n if (this.autoClose > 0) {\n this.shown = true;\n clearTimeout(this._timeout);\n if (this.controller.isAnimating) {\n this.controller.finish();\n }\n }\n }\n\n private _mouseout() {\n this._setAutoClose();\n }\n\n controller = new AnimateController(this, {\n onComplete: () => this._animationCompleted(),\n });\n\n connectedCallback(): void {\n super.connectedCallback();\n this._setAutoClose();\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback();\n if (this._timeout) {\n clearTimeout(this._timeout);\n }\n }\n\n closeToast(forceClose: boolean) {\n if (this.animated) {\n this.shown = false;\n }\n\n if (!this.animated || forceClose) {\n this._dispatchEvent('toast-closed', 'toast closed');\n }\n }\n\n removeToast(forceClose = false) {\n this.dispatchEvent(\n new CustomEvent('remove-toast', {\n detail: {\n ids: this.toastId,\n uuid: this.uuid,\n forceClose,\n },\n bubbles: true,\n composed: true,\n })\n );\n }\n\n render() {\n return html`\n <div\n @mouseout=${this._mouseout}\n @mouseover=${this._mouseover}\n @focus=${this._mouseover}\n @blur=${this._mouseout}\n >\n <div\n class=\"toast ${classMap({\n shown: this.shown,\n })}\"\n ${animate({\n keyframeOptions: {\n duration: this.durationOut,\n },\n disabled: !this.animated as boolean,\n })}\n >\n <slot></slot>\n </div>\n </div>\n `;\n }\n}\n"]}
1
+ {"version":3,"file":"IxToast.js","sourceRoot":"","sources":["../../src/IxToast.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, css } from 'lit';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { animate, AnimateController } from '@lit-labs/motion';\nimport { property, state } from 'lit/decorators.js';\n\nexport class IxToast extends LitElement {\n @property({ type: Boolean }) animated: Boolean = false;\n\n @property({ type: String }) uuid: string = crypto.randomUUID();\n\n @property({ type: String, attribute: 'data-id' }) toastId: string = crypto.randomUUID();\n\n @property({ type: String }) toasterId: string = '';\n\n @property({ type: Number }) autoClose: number = 0;\n\n @property({ type: Boolean }) shown: boolean = true;\n\n @property({ type: Number }) durationOut: number = 333;\n\n @state()\n private _timeout!: ReturnType<typeof setTimeout>;\n\n static styles = [\n css`\n .toast {\n opacity: 0;\n }\n .shown {\n opacity: 1;\n }\n `,\n ];\n\n private _setAutoClose() {\n if (this.autoClose > 0) {\n this._timeout = setTimeout(() => {\n this.removeToast();\n }, this.autoClose);\n }\n }\n\n private _animationCompleted() {\n if (!this.shown) {\n this._dispatchEvent('toast-closed', 'toast closed');\n }\n }\n\n private _dispatchEvent(name: string, message: string) {\n this.dispatchEvent(\n new CustomEvent(name, {\n detail: {\n message,\n id: this.toastId,\n uuid: this.uuid,\n toasterId: this.toasterId,\n },\n bubbles: true,\n composed: true,\n })\n );\n }\n\n private _mouseover() {\n if (this.autoClose > 0) {\n this.shown = true;\n clearTimeout(this._timeout);\n if (this.controller.isAnimating) {\n this.controller.finish();\n }\n }\n }\n\n private _mouseout() {\n this._setAutoClose();\n }\n\n controller = new AnimateController(this, {\n onComplete: () => this._animationCompleted(),\n });\n\n connectedCallback(): void {\n super.connectedCallback();\n this._setAutoClose();\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback();\n if (this._timeout) {\n clearTimeout(this._timeout);\n }\n }\n\n closeToast(forceClose: boolean) {\n if (this.animated) {\n this.shown = false;\n }\n\n if (!this.animated || forceClose) {\n this._dispatchEvent('toast-closed', 'toast closed');\n }\n }\n\n removeToast(forceClose = false) {\n this.dispatchEvent(\n new CustomEvent('remove-toast', {\n detail: {\n ids: this.toastId,\n uuid: this.uuid,\n forceClose,\n },\n bubbles: true,\n composed: true,\n })\n );\n }\n\n render() {\n return html`\n <div\n @mouseout=${this._mouseout}\n @mouseover=${this._mouseover}\n @focus=${this._mouseover}\n @blur=${this._mouseout}\n >\n <div\n class=\"toast ${classMap({\n shown: this.shown,\n })}\"\n ${animate({\n keyframeOptions: {\n duration: this.durationOut,\n },\n disabled: !this.animated as boolean,\n })}\n >\n <slot></slot>\n </div>\n </div>\n `;\n }\n}\n"]}
@@ -4,7 +4,6 @@ import { classMap } from 'lit/directives/class-map.js';
4
4
  import { property, state } from 'lit/decorators.js';
5
5
  import { repeat } from 'lit/directives/repeat.js';
6
6
  import { animate, AnimateController } from '@lit-labs/motion';
7
- import { v4 as uuidv4 } from 'uuid';
8
7
  import { getAnimation, } from './utils.js';
9
8
  import './ix-toaster.js';
10
9
  export class IxToasters extends LitElement {
@@ -21,8 +20,8 @@ export class IxToasters extends LitElement {
21
20
  toaster = this._createToaster(vertical, horizontal, animated);
22
21
  }
23
22
  const newToast = {
24
- id: id || uuidv4(),
25
- uuid: uuidv4(),
23
+ id: id || crypto.randomUUID(),
24
+ uuid: crypto.randomUUID(),
26
25
  content,
27
26
  toasterId: toaster.id,
28
27
  autoClose: autoClose || false,
@@ -1 +1 @@
1
- {"version":3,"file":"IxToasters.js","sourceRoot":"","sources":["../../src/IxToasters.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, TemplateResult, css } from 'lit';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { property, state } from 'lit/decorators.js';\nimport { repeat } from 'lit/directives/repeat.js';\nimport { animate, AnimateController } from '@lit-labs/motion';\nimport { v4 as uuidv4 } from 'uuid';\nimport { IxToaster } from './IxToaster.js';\nimport {\n THorizontal,\n TVertical,\n IToaster,\n IToast,\n getAnimation,\n} from './utils.js';\nimport './ix-toaster.js';\n\nexport class IxToasters extends LitElement {\n @property({ type: Array }) toast: TemplateResult[] = [];\n\n @state()\n private _toasters: IToaster[] = [];\n\n @state()\n private _toast: IToast[] = [];\n\n static styles = [\n css`\n .toaster {\n position: fixed;\n z-index: var(--ix-toaster-z-index, 999);\n }\n\n .overflow {\n overflow: auto;\n }\n\n .center {\n left: 50%;\n transform: translateX(-50%);\n }\n\n .middle {\n top: 50%;\n transform: translateY(-50%);\n }\n\n .center.middle {\n transform: translateY(-50%) translateX(-50%);\n }\n\n .bottom {\n bottom: 0;\n }\n\n .top {\n top: 0;\n }\n\n .left {\n left: 0;\n }\n\n .right {\n right: 0;\n }\n `,\n ];\n\n private _toasterClosed(e: any) {\n const { id } = e.detail;\n this._toasters = this._toasters.filter(toaster => toaster.id !== id);\n }\n\n private _toastClosed(e: any) {\n const { uuid, toasterId } = e.detail;\n this._toast = this._toast.filter(toastItem => toastItem.uuid !== uuid);\n\n const toasterToast = this._getToasterToast(toasterId);\n if (toasterToast.length === 0) {\n this._destroyToaster(toasterId);\n }\n }\n\n private _getToasterToast(toasterId: string): IToast[] {\n return this._toast.filter(toast => toast.toasterId === toasterId);\n }\n\n private _getToasterById(id: string) {\n return this.shadowRoot?.querySelector(`#${id}`) as IxToaster;\n }\n\n private _getToaster(\n vertical: TVertical = 'bottom',\n horizontal: THorizontal = 'right'\n ): IToaster | undefined {\n return this._toasters.find(\n toaster =>\n toaster.vertical === vertical && toaster.horizontal === horizontal\n );\n }\n\n private _createToaster(\n vertical: TVertical = 'bottom',\n horizontal: THorizontal = 'right',\n animated: boolean = true\n ): IToaster {\n const newToaster = {\n horizontal,\n vertical,\n toast: [],\n id: `${vertical}-${horizontal}`,\n animated,\n };\n this._toasters = [...this._toasters, newToaster];\n\n return newToaster;\n }\n\n private _destroyToaster(id: string): void {\n const toaster = this._getToasterById(id);\n toaster?.closeToaster();\n }\n\n private _destroyToast(\n toasterId: string,\n toastId: string,\n toastUuid: string = '',\n forceClose = false\n ): void {\n const toaster = this._getToasterById(toasterId);\n const toast = toaster.getToast(toastId);\n toast.forEach(toastItem => {\n if (!toastUuid) {\n toastItem.closeToast(forceClose);\n } else if (toastUuid === toastItem.uuid) {\n toastItem.closeToast(forceClose);\n }\n });\n }\n\n private _guardAnimation() {\n if (this._toast.length === 0) {\n return this._toast;\n }\n return false;\n }\n\n addToast = (e: any) => {\n // TODO, come up with a nice way of accepting defaults\n const {\n id,\n content,\n vertical,\n horizontal,\n autoClose,\n animated,\n above,\n durationOut,\n } = e.detail;\n\n let toaster = this._getToaster(vertical, horizontal) as IToaster;\n\n if (!toaster) {\n toaster = this._createToaster(vertical, horizontal, animated);\n }\n\n const newToast = {\n id: id || uuidv4(),\n uuid: uuidv4(),\n content,\n toasterId: toaster.id,\n autoClose: autoClose || false,\n animated: animated || true,\n durationOut: durationOut === undefined ? 333 : durationOut,\n };\n\n if (above) {\n this._toast = [newToast, ...this._toast];\n } else {\n this._toast = [...this._toast, newToast];\n }\n };\n\n removeToast = (e: any) => {\n const { forceClose, ids, uuid } = e.detail;\n const toastIds = Array.isArray(ids) ? ids : [ids];\n const toast: IToast[] = this._toast.filter(\n toastItem => toastIds.indexOf(toastItem.id) !== -1\n );\n\n if (toast.length) {\n toast.forEach(toastItem => {\n this._destroyToast(toastItem.toasterId, toastItem.id, uuid, forceClose);\n });\n }\n };\n\n connectedCallback(): void {\n super.connectedCallback();\n window.addEventListener('add-toast', this.addToast);\n window.addEventListener('remove-toast', this.removeToast);\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback();\n window.removeEventListener('add-toast', this.addToast);\n window.removeEventListener('remove-toast', this.removeToast);\n }\n\n controller = new AnimateController(this, {\n defaultOptions: {\n guard: () => this._guardAnimation(),\n keyframeOptions: {\n easing: 'linear',\n },\n disabled: false,\n },\n });\n\n render() {\n return html`\n ${repeat(\n this._toasters,\n toaster => toaster.id,\n ({ horizontal, vertical, id, animated }) => html`\n <ix-toaster\n class=\"toaster ${classMap({\n [vertical]: true,\n [horizontal]: true,\n })}\"\n @toaster-closed=${this._toasterClosed}\n @toast-closed=${this._toastClosed}\n id=${id}\n horizontal=${horizontal!}\n vertical=${vertical!}\n .toast=${this._getToasterToast(id)}\n ?animated=${animated}\n ${animate({\n ...getAnimation(horizontal, vertical, true),\n disabled: !animated,\n })}\n ></ix-toaster>\n `\n )}\n `;\n }\n}\n"]}
1
+ {"version":3,"file":"IxToasters.js","sourceRoot":"","sources":["../../src/IxToasters.ts"],"names":[],"mappings":"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","sourcesContent":["import { html, LitElement, TemplateResult, css } from 'lit';\nimport { classMap } from 'lit/directives/class-map.js';\nimport { property, state } from 'lit/decorators.js';\nimport { repeat } from 'lit/directives/repeat.js';\nimport { animate, AnimateController } from '@lit-labs/motion';\nimport { IxToaster } from './IxToaster.js';\nimport {\n THorizontal,\n TVertical,\n IToaster,\n IToast,\n getAnimation,\n} from './utils.js';\nimport './ix-toaster.js';\n\nexport class IxToasters extends LitElement {\n @property({ type: Array }) toast: TemplateResult[] = [];\n\n @state()\n private _toasters: IToaster[] = [];\n\n @state()\n private _toast: IToast[] = [];\n\n static styles = [\n css`\n .toaster {\n position: fixed;\n z-index: var(--ix-toaster-z-index, 999);\n }\n\n .overflow {\n overflow: auto;\n }\n\n .center {\n left: 50%;\n transform: translateX(-50%);\n }\n\n .middle {\n top: 50%;\n transform: translateY(-50%);\n }\n\n .center.middle {\n transform: translateY(-50%) translateX(-50%);\n }\n\n .bottom {\n bottom: 0;\n }\n\n .top {\n top: 0;\n }\n\n .left {\n left: 0;\n }\n\n .right {\n right: 0;\n }\n `,\n ];\n\n private _toasterClosed(e: any) {\n const { id } = e.detail;\n this._toasters = this._toasters.filter(toaster => toaster.id !== id);\n }\n\n private _toastClosed(e: any) {\n const { uuid, toasterId } = e.detail;\n this._toast = this._toast.filter(toastItem => toastItem.uuid !== uuid);\n\n const toasterToast = this._getToasterToast(toasterId);\n if (toasterToast.length === 0) {\n this._destroyToaster(toasterId);\n }\n }\n\n private _getToasterToast(toasterId: string): IToast[] {\n return this._toast.filter(toast => toast.toasterId === toasterId);\n }\n\n private _getToasterById(id: string) {\n return this.shadowRoot?.querySelector(`#${id}`) as IxToaster;\n }\n\n private _getToaster(\n vertical: TVertical = 'bottom',\n horizontal: THorizontal = 'right'\n ): IToaster | undefined {\n return this._toasters.find(\n toaster =>\n toaster.vertical === vertical && toaster.horizontal === horizontal\n );\n }\n\n private _createToaster(\n vertical: TVertical = 'bottom',\n horizontal: THorizontal = 'right',\n animated: boolean = true\n ): IToaster {\n const newToaster = {\n horizontal,\n vertical,\n toast: [],\n id: `${vertical}-${horizontal}`,\n animated,\n };\n this._toasters = [...this._toasters, newToaster];\n\n return newToaster;\n }\n\n private _destroyToaster(id: string): void {\n const toaster = this._getToasterById(id);\n toaster?.closeToaster();\n }\n\n private _destroyToast(\n toasterId: string,\n toastId: string,\n toastUuid: string = '',\n forceClose = false\n ): void {\n const toaster = this._getToasterById(toasterId);\n const toast = toaster.getToast(toastId);\n toast.forEach(toastItem => {\n if (!toastUuid) {\n toastItem.closeToast(forceClose);\n } else if (toastUuid === toastItem.uuid) {\n toastItem.closeToast(forceClose);\n }\n });\n }\n\n private _guardAnimation() {\n if (this._toast.length === 0) {\n return this._toast;\n }\n return false;\n }\n\n addToast = (e: any) => {\n // TODO, come up with a nice way of accepting defaults\n const {\n id,\n content,\n vertical,\n horizontal,\n autoClose,\n animated,\n above,\n durationOut,\n } = e.detail;\n\n let toaster = this._getToaster(vertical, horizontal) as IToaster;\n\n if (!toaster) {\n toaster = this._createToaster(vertical, horizontal, animated);\n }\n\n const newToast = {\n id: id || crypto.randomUUID(),\n uuid: crypto.randomUUID(),\n content,\n toasterId: toaster.id,\n autoClose: autoClose || false,\n animated: animated || true,\n durationOut: durationOut === undefined ? 333 : durationOut,\n };\n\n if (above) {\n this._toast = [newToast, ...this._toast];\n } else {\n this._toast = [...this._toast, newToast];\n }\n };\n\n removeToast = (e: any) => {\n const { forceClose, ids, uuid } = e.detail;\n const toastIds = Array.isArray(ids) ? ids : [ids];\n const toast: IToast[] = this._toast.filter(\n toastItem => toastIds.indexOf(toastItem.id) !== -1\n );\n\n if (toast.length) {\n toast.forEach(toastItem => {\n this._destroyToast(toastItem.toasterId, toastItem.id, uuid, forceClose);\n });\n }\n };\n\n connectedCallback(): void {\n super.connectedCallback();\n window.addEventListener('add-toast', this.addToast);\n window.addEventListener('remove-toast', this.removeToast);\n }\n\n disconnectedCallback(): void {\n super.disconnectedCallback();\n window.removeEventListener('add-toast', this.addToast);\n window.removeEventListener('remove-toast', this.removeToast);\n }\n\n controller = new AnimateController(this, {\n defaultOptions: {\n guard: () => this._guardAnimation(),\n keyframeOptions: {\n easing: 'linear',\n },\n disabled: false,\n },\n });\n\n render() {\n return html`\n ${repeat(\n this._toasters,\n toaster => toaster.id,\n ({ horizontal, vertical, id, animated }) => html`\n <ix-toaster\n class=\"toaster ${classMap({\n [vertical]: true,\n [horizontal]: true,\n })}\"\n @toaster-closed=${this._toasterClosed}\n @toast-closed=${this._toastClosed}\n id=${id}\n horizontal=${horizontal!}\n vertical=${vertical!}\n .toast=${this._getToasterToast(id)}\n ?animated=${animated}\n ${animate({\n ...getAnimation(horizontal, vertical, true),\n disabled: !animated,\n })}\n ></ix-toaster>\n `\n )}\n `;\n }\n}\n"]}
@@ -1 +1 @@
1
- import{__decorate}from"tslib";import{css,LitElement,html}from"lit";import{classMap}from"lit/directives/class-map.js";import{AnimateController,animate}from"@lit-labs/motion";import{property,state}from"lit/decorators.js";import{v4}from"uuid";class IxToast extends LitElement{constructor(){super(...arguments),this.animated=!1,this.uuid=v4(),this.toastId=v4(),this.toasterId="",this.autoClose=0,this.shown=!0,this.durationOut=333,this.controller=new AnimateController(this,{onComplete:()=>this._animationCompleted()})}_setAutoClose(){0<this.autoClose&&(this._timeout=setTimeout(()=>{this.removeToast()},this.autoClose))}_animationCompleted(){this.shown||this._dispatchEvent("toast-closed","toast closed")}_dispatchEvent(t,o){this.dispatchEvent(new CustomEvent(t,{detail:{message:o,id:this.toastId,uuid:this.uuid,toasterId:this.toasterId},bubbles:!0,composed:!0}))}_mouseover(){0<this.autoClose&&(this.shown=!0,clearTimeout(this._timeout),this.controller.isAnimating)&&this.controller.finish()}_mouseout(){this._setAutoClose()}connectedCallback(){super.connectedCallback(),this._setAutoClose()}disconnectedCallback(){super.disconnectedCallback(),this._timeout&&clearTimeout(this._timeout)}closeToast(t){this.animated&&(this.shown=!1),this.animated&&!t||this._dispatchEvent("toast-closed","toast closed")}removeToast(t=!1){this.dispatchEvent(new CustomEvent("remove-toast",{detail:{ids:this.toastId,uuid:this.uuid,forceClose:t},bubbles:!0,composed:!0}))}render(){return html`<div @mouseout="${this._mouseout}" @mouseover="${this._mouseover}" @focus="${this._mouseover}" @blur="${this._mouseout}"><div class="toast ${classMap({shown:this.shown})}" ${animate({keyframeOptions:{duration:this.durationOut},disabled:!this.animated})}><slot></slot></div></div>`}}IxToast.styles=[css`.toast{opacity:0}.shown{opacity:1}`],__decorate([property({type:Boolean})],IxToast.prototype,"animated",void 0),__decorate([property({type:String})],IxToast.prototype,"uuid",void 0),__decorate([property({type:String,attribute:"data-id"})],IxToast.prototype,"toastId",void 0),__decorate([property({type:String})],IxToast.prototype,"toasterId",void 0),__decorate([property({type:Number})],IxToast.prototype,"autoClose",void 0),__decorate([property({type:Boolean})],IxToast.prototype,"shown",void 0),__decorate([property({type:Number})],IxToast.prototype,"durationOut",void 0),__decorate([state()],IxToast.prototype,"_timeout",void 0),window.customElements.define("ix-toast",IxToast);
1
+ import{__decorate}from"tslib";import{css,LitElement,html}from"lit";import{classMap}from"lit/directives/class-map.js";import{AnimateController,animate}from"@lit-labs/motion";import{property,state}from"lit/decorators.js";class IxToast extends LitElement{constructor(){super(...arguments),this.animated=!1,this.uuid=crypto.randomUUID(),this.toastId=crypto.randomUUID(),this.toasterId="",this.autoClose=0,this.shown=!0,this.durationOut=333,this.controller=new AnimateController(this,{onComplete:()=>this._animationCompleted()})}_setAutoClose(){0<this.autoClose&&(this._timeout=setTimeout(()=>{this.removeToast()},this.autoClose))}_animationCompleted(){this.shown||this._dispatchEvent("toast-closed","toast closed")}_dispatchEvent(t,o){this.dispatchEvent(new CustomEvent(t,{detail:{message:o,id:this.toastId,uuid:this.uuid,toasterId:this.toasterId},bubbles:!0,composed:!0}))}_mouseover(){0<this.autoClose&&(this.shown=!0,clearTimeout(this._timeout),this.controller.isAnimating)&&this.controller.finish()}_mouseout(){this._setAutoClose()}connectedCallback(){super.connectedCallback(),this._setAutoClose()}disconnectedCallback(){super.disconnectedCallback(),this._timeout&&clearTimeout(this._timeout)}closeToast(t){this.animated&&(this.shown=!1),this.animated&&!t||this._dispatchEvent("toast-closed","toast closed")}removeToast(t=!1){this.dispatchEvent(new CustomEvent("remove-toast",{detail:{ids:this.toastId,uuid:this.uuid,forceClose:t},bubbles:!0,composed:!0}))}render(){return html`<div @mouseout="${this._mouseout}" @mouseover="${this._mouseover}" @focus="${this._mouseover}" @blur="${this._mouseout}"><div class="toast ${classMap({shown:this.shown})}" ${animate({keyframeOptions:{duration:this.durationOut},disabled:!this.animated})}><slot></slot></div></div>`}}IxToast.styles=[css`.toast{opacity:0}.shown{opacity:1}`],__decorate([property({type:Boolean})],IxToast.prototype,"animated",void 0),__decorate([property({type:String})],IxToast.prototype,"uuid",void 0),__decorate([property({type:String,attribute:"data-id"})],IxToast.prototype,"toastId",void 0),__decorate([property({type:String})],IxToast.prototype,"toasterId",void 0),__decorate([property({type:Number})],IxToast.prototype,"autoClose",void 0),__decorate([property({type:Boolean})],IxToast.prototype,"shown",void 0),__decorate([property({type:Number})],IxToast.prototype,"durationOut",void 0),__decorate([state()],IxToast.prototype,"_timeout",void 0),window.customElements.define("ix-toast",IxToast);
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent ix-toast following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "ix-toast",
6
- "version": "1.1.8",
6
+ "version": "1.3.1-alpha.1",
7
7
  "type": "module",
8
8
  "main": "dist/src/index.js",
9
9
  "module": "dist/src/index.js",
@@ -27,16 +27,14 @@
27
27
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
28
28
  },
29
29
  "dependencies": {
30
- "@digital-realty/ix-icon-button": "^1.1.8",
30
+ "@digital-realty/ix-icon-button": "^1.2.1",
31
31
  "@lit-labs/motion": "^1.0.6",
32
- "lit": "^3.2.1",
33
- "uuid": "^9.0.1"
32
+ "lit": "^3.2.1"
34
33
  },
35
34
  "devDependencies": {
36
35
  "@custom-elements-manifest/analyzer": "^0.4.17",
37
36
  "@open-wc/eslint-config": "^9.2.1",
38
37
  "@open-wc/testing": "^3.1.6",
39
- "@types/uuid": "^9.0.7",
40
38
  "@typescript-eslint/eslint-plugin": "^5.48.0",
41
39
  "@typescript-eslint/parser": "^5.48.0",
42
40
  "@web/dev-server": "^0.4.6",
@@ -93,6 +91,5 @@
93
91
  "eslint --fix",
94
92
  "prettier --write"
95
93
  ]
96
- },
97
- "gitHead": "efb86e89e9bfdb5a9a797dd223331ad6455b692c"
94
+ }
98
95
  }
package/src/IxToast.ts CHANGED
@@ -2,14 +2,13 @@ import { html, LitElement, css } from 'lit';
2
2
  import { classMap } from 'lit/directives/class-map.js';
3
3
  import { animate, AnimateController } from '@lit-labs/motion';
4
4
  import { property, state } from 'lit/decorators.js';
5
- import { v4 as uuidv4 } from 'uuid';
6
5
 
7
6
  export class IxToast extends LitElement {
8
7
  @property({ type: Boolean }) animated: Boolean = false;
9
8
 
10
- @property({ type: String }) uuid: string = uuidv4();
9
+ @property({ type: String }) uuid: string = crypto.randomUUID();
11
10
 
12
- @property({ type: String, attribute: 'data-id' }) toastId: string = uuidv4();
11
+ @property({ type: String, attribute: 'data-id' }) toastId: string = crypto.randomUUID();
13
12
 
14
13
  @property({ type: String }) toasterId: string = '';
15
14
 
package/src/IxToasters.ts CHANGED
@@ -3,7 +3,6 @@ import { classMap } from 'lit/directives/class-map.js';
3
3
  import { property, state } from 'lit/decorators.js';
4
4
  import { repeat } from 'lit/directives/repeat.js';
5
5
  import { animate, AnimateController } from '@lit-labs/motion';
6
- import { v4 as uuidv4 } from 'uuid';
7
6
  import { IxToaster } from './IxToaster.js';
8
7
  import {
9
8
  THorizontal,
@@ -165,8 +164,8 @@ export class IxToasters extends LitElement {
165
164
  }
166
165
 
167
166
  const newToast = {
168
- id: id || uuidv4(),
169
- uuid: uuidv4(),
167
+ id: id || crypto.randomUUID(),
168
+ uuid: crypto.randomUUID(),
170
169
  content,
171
170
  toasterId: toaster.id,
172
171
  autoClose: autoClose || false,
@@ -1 +0,0 @@
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/tslib/tslib.d.ts","../../../node_modules/@lit/reactive-element/css-tag.d.ts","../../../node_modules/@lit/reactive-element/reactive-controller.d.ts","../../../node_modules/@lit/reactive-element/reactive-element.d.ts","../../../node_modules/lit-html/directive.d.ts","../../../node_modules/@types/trusted-types/lib/index.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-html/directives/class-map.d.ts","../../../node_modules/lit/directives/class-map.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/lit/html.d.ts","../../../node_modules/lit/directive.d.ts","../../../node_modules/lit-html/async-directive.d.ts","../../../node_modules/lit/async-directive.d.ts","../../../node_modules/@lit-labs/motion/animate-controller.d.ts","../../../node_modules/@lit-labs/motion/animate.d.ts","../../../node_modules/@lit-labs/motion/position.d.ts","../../../node_modules/@lit-labs/motion/index.d.ts","../src/utils.ts","../src/IxMessageToast.ts","../../../node_modules/@types/uuid/index.d.ts","../src/IxToast.ts","../../../node_modules/lit-html/directives/repeat.d.ts","../../../node_modules/lit/directives/repeat.d.ts","../src/ix-toast.ts","../src/IxToaster.ts","../src/ix-toaster.ts","../src/IxToasters.ts","../src/index.ts","../src/ix-message-toast.ts","../src/ix-toasters.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/get-diffable-html.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff-plugin.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/chai-dom-diff.d.ts","../../../node_modules/@open-wc/semantic-dom-diff/index.d.ts","../../../node_modules/chai-a11y-axe/chai-a11y-axe-plugin.d.ts","../../../node_modules/chai-a11y-axe/src/accessible.d.ts","../../../node_modules/chai-a11y-axe/index.d.ts","../../../node_modules/@types/chai-dom/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@open-wc/testing/register-chai-plugins.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/elementUpdated.d.ts","../../../node_modules/lit-html/static.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/renderable.d.ts","../../../node_modules/@open-wc/dedupe-mixin/index.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/scoped-elements/types/src/types.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/scoped-elements/types/src/ScopedElementsMixin.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/scoped-elements/types/index.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/fixture-no-side-effect.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/fixture.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/fixtureWrapper.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/helpers.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/scopedElementsWrapper.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/litFixture.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/src/stringFixture.d.ts","../../../node_modules/@open-wc/testing/node_modules/@open-wc/testing-helpers/types/index.d.ts","../../../node_modules/@open-wc/testing/index.d.ts","../test/ix-toast.test.ts","../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/undici-types/header.d.ts","../../../node_modules/undici-types/readable.d.ts","../../../node_modules/undici-types/file.d.ts","../../../node_modules/undici-types/fetch.d.ts","../../../node_modules/undici-types/formdata.d.ts","../../../node_modules/undici-types/connector.d.ts","../../../node_modules/undici-types/client.d.ts","../../../node_modules/undici-types/errors.d.ts","../../../node_modules/undici-types/dispatcher.d.ts","../../../node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/undici-types/global-origin.d.ts","../../../node_modules/undici-types/pool-stats.d.ts","../../../node_modules/undici-types/pool.d.ts","../../../node_modules/undici-types/handlers.d.ts","../../../node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/undici-types/agent.d.ts","../../../node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/undici-types/mock-agent.d.ts","../../../node_modules/undici-types/mock-client.d.ts","../../../node_modules/undici-types/mock-pool.d.ts","../../../node_modules/undici-types/mock-errors.d.ts","../../../node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/undici-types/retry-handler.d.ts","../../../node_modules/undici-types/retry-agent.d.ts","../../../node_modules/undici-types/api.d.ts","../../../node_modules/undici-types/interceptors.d.ts","../../../node_modules/undici-types/util.d.ts","../../../node_modules/undici-types/cookies.d.ts","../../../node_modules/undici-types/patch.d.ts","../../../node_modules/undici-types/websocket.d.ts","../../../node_modules/undici-types/eventsource.d.ts","../../../node_modules/undici-types/filereader.d.ts","../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/undici-types/content-type.d.ts","../../../node_modules/undici-types/cache.d.ts","../../../node_modules/undici-types/index.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/dom-events.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/sea.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/ts5.6/index.d.ts","../../../node_modules/@types/accepts/index.d.ts","../../../node_modules/@types/babel__code-frame/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/clean-css/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/clean-css/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/co-body/index.d.ts","../../../node_modules/@types/command-line-args/index.d.ts","../../../node_modules/@types/content-disposition/index.d.ts","../../../node_modules/@types/convert-source-map/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/send/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/http-errors/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/keygrip/index.d.ts","../../../node_modules/@types/cookies/index.d.ts","../../../node_modules/@types/debounce/index.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/fetch-mock/index.d.ts","../../../node_modules/@types/fs-extra/index.d.ts","../../../node_modules/minimatch/dist/cjs/escape.d.ts","../../../node_modules/minimatch/dist/cjs/unescape.d.ts","../../../node_modules/minimatch/dist/cjs/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/glob-to-regexp/index.d.ts","../../../node_modules/@types/unist/index.d.ts","../../../node_modules/@types/hast/index.d.ts","../../../node_modules/@types/uglify-js/node_modules/source-map/source-map.d.ts","../../../node_modules/@types/uglify-js/index.d.ts","../../../node_modules/@types/relateurl/index.d.ts","../../../node_modules/@types/html-minifier/index.d.ts","../../../node_modules/@types/http-assert/index.d.ts","../../../node_modules/@types/intl-tel-input/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/@types/jquery/JQueryStatic.d.ts","../../../node_modules/@types/jquery/JQuery.d.ts","../../../node_modules/@types/jquery/misc.d.ts","../../../node_modules/@types/jquery/legacy.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/@types/jquery/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/koa-compose/index.d.ts","../../../node_modules/@types/koa/index.d.ts","../../../node_modules/@types/linkify-it/build/index.cjs.d.ts","../../../node_modules/@types/linkify-it/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/mdurl/build/index.cjs.d.ts","../../../node_modules/@types/mdurl/index.d.ts","../../../node_modules/@types/markdown-it/dist/index.cjs.d.ts","../../../node_modules/@types/markdown-it/index.d.ts","../../../node_modules/@types/mdast/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/minimist/index.d.ts","../../../node_modules/@types/mocha/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../../node_modules/@types/parse5/index.d.ts","../../../node_modules/@types/pixelmatch/index.d.ts","../../../node_modules/@types/pngjs/index.d.ts","../../../node_modules/@types/prismjs/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/@types/resolve/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/timezoned-date/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","b202271f18e1ec99f9b3045e2226be7b90933c7d239fa73ee504172f3c2b9479","1e5743b25a63fd34ffbae89adcbf248ee17db6ed08d90079ffa93803c3e80d2a",{"version":"f206bd1d2a6f53adfe1f60ab7005fb1683b7565b88f66153ab5b8de621f2a0ec","affectsGlobalScope":true},"38e68fc600b21dcc36b2bf955848cbae2051f56742034bf68f1f47b1a37c10a3","15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","9bd8b6d01c134f8f921d1e1be3409b1c4849b3769dac6e5df59ea691123f0c8f","2685483a3ed13d61b45cba777c8ba8f0ab00391de7a98a61363f09d4698e9549","5e7e090243bf203382a5cb04eabbdc38d78f6d5922f16f543e4da8fa007d5ff9","cd823094ded7c8ac4f94ab6dc387dab699293eb8323d9f948304efc07e4ae7b2","43aad4fee32c5a608cb725a48ba384a9a478632632d09e18ae36024e9f75569b","6e0575b628aedce5db38c17569e5c909beead07f9052fe7944fb8bfccc3db92e","444402ce58193c6200a4bc0f2fa49981fc2876a75c52c8348a2293b25116ddf9","278773120821f65d2c545914678eaf7119036962fb509415d8fbee90f48febdf","8731317ffd410079dd19a420763987b36d545edf4617d186edf1bd9f4a242f97","6d1b27c60d543e0ccee15646fb1410fdcdd2f9924638dbecf550174f9ad1a433","35ab2aa25db33860d80b44f6b4281d40e11638cf6540f45bc15090ffcbeeed22","87b6665f770bf1569b1842e7a3b6728de9b04f3c2036505b93de312b92e2906e","6eab9baa28d5af65e9725319dda4f7a34dadefa8d2a7180efed1f156aaa64f1d","74800ff360a51f013407726011b96c0310dd4f3e5789abc73b166385a7ebdd77","6e303e9b77772e5496a58307cffc158a497301f7ec462d52a77f1f6985a8b158","b144df450421a0b83fa165d973afae89fc2d73bfbda5403cabdf13a6dfc3cc6d","f0380f581cb015778c0fe51e95b5b7f6dae237280654558469b2486c1572268a","a79c3591a4d8e2279b2c7f3a85ed14b86b8a5df85567844cf07f9fd6d72dec48","31f6059c66e7df3d4127a55e4049f390ad129d5f039b52b7b4055e76854ad388","2d176740950664c4a696f79d2d9a9a1c6eff0ea7c1dc08f6e658b2e0b7a7a01e","4e3e1802431769da9f9108920f7f87e71a29df0cef080e674776ff5d3d5106cb","950b37626f55eb7526ee57e2e870d76c276a36d50fcb6e7e0fe03aba560a73dd","4b886446729f35cf1d8f6c0ef203317dfd21fa4d3d505a1da50c4bfc2815bd10","5874bcee8af8700dbea9fa471d10a17bab0ad34cd6332ee59695609412d3d389","21c894b27c0d9dcbdfc4671923f3775f6afc6d00cf7fd5136e6ccf1782f01ddf",{"version":"c597d50ac4680d96d0a0f6af484b090fb6e4f88c08dea939243c102d736513af","signature":"b71f615e0999f02663d6873cf79bcd1441d0cd9acfad71e9806ec72056307c68"},{"version":"f161fed168652edce8911570fb8d5e61f62cab3ac7aa8973de222d87891dd390","signature":"f4e0a64c5722bc182f571d5efcdc9485281132679b3052b6046e5429c962653f"},"7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",{"version":"d625c183408dd1f7e65dbb97bb0f7c5df21747cdb06d4b22c6375a711fed1a4e","signature":"4eb5b2adca10465e93789496d3fdd3f7e807445deb180e601a496cf1b8f32222"},"25f99f07f8fe189bedab93389438ac90b66fb6eae33a76634ed7a11d49715c44","1c3ff565677a242aa9f997eff718c7d613d50072711f67b8a7f87d631fb03f30",{"version":"925a3532d44419b78033fd93a95a4abf54e90ad33545a777aa49365590963b88","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"caebfa2c9dbef1bbff71f5264c5fe6ad260e72bfa4f98cd850f3bb294251a1b1","signature":"6e40fb91b42044b0feca0eda5c53bb0b75db49ad30e0f35a3ff918840df7e052"},{"version":"cdb349c178463228c55722a65faf741c9a498087680a1379fa6bc07c71cb078e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1396a37e070daa852c2f290fe7201372f237d1b558e038b341555ba72420e44f","signature":"607a3d248c163dfa43485b10c11d54b7245e6aba92802e82ed68f8069ffb7ec4"},"d557cfa92d8692b0d9ba5e2a68290aec151ed4f1cea94c4037026c307c281f93",{"version":"174817f463294bc8286641896e09fe2224fe7f4692e1b8956623db256d96789a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f55a45a3bc3302eed80bab7fad6b501572a6c11e2efb984ad08cbe449560221d","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"eef204f061321360559bd19235ea32a9d55b3ec22a362cc78d14ef50d4db4490","affectsGlobalScope":true},"8a659f7d82d932649a78f89643c5b436953424a219d705d49b8b3d9ccd6e35ff",{"version":"2d412861573a672bd90fdcb1e48740593324565f3b3aaf6808c0e3e2f0d54ae8","affectsGlobalScope":true},{"version":"cd711db43a952f15464b571ac11b7a440332cd52342bc92c4bf908c70688f57f","affectsGlobalScope":true},"9d8709c916778cb34830708ed47b78e9a46d1fb2eb73a682b14eee990bed4aa6",{"version":"507e2131e89b515ce40c05c0c2fef6cc575ba8947703f92e8cdf36078747a9ff","affectsGlobalScope":true},"999a90d30a3183dcee987d0a5a7c586aba5bacbf6ce087ba8635124082ccfeea","8a5878edd52f4a720560b4c6e6247e9ddc3df6118ad9cf2f9927903b03d5f440",{"version":"e7be17cfcbe98809c052f384c230ecea9e1cee045edac9db0659e997a988ff9e","affectsGlobalScope":true},"7d2a0ba1297be385a89b5515b88cd31b4a1eeef5236f710166dc1b36b1741e1b","6175dda01fddf3684d6261d97d169d86b024eceb2cc20041936c068789230f8f",{"version":"525b52b38b44420fb1758c0917e7b67cf379f7f9477d2ba7343f3d5f50a44258","affectsGlobalScope":true},"65b91a3725399231d3469529b5e27b85bf2aa98013e607f308e5fe260b47eeff","a11181f6d68200e83ccb1fb48b262a7132a3257e0a230f41c9dc4c351964297a","2c9f5a07adc4ec7a03e6dbaaa4644a4ff127e3c8e046635d4f495223dd9827e6","51bce1535d9cb87390d75581866d79de7b2e2cb525a89fba84411c8bb5be52d2","88cda4269c54f0803834fd62b2fac61af8bff7a085693f7ca9df85c1f19dee8a",{"version":"4adff7bda52ad8e5570a03f896ddb148abf3a7305ba35cbbcfc880d0f4d0c664","affectsGlobalScope":true},"754006450e5de2b7dac5993194326e3a65c1474673f7304c20810f5eda18ca05","fdf0aa1a72ff0188a9013926201a391116ef6701cd439b89850786abdf755fb8","0b5817d9435c019648f2a2326eaf1086efb72e8e90e28eb53a58b2f31f61e161","abf9ea97b78a7b239186cf5b7ed59c4a593abac3c408c8c95fc5e604cfdfdb43","ae91c9161caf0af81c89e780a045fc5ea8382407e516342e409c5db9161d3b32","d30c69f9eb16583b0a406358224c312b865514a6a7c787a57f16ef08e49b1886","5e02756608c1ac8ddf96878c3af3d4db7ed4e272aef24837e255859ee0a4fb71","4a662115c4c7186cc027ef4a8163e48c7f1c57f05247f08d5acb2344fae2ca53","d598157512ae6e0d3aa6bb0dd261ae34845831dccf7bc7739695ee2589eb76f5","905fbc07f65451b05cb5594d162674eb3ef8f2bf5f13552a1702215664aae3e7","50f63746fc2a779d1f9c5657fd78e292045dc98b540e026799e039ea629f2943",{"version":"6f8274dde6c14ea77d6222fd05b5d80c56fe23c46d606d32b72cefc77755aa42","signature":"d1c2f7159a35ff39ad2b108b468c75ca70aca5941f87390392523b417a27bb63"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true},"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true},"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"9e025aa38cad40827cc30aca974fe33fe2c4652fe8c88f48dadbbbd6300c8b07","affectsGlobalScope":true},"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true},"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true},"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","5b75ca915164e4a7ad94a60729fe45b8a62e7750ab232d0122f8ccdd768f5314","de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5",{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true},"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb",{"version":"46c0484bf0a50d57256a8cfb87714450c2ecd1e5d0bc29f84740f16199f47d6a","affectsGlobalScope":true},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true},"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true},"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","9091e564b81e7b4c382a33c62de704a699e10508190547d4f7c1c3e039d2db2b","87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","3dcefe176e6dce7a06bd345522e19f631f7fdb370335e2e93bc225b3afbb0bd0","104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","ba3b727e6a9e85ca15f115b3dbd2e962f6fd4a0ed9aee445d03b40def8971139","baac9896d29bcc55391d769e408ff400d61273d832dd500f21de766205255acb","7578ed901eec5f590609fc7a6ba9027be5735ad1aedef119aa56d53a22dfbe02","5b7206ca5f2f6eeaac6daa285664f424e0b728f3e31937da89deb8696c5f1dbc","0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","1e87d58d3678958d89e2a94454afcc827f1aa6363abbcbd4f99729e65ab47995","d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed",{"version":"86ea91bfa7fef1eeb958056f30f1db4e0680bc9b5132e5e9d6e9cfd773c0c4fd","affectsGlobalScope":true},"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","d26a79f97f25eb1c5fc36a8552e4decc7ad11104a016d31b1307c3afaf48feb1","6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","072099609280e6659eb29b1d2a601e95708c90b7db2aba2571ebda50d1be0dd5","151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","c0fd9ada1f78e87d73335d602634d99c0fa6eb00b2633c03b2017c6c0a72e044","a13b9bb3e49bc162bb03870f3409474c58bb04a5e60618c305c7842f8a7b251c","b589d625dde2d63aafbe88143e5fbd7b98dd6aca9782747eafb6e88a3f43f8bc","3f9cc1bdf9e8700facd05b9828032cc01dbc3e500fda6afb2d92509b8442ab2c","13d03ed8573272bf7ff7c574db49f49451bdc84c05cd777d059ae3d36f3a9bce","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","095d8ad6f3dc943c43511b99d730516ac9638b25cb0e458bb0ec5a10333e2948","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","fefa1d4c62ddb09c78d9f46e498a186e72b5e7aeb37093aa6b2c321b9d6ecd14","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","f86d0150d5abc55bf5bb479beacc34a7e9d4ab4e3014315fb74626baf1558857","d298f6aca49ec8b97f4e972aae1299d5cd2f72ac566e0f179f168f8130be1ba3","3f6bff86e78e065dad71ca8e395824703f56977f7309139127e58718d7915410","fbf802b3a028f5eb22ad406ee5fc7c368f0acfd3a2a6d0f805120766f5717ec8",{"version":"e79b871e6fa03128c4eff003923bc084ee39047d0f38a285e13d2fbfabcbb53f","affectsGlobalScope":true},"035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434",{"version":"68c0f599345d45a3f72fe7b5a89da23053f17d9c2cd5b2321acabe6e6f7b23b3","affectsGlobalScope":true},{"version":"fd6f0bb5bd5f176b689915806a974cdb12a467bdaa414dc107a62d462eb7ddd5","affectsGlobalScope":true},{"version":"861d9f609588274557802e113bbec01efe7c0bba064c791457690e16bd86a021","affectsGlobalScope":true},{"version":"a1819d8e80fbf3e8d7acb1deafe67401ccad93d59d6a2416bdfc1a1e74ee7c2b","affectsGlobalScope":true},"bc1ba043b19fbfc18be73c0b2b77295b2db5fe94b5eb338441d7d00712c7787e","8ac576b6d6707b07707fd5f7ec7089f768a599a39317ba08c423b8b55e76ca16","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","742f21debb3937c3839a63245648238555bdab1ea095d43fd10c88a64029bf76","7cfdf3b9a5ba934a058bfc9390c074104dc7223b7e3c16fd5335206d789bc3d3","7220461ab7f6d600b313ce621346c315c3a0ebc65b5c6f268488c5c55b68d319","b14c272987c82d49f0f12184c9d8d07a7f71767be99cb76faa125b777c70e962","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","b88749bdb18fc1398370e33aa72bc4f88274118f4960e61ce26605f9b33c5ba2","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","0944f27ebff4b20646b71e7e3faaaae50a6debd40bc63e225de1320dd15c5795","5d30565583300c9256072a013ac0318cc603ff769b4c5cafc222394ea93963e1","8a7219b41d3c1c93f3f3b779146f313efade2404eeece88dcd366df7e2364977","a109c4289d59d9019cfe1eeab506fe57817ee549499b02a83a7e9d3bdf662d63","202f8582ee3cd89e06c4a17d8aabb925ff8550370559c771d1cc3ec3934071c2","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318",{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true},"22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","916be7d770b0ae0406be9486ac12eb9825f21514961dd050594c4b250617d5a8","fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","4434e0c629742ef41c1a8d3cb7dc00fa71bf013b77071ba3c659ed8ef232d2e0","90ac19cb97ae85c7ccfd0c04322b02ce088bda9de7b42cc081cbb3674fe5446d","e85d04f57b46201ddc8ba238a84322432a4803a5d65e0bbd8b3b4f05345edd51","87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc",{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9",{"version":"0b4db13289fea0e1f35978cc75be1c4fcfa3481f0c07bc065c93ee98fe5797fa","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","65fbf6f85e45be5b47858261e7b85ff5c67cd0a3d4b8220585f683045406518d",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","74d5a87c3616cd5d8691059d531504403aa857e09cbaecb1c64dfb9ace0db185"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"target":5},"fileIdsList":[[51,70,121,164],[46,65,66,68,69,121,164],[69,70,71,121,164],[46,65,66,68,121,164],[121,164],[54,121,164],[45,54,121,164],[45,54,62,121,164],[56,121,164],[43,44,121,164],[86,87,121,164],[88,121,164],[87,89,121,164],[86,98,113,121,164],[104,121,164],[45,102,103,121,164],[45,102,121,164],[99,100,107,108,109,111,112,121,164],[101,105,121,164],[106,121,164],[102,121,164],[101,106,110,121,164],[51,121,164],[101,121,164],[90,93,94,97,121,164],[121,164,179,213],[121,164,179,213,216],[86,121,164],[121,164,179,181,213,218],[121,164,179,213,220],[121,164,179,213,216,231,232],[121,164,176,179,213,220,226,227],[121,164,217,228,230],[121,164,177,213],[121,164,176,177,213,240],[121,164,243],[121,164,219,246,247],[121,164,251],[121,164,252],[121,164,254,255,256,257,258],[121,164,263],[121,163,164,176,179,180,184,190,206,213,214,223,229,232,233,249,262],[121,164,264],[121,164,266,268,269,270,271,272,273,274,275,276,277,278],[121,164,266,267,269,270,271,272,273,274,275,276,277,278],[121,164,267,268,269,270,271,272,273,274,275,276,277,278],[121,164,266,267,268,270,271,272,273,274,275,276,277,278],[121,164,266,267,268,269,271,272,273,274,275,276,277,278],[121,164,266,267,268,269,270,272,273,274,275,276,277,278],[121,164,266,267,268,269,270,271,273,274,275,276,277,278],[121,164,266,267,268,269,270,271,272,274,275,276,277,278],[121,164,266,267,268,269,270,271,272,273,275,276,277,278],[121,164,266,267,268,269,270,271,272,273,274,276,277,278],[121,164,266,267,268,269,270,271,272,273,274,275,277,278],[121,164,266,267,268,269,270,271,272,273,274,275,276,278],[121,164,266,267,268,269,270,271,272,273,274,275,276,277],[121,164,265,280],[121,164,281],[121,164,279],[121,161,164],[121,163,164],[121,164,169,198],[121,164,165,170,176,177,184,195,206],[121,164,165,166,176,184],[116,117,118,121,164],[121,164,167,207],[121,164,168,169,177,185],[121,164,169,195,203],[121,164,170,172,176,184],[121,163,164,171],[121,164,172,173],[121,164,174,176],[121,163,164,176],[121,164,176,177,178,195,206],[121,164,176,177,178,191,195,198],[121,159,164],[121,164,172,176,179,184,195,206],[121,164,176,177,179,180,184,195,203,206],[121,164,179,181,195,203,206],[121,164,176,182],[121,164,183,206,211],[121,164,172,176,184,195],[121,164,185],[121,164,186],[121,163,164,187],[121,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212],[121,164,189],[121,164,190],[121,164,176,191,192],[121,164,191,193,207,209],[121,164,176,195,196,198],[121,164,197,198],[121,164,195,196],[121,164,198],[121,164,199],[121,161,164,195],[121,164,176,201,202],[121,164,201,202],[121,164,169,184,195,203],[121,164,204],[164],[119,120,121,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,207,208,209,210,211,212],[121,164,184,205],[121,164,179,190,206],[121,164,169,207],[121,164,195,208],[121,164,183,209],[121,164,210],[121,164,176,178,187,195,198,206,209,211],[121,164,195,212],[121,164,289],[121,164,290],[121,164,213],[121,164,195,212,213],[121,164,294,295,296],[121,164,299,338],[121,164,299,323,338],[121,164,338],[121,164,299],[121,164,299,324,338],[121,164,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337],[121,164,324,338],[121,164,177,195,213,225],[121,164,179,213,226,229],[86,96,121,164],[95,121,164],[47,121,164],[121,164,218],[121,164,176,179,181,184,195,203,206,212,213],[121,164,342],[121,164,176,195,213],[92,121,164],[91,121,164],[45,48,121,164],[46,48,121,164],[48,121,164],[46,47,121,164],[67,121,164],[55,56,57,58,59,60,61,62,63,121,164],[46,121,164],[52,121,164],[77,121,164],[45,48,49,50,121,164],[121,164,240],[121,164,238,239],[121,131,135,164,206],[121,131,164,195,206],[121,126,164],[121,128,131,164,203,206],[121,164,184,203],[121,126,164,213],[121,128,131,164,184,206],[121,123,124,127,130,164,176,195,206],[121,131,138,164],[121,123,129,164],[121,131,152,153,164],[121,127,131,164,198,206,213],[121,152,164,213],[121,125,126,164,213],[121,131,164],[121,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,164],[121,131,146,164],[121,131,138,139,164],[121,129,131,139,140,164],[121,130,164],[121,123,126,131,164],[121,131,135,139,140,164],[121,135,164],[121,129,131,134,164,206],[121,123,128,131,138,164],[121,164,195],[121,126,131,152,164,211,213],[42,51,53,64,73,121,164],[42,51,53,64,72,75,121,164],[42,51,64,72,73,76,78,79,121,164],[42,51,53,64,72,73,75,78,80,81,121,164],[42,76,80,82,121,164],[42,74,121,164],[42,76,121,164],[42,80,121,164],[42,82,121,164],[42,51,72,121,164],[42,51,73,83,85,114,121,164],[48,51,73],[48,51,72],[48,51,73,76,79],[51,72,81],[51],[85]],"referencedMap":[[69,1],[70,2],[72,3],[71,4],[43,5],[54,5],[55,6],[58,7],[56,7],[60,7],[63,8],[62,7],[61,7],[59,7],[57,9],[44,5],[45,10],[102,5],[88,11],[89,12],[87,5],[90,13],[114,14],[105,15],[104,16],[103,17],[113,18],[99,5],[106,19],[107,20],[108,5],[109,21],[111,22],[101,23],[110,24],[112,20],[98,25],[214,26],[215,5],[217,27],[94,28],[86,5],[219,29],[218,5],[221,30],[222,5],[216,26],[223,5],[224,5],[233,31],[234,5],[235,5],[228,32],[231,33],[236,5],[237,34],[242,5],[241,35],[244,36],[248,37],[249,5],[229,5],[250,5],[251,5],[252,38],[253,39],[255,5],[254,5],[259,40],[257,5],[256,5],[260,5],[261,5],[232,5],[262,41],[263,42],[264,5],[265,43],[267,44],[268,45],[266,46],[269,47],[270,48],[271,49],[272,50],[273,51],[274,52],[275,53],[276,54],[277,55],[278,56],[281,57],[282,58],[283,36],[279,5],[280,59],[225,5],[284,5],[285,5],[286,5],[161,60],[162,60],[163,61],[164,62],[165,63],[166,64],[116,5],[119,65],[117,5],[118,5],[167,66],[168,67],[169,68],[170,69],[171,70],[172,71],[173,71],[175,5],[174,72],[176,73],[177,74],[178,75],[160,76],[179,77],[180,78],[181,79],[182,80],[183,81],[184,82],[185,83],[186,84],[187,85],[188,86],[189,87],[190,88],[191,89],[192,89],[193,90],[194,5],[195,91],[197,92],[196,93],[198,94],[199,95],[200,96],[201,97],[202,98],[203,99],[204,100],[121,101],[120,5],[213,102],[205,103],[206,104],[207,105],[208,106],[209,107],[210,108],[211,109],[212,110],[287,5],[288,5],[290,111],[289,112],[291,113],[292,114],[293,5],[294,5],[220,5],[227,5],[295,5],[297,115],[247,5],[298,113],[323,116],[324,117],[299,118],[302,118],[321,116],[322,116],[312,116],[311,119],[309,116],[304,116],[317,116],[315,116],[319,116],[303,116],[316,116],[320,116],[305,116],[306,116],[318,116],[300,116],[307,116],[308,116],[310,116],[314,116],[325,120],[313,116],[301,116],[338,121],[337,5],[332,120],[334,122],[333,120],[326,120],[327,120],[329,120],[331,120],[335,122],[336,122],[328,122],[330,122],[226,123],[230,124],[97,125],[96,126],[95,5],[258,5],[339,5],[340,127],[47,5],[246,128],[245,5],[243,5],[75,5],[341,129],[342,5],[343,130],[344,131],[122,5],[91,28],[93,132],[92,133],[296,5],[49,134],[67,135],[46,136],[52,135],[77,135],[50,5],[48,137],[100,136],[68,138],[64,139],[66,140],[53,141],[78,142],[65,136],[51,143],[238,144],[240,145],[239,144],[42,5],[138,146],[148,147],[137,146],[158,148],[129,149],[128,150],[157,113],[151,151],[156,152],[131,153],[145,154],[130,155],[154,156],[126,157],[125,113],[155,158],[127,159],[132,160],[133,5],[136,160],[123,5],[159,161],[149,162],[140,163],[141,164],[143,165],[139,166],[142,167],[152,113],[134,168],[135,169],[144,170],[124,171],[147,162],[146,160],[150,5],[153,172],[8,5],[10,5],[9,5],[2,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[3,5],[4,5],[22,5],[19,5],[20,5],[21,5],[23,5],[24,5],[25,5],[5,5],[26,5],[27,5],[28,5],[29,5],[6,5],[33,5],[30,5],[31,5],[32,5],[34,5],[7,5],[35,5],[40,5],[41,5],[36,5],[37,5],[38,5],[39,5],[1,5],[74,173],[76,174],[80,175],[82,176],[83,177],[84,178],[79,179],[81,180],[85,181],[73,182],[115,183]],"exportedModulesMap":[[69,1],[70,2],[72,3],[71,4],[43,5],[54,5],[55,6],[58,7],[56,7],[60,7],[63,8],[62,7],[61,7],[59,7],[57,9],[44,5],[45,10],[102,5],[88,11],[89,12],[87,5],[90,13],[114,14],[105,15],[104,16],[103,17],[113,18],[99,5],[106,19],[107,20],[108,5],[109,21],[111,22],[101,23],[110,24],[112,20],[98,25],[214,26],[215,5],[217,27],[94,28],[86,5],[219,29],[218,5],[221,30],[222,5],[216,26],[223,5],[224,5],[233,31],[234,5],[235,5],[228,32],[231,33],[236,5],[237,34],[242,5],[241,35],[244,36],[248,37],[249,5],[229,5],[250,5],[251,5],[252,38],[253,39],[255,5],[254,5],[259,40],[257,5],[256,5],[260,5],[261,5],[232,5],[262,41],[263,42],[264,5],[265,43],[267,44],[268,45],[266,46],[269,47],[270,48],[271,49],[272,50],[273,51],[274,52],[275,53],[276,54],[277,55],[278,56],[281,57],[282,58],[283,36],[279,5],[280,59],[225,5],[284,5],[285,5],[286,5],[161,60],[162,60],[163,61],[164,62],[165,63],[166,64],[116,5],[119,65],[117,5],[118,5],[167,66],[168,67],[169,68],[170,69],[171,70],[172,71],[173,71],[175,5],[174,72],[176,73],[177,74],[178,75],[160,76],[179,77],[180,78],[181,79],[182,80],[183,81],[184,82],[185,83],[186,84],[187,85],[188,86],[189,87],[190,88],[191,89],[192,89],[193,90],[194,5],[195,91],[197,92],[196,93],[198,94],[199,95],[200,96],[201,97],[202,98],[203,99],[204,100],[121,101],[120,5],[213,102],[205,103],[206,104],[207,105],[208,106],[209,107],[210,108],[211,109],[212,110],[287,5],[288,5],[290,111],[289,112],[291,113],[292,114],[293,5],[294,5],[220,5],[227,5],[295,5],[297,115],[247,5],[298,113],[323,116],[324,117],[299,118],[302,118],[321,116],[322,116],[312,116],[311,119],[309,116],[304,116],[317,116],[315,116],[319,116],[303,116],[316,116],[320,116],[305,116],[306,116],[318,116],[300,116],[307,116],[308,116],[310,116],[314,116],[325,120],[313,116],[301,116],[338,121],[337,5],[332,120],[334,122],[333,120],[326,120],[327,120],[329,120],[331,120],[335,122],[336,122],[328,122],[330,122],[226,123],[230,124],[97,125],[96,126],[95,5],[258,5],[339,5],[340,127],[47,5],[246,128],[245,5],[243,5],[75,5],[341,129],[342,5],[343,130],[344,131],[122,5],[91,28],[93,132],[92,133],[296,5],[49,134],[67,135],[46,136],[52,135],[77,135],[50,5],[48,137],[100,136],[68,138],[64,139],[66,140],[53,141],[78,142],[65,136],[51,143],[238,144],[240,145],[239,144],[42,5],[138,146],[148,147],[137,146],[158,148],[129,149],[128,150],[157,113],[151,151],[156,152],[131,153],[145,154],[130,155],[154,156],[126,157],[125,113],[155,158],[127,159],[132,160],[133,5],[136,160],[123,5],[159,161],[149,162],[140,163],[141,164],[143,165],[139,166],[142,167],[152,113],[134,168],[135,169],[144,170],[124,171],[147,162],[146,160],[150,5],[153,172],[8,5],[10,5],[9,5],[2,5],[11,5],[12,5],[13,5],[14,5],[15,5],[16,5],[17,5],[18,5],[3,5],[4,5],[22,5],[19,5],[20,5],[21,5],[23,5],[24,5],[25,5],[5,5],[26,5],[27,5],[28,5],[29,5],[6,5],[33,5],[30,5],[31,5],[32,5],[34,5],[7,5],[35,5],[40,5],[41,5],[36,5],[37,5],[38,5],[39,5],[1,5],[74,184],[76,185],[80,186],[82,187],[83,177],[73,188],[115,189]],"semanticDiagnosticsPerFile":[69,70,72,71,43,54,55,58,56,60,63,62,61,59,57,44,45,102,88,89,87,90,114,105,104,103,113,99,106,107,108,109,111,101,110,112,98,214,215,217,94,86,219,218,221,222,216,223,224,233,234,235,228,231,236,237,242,241,244,248,249,229,250,251,252,253,255,254,259,257,256,260,261,232,262,263,264,265,267,268,266,269,270,271,272,273,274,275,276,277,278,281,282,283,279,280,225,284,285,286,161,162,163,164,165,166,116,119,117,118,167,168,169,170,171,172,173,175,174,176,177,178,160,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,197,196,198,199,200,201,202,203,204,121,120,213,205,206,207,208,209,210,211,212,287,288,290,289,291,292,293,294,220,227,295,297,247,298,323,324,299,302,321,322,312,311,309,304,317,315,319,303,316,320,305,306,318,300,307,308,310,314,325,313,301,338,337,332,334,333,326,327,329,331,335,336,328,330,226,230,97,96,95,258,339,340,47,246,245,243,75,341,342,343,344,122,91,93,92,296,49,67,46,52,77,50,48,100,68,64,66,53,78,65,51,238,240,239,42,138,148,137,158,129,128,157,151,156,131,145,130,154,126,125,155,127,132,133,136,123,159,149,140,141,143,139,142,152,134,135,144,124,147,146,150,153,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,74,76,80,82,83,84,79,81,85,73,115]},"version":"4.9.5"}