@genesislcap/foundation-fdc3 14.192.0 → 14.192.2-publicpath.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- import { FASTElement } from '@genesislcap/web-core';
1
+ import { FoundationElement } from '@genesislcap/web-core';
2
2
  import { FDC3 } from '../fdc3';
3
3
  /**
4
4
  * fdc3-listener listen intent config
@@ -17,14 +17,341 @@ export interface ChannelConfig {
17
17
  channelType: string;
18
18
  callback: (any: any) => void;
19
19
  }
20
+ declare const Fdc3Listener_base: (new (...args: any[]) => {
21
+ "__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
22
+ "__#1@#_latestTokenCode": string;
23
+ "__#1@#_hasFirstLoaded": boolean;
24
+ "__#1@#_cleanupTimeout": NodeJS.Timeout;
25
+ "__#1@#_shouldForceLifecycle": boolean;
26
+ cloneNode(deep?: boolean): Node;
27
+ deepClone(): Node;
28
+ readonly shouldRunDisconnect: boolean;
29
+ readonly shouldRunConnect: boolean;
30
+ "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
31
+ "__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
32
+ connectedCallback(): void;
33
+ readonly $fastController: import("@microsoft/fast-element").Controller;
34
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
35
+ disconnectedCallback(): void;
36
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
37
+ accessKey: string;
38
+ readonly accessKeyLabel: string;
39
+ autocapitalize: string;
40
+ dir: string;
41
+ draggable: boolean;
42
+ hidden: boolean;
43
+ inert: boolean;
44
+ innerText: string;
45
+ lang: string;
46
+ readonly offsetHeight: number;
47
+ readonly offsetLeft: number;
48
+ readonly offsetParent: Element;
49
+ readonly offsetTop: number;
50
+ readonly offsetWidth: number;
51
+ outerText: string;
52
+ spellcheck: boolean;
53
+ title: string;
54
+ translate: boolean;
55
+ attachInternals(): ElementInternals;
56
+ click(): void;
57
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
58
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
59
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
60
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
61
+ readonly attributes: NamedNodeMap;
62
+ readonly classList: DOMTokenList;
63
+ className: string;
64
+ readonly clientHeight: number;
65
+ readonly clientLeft: number;
66
+ readonly clientTop: number;
67
+ readonly clientWidth: number;
68
+ id: string;
69
+ readonly localName: string;
70
+ readonly namespaceURI: string;
71
+ onfullscreenchange: (this: Element, ev: Event) => any;
72
+ onfullscreenerror: (this: Element, ev: Event) => any;
73
+ outerHTML: string;
74
+ readonly ownerDocument: Document;
75
+ readonly part: DOMTokenList;
76
+ readonly prefix: string;
77
+ readonly scrollHeight: number;
78
+ scrollLeft: number;
79
+ scrollTop: number;
80
+ readonly scrollWidth: number;
81
+ readonly shadowRoot: ShadowRoot;
82
+ slot: string;
83
+ readonly tagName: string;
84
+ attachShadow(init: ShadowRootInit): ShadowRoot;
85
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
86
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
87
+ closest<E extends Element = Element>(selectors: string): E;
88
+ getAttribute(qualifiedName: string): string;
89
+ getAttributeNS(namespace: string, localName: string): string;
90
+ getAttributeNames(): string[];
91
+ getAttributeNode(qualifiedName: string): Attr;
92
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
93
+ getBoundingClientRect(): DOMRect;
94
+ getClientRects(): DOMRectList;
95
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
96
+ getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
97
+ getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
98
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
99
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
100
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
101
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
102
+ hasAttribute(qualifiedName: string): boolean;
103
+ hasAttributeNS(namespace: string, localName: string): boolean;
104
+ hasAttributes(): boolean;
105
+ hasPointerCapture(pointerId: number): boolean;
106
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
107
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
108
+ insertAdjacentText(where: InsertPosition, data: string): void;
109
+ matches(selectors: string): boolean;
110
+ releasePointerCapture(pointerId: number): void;
111
+ removeAttribute(qualifiedName: string): void;
112
+ removeAttributeNS(namespace: string, localName: string): void;
113
+ removeAttributeNode(attr: Attr): Attr;
114
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
115
+ requestPointerLock(): void;
116
+ scroll(options?: ScrollToOptions): void;
117
+ scroll(x: number, y: number): void;
118
+ scrollBy(options?: ScrollToOptions): void;
119
+ scrollBy(x: number, y: number): void;
120
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
121
+ scrollTo(options?: ScrollToOptions): void;
122
+ scrollTo(x: number, y: number): void;
123
+ setAttribute(qualifiedName: string, value: string): void;
124
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
125
+ setAttributeNode(attr: Attr): Attr;
126
+ setAttributeNodeNS(attr: Attr): Attr;
127
+ setPointerCapture(pointerId: number): void;
128
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
129
+ webkitMatchesSelector(selectors: string): boolean;
130
+ readonly baseURI: string;
131
+ readonly childNodes: NodeListOf<ChildNode>;
132
+ readonly firstChild: ChildNode;
133
+ readonly isConnected: boolean;
134
+ readonly lastChild: ChildNode;
135
+ readonly nextSibling: ChildNode;
136
+ readonly nodeName: string;
137
+ readonly nodeType: number;
138
+ nodeValue: string;
139
+ readonly parentElement: HTMLElement;
140
+ readonly parentNode: ParentNode;
141
+ readonly previousSibling: ChildNode;
142
+ textContent: string;
143
+ appendChild<T_1 extends Node>(node: T_1): T_1;
144
+ compareDocumentPosition(other: Node): number;
145
+ contains(other: Node): boolean;
146
+ getRootNode(options?: GetRootNodeOptions): Node;
147
+ hasChildNodes(): boolean;
148
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
149
+ isDefaultNamespace(namespace: string): boolean;
150
+ isEqualNode(otherNode: Node): boolean;
151
+ isSameNode(otherNode: Node): boolean;
152
+ lookupNamespaceURI(prefix: string): string;
153
+ lookupPrefix(namespace: string): string;
154
+ normalize(): void;
155
+ removeChild<T_3 extends Node>(child: T_3): T_3;
156
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
157
+ readonly ATTRIBUTE_NODE: number;
158
+ readonly CDATA_SECTION_NODE: number;
159
+ readonly COMMENT_NODE: number;
160
+ readonly DOCUMENT_FRAGMENT_NODE: number;
161
+ readonly DOCUMENT_NODE: number;
162
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
163
+ readonly DOCUMENT_POSITION_CONTAINS: number;
164
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
165
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
166
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
167
+ readonly DOCUMENT_POSITION_PRECEDING: number;
168
+ readonly DOCUMENT_TYPE_NODE: number;
169
+ readonly ELEMENT_NODE: number;
170
+ readonly ENTITY_NODE: number;
171
+ readonly ENTITY_REFERENCE_NODE: number;
172
+ readonly NOTATION_NODE: number;
173
+ readonly PROCESSING_INSTRUCTION_NODE: number;
174
+ readonly TEXT_NODE: number;
175
+ dispatchEvent(event: Event): boolean;
176
+ ariaAtomic: string;
177
+ ariaAutoComplete: string;
178
+ ariaBusy: string;
179
+ ariaChecked: string;
180
+ ariaColCount: string;
181
+ ariaColIndex: string;
182
+ ariaColIndexText: string;
183
+ ariaColSpan: string;
184
+ ariaCurrent: string;
185
+ ariaDisabled: string;
186
+ ariaExpanded: string;
187
+ ariaHasPopup: string;
188
+ ariaHidden: string;
189
+ ariaInvalid: string;
190
+ ariaKeyShortcuts: string;
191
+ ariaLabel: string;
192
+ ariaLevel: string;
193
+ ariaLive: string;
194
+ ariaModal: string;
195
+ ariaMultiLine: string;
196
+ ariaMultiSelectable: string;
197
+ ariaOrientation: string;
198
+ ariaPlaceholder: string;
199
+ ariaPosInSet: string;
200
+ ariaPressed: string;
201
+ ariaReadOnly: string;
202
+ ariaRequired: string;
203
+ ariaRoleDescription: string;
204
+ ariaRowCount: string;
205
+ ariaRowIndex: string;
206
+ ariaRowIndexText: string;
207
+ ariaRowSpan: string;
208
+ ariaSelected: string;
209
+ ariaSetSize: string;
210
+ ariaSort: string;
211
+ ariaValueMax: string;
212
+ ariaValueMin: string;
213
+ ariaValueNow: string;
214
+ ariaValueText: string;
215
+ role: string;
216
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
217
+ getAnimations(options?: GetAnimationsOptions): Animation[];
218
+ after(...nodes: (string | Node)[]): void;
219
+ before(...nodes: (string | Node)[]): void;
220
+ remove(): void;
221
+ replaceWith(...nodes: (string | Node)[]): void;
222
+ innerHTML: string;
223
+ readonly nextElementSibling: Element;
224
+ readonly previousElementSibling: Element;
225
+ readonly childElementCount: number;
226
+ readonly children: HTMLCollection;
227
+ readonly firstElementChild: Element;
228
+ readonly lastElementChild: Element;
229
+ append(...nodes: (string | Node)[]): void;
230
+ prepend(...nodes: (string | Node)[]): void;
231
+ querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
232
+ querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
233
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
234
+ querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
235
+ querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
236
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
237
+ replaceChildren(...nodes: (string | Node)[]): void;
238
+ readonly assignedSlot: HTMLSlotElement;
239
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
240
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
241
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
242
+ readonly style: CSSStyleDeclaration;
243
+ contentEditable: string;
244
+ enterKeyHint: string;
245
+ inputMode: string;
246
+ readonly isContentEditable: boolean;
247
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
248
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
249
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
250
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
251
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
252
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
253
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
254
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
255
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
256
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
257
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
258
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
259
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
260
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
261
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
262
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
263
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
264
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
265
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
266
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
267
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
268
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
269
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
270
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
271
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
272
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
273
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
274
+ onerror: OnErrorEventHandlerNonNull;
275
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
276
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
277
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
278
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
279
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
280
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
281
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
282
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
283
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
284
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
285
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
286
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
287
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
288
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
289
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
290
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
291
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
292
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
293
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
294
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
295
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
296
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
297
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
298
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
299
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
300
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
301
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
302
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
303
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
304
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
305
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
306
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
307
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
308
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
309
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
310
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
311
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
312
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
313
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
314
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
315
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
316
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
317
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
318
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
319
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
320
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
321
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
322
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
323
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
324
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
325
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
326
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
327
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
328
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
329
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
330
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
331
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
332
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
333
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
334
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
335
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
336
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
337
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
338
+ autofocus: boolean;
339
+ readonly dataset: DOMStringMap;
340
+ nonce?: string;
341
+ tabIndex: number;
342
+ blur(): void;
343
+ focus(options?: FocusOptions): void;
344
+ }) & typeof FoundationElement;
20
345
  /**
21
346
  * fdc3-listener
22
347
  * @alpha
23
348
  */
24
- export declare class Fdc3Listener extends FASTElement {
349
+ export declare class Fdc3Listener extends Fdc3Listener_base {
25
350
  fdc3: FDC3;
26
351
  intentConfig: IntentConfig[];
27
352
  channelConfig: ChannelConfig[];
353
+ deepClone(): Node;
28
354
  connectedCallback(): void;
29
355
  }
356
+ export {};
30
357
  //# sourceMappingURL=fdc3-listener.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fdc3-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-listener.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACnE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,GAAG,KAAA,KAAK,IAAI,CAAC;CACzB;AAED;;;GAGG;AACH,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,CAAC,GAAG,KAAA,KAAK,IAAI,CAAC;CACzB;AAED;;;GAGG;AACH,qBAGa,YAAa,SAAQ,WAAW;IACrC,IAAI,EAAE,IAAI,CAAC;IAEjB,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,aAAa,EAAE,aAAa,EAAE,CAAM;IAEpC,iBAAiB;CAYlB"}
1
+ {"version":3,"file":"fdc3-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-listener.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AACzE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,GAAG,KAAA,KAAK,IAAI,CAAC;CACzB;AAED;;;GAGG;AACH,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,CAAC,GAAG,KAAA,KAAK,IAAI,CAAC;CACzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED;;;GAGG;AACH,qBAGa,YAAa,SAAQ,iBAAiC;IAC3D,IAAI,EAAE,IAAI,CAAC;IAEjB,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,aAAa,EAAE,aAAa,EAAE,CAAM;IAE3B,SAAS,IAAI,IAAI;IA0B1B,iBAAiB;CAYlB"}