@genesislcap/foundation-fdc3 14.302.0 → 14.302.1-alpha-d11831b.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 +264 -223
- 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 +264 -223
- package/dist/dts/util/fdc3-intent-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-raise-intent.d.ts +264 -223
- package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
- package/dist/dts/util/fdc3-system-channel-listener.d.ts +264 -223
- package/dist/dts/util/fdc3-system-channel-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-util.d.ts.map +1 -1
- package/dist/esm/fdc3.js +4 -4
- package/dist/foundation-fdc3.api.json +845 -178
- package/dist/foundation-fdc3.d.ts +1056 -892
- package/docs/api/foundation-fdc3.appchannellistenerconfig.channelname.md +14 -0
- package/docs/api/foundation-fdc3.appchannellistenerconfig.md +62 -0
- package/docs/api/foundation-fdc3.fdc3.addchannellistener.md +65 -5
- package/docs/api/foundation-fdc3.fdc3.addintentlisteners.md +33 -3
- package/docs/api/foundation-fdc3.fdc3.addsystemchannellistener.md +49 -4
- package/docs/api/foundation-fdc3.fdc3.broadcastonchannel.md +65 -5
- package/docs/api/foundation-fdc3.fdc3.broadcastonchanneleventhandler.md +49 -4
- package/docs/api/foundation-fdc3.fdc3.broadcastoncurrentchannel.md +49 -4
- package/docs/api/foundation-fdc3.fdc3.findintent.md +49 -4
- package/docs/api/foundation-fdc3.fdc3.findintentsbycontext.md +33 -3
- package/docs/api/foundation-fdc3.fdc3.getorcreatechannel.md +33 -3
- package/docs/api/foundation-fdc3.fdc3.handlechannelcurrentcontext.md +65 -5
- package/docs/api/foundation-fdc3.fdc3.joinchannel.md +33 -3
- package/docs/api/foundation-fdc3.fdc3.md +264 -22
- package/docs/api/foundation-fdc3.fdc3.raiseintent.md +49 -4
- package/docs/api/foundation-fdc3.fdc3.raiseintentforcontext.md +33 -3
- package/docs/api/foundation-fdc3.fdc3contextlistener.config.md +14 -0
- package/docs/api/foundation-fdc3.fdc3contextlistener.md +62 -0
- package/docs/api/foundation-fdc3.fdc3intentlistener.fdc3.md +14 -0
- package/docs/api/foundation-fdc3.fdc3intentlistener.intentconfig.md +14 -0
- package/docs/api/foundation-fdc3.fdc3intentlistener.md +81 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.eventname.md +14 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.fdc3.md +14 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.intentname.md +14 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.intenttype.md +14 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.mappingfunction.md +14 -0
- package/docs/api/foundation-fdc3.fdc3raiseintent.md +138 -0
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.config.md +14 -0
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.fdc3.md +14 -0
- package/docs/api/foundation-fdc3.fdc3systemchannellistener.md +81 -0
- package/docs/api/foundation-fdc3.intentconfig.callback.md +14 -0
- package/docs/api/foundation-fdc3.intentconfig.intent.md +14 -0
- package/docs/api/foundation-fdc3.intentconfig.md +80 -0
- package/docs/api/foundation-fdc3.interopfoundationnotificationlistener.md +41 -1
- package/docs/api/foundation-fdc3.interopnotificationslistener.md +70 -6
- package/docs/api/foundation-fdc3.interopnotificationslistener.shownotificationtoast.md +31 -3
- package/docs/api/foundation-fdc3.md +236 -18
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.callback.md +14 -0
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.channeltype.md +14 -0
- package/docs/api/foundation-fdc3.systemchannellistenerconfig.md +80 -0
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +281 -0
- package/package.json +15 -15
@@ -1,25 +1,26 @@
|
|
1
1
|
import { FoundationElement } from '@genesislcap/web-core';
|
2
2
|
import { FDC3 } from './fdc3';
|
3
3
|
declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
#_container: import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
5
|
+
#_latestTokenCode: string;
|
6
|
+
#_hasFirstLoaded: boolean;
|
7
|
+
#_cleanupTimeout: NodeJS.Timeout;
|
8
|
+
#_shouldForceLifecycle: boolean;
|
9
9
|
cloneNode(deep?: boolean): Node;
|
10
10
|
deepClone(): Node;
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
11
|
+
get shouldRunDisconnect(): boolean;
|
12
|
+
get shouldRunConnect(): boolean;
|
13
|
+
#_blockLifecycleDueToTokenChange(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
14
|
+
#_tryFindContainingLayout(e: Element): import("@genesislcap/foundation-utils").FoundationLayoutContainer | import("@genesislcap/foundation-utils").LayoutCacheContainer | import("@genesislcap/foundation-utils").DOMContainer;
|
15
15
|
connectedCallback(): void;
|
16
16
|
readonly $fastController: import("@microsoft/fast-element").Controller;
|
17
|
-
$emit(type: string, detail?: any, options?: Omit<CustomEventInit
|
17
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit, "detail">): boolean | void;
|
18
18
|
disconnectedCallback(): void;
|
19
19
|
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
20
20
|
accessKey: string;
|
21
21
|
readonly accessKeyLabel: string;
|
22
22
|
autocapitalize: string;
|
23
|
+
autocorrect: boolean;
|
23
24
|
dir: string;
|
24
25
|
draggable: boolean;
|
25
26
|
hidden: boolean;
|
@@ -28,74 +29,90 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
28
29
|
lang: string;
|
29
30
|
readonly offsetHeight: number;
|
30
31
|
readonly offsetLeft: number;
|
31
|
-
readonly offsetParent: Element;
|
32
|
+
readonly offsetParent: Element | null;
|
32
33
|
readonly offsetTop: number;
|
33
34
|
readonly offsetWidth: number;
|
34
35
|
outerText: string;
|
36
|
+
popover: string | null;
|
35
37
|
spellcheck: boolean;
|
36
38
|
title: string;
|
37
39
|
translate: boolean;
|
40
|
+
writingSuggestions: string;
|
38
41
|
attachInternals(): ElementInternals;
|
39
42
|
click(): void;
|
43
|
+
hidePopover(): void;
|
44
|
+
showPopover(): void;
|
45
|
+
togglePopover(options?: boolean): boolean;
|
40
46
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
41
47
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
42
|
-
removeEventListener<
|
48
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
43
49
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
44
50
|
readonly attributes: NamedNodeMap;
|
45
|
-
|
51
|
+
get classList(): DOMTokenList;
|
52
|
+
set classList(value: string): any;
|
46
53
|
className: string;
|
47
54
|
readonly clientHeight: number;
|
48
55
|
readonly clientLeft: number;
|
49
56
|
readonly clientTop: number;
|
50
57
|
readonly clientWidth: number;
|
58
|
+
readonly currentCSSZoom: number;
|
51
59
|
id: string;
|
60
|
+
innerHTML: string;
|
52
61
|
readonly localName: string;
|
53
|
-
readonly namespaceURI: string;
|
62
|
+
readonly namespaceURI: string | null;
|
54
63
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
55
64
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
56
65
|
outerHTML: string;
|
57
66
|
readonly ownerDocument: Document;
|
58
|
-
|
59
|
-
|
67
|
+
get part(): DOMTokenList;
|
68
|
+
set part(value: string): any;
|
69
|
+
readonly prefix: string | null;
|
60
70
|
readonly scrollHeight: number;
|
61
71
|
scrollLeft: number;
|
62
72
|
scrollTop: number;
|
63
73
|
readonly scrollWidth: number;
|
64
|
-
readonly shadowRoot: ShadowRoot;
|
74
|
+
readonly shadowRoot: ShadowRoot | null;
|
65
75
|
slot: string;
|
66
76
|
readonly tagName: string;
|
67
77
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
68
|
-
|
69
|
-
closest<
|
78
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
79
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
|
80
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
81
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
70
82
|
closest<E extends Element = Element>(selectors: string): E;
|
71
|
-
|
72
|
-
|
83
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
84
|
+
getAttribute(qualifiedName: string): string | null;
|
85
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
73
86
|
getAttributeNames(): string[];
|
74
|
-
getAttributeNode(qualifiedName: string): Attr;
|
75
|
-
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
87
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
88
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
76
89
|
getBoundingClientRect(): DOMRect;
|
77
90
|
getClientRects(): DOMRectList;
|
78
91
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
79
|
-
getElementsByTagName<
|
80
|
-
getElementsByTagName<
|
92
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
93
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
94
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
95
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
81
96
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
82
97
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
83
98
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
84
|
-
getElementsByTagNameNS(
|
99
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
100
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
101
|
+
getHTML(options?: GetHTMLOptions): string;
|
85
102
|
hasAttribute(qualifiedName: string): boolean;
|
86
|
-
hasAttributeNS(namespace: string, localName: string): boolean;
|
103
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
87
104
|
hasAttributes(): boolean;
|
88
105
|
hasPointerCapture(pointerId: number): boolean;
|
89
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
90
|
-
insertAdjacentHTML(position: InsertPosition,
|
106
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
107
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
91
108
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
92
109
|
matches(selectors: string): boolean;
|
93
110
|
releasePointerCapture(pointerId: number): void;
|
94
111
|
removeAttribute(qualifiedName: string): void;
|
95
|
-
removeAttributeNS(namespace: string, localName: string): void;
|
112
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
96
113
|
removeAttributeNode(attr: Attr): Attr;
|
97
114
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
98
|
-
requestPointerLock(): void
|
115
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
99
116
|
scroll(options?: ScrollToOptions): void;
|
100
117
|
scroll(x: number, y: number): void;
|
101
118
|
scrollBy(options?: ScrollToOptions): void;
|
@@ -104,220 +121,244 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
104
121
|
scrollTo(options?: ScrollToOptions): void;
|
105
122
|
scrollTo(x: number, y: number): void;
|
106
123
|
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;
|
124
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
125
|
+
setAttributeNode(attr: Attr): Attr | null;
|
126
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
127
|
+
setHTMLUnsafe(html: string): void;
|
110
128
|
setPointerCapture(pointerId: number): void;
|
111
129
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
112
130
|
webkitMatchesSelector(selectors: string): boolean;
|
131
|
+
textContent: string;
|
113
132
|
readonly baseURI: string;
|
114
133
|
readonly childNodes: NodeListOf<ChildNode>;
|
115
|
-
readonly firstChild: ChildNode;
|
134
|
+
readonly firstChild: ChildNode | null;
|
116
135
|
readonly isConnected: boolean;
|
117
|
-
readonly lastChild: ChildNode;
|
118
|
-
readonly nextSibling: ChildNode;
|
136
|
+
readonly lastChild: ChildNode | null;
|
137
|
+
readonly nextSibling: ChildNode | null;
|
119
138
|
readonly nodeName: string;
|
120
139
|
readonly nodeType: number;
|
121
|
-
nodeValue: string;
|
122
|
-
readonly parentElement: HTMLElement;
|
123
|
-
readonly parentNode: ParentNode;
|
124
|
-
readonly previousSibling: ChildNode;
|
125
|
-
textContent: string;
|
140
|
+
nodeValue: string | null;
|
141
|
+
readonly parentElement: HTMLElement | null;
|
142
|
+
readonly parentNode: ParentNode | null;
|
143
|
+
readonly previousSibling: ChildNode | null;
|
126
144
|
appendChild<T_1 extends Node>(node: T_1): T_1;
|
127
145
|
compareDocumentPosition(other: Node): number;
|
128
|
-
contains(other: Node): boolean;
|
146
|
+
contains(other: Node | null): boolean;
|
129
147
|
getRootNode(options?: GetRootNodeOptions): Node;
|
130
148
|
hasChildNodes(): boolean;
|
131
|
-
insertBefore<
|
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;
|
149
|
+
insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
|
150
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
151
|
+
isEqualNode(otherNode: Node | null): boolean;
|
152
|
+
isSameNode(otherNode: Node | null): boolean;
|
153
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
154
|
+
lookupPrefix(namespace: string | null): string | null;
|
137
155
|
normalize(): void;
|
138
|
-
removeChild<
|
139
|
-
replaceChild<
|
140
|
-
readonly
|
141
|
-
readonly
|
142
|
-
readonly
|
143
|
-
readonly
|
144
|
-
readonly
|
145
|
-
readonly
|
146
|
-
readonly
|
147
|
-
readonly
|
148
|
-
readonly
|
149
|
-
readonly
|
150
|
-
readonly
|
151
|
-
readonly
|
152
|
-
readonly
|
153
|
-
readonly
|
154
|
-
readonly
|
155
|
-
readonly
|
156
|
-
readonly
|
157
|
-
readonly
|
156
|
+
removeChild<T_1 extends Node>(child: T_1): T_1;
|
157
|
+
replaceChild<T_1 extends Node>(node: Node, child: T_1): T_1;
|
158
|
+
readonly ELEMENT_NODE: 1;
|
159
|
+
readonly ATTRIBUTE_NODE: 2;
|
160
|
+
readonly TEXT_NODE: 3;
|
161
|
+
readonly CDATA_SECTION_NODE: 4;
|
162
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
163
|
+
readonly ENTITY_NODE: 6;
|
164
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
165
|
+
readonly COMMENT_NODE: 8;
|
166
|
+
readonly DOCUMENT_NODE: 9;
|
167
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
168
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
169
|
+
readonly NOTATION_NODE: 12;
|
170
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
171
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
172
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
173
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
174
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
175
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
158
176
|
dispatchEvent(event: Event): boolean;
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
177
|
+
ariaActiveDescendantElement: Element | null;
|
178
|
+
ariaAtomic: string | null;
|
179
|
+
ariaAutoComplete: string | null;
|
180
|
+
ariaBrailleLabel: string | null;
|
181
|
+
ariaBrailleRoleDescription: string | null;
|
182
|
+
ariaBusy: string | null;
|
183
|
+
ariaChecked: string | null;
|
184
|
+
ariaColCount: string | null;
|
185
|
+
ariaColIndex: string | null;
|
186
|
+
ariaColIndexText: string | null;
|
187
|
+
ariaColSpan: string | null;
|
188
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
189
|
+
ariaCurrent: string | null;
|
190
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
191
|
+
ariaDescription: string | null;
|
192
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
193
|
+
ariaDisabled: string | null;
|
194
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
195
|
+
ariaExpanded: string | null;
|
196
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
197
|
+
ariaHasPopup: string | null;
|
198
|
+
ariaHidden: string | null;
|
199
|
+
ariaInvalid: string | null;
|
200
|
+
ariaKeyShortcuts: string | null;
|
201
|
+
ariaLabel: string | null;
|
202
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
203
|
+
ariaLevel: string | null;
|
204
|
+
ariaLive: string | null;
|
205
|
+
ariaModal: string | null;
|
206
|
+
ariaMultiLine: string | null;
|
207
|
+
ariaMultiSelectable: string | null;
|
208
|
+
ariaOrientation: string | null;
|
209
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
210
|
+
ariaPlaceholder: string | null;
|
211
|
+
ariaPosInSet: string | null;
|
212
|
+
ariaPressed: string | null;
|
213
|
+
ariaReadOnly: string | null;
|
214
|
+
ariaRelevant: string | null;
|
215
|
+
ariaRequired: string | null;
|
216
|
+
ariaRoleDescription: string | null;
|
217
|
+
ariaRowCount: string | null;
|
218
|
+
ariaRowIndex: string | null;
|
219
|
+
ariaRowIndexText: string | null;
|
220
|
+
ariaRowSpan: string | null;
|
221
|
+
ariaSelected: string | null;
|
222
|
+
ariaSetSize: string | null;
|
223
|
+
ariaSort: string | null;
|
224
|
+
ariaValueMax: string | null;
|
225
|
+
ariaValueMin: string | null;
|
226
|
+
ariaValueNow: string | null;
|
227
|
+
ariaValueText: string | null;
|
228
|
+
role: string | null;
|
229
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
200
230
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
201
|
-
after(...nodes: (
|
202
|
-
before(...nodes: (
|
231
|
+
after(...nodes: (Node | string)[]): void;
|
232
|
+
before(...nodes: (Node | string)[]): void;
|
203
233
|
remove(): void;
|
204
|
-
replaceWith(...nodes: (
|
205
|
-
|
206
|
-
readonly
|
207
|
-
readonly previousElementSibling: Element;
|
234
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
235
|
+
readonly nextElementSibling: Element | null;
|
236
|
+
readonly previousElementSibling: Element | null;
|
208
237
|
readonly childElementCount: number;
|
209
238
|
readonly children: HTMLCollection;
|
210
|
-
readonly firstElementChild: Element;
|
211
|
-
readonly lastElementChild: Element;
|
212
|
-
append(...nodes: (
|
213
|
-
prepend(...nodes: (
|
214
|
-
querySelector<
|
215
|
-
querySelector<
|
216
|
-
querySelector<
|
217
|
-
|
218
|
-
|
219
|
-
querySelectorAll<
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
readonly
|
239
|
+
readonly firstElementChild: Element | null;
|
240
|
+
readonly lastElementChild: Element | null;
|
241
|
+
append(...nodes: (Node | string)[]): void;
|
242
|
+
prepend(...nodes: (Node | string)[]): void;
|
243
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
244
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
245
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
246
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
247
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
248
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
249
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
250
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
251
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
252
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
253
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
254
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
255
|
+
readonly attributeStyleMap: StylePropertyMap;
|
256
|
+
get style(): CSSStyleDeclaration;
|
257
|
+
set style(cssText: string): any;
|
226
258
|
contentEditable: string;
|
227
259
|
enterKeyHint: string;
|
228
260
|
inputMode: string;
|
229
261
|
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:
|
236
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
262
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
263
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
264
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
265
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
266
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
267
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
268
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
269
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
270
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
271
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
272
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
273
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
274
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
275
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
276
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
277
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
278
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
279
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
280
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
281
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
282
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
283
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
284
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
285
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
286
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
287
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
288
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
289
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
290
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
291
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
292
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
293
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
294
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
295
|
+
onerror: OnErrorEventHandler;
|
296
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
297
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
298
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
299
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
300
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
301
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
302
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
303
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
304
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
305
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
306
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
307
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
308
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
309
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
310
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
311
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
312
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
313
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
314
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
315
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
316
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
317
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
318
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
319
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
320
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
321
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
322
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
323
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
324
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
325
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
326
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
327
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
328
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
329
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
330
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
331
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
332
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
333
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
334
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
335
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
336
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
337
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
338
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
339
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
340
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
341
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
342
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
343
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
344
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
345
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
346
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
347
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
348
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
349
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
350
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
351
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
352
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
353
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
354
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
355
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
356
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
357
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
358
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
359
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
360
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
361
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
321
362
|
autofocus: boolean;
|
322
363
|
readonly dataset: DOMStringMap;
|
323
364
|
nonce?: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"fdc3-channel-event.d.ts","sourceRoot":"","sources":["../../src/fdc3-channel-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAuB,iBAAiB,EAAc,MAAM,uBAAuB,CAAC;AAC3F,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC
|
1
|
+
{"version":3,"file":"fdc3-channel-event.d.ts","sourceRoot":"","sources":["../../src/fdc3-channel-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAuB,iBAAiB,EAAc,MAAM,uBAAuB,CAAC;AAC3F,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;;;;;;;kBAgD88C,CAAC;;;;;;;;8BAAknD,CAAC,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAAw9B,CAAC;4IAAqK,CAAC;wFAAwI,CAAC;+IAA+L,CAAC;2FAAwI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAA4mC,CAAC;;;;;;;;;;;;;;;;;;;;;;;mBAA8hE,CAAC;;;;;;;;;;;;;6BAA4xB,CAAC;8BAAuE,CAAC;kBAA4D,CAAC;;oBAA8F,CAAC;;sBAAkG,CAAC;oBAAkE,CAAC;;;;;;;;gDAAme,CAAC;;;;;;;;;;;;;;;;;;uBAA8yB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAAiiH,CAAC;yBAA8E,CAAC;UAAoD,GAAG;WAAgD,GAAG;;gBAA6E,GAAG;;;;;;;WAA4V,GAAG;YAAiD,GAAG;;;;;;;;;;;oBAAupC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAiiO,CAAC;cAA6F,CAAC;eAA8F,CAAC;gBAA+F,CAAC;;;;;;;;;;;;;;SAAulC,CAAC;;;iBAA+E,CAAC;;AA9CrkwB;;;GAGG;AACH,qBAGa,gBAAiB,SAAQ,qBAAiC;IAC/D,IAAI,EAAE,IAAI,CAAC;IACkB,SAAS,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAE7C,eAAe,EAAE,CAAC,GAAG,KAAA,KAAK,GAAG,CAAC;IAE1C,iBAAiB;IAIjB,oBAAoB;IAIX,SAAS,IAAI,IAAI;IAU1B,OAAO,CAAC,kBAAkB,CAWxB;CACH"}
|