@genesislcap/foundation-fdc3 14.189.0-PA-1226-fix.1 → 14.189.1-alpha-3318926.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,335 +1,10 @@
|
|
1
|
-
import {
|
1
|
+
import { FASTElement } from '@genesislcap/web-core';
|
2
2
|
import { FDC3 } from './fdc3';
|
3
|
-
declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
4
|
-
"__#1@#_container": import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
5
|
-
"__#1@#_latestTokenCode": string;
|
6
|
-
"__#1@#_hasFirstLoaded": boolean;
|
7
|
-
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
8
|
-
"__#1@#_shouldForceLifecycle": boolean;
|
9
|
-
cloneNode(deep?: boolean): Node;
|
10
|
-
deepClone(): Node;
|
11
|
-
readonly shouldRunDisconnect: boolean;
|
12
|
-
readonly shouldRunConnect: boolean;
|
13
|
-
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
14
|
-
"__#1@#_tryFindContainingLayout"(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
15
|
-
connectedCallback(): void;
|
16
|
-
readonly $fastController: import("@microsoft/fast-element").Controller;
|
17
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
18
|
-
disconnectedCallback(): void;
|
19
|
-
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
20
|
-
accessKey: string;
|
21
|
-
readonly accessKeyLabel: string;
|
22
|
-
autocapitalize: string;
|
23
|
-
dir: string;
|
24
|
-
draggable: boolean;
|
25
|
-
hidden: boolean;
|
26
|
-
inert: boolean;
|
27
|
-
innerText: string;
|
28
|
-
lang: string;
|
29
|
-
readonly offsetHeight: number;
|
30
|
-
readonly offsetLeft: number;
|
31
|
-
readonly offsetParent: Element;
|
32
|
-
readonly offsetTop: number;
|
33
|
-
readonly offsetWidth: number;
|
34
|
-
outerText: string;
|
35
|
-
spellcheck: boolean;
|
36
|
-
title: string;
|
37
|
-
translate: boolean;
|
38
|
-
attachInternals(): ElementInternals;
|
39
|
-
click(): void;
|
40
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
41
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
42
|
-
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
43
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
44
|
-
readonly attributes: NamedNodeMap;
|
45
|
-
readonly classList: DOMTokenList;
|
46
|
-
className: string;
|
47
|
-
readonly clientHeight: number;
|
48
|
-
readonly clientLeft: number;
|
49
|
-
readonly clientTop: number;
|
50
|
-
readonly clientWidth: number;
|
51
|
-
id: string;
|
52
|
-
readonly localName: string;
|
53
|
-
readonly namespaceURI: string;
|
54
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
55
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
56
|
-
outerHTML: string;
|
57
|
-
readonly ownerDocument: Document;
|
58
|
-
readonly part: DOMTokenList;
|
59
|
-
readonly prefix: string;
|
60
|
-
readonly scrollHeight: number;
|
61
|
-
scrollLeft: number;
|
62
|
-
scrollTop: number;
|
63
|
-
readonly scrollWidth: number;
|
64
|
-
readonly shadowRoot: ShadowRoot;
|
65
|
-
slot: string;
|
66
|
-
readonly tagName: string;
|
67
|
-
attachShadow(init: ShadowRootInit): ShadowRoot;
|
68
|
-
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
69
|
-
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
70
|
-
closest<E extends Element = Element>(selectors: string): E;
|
71
|
-
getAttribute(qualifiedName: string): string;
|
72
|
-
getAttributeNS(namespace: string, localName: string): string;
|
73
|
-
getAttributeNames(): string[];
|
74
|
-
getAttributeNode(qualifiedName: string): Attr;
|
75
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
76
|
-
getBoundingClientRect(): DOMRect;
|
77
|
-
getClientRects(): DOMRectList;
|
78
|
-
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
79
|
-
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
80
|
-
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
81
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
82
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
83
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
84
|
-
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
85
|
-
hasAttribute(qualifiedName: string): boolean;
|
86
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
87
|
-
hasAttributes(): boolean;
|
88
|
-
hasPointerCapture(pointerId: number): boolean;
|
89
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
90
|
-
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
91
|
-
insertAdjacentText(where: InsertPosition, data: string): void;
|
92
|
-
matches(selectors: string): boolean;
|
93
|
-
releasePointerCapture(pointerId: number): void;
|
94
|
-
removeAttribute(qualifiedName: string): void;
|
95
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
96
|
-
removeAttributeNode(attr: Attr): Attr;
|
97
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
98
|
-
requestPointerLock(): void;
|
99
|
-
scroll(options?: ScrollToOptions): void;
|
100
|
-
scroll(x: number, y: number): void;
|
101
|
-
scrollBy(options?: ScrollToOptions): void;
|
102
|
-
scrollBy(x: number, y: number): void;
|
103
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
104
|
-
scrollTo(options?: ScrollToOptions): void;
|
105
|
-
scrollTo(x: number, y: number): void;
|
106
|
-
setAttribute(qualifiedName: string, value: string): void;
|
107
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
108
|
-
setAttributeNode(attr: Attr): Attr;
|
109
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
110
|
-
setPointerCapture(pointerId: number): void;
|
111
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
112
|
-
webkitMatchesSelector(selectors: string): boolean;
|
113
|
-
readonly baseURI: string;
|
114
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
115
|
-
readonly firstChild: ChildNode;
|
116
|
-
readonly isConnected: boolean;
|
117
|
-
readonly lastChild: ChildNode;
|
118
|
-
readonly nextSibling: ChildNode;
|
119
|
-
readonly nodeName: string;
|
120
|
-
readonly nodeType: number;
|
121
|
-
nodeValue: string;
|
122
|
-
readonly parentElement: HTMLElement;
|
123
|
-
readonly parentNode: ParentNode;
|
124
|
-
readonly previousSibling: ChildNode;
|
125
|
-
textContent: string;
|
126
|
-
appendChild<T_1 extends Node>(node: T_1): T_1;
|
127
|
-
compareDocumentPosition(other: Node): number;
|
128
|
-
contains(other: Node): boolean;
|
129
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
130
|
-
hasChildNodes(): boolean;
|
131
|
-
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
132
|
-
isDefaultNamespace(namespace: string): boolean;
|
133
|
-
isEqualNode(otherNode: Node): boolean;
|
134
|
-
isSameNode(otherNode: Node): boolean;
|
135
|
-
lookupNamespaceURI(prefix: string): string;
|
136
|
-
lookupPrefix(namespace: string): string;
|
137
|
-
normalize(): void;
|
138
|
-
removeChild<T_3 extends Node>(child: T_3): T_3;
|
139
|
-
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
140
|
-
readonly ATTRIBUTE_NODE: number;
|
141
|
-
readonly CDATA_SECTION_NODE: number;
|
142
|
-
readonly COMMENT_NODE: number;
|
143
|
-
readonly DOCUMENT_FRAGMENT_NODE: number;
|
144
|
-
readonly DOCUMENT_NODE: number;
|
145
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
146
|
-
readonly DOCUMENT_POSITION_CONTAINS: number;
|
147
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
148
|
-
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
149
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
150
|
-
readonly DOCUMENT_POSITION_PRECEDING: number;
|
151
|
-
readonly DOCUMENT_TYPE_NODE: number;
|
152
|
-
readonly ELEMENT_NODE: number;
|
153
|
-
readonly ENTITY_NODE: number;
|
154
|
-
readonly ENTITY_REFERENCE_NODE: number;
|
155
|
-
readonly NOTATION_NODE: number;
|
156
|
-
readonly PROCESSING_INSTRUCTION_NODE: number;
|
157
|
-
readonly TEXT_NODE: number;
|
158
|
-
dispatchEvent(event: Event): boolean;
|
159
|
-
ariaAtomic: string;
|
160
|
-
ariaAutoComplete: string;
|
161
|
-
ariaBusy: string;
|
162
|
-
ariaChecked: string;
|
163
|
-
ariaColCount: string;
|
164
|
-
ariaColIndex: string;
|
165
|
-
ariaColIndexText: string;
|
166
|
-
ariaColSpan: string;
|
167
|
-
ariaCurrent: string;
|
168
|
-
ariaDisabled: string;
|
169
|
-
ariaExpanded: string;
|
170
|
-
ariaHasPopup: string;
|
171
|
-
ariaHidden: string;
|
172
|
-
ariaInvalid: string;
|
173
|
-
ariaKeyShortcuts: string;
|
174
|
-
ariaLabel: string;
|
175
|
-
ariaLevel: string;
|
176
|
-
ariaLive: string;
|
177
|
-
ariaModal: string;
|
178
|
-
ariaMultiLine: string;
|
179
|
-
ariaMultiSelectable: string;
|
180
|
-
ariaOrientation: string;
|
181
|
-
ariaPlaceholder: string;
|
182
|
-
ariaPosInSet: string;
|
183
|
-
ariaPressed: string;
|
184
|
-
ariaReadOnly: string;
|
185
|
-
ariaRequired: string;
|
186
|
-
ariaRoleDescription: string;
|
187
|
-
ariaRowCount: string;
|
188
|
-
ariaRowIndex: string;
|
189
|
-
ariaRowIndexText: string;
|
190
|
-
ariaRowSpan: string;
|
191
|
-
ariaSelected: string;
|
192
|
-
ariaSetSize: string;
|
193
|
-
ariaSort: string;
|
194
|
-
ariaValueMax: string;
|
195
|
-
ariaValueMin: string;
|
196
|
-
ariaValueNow: string;
|
197
|
-
ariaValueText: string;
|
198
|
-
role: string;
|
199
|
-
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
200
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
201
|
-
after(...nodes: (string | Node)[]): void;
|
202
|
-
before(...nodes: (string | Node)[]): void;
|
203
|
-
remove(): void;
|
204
|
-
replaceWith(...nodes: (string | Node)[]): void;
|
205
|
-
innerHTML: string;
|
206
|
-
readonly nextElementSibling: Element;
|
207
|
-
readonly previousElementSibling: Element;
|
208
|
-
readonly childElementCount: number;
|
209
|
-
readonly children: HTMLCollection;
|
210
|
-
readonly firstElementChild: Element;
|
211
|
-
readonly lastElementChild: Element;
|
212
|
-
append(...nodes: (string | Node)[]): void;
|
213
|
-
prepend(...nodes: (string | Node)[]): void;
|
214
|
-
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
215
|
-
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
216
|
-
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
217
|
-
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
218
|
-
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
219
|
-
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
220
|
-
replaceChildren(...nodes: (string | Node)[]): void;
|
221
|
-
readonly assignedSlot: HTMLSlotElement;
|
222
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
223
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
224
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
225
|
-
readonly style: CSSStyleDeclaration;
|
226
|
-
contentEditable: string;
|
227
|
-
enterKeyHint: string;
|
228
|
-
inputMode: string;
|
229
|
-
readonly isContentEditable: boolean;
|
230
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
231
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
232
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
233
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
234
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
235
|
-
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
236
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
237
|
-
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
238
|
-
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
239
|
-
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
240
|
-
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
241
|
-
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
242
|
-
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
243
|
-
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
244
|
-
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
245
|
-
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
246
|
-
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
247
|
-
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
248
|
-
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
249
|
-
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
250
|
-
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
251
|
-
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
252
|
-
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
253
|
-
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
254
|
-
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
255
|
-
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
256
|
-
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
257
|
-
onerror: OnErrorEventHandlerNonNull;
|
258
|
-
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
259
|
-
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
260
|
-
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
261
|
-
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
262
|
-
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
263
|
-
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
264
|
-
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
265
|
-
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
266
|
-
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
267
|
-
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
268
|
-
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
269
|
-
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
270
|
-
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
271
|
-
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
272
|
-
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
273
|
-
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
274
|
-
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
275
|
-
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
276
|
-
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
277
|
-
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
278
|
-
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
279
|
-
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
280
|
-
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
281
|
-
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
282
|
-
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
283
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
284
|
-
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
285
|
-
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
286
|
-
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
287
|
-
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
288
|
-
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
289
|
-
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
290
|
-
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
291
|
-
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
292
|
-
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
293
|
-
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
294
|
-
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
295
|
-
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
296
|
-
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
297
|
-
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
298
|
-
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
299
|
-
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
300
|
-
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
301
|
-
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
302
|
-
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
303
|
-
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
304
|
-
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
305
|
-
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
306
|
-
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
307
|
-
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
308
|
-
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
309
|
-
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
310
|
-
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
311
|
-
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
312
|
-
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
313
|
-
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
314
|
-
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
315
|
-
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
316
|
-
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
317
|
-
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
318
|
-
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
319
|
-
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
320
|
-
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
321
|
-
autofocus: boolean;
|
322
|
-
readonly dataset: DOMStringMap;
|
323
|
-
nonce?: string;
|
324
|
-
tabIndex: number;
|
325
|
-
blur(): void;
|
326
|
-
focus(options?: FocusOptions): void;
|
327
|
-
}) & typeof FoundationElement;
|
328
3
|
/**
|
329
4
|
* fdc3-channel-event
|
330
5
|
* @internal
|
331
6
|
*/
|
332
|
-
export declare class Fdc3ChannelEvent extends
|
7
|
+
export declare class Fdc3ChannelEvent extends FASTElement {
|
333
8
|
fdc3: FDC3;
|
334
9
|
eventName: string;
|
335
10
|
channelType: string;
|
@@ -337,8 +12,6 @@ export declare class Fdc3ChannelEvent extends Fdc3ChannelEvent_base {
|
|
337
12
|
mappingFunction: (any: any) => any;
|
338
13
|
connectedCallback(): void;
|
339
14
|
disconnectedCallback(): void;
|
340
|
-
deepClone(): Node;
|
341
15
|
private sendEventOnChannel;
|
342
16
|
}
|
343
|
-
export {};
|
344
17
|
//# sourceMappingURL=fdc3-channel-event.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"fdc3-channel-event.d.ts","sourceRoot":"","sources":["../../src/fdc3-channel-event.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"fdc3-channel-event.d.ts","sourceRoot":"","sources":["../../src/fdc3-channel-event.ts"],"names":[],"mappings":"AAAA,OAAO,EAAiB,WAAW,EAAQ,MAAM,uBAAuB,CAAC;AACzE,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAE9B;;;GAGG;AACH,qBAGa,gBAAiB,SAAQ,WAAW;IACzC,IAAI,EAAE,IAAI,CAAC;IACkB,SAAS,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAEzD,eAAe,EAAE,CAAC,GAAG,KAAA,KAAK,GAAG,CAAC;IAE9B,iBAAiB;IAIjB,oBAAoB;IAIpB,OAAO,CAAC,kBAAkB,CAMxB;CACH"}
|
@@ -1,16 +1,15 @@
|
|
1
1
|
import { __awaiter, __decorate } from "tslib";
|
2
|
-
import {
|
3
|
-
import { attr, customElement, FoundationElement } from '@genesislcap/web-core';
|
2
|
+
import { customElement, FASTElement, attr } from '@genesislcap/web-core';
|
4
3
|
import { FDC3 } from './fdc3';
|
5
4
|
/**
|
6
5
|
* fdc3-channel-event
|
7
6
|
* @internal
|
8
7
|
*/
|
9
|
-
let Fdc3ChannelEvent = class Fdc3ChannelEvent extends
|
8
|
+
let Fdc3ChannelEvent = class Fdc3ChannelEvent extends FASTElement {
|
10
9
|
constructor() {
|
11
10
|
super(...arguments);
|
12
11
|
this.sendEventOnChannel = (e) => __awaiter(this, void 0, void 0, function* () {
|
13
|
-
let payload = e.
|
12
|
+
let payload = e.data || e.detail;
|
14
13
|
if (this.mappingFunction && typeof this.mappingFunction === 'function') {
|
15
14
|
payload = this.mappingFunction(payload);
|
16
15
|
}
|
@@ -23,13 +22,6 @@ let Fdc3ChannelEvent = class Fdc3ChannelEvent extends LifecycleMixin(FoundationE
|
|
23
22
|
disconnectedCallback() {
|
24
23
|
this.parentElement.removeEventListener(this.eventName, this.sendEventOnChannel);
|
25
24
|
}
|
26
|
-
deepClone() {
|
27
|
-
const copy = super.deepClone();
|
28
|
-
if (this.mappingFunction) {
|
29
|
-
copy.mappingFunction = this.mappingFunction.bind(copy);
|
30
|
-
}
|
31
|
-
return copy;
|
32
|
-
}
|
33
25
|
};
|
34
26
|
__decorate([
|
35
27
|
FDC3
|
@@ -2,17 +2,12 @@ import { AppIntent } from '@finos/fdc3';
|
|
2
2
|
import { Channel } from '@finos/fdc3';
|
3
3
|
import { Context } from '@finos/fdc3';
|
4
4
|
import { ContextHandler } from '@finos/fdc3';
|
5
|
-
import { Controller } from '@microsoft/fast-element';
|
6
|
-
import { DOMContainer } from '@genesislcap/foundation-utils';
|
7
5
|
import { FASTElement } from '@genesislcap/web-core';
|
8
|
-
import { FoundationElement } from '@genesislcap/web-core';
|
9
6
|
import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
10
|
-
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
11
7
|
import { IntentResolution } from '@finos/fdc3';
|
12
8
|
import { Intents } from '@finos/fdc3';
|
13
9
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
14
10
|
import { IOConnectDesktop } from '@interopio/desktop';
|
15
|
-
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
16
11
|
import { NotificationDataRow } from '@genesislcap/foundation-notifications';
|
17
12
|
import { NotificationListener } from '@genesislcap/foundation-ui';
|
18
13
|
import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
|
@@ -149,7 +144,7 @@ export declare interface FDC3Channel extends Channel {
|
|
149
144
|
* fdc3-channel-event
|
150
145
|
* @internal
|
151
146
|
*/
|
152
|
-
export declare class Fdc3ChannelEvent extends
|
147
|
+
export declare class Fdc3ChannelEvent extends FASTElement {
|
153
148
|
fdc3: FDC3;
|
154
149
|
eventName: string;
|
155
150
|
channelType: string;
|
@@ -157,336 +152,9 @@ export declare class Fdc3ChannelEvent extends Fdc3ChannelEvent_base {
|
|
157
152
|
mappingFunction: (any: any) => any;
|
158
153
|
connectedCallback(): void;
|
159
154
|
disconnectedCallback(): void;
|
160
|
-
deepClone(): Node;
|
161
155
|
private sendEventOnChannel;
|
162
156
|
}
|
163
157
|
|
164
|
-
declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
165
|
-
"__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
166
|
-
"__#1@#_latestTokenCode": string;
|
167
|
-
"__#1@#_hasFirstLoaded": boolean;
|
168
|
-
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
169
|
-
"__#1@#_shouldForceLifecycle": boolean;
|
170
|
-
cloneNode(deep?: boolean): Node;
|
171
|
-
deepClone(): Node;
|
172
|
-
readonly shouldRunDisconnect: boolean;
|
173
|
-
readonly shouldRunConnect: boolean;
|
174
|
-
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
175
|
-
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
176
|
-
connectedCallback(): void;
|
177
|
-
readonly $fastController: Controller;
|
178
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
179
|
-
disconnectedCallback(): void;
|
180
|
-
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
181
|
-
accessKey: string;
|
182
|
-
readonly accessKeyLabel: string;
|
183
|
-
autocapitalize: string;
|
184
|
-
dir: string;
|
185
|
-
draggable: boolean;
|
186
|
-
hidden: boolean;
|
187
|
-
inert: boolean;
|
188
|
-
innerText: string;
|
189
|
-
lang: string;
|
190
|
-
readonly offsetHeight: number;
|
191
|
-
readonly offsetLeft: number;
|
192
|
-
readonly offsetParent: Element;
|
193
|
-
readonly offsetTop: number;
|
194
|
-
readonly offsetWidth: number;
|
195
|
-
outerText: string;
|
196
|
-
spellcheck: boolean;
|
197
|
-
title: string;
|
198
|
-
translate: boolean;
|
199
|
-
attachInternals(): ElementInternals;
|
200
|
-
click(): void;
|
201
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
202
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
203
|
-
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
204
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
205
|
-
readonly attributes: NamedNodeMap;
|
206
|
-
readonly classList: DOMTokenList;
|
207
|
-
className: string;
|
208
|
-
readonly clientHeight: number;
|
209
|
-
readonly clientLeft: number;
|
210
|
-
readonly clientTop: number;
|
211
|
-
readonly clientWidth: number;
|
212
|
-
id: string;
|
213
|
-
readonly localName: string;
|
214
|
-
readonly namespaceURI: string;
|
215
|
-
onfullscreenchange: (this: Element, ev: Event) => any;
|
216
|
-
onfullscreenerror: (this: Element, ev: Event) => any;
|
217
|
-
outerHTML: string;
|
218
|
-
readonly ownerDocument: Document;
|
219
|
-
readonly part: DOMTokenList;
|
220
|
-
readonly prefix: string;
|
221
|
-
readonly scrollHeight: number;
|
222
|
-
scrollLeft: number;
|
223
|
-
scrollTop: number;
|
224
|
-
readonly scrollWidth: number;
|
225
|
-
readonly shadowRoot: ShadowRoot;
|
226
|
-
slot: string;
|
227
|
-
readonly tagName: string;
|
228
|
-
attachShadow(init: ShadowRootInit): ShadowRoot;
|
229
|
-
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
230
|
-
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
231
|
-
closest<E extends Element = Element>(selectors: string): E;
|
232
|
-
getAttribute(qualifiedName: string): string;
|
233
|
-
getAttributeNS(namespace: string, localName: string): string;
|
234
|
-
getAttributeNames(): string[];
|
235
|
-
getAttributeNode(qualifiedName: string): Attr;
|
236
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
237
|
-
getBoundingClientRect(): DOMRect;
|
238
|
-
getClientRects(): DOMRectList;
|
239
|
-
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
240
|
-
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
241
|
-
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
242
|
-
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
243
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
244
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
245
|
-
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
246
|
-
hasAttribute(qualifiedName: string): boolean;
|
247
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
248
|
-
hasAttributes(): boolean;
|
249
|
-
hasPointerCapture(pointerId: number): boolean;
|
250
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
251
|
-
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
252
|
-
insertAdjacentText(where: InsertPosition, data: string): void;
|
253
|
-
matches(selectors: string): boolean;
|
254
|
-
releasePointerCapture(pointerId: number): void;
|
255
|
-
removeAttribute(qualifiedName: string): void;
|
256
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
257
|
-
removeAttributeNode(attr: Attr): Attr;
|
258
|
-
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
259
|
-
requestPointerLock(): void;
|
260
|
-
scroll(options?: ScrollToOptions): void;
|
261
|
-
scroll(x: number, y: number): void;
|
262
|
-
scrollBy(options?: ScrollToOptions): void;
|
263
|
-
scrollBy(x: number, y: number): void;
|
264
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
265
|
-
scrollTo(options?: ScrollToOptions): void;
|
266
|
-
scrollTo(x: number, y: number): void;
|
267
|
-
setAttribute(qualifiedName: string, value: string): void;
|
268
|
-
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
269
|
-
setAttributeNode(attr: Attr): Attr;
|
270
|
-
setAttributeNodeNS(attr: Attr): Attr;
|
271
|
-
setPointerCapture(pointerId: number): void;
|
272
|
-
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
273
|
-
webkitMatchesSelector(selectors: string): boolean;
|
274
|
-
readonly baseURI: string;
|
275
|
-
readonly childNodes: NodeListOf<ChildNode>;
|
276
|
-
readonly firstChild: ChildNode;
|
277
|
-
readonly isConnected: boolean;
|
278
|
-
readonly lastChild: ChildNode;
|
279
|
-
readonly nextSibling: ChildNode;
|
280
|
-
readonly nodeName: string;
|
281
|
-
readonly nodeType: number;
|
282
|
-
nodeValue: string;
|
283
|
-
readonly parentElement: HTMLElement;
|
284
|
-
readonly parentNode: ParentNode;
|
285
|
-
readonly previousSibling: ChildNode;
|
286
|
-
textContent: string;
|
287
|
-
appendChild<T_1 extends Node>(node: T_1): T_1;
|
288
|
-
compareDocumentPosition(other: Node): number;
|
289
|
-
contains(other: Node): boolean;
|
290
|
-
getRootNode(options?: GetRootNodeOptions): Node;
|
291
|
-
hasChildNodes(): boolean;
|
292
|
-
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
293
|
-
isDefaultNamespace(namespace: string): boolean;
|
294
|
-
isEqualNode(otherNode: Node): boolean;
|
295
|
-
isSameNode(otherNode: Node): boolean;
|
296
|
-
lookupNamespaceURI(prefix: string): string;
|
297
|
-
lookupPrefix(namespace: string): string;
|
298
|
-
normalize(): void;
|
299
|
-
removeChild<T_3 extends Node>(child: T_3): T_3;
|
300
|
-
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
301
|
-
readonly ATTRIBUTE_NODE: number;
|
302
|
-
readonly CDATA_SECTION_NODE: number;
|
303
|
-
readonly COMMENT_NODE: number;
|
304
|
-
readonly DOCUMENT_FRAGMENT_NODE: number;
|
305
|
-
readonly DOCUMENT_NODE: number;
|
306
|
-
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
307
|
-
readonly DOCUMENT_POSITION_CONTAINS: number;
|
308
|
-
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
309
|
-
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
310
|
-
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
311
|
-
readonly DOCUMENT_POSITION_PRECEDING: number;
|
312
|
-
readonly DOCUMENT_TYPE_NODE: number;
|
313
|
-
readonly ELEMENT_NODE: number;
|
314
|
-
readonly ENTITY_NODE: number;
|
315
|
-
readonly ENTITY_REFERENCE_NODE: number;
|
316
|
-
readonly NOTATION_NODE: number;
|
317
|
-
readonly PROCESSING_INSTRUCTION_NODE: number;
|
318
|
-
readonly TEXT_NODE: number;
|
319
|
-
dispatchEvent(event: Event): boolean;
|
320
|
-
ariaAtomic: string;
|
321
|
-
ariaAutoComplete: string;
|
322
|
-
ariaBusy: string;
|
323
|
-
ariaChecked: string;
|
324
|
-
ariaColCount: string;
|
325
|
-
ariaColIndex: string;
|
326
|
-
ariaColIndexText: string;
|
327
|
-
ariaColSpan: string;
|
328
|
-
ariaCurrent: string;
|
329
|
-
ariaDisabled: string;
|
330
|
-
ariaExpanded: string;
|
331
|
-
ariaHasPopup: string;
|
332
|
-
ariaHidden: string;
|
333
|
-
ariaInvalid: string;
|
334
|
-
ariaKeyShortcuts: string;
|
335
|
-
ariaLabel: string;
|
336
|
-
ariaLevel: string;
|
337
|
-
ariaLive: string;
|
338
|
-
ariaModal: string;
|
339
|
-
ariaMultiLine: string;
|
340
|
-
ariaMultiSelectable: string;
|
341
|
-
ariaOrientation: string;
|
342
|
-
ariaPlaceholder: string;
|
343
|
-
ariaPosInSet: string;
|
344
|
-
ariaPressed: string;
|
345
|
-
ariaReadOnly: string;
|
346
|
-
ariaRequired: string;
|
347
|
-
ariaRoleDescription: string;
|
348
|
-
ariaRowCount: string;
|
349
|
-
ariaRowIndex: string;
|
350
|
-
ariaRowIndexText: string;
|
351
|
-
ariaRowSpan: string;
|
352
|
-
ariaSelected: string;
|
353
|
-
ariaSetSize: string;
|
354
|
-
ariaSort: string;
|
355
|
-
ariaValueMax: string;
|
356
|
-
ariaValueMin: string;
|
357
|
-
ariaValueNow: string;
|
358
|
-
ariaValueText: string;
|
359
|
-
role: string;
|
360
|
-
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
361
|
-
getAnimations(options?: GetAnimationsOptions): Animation[];
|
362
|
-
after(...nodes: (string | Node)[]): void;
|
363
|
-
before(...nodes: (string | Node)[]): void;
|
364
|
-
remove(): void;
|
365
|
-
replaceWith(...nodes: (string | Node)[]): void;
|
366
|
-
innerHTML: string;
|
367
|
-
readonly nextElementSibling: Element;
|
368
|
-
readonly previousElementSibling: Element;
|
369
|
-
readonly childElementCount: number;
|
370
|
-
readonly children: HTMLCollection;
|
371
|
-
readonly firstElementChild: Element;
|
372
|
-
readonly lastElementChild: Element;
|
373
|
-
append(...nodes: (string | Node)[]): void;
|
374
|
-
prepend(...nodes: (string | Node)[]): void;
|
375
|
-
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
376
|
-
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
377
|
-
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
378
|
-
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
379
|
-
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
380
|
-
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
381
|
-
replaceChildren(...nodes: (string | Node)[]): void;
|
382
|
-
readonly assignedSlot: HTMLSlotElement;
|
383
|
-
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
384
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
385
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
386
|
-
readonly style: CSSStyleDeclaration;
|
387
|
-
contentEditable: string;
|
388
|
-
enterKeyHint: string;
|
389
|
-
inputMode: string;
|
390
|
-
readonly isContentEditable: boolean;
|
391
|
-
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
392
|
-
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
393
|
-
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
394
|
-
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
395
|
-
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
396
|
-
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
397
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
398
|
-
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
399
|
-
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
400
|
-
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
401
|
-
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
402
|
-
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
403
|
-
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
404
|
-
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
405
|
-
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
406
|
-
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
407
|
-
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
408
|
-
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
409
|
-
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
410
|
-
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
411
|
-
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
412
|
-
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
413
|
-
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
414
|
-
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
415
|
-
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
416
|
-
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
417
|
-
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
418
|
-
onerror: OnErrorEventHandlerNonNull;
|
419
|
-
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
420
|
-
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
421
|
-
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
422
|
-
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
423
|
-
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
424
|
-
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
425
|
-
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
426
|
-
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
427
|
-
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
428
|
-
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
429
|
-
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
430
|
-
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
431
|
-
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
432
|
-
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
433
|
-
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
434
|
-
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
435
|
-
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
436
|
-
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
437
|
-
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
438
|
-
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
439
|
-
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
440
|
-
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
441
|
-
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
442
|
-
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
443
|
-
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
444
|
-
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
445
|
-
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
446
|
-
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
447
|
-
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
448
|
-
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
449
|
-
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
450
|
-
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
451
|
-
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
452
|
-
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
453
|
-
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
454
|
-
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
455
|
-
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
456
|
-
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
457
|
-
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
458
|
-
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
459
|
-
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
460
|
-
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
461
|
-
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
462
|
-
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
463
|
-
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
464
|
-
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
465
|
-
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
466
|
-
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
467
|
-
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
468
|
-
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
469
|
-
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
470
|
-
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
471
|
-
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
472
|
-
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
473
|
-
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
474
|
-
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
475
|
-
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
476
|
-
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
477
|
-
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
478
|
-
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
479
|
-
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
480
|
-
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
481
|
-
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
482
|
-
autofocus: boolean;
|
483
|
-
readonly dataset: DOMStringMap;
|
484
|
-
nonce?: string;
|
485
|
-
tabIndex: number;
|
486
|
-
blur(): void;
|
487
|
-
focus(options?: FocusOptions): void;
|
488
|
-
}) & typeof FoundationElement;
|
489
|
-
|
490
158
|
/**
|
491
159
|
* @public
|
492
160
|
*/
|
package/docs/api-report.md
CHANGED
@@ -8,17 +8,12 @@ import { AppIntent } from '@finos/fdc3';
|
|
8
8
|
import { Channel } from '@finos/fdc3';
|
9
9
|
import { Context } from '@finos/fdc3';
|
10
10
|
import { ContextHandler } from '@finos/fdc3';
|
11
|
-
import { Controller } from '@microsoft/fast-element';
|
12
|
-
import { DOMContainer } from '@genesislcap/foundation-utils';
|
13
11
|
import { FASTElement } from '@genesislcap/web-core';
|
14
|
-
import { FoundationElement } from '@genesislcap/web-core';
|
15
12
|
import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
16
|
-
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
17
13
|
import { IntentResolution } from '@finos/fdc3';
|
18
14
|
import { Intents } from '@finos/fdc3';
|
19
15
|
import { InterfaceSymbol } from '@microsoft/fast-foundation';
|
20
16
|
import { IOConnectDesktop } from '@interopio/desktop';
|
21
|
-
import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
|
22
17
|
import { NotificationDataRow } from '@genesislcap/foundation-notifications';
|
23
18
|
import { NotificationListener } from '@genesislcap/foundation-ui';
|
24
19
|
import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
|
@@ -91,11 +86,10 @@ export interface FDC3AppIntent extends AppIntent {
|
|
91
86
|
export interface FDC3Channel extends Channel {
|
92
87
|
}
|
93
88
|
|
94
|
-
// Warning: (ae-forgotten-export) The symbol "Fdc3ChannelEvent_base" needs to be exported by the entry point index.d.ts
|
95
89
|
// Warning: (ae-internal-missing-underscore) The name "Fdc3ChannelEvent" should be prefixed with an underscore because the declaration is marked as @internal
|
96
90
|
//
|
97
91
|
// @internal
|
98
|
-
export class Fdc3ChannelEvent extends
|
92
|
+
export class Fdc3ChannelEvent extends FASTElement {
|
99
93
|
// (undocumented)
|
100
94
|
channelName: string;
|
101
95
|
// (undocumented)
|
@@ -103,8 +97,6 @@ export class Fdc3ChannelEvent extends Fdc3ChannelEvent_base {
|
|
103
97
|
// (undocumented)
|
104
98
|
connectedCallback(): void;
|
105
99
|
// (undocumented)
|
106
|
-
deepClone(): Node;
|
107
|
-
// (undocumented)
|
108
100
|
disconnectedCallback(): void;
|
109
101
|
// (undocumented)
|
110
102
|
eventName: string;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@genesislcap/foundation-fdc3",
|
3
3
|
"description": "Genesis Foundation FDC3",
|
4
|
-
"version": "14.189.
|
4
|
+
"version": "14.189.1-alpha-3318926.0",
|
5
5
|
"sideEffects": false,
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
7
7
|
"main": "dist/esm/index.js",
|
@@ -59,22 +59,22 @@
|
|
59
59
|
}
|
60
60
|
},
|
61
61
|
"devDependencies": {
|
62
|
-
"@genesislcap/foundation-testing": "14.189.
|
63
|
-
"@genesislcap/genx": "14.189.
|
64
|
-
"@genesislcap/rollup-builder": "14.189.
|
65
|
-
"@genesislcap/ts-builder": "14.189.
|
66
|
-
"@genesislcap/uvu-playwright-builder": "14.189.
|
67
|
-
"@genesislcap/vite-builder": "14.189.
|
68
|
-
"@genesislcap/webpack-builder": "14.189.
|
62
|
+
"@genesislcap/foundation-testing": "14.189.1-alpha-3318926.0",
|
63
|
+
"@genesislcap/genx": "14.189.1-alpha-3318926.0",
|
64
|
+
"@genesislcap/rollup-builder": "14.189.1-alpha-3318926.0",
|
65
|
+
"@genesislcap/ts-builder": "14.189.1-alpha-3318926.0",
|
66
|
+
"@genesislcap/uvu-playwright-builder": "14.189.1-alpha-3318926.0",
|
67
|
+
"@genesislcap/vite-builder": "14.189.1-alpha-3318926.0",
|
68
|
+
"@genesislcap/webpack-builder": "14.189.1-alpha-3318926.0",
|
69
69
|
"rimraf": "^5.0.0"
|
70
70
|
},
|
71
71
|
"dependencies": {
|
72
72
|
"@finos/fdc3": "^1.2.0",
|
73
|
-
"@genesislcap/foundation-logger": "14.189.
|
74
|
-
"@genesislcap/foundation-notifications": "14.189.
|
75
|
-
"@genesislcap/foundation-ui": "14.189.
|
76
|
-
"@genesislcap/foundation-utils": "14.189.
|
77
|
-
"@genesislcap/web-core": "14.189.
|
73
|
+
"@genesislcap/foundation-logger": "14.189.1-alpha-3318926.0",
|
74
|
+
"@genesislcap/foundation-notifications": "14.189.1-alpha-3318926.0",
|
75
|
+
"@genesislcap/foundation-ui": "14.189.1-alpha-3318926.0",
|
76
|
+
"@genesislcap/foundation-utils": "14.189.1-alpha-3318926.0",
|
77
|
+
"@genesislcap/web-core": "14.189.1-alpha-3318926.0",
|
78
78
|
"@interopio/desktop": "^6.3.1",
|
79
79
|
"@microsoft/fast-element": "^1.12.0",
|
80
80
|
"@microsoft/fast-foundation": "^2.49.4",
|
@@ -88,5 +88,5 @@
|
|
88
88
|
"publishConfig": {
|
89
89
|
"access": "public"
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "f2a05fd2b8fab95ccfd4ee8f22f64e3e87c88e4a"
|
92
92
|
}
|