@genesislcap/foundation-fdc3 14.237.2-alpha-78ebbc0.0 → 14.238.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dts/fdc3-channel-event.d.ts +29 -46
- package/dist/dts/fdc3-channel-event.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/dts/util/fdc3-intent-listener.d.ts +29 -46
- package/dist/dts/util/fdc3-intent-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-raise-intent.d.ts +29 -46
- package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
- package/dist/dts/util/fdc3-system-channel-listener.d.ts +29 -46
- package/dist/dts/util/fdc3-system-channel-listener.d.ts.map +1 -1
- package/dist/esm/fdc3.js +2 -2
- package/dist/foundation-fdc3.api.json +167 -834
- package/dist/foundation-fdc3.d.ts +116 -182
- package/docs/api/foundation-fdc3.interopfoundationnotificationlistener.md +1 -11
- package/docs/api/foundation-fdc3.md +1 -13
- package/docs/{api-report.md.api.md → api-report.md} +0 -2
- package/package.json +15 -15
- package/docs/api/foundation-fdc3.appchannellistenerconfig.channelname.md +0 -14
- package/docs/api/foundation-fdc3.appchannellistenerconfig.md +0 -24
- package/docs/api/foundation-fdc3.fdc3contextlistener.config.md +0 -14
- package/docs/api/foundation-fdc3.fdc3contextlistener.md +0 -24
- package/docs/api/foundation-fdc3.fdc3intentlistener.fdc3.md +0 -14
- package/docs/api/foundation-fdc3.fdc3intentlistener.intentconfig.md +0 -14
- package/docs/api/foundation-fdc3.fdc3intentlistener.md +0 -25
- package/docs/api/foundation-fdc3.fdc3raiseintent.eventname.md +0 -14
- package/docs/api/foundation-fdc3.fdc3raiseintent.fdc3.md +0 -14
- package/docs/api/foundation-fdc3.fdc3raiseintent.intentname.md +0 -14
- package/docs/api/foundation-fdc3.fdc3raiseintent.intenttype.md +0 -14
- package/docs/api/foundation-fdc3.fdc3raiseintent.mappingfunction.md +0 -14
- package/docs/api/foundation-fdc3.fdc3raiseintent.md +0 -28
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.config.md +0 -14
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.fdc3.md +0 -14
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.md +0 -25
- package/docs/api/foundation-fdc3.intentconfig.callback.md +0 -14
- package/docs/api/foundation-fdc3.intentconfig.intent.md +0 -14
- package/docs/api/foundation-fdc3.intentconfig.md +0 -24
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.callback.md +0 -14
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.channeltype.md +0 -14
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.md +0 -24
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
1
|
import { FoundationElement } from '@genesislcap/web-core';
|
|
3
2
|
import { FDC3 } from '../fdc3';
|
|
4
3
|
/**
|
|
@@ -43,15 +42,11 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
43
42
|
readonly offsetTop: number;
|
|
44
43
|
readonly offsetWidth: number;
|
|
45
44
|
outerText: string;
|
|
46
|
-
popover: string;
|
|
47
45
|
spellcheck: boolean;
|
|
48
46
|
title: string;
|
|
49
47
|
translate: boolean;
|
|
50
48
|
attachInternals(): ElementInternals;
|
|
51
49
|
click(): void;
|
|
52
|
-
hidePopover(): void;
|
|
53
|
-
showPopover(): void;
|
|
54
|
-
togglePopover(force?: boolean): boolean;
|
|
55
50
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
56
51
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
57
52
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -80,12 +75,9 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
80
75
|
slot: string;
|
|
81
76
|
readonly tagName: string;
|
|
82
77
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
83
|
-
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
84
78
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
85
79
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
86
|
-
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
87
80
|
closest<E extends Element = Element>(selectors: string): E;
|
|
88
|
-
computedStyleMap(): StylePropertyMapReadOnly;
|
|
89
81
|
getAttribute(qualifiedName: string): string;
|
|
90
82
|
getAttributeNS(namespace: string, localName: string): string;
|
|
91
83
|
getAttributeNames(): string[];
|
|
@@ -94,14 +86,11 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
94
86
|
getBoundingClientRect(): DOMRect;
|
|
95
87
|
getClientRects(): DOMRectList;
|
|
96
88
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
97
|
-
getElementsByTagName<
|
|
98
|
-
getElementsByTagName<
|
|
99
|
-
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
100
|
-
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
89
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
|
90
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
|
101
91
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
102
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
103
93
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
104
|
-
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
105
94
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
106
95
|
hasAttribute(qualifiedName: string): boolean;
|
|
107
96
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -158,24 +147,24 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
158
147
|
normalize(): void;
|
|
159
148
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
160
149
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
168
|
-
readonly
|
|
169
|
-
readonly
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
172
|
-
readonly
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
150
|
+
readonly ATTRIBUTE_NODE: number;
|
|
151
|
+
readonly CDATA_SECTION_NODE: number;
|
|
152
|
+
readonly COMMENT_NODE: number;
|
|
153
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
|
154
|
+
readonly DOCUMENT_NODE: number;
|
|
155
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
|
156
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
|
157
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
|
158
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
|
159
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
|
160
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
|
161
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
|
162
|
+
readonly ELEMENT_NODE: number;
|
|
163
|
+
readonly ENTITY_NODE: number;
|
|
164
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
|
165
|
+
readonly NOTATION_NODE: number;
|
|
166
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
|
167
|
+
readonly TEXT_NODE: number;
|
|
179
168
|
dispatchEvent(event: Event): boolean;
|
|
180
169
|
ariaAtomic: string;
|
|
181
170
|
ariaAutoComplete: string;
|
|
@@ -183,9 +172,9 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
183
172
|
ariaChecked: string;
|
|
184
173
|
ariaColCount: string;
|
|
185
174
|
ariaColIndex: string;
|
|
175
|
+
ariaColIndexText: string;
|
|
186
176
|
ariaColSpan: string;
|
|
187
177
|
ariaCurrent: string;
|
|
188
|
-
ariaDescription: string;
|
|
189
178
|
ariaDisabled: string;
|
|
190
179
|
ariaExpanded: string;
|
|
191
180
|
ariaHasPopup: string;
|
|
@@ -207,6 +196,7 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
207
196
|
ariaRoleDescription: string;
|
|
208
197
|
ariaRowCount: string;
|
|
209
198
|
ariaRowIndex: string;
|
|
199
|
+
ariaRowIndexText: string;
|
|
210
200
|
ariaRowSpan: string;
|
|
211
201
|
ariaSelected: string;
|
|
212
202
|
ariaSetSize: string;
|
|
@@ -231,19 +221,17 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
231
221
|
readonly lastElementChild: Element;
|
|
232
222
|
append(...nodes: (string | Node)[]): void;
|
|
233
223
|
prepend(...nodes: (string | Node)[]): void;
|
|
234
|
-
querySelector<
|
|
235
|
-
querySelector<
|
|
236
|
-
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
237
|
-
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
224
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
|
225
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
|
238
226
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
239
|
-
querySelectorAll<
|
|
240
|
-
querySelectorAll<
|
|
241
|
-
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
242
|
-
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
227
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
|
228
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
|
243
229
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
244
230
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
245
231
|
readonly assignedSlot: HTMLSlotElement;
|
|
246
|
-
|
|
232
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
233
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
234
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
247
235
|
readonly style: CSSStyleDeclaration;
|
|
248
236
|
contentEditable: string;
|
|
249
237
|
enterKeyHint: string;
|
|
@@ -256,7 +244,6 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
256
244
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
257
245
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
258
246
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
259
|
-
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
260
247
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
261
248
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
262
249
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -265,9 +252,7 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
265
252
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
266
253
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
267
254
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
268
|
-
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
269
255
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
270
|
-
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
271
256
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
272
257
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
273
258
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -300,7 +285,6 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
300
285
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
301
286
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
302
287
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
303
|
-
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
304
288
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
305
289
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
306
290
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -317,7 +301,6 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
|
317
301
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
318
302
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
319
303
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
320
|
-
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
321
304
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
322
305
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
323
306
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fdc3-system-channel-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-system-channel-listener.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"fdc3-system-channel-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-system-channel-listener.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAEzE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B;;;;;GAKG;AACH,MAAM,WAAW,2BAA2B;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,CAAC,GAAG,KAAA,KAAK,IAAI,CAAC;CACzB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED;;;;GAIG;AACH,qBAGa,yBAA0B,SAAQ,8BAAiC;IAC9E,MAAM,EAAE,2BAA2B,EAAE,CAAM;IAErC,IAAI,EAAE,IAAI,CAAC;IAER,SAAS,IAAI,IAAI;IAgB1B,iBAAiB;IAUjB,OAAO,CAAC,UAAU,CAAsB;IAExC,SAAS,CAAC,mBAAmB,IAAI,IAAI;IAarC,oBAAoB;CAIrB"}
|
package/dist/esm/fdc3.js
CHANGED
|
@@ -72,8 +72,8 @@ export class DefaultFDC3 {
|
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
joinChannel(channelId) {
|
|
75
|
+
var _a;
|
|
75
76
|
return __awaiter(this, void 0, void 0, function* () {
|
|
76
|
-
var _a;
|
|
77
77
|
logger.debug(`fdc3 joinChannel '${channelId}'`);
|
|
78
78
|
if (((_a = this._currentChannel) === null || _a === void 0 ? void 0 : _a.id) === channelId) {
|
|
79
79
|
return;
|
|
@@ -158,8 +158,8 @@ export class DefaultFDC3 {
|
|
|
158
158
|
});
|
|
159
159
|
}
|
|
160
160
|
handleInteropChannelChanges() {
|
|
161
|
+
var _a, _b;
|
|
161
162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
162
|
-
var _a, _b;
|
|
163
163
|
if (this.isInteropFdc3()) {
|
|
164
164
|
// Listen to changes from the io channel selector.
|
|
165
165
|
// This can be done on the interop container window which is outside this app scope
|