@genesislcap/foundation-fdc3 14.225.3 → 14.225.4-alpha-9342136.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. package/dist/dts/fdc3-channel-event.d.ts +46 -29
  2. package/dist/dts/fdc3-channel-event.d.ts.map +1 -1
  3. package/dist/dts/tsdoc-metadata.json +1 -1
  4. package/dist/dts/util/fdc3-intent-listener.d.ts +46 -29
  5. package/dist/dts/util/fdc3-intent-listener.d.ts.map +1 -1
  6. package/dist/dts/util/fdc3-raise-intent.d.ts +46 -29
  7. package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
  8. package/dist/dts/util/fdc3-system-channel-listener.d.ts +46 -29
  9. package/dist/dts/util/fdc3-system-channel-listener.d.ts.map +1 -1
  10. package/dist/esm/fdc3.js +2 -2
  11. package/dist/foundation-fdc3.api.json +845 -178
  12. package/dist/foundation-fdc3.d.ts +182 -116
  13. package/docs/api/foundation-fdc3.appchannellistenerconfig.channelname.md +14 -0
  14. package/docs/api/foundation-fdc3.appchannellistenerconfig.md +24 -0
  15. package/docs/api/foundation-fdc3.fdc3contextlistener.config.md +14 -0
  16. package/docs/api/foundation-fdc3.fdc3contextlistener.md +24 -0
  17. package/docs/api/foundation-fdc3.fdc3intentlistener.fdc3.md +14 -0
  18. package/docs/api/foundation-fdc3.fdc3intentlistener.intentconfig.md +14 -0
  19. package/docs/api/foundation-fdc3.fdc3intentlistener.md +25 -0
  20. package/docs/api/foundation-fdc3.fdc3raiseintent.eventname.md +14 -0
  21. package/docs/api/foundation-fdc3.fdc3raiseintent.fdc3.md +14 -0
  22. package/docs/api/foundation-fdc3.fdc3raiseintent.intentname.md +14 -0
  23. package/docs/api/foundation-fdc3.fdc3raiseintent.intenttype.md +14 -0
  24. package/docs/api/foundation-fdc3.fdc3raiseintent.mappingfunction.md +14 -0
  25. package/docs/api/foundation-fdc3.fdc3raiseintent.md +28 -0
  26. package/docs/api/foundation-fdc3.fdc3systemchannellistener.config.md +14 -0
  27. package/docs/api/foundation-fdc3.fdc3systemchannellistener.fdc3.md +14 -0
  28. package/docs/api/foundation-fdc3.fdc3systemchannellistener.md +25 -0
  29. package/docs/api/foundation-fdc3.intentconfig.callback.md +14 -0
  30. package/docs/api/foundation-fdc3.intentconfig.intent.md +14 -0
  31. package/docs/api/foundation-fdc3.intentconfig.md +24 -0
  32. package/docs/api/foundation-fdc3.interopfoundationnotificationlistener.md +11 -1
  33. package/docs/api/foundation-fdc3.md +13 -1
  34. package/docs/api/foundation-fdc3.systemchannellistenerconfig.callback.md +14 -0
  35. package/docs/api/foundation-fdc3.systemchannellistenerconfig.channeltype.md +14 -0
  36. package/docs/api/foundation-fdc3.systemchannellistenerconfig.md +24 -0
  37. package/docs/{api-report.md → api-report.md.api.md} +2 -0
  38. package/package.json +15 -15
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import { FoundationElement } from '@genesislcap/web-core';
2
3
  import { FDC3 } from './fdc3';
3
4
  declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
@@ -32,11 +33,15 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
32
33
  readonly offsetTop: number;
33
34
  readonly offsetWidth: number;
34
35
  outerText: string;
36
+ popover: string;
35
37
  spellcheck: boolean;
36
38
  title: string;
37
39
  translate: boolean;
38
40
  attachInternals(): ElementInternals;
39
41
  click(): void;
42
+ hidePopover(): void;
43
+ showPopover(): void;
44
+ togglePopover(force?: boolean): boolean;
40
45
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
41
46
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
42
47
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -65,9 +70,12 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
65
70
  slot: string;
66
71
  readonly tagName: string;
67
72
  attachShadow(init: ShadowRootInit): ShadowRoot;
73
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
68
74
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
69
75
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
76
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
70
77
  closest<E extends Element = Element>(selectors: string): E;
78
+ computedStyleMap(): StylePropertyMapReadOnly;
71
79
  getAttribute(qualifiedName: string): string;
72
80
  getAttributeNS(namespace: string, localName: string): string;
73
81
  getAttributeNames(): string[];
@@ -76,11 +84,14 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
76
84
  getBoundingClientRect(): DOMRect;
77
85
  getClientRects(): DOMRectList;
78
86
  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]>;
87
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
88
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
89
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
90
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
81
91
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
82
92
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
83
93
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
94
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
84
95
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
85
96
  hasAttribute(qualifiedName: string): boolean;
86
97
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -137,24 +148,24 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
137
148
  normalize(): void;
138
149
  removeChild<T_3 extends Node>(child: T_3): T_3;
139
150
  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;
151
+ readonly ELEMENT_NODE: 1;
152
+ readonly ATTRIBUTE_NODE: 2;
153
+ readonly TEXT_NODE: 3;
154
+ readonly CDATA_SECTION_NODE: 4;
155
+ readonly ENTITY_REFERENCE_NODE: 5;
156
+ readonly ENTITY_NODE: 6;
157
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
158
+ readonly COMMENT_NODE: 8;
159
+ readonly DOCUMENT_NODE: 9;
160
+ readonly DOCUMENT_TYPE_NODE: 10;
161
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
162
+ readonly NOTATION_NODE: 12;
163
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
164
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
165
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
166
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
167
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
168
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
158
169
  dispatchEvent(event: Event): boolean;
159
170
  ariaAtomic: string;
160
171
  ariaAutoComplete: string;
@@ -162,9 +173,9 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
162
173
  ariaChecked: string;
163
174
  ariaColCount: string;
164
175
  ariaColIndex: string;
165
- ariaColIndexText: string;
166
176
  ariaColSpan: string;
167
177
  ariaCurrent: string;
178
+ ariaDescription: string;
168
179
  ariaDisabled: string;
169
180
  ariaExpanded: string;
170
181
  ariaHasPopup: string;
@@ -186,7 +197,6 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
186
197
  ariaRoleDescription: string;
187
198
  ariaRowCount: string;
188
199
  ariaRowIndex: string;
189
- ariaRowIndexText: string;
190
200
  ariaRowSpan: string;
191
201
  ariaSelected: string;
192
202
  ariaSetSize: string;
@@ -211,17 +221,19 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
211
221
  readonly lastElementChild: Element;
212
222
  append(...nodes: (string | Node)[]): void;
213
223
  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];
224
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
225
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
226
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
227
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
216
228
  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]>;
229
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
230
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
231
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
232
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
219
233
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
220
234
  replaceChildren(...nodes: (string | Node)[]): void;
221
235
  readonly assignedSlot: HTMLSlotElement;
222
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
223
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
224
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
236
+ readonly attributeStyleMap: StylePropertyMap;
225
237
  readonly style: CSSStyleDeclaration;
226
238
  contentEditable: string;
227
239
  enterKeyHint: string;
@@ -234,6 +246,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
234
246
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
235
247
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
236
248
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
249
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
237
250
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
238
251
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
239
252
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -242,7 +255,9 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
242
255
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
243
256
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
244
257
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
258
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
245
259
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
260
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
246
261
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
247
262
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
248
263
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -275,6 +290,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
275
290
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
276
291
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
277
292
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
293
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
278
294
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
279
295
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
280
296
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -291,6 +307,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
291
307
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
292
308
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
293
309
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
310
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
294
311
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
295
312
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
296
313
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE9B;;;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"}
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAE9B;;;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"}
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.9"
8
+ "packageVersion": "7.48.0"
9
9
  }
10
10
  ]
11
11
  }
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import { FoundationElement } from '@genesislcap/web-core';
2
3
  import { FDC3 } from '../fdc3';
3
4
  /**
@@ -40,11 +41,15 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
40
41
  readonly offsetTop: number;
41
42
  readonly offsetWidth: number;
42
43
  outerText: string;
44
+ popover: string;
43
45
  spellcheck: boolean;
44
46
  title: string;
45
47
  translate: boolean;
46
48
  attachInternals(): ElementInternals;
47
49
  click(): void;
50
+ hidePopover(): void;
51
+ showPopover(): void;
52
+ togglePopover(force?: boolean): boolean;
48
53
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
49
54
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
50
55
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -73,9 +78,12 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
73
78
  slot: string;
74
79
  readonly tagName: string;
75
80
  attachShadow(init: ShadowRootInit): ShadowRoot;
81
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
76
82
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
77
83
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
84
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
78
85
  closest<E extends Element = Element>(selectors: string): E;
86
+ computedStyleMap(): StylePropertyMapReadOnly;
79
87
  getAttribute(qualifiedName: string): string;
80
88
  getAttributeNS(namespace: string, localName: string): string;
81
89
  getAttributeNames(): string[];
@@ -84,11 +92,14 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
84
92
  getBoundingClientRect(): DOMRect;
85
93
  getClientRects(): DOMRectList;
86
94
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
87
- getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
88
- getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
95
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
96
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
97
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
98
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
89
99
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
90
100
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
91
101
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
102
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
92
103
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
93
104
  hasAttribute(qualifiedName: string): boolean;
94
105
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -145,24 +156,24 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
145
156
  normalize(): void;
146
157
  removeChild<T_3 extends Node>(child: T_3): T_3;
147
158
  replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
148
- readonly ATTRIBUTE_NODE: number;
149
- readonly CDATA_SECTION_NODE: number;
150
- readonly COMMENT_NODE: number;
151
- readonly DOCUMENT_FRAGMENT_NODE: number;
152
- readonly DOCUMENT_NODE: number;
153
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
154
- readonly DOCUMENT_POSITION_CONTAINS: number;
155
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
156
- readonly DOCUMENT_POSITION_FOLLOWING: number;
157
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
158
- readonly DOCUMENT_POSITION_PRECEDING: number;
159
- readonly DOCUMENT_TYPE_NODE: number;
160
- readonly ELEMENT_NODE: number;
161
- readonly ENTITY_NODE: number;
162
- readonly ENTITY_REFERENCE_NODE: number;
163
- readonly NOTATION_NODE: number;
164
- readonly PROCESSING_INSTRUCTION_NODE: number;
165
- readonly TEXT_NODE: number;
159
+ readonly ELEMENT_NODE: 1;
160
+ readonly ATTRIBUTE_NODE: 2;
161
+ readonly TEXT_NODE: 3;
162
+ readonly CDATA_SECTION_NODE: 4;
163
+ readonly ENTITY_REFERENCE_NODE: 5;
164
+ readonly ENTITY_NODE: 6;
165
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
166
+ readonly COMMENT_NODE: 8;
167
+ readonly DOCUMENT_NODE: 9;
168
+ readonly DOCUMENT_TYPE_NODE: 10;
169
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
170
+ readonly NOTATION_NODE: 12;
171
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
172
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
173
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
174
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
175
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
176
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
166
177
  dispatchEvent(event: Event): boolean;
167
178
  ariaAtomic: string;
168
179
  ariaAutoComplete: string;
@@ -170,9 +181,9 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
170
181
  ariaChecked: string;
171
182
  ariaColCount: string;
172
183
  ariaColIndex: string;
173
- ariaColIndexText: string;
174
184
  ariaColSpan: string;
175
185
  ariaCurrent: string;
186
+ ariaDescription: string;
176
187
  ariaDisabled: string;
177
188
  ariaExpanded: string;
178
189
  ariaHasPopup: string;
@@ -194,7 +205,6 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
194
205
  ariaRoleDescription: string;
195
206
  ariaRowCount: string;
196
207
  ariaRowIndex: string;
197
- ariaRowIndexText: string;
198
208
  ariaRowSpan: string;
199
209
  ariaSelected: string;
200
210
  ariaSetSize: string;
@@ -219,17 +229,19 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
219
229
  readonly lastElementChild: Element;
220
230
  append(...nodes: (string | Node)[]): void;
221
231
  prepend(...nodes: (string | Node)[]): void;
222
- querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
223
- querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
232
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
233
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
234
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
235
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
224
236
  querySelector<E_1 extends Element = Element>(selectors: string): E_1;
225
- querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
226
- querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
237
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
238
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
239
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
240
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
227
241
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
228
242
  replaceChildren(...nodes: (string | Node)[]): void;
229
243
  readonly assignedSlot: HTMLSlotElement;
230
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
231
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
232
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
244
+ readonly attributeStyleMap: StylePropertyMap;
233
245
  readonly style: CSSStyleDeclaration;
234
246
  contentEditable: string;
235
247
  enterKeyHint: string;
@@ -242,6 +254,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
242
254
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
243
255
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
244
256
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
257
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
245
258
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
246
259
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
247
260
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -250,7 +263,9 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
250
263
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
251
264
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
252
265
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
266
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
253
267
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
268
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
254
269
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
255
270
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
256
271
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -283,6 +298,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
283
298
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
284
299
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
285
300
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
301
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
286
302
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
287
303
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
288
304
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -299,6 +315,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
299
315
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
300
316
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
301
317
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
318
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
302
319
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
303
320
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
304
321
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1 +1 @@
1
- {"version":3,"file":"fdc3-intent-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-intent-listener.ts"],"names":[],"mappings":"AACA,OAAO,EAAiB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAEzE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,WAAW,KAAA,KAAK,IAAI,CAAC;CACjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED;;;;GAIG;AACH,qBAGa,kBAAmB,SAAQ,uBAAiC;IACjE,IAAI,EAAE,IAAI,CAAC;IAEjB,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,iBAAiB;IASR,SAAS,IAAI,IAAI;IAgB1B,OAAO,CAAC,kBAAkB;CAO3B"}
1
+ {"version":3,"file":"fdc3-intent-listener.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-intent-listener.ts"],"names":[],"mappings":";AACA,OAAO,EAAiB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAEzE,OAAO,EAAE,IAAI,EAAE,MAAM,SAAS,CAAC;AAE/B;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,CAAC,WAAW,KAAA,KAAK,IAAI,CAAC;CACjC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED;;;;GAIG;AACH,qBAGa,kBAAmB,SAAQ,uBAAiC;IACjE,IAAI,EAAE,IAAI,CAAC;IAEjB,YAAY,EAAE,YAAY,EAAE,CAAM;IAElC,iBAAiB;IASR,SAAS,IAAI,IAAI;IAgB1B,OAAO,CAAC,kBAAkB;CAO3B"}
@@ -1,3 +1,4 @@
1
+ /// <reference types="node" />
1
2
  import { FoundationElement } from '@genesislcap/web-core';
2
3
  import { FDC3 } from '../fdc3';
3
4
  declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
@@ -32,11 +33,15 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
32
33
  readonly offsetTop: number;
33
34
  readonly offsetWidth: number;
34
35
  outerText: string;
36
+ popover: string;
35
37
  spellcheck: boolean;
36
38
  title: string;
37
39
  translate: boolean;
38
40
  attachInternals(): ElementInternals;
39
41
  click(): void;
42
+ hidePopover(): void;
43
+ showPopover(): void;
44
+ togglePopover(force?: boolean): boolean;
40
45
  addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
41
46
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
42
47
  removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -65,9 +70,12 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
65
70
  slot: string;
66
71
  readonly tagName: string;
67
72
  attachShadow(init: ShadowRootInit): ShadowRoot;
73
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
68
74
  closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
69
75
  closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
76
+ closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
70
77
  closest<E extends Element = Element>(selectors: string): E;
78
+ computedStyleMap(): StylePropertyMapReadOnly;
71
79
  getAttribute(qualifiedName: string): string;
72
80
  getAttributeNS(namespace: string, localName: string): string;
73
81
  getAttributeNames(): string[];
@@ -76,11 +84,14 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
76
84
  getBoundingClientRect(): DOMRect;
77
85
  getClientRects(): DOMRectList;
78
86
  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]>;
87
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
88
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
89
+ getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
90
+ getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
81
91
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
82
92
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
83
93
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
94
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
84
95
  getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
85
96
  hasAttribute(qualifiedName: string): boolean;
86
97
  hasAttributeNS(namespace: string, localName: string): boolean;
@@ -137,24 +148,24 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
137
148
  normalize(): void;
138
149
  removeChild<T_3 extends Node>(child: T_3): T_3;
139
150
  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;
151
+ readonly ELEMENT_NODE: 1;
152
+ readonly ATTRIBUTE_NODE: 2;
153
+ readonly TEXT_NODE: 3;
154
+ readonly CDATA_SECTION_NODE: 4;
155
+ readonly ENTITY_REFERENCE_NODE: 5;
156
+ readonly ENTITY_NODE: 6;
157
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
158
+ readonly COMMENT_NODE: 8;
159
+ readonly DOCUMENT_NODE: 9;
160
+ readonly DOCUMENT_TYPE_NODE: 10;
161
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
162
+ readonly NOTATION_NODE: 12;
163
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
164
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
165
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
166
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
167
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
168
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
158
169
  dispatchEvent(event: Event): boolean;
159
170
  ariaAtomic: string;
160
171
  ariaAutoComplete: string;
@@ -162,9 +173,9 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
162
173
  ariaChecked: string;
163
174
  ariaColCount: string;
164
175
  ariaColIndex: string;
165
- ariaColIndexText: string;
166
176
  ariaColSpan: string;
167
177
  ariaCurrent: string;
178
+ ariaDescription: string;
168
179
  ariaDisabled: string;
169
180
  ariaExpanded: string;
170
181
  ariaHasPopup: string;
@@ -186,7 +197,6 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
186
197
  ariaRoleDescription: string;
187
198
  ariaRowCount: string;
188
199
  ariaRowIndex: string;
189
- ariaRowIndexText: string;
190
200
  ariaRowSpan: string;
191
201
  ariaSelected: string;
192
202
  ariaSetSize: string;
@@ -211,17 +221,19 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
211
221
  readonly lastElementChild: Element;
212
222
  append(...nodes: (string | Node)[]): void;
213
223
  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];
224
+ querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
225
+ querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
226
+ querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
227
+ querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
216
228
  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]>;
229
+ querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
230
+ querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
231
+ querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
232
+ querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
219
233
  querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
220
234
  replaceChildren(...nodes: (string | Node)[]): void;
221
235
  readonly assignedSlot: HTMLSlotElement;
222
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
223
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
224
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
236
+ readonly attributeStyleMap: StylePropertyMap;
225
237
  readonly style: CSSStyleDeclaration;
226
238
  contentEditable: string;
227
239
  enterKeyHint: string;
@@ -234,6 +246,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
234
246
  onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
235
247
  onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
236
248
  onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
249
+ onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
237
250
  onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
238
251
  oncancel: (this: GlobalEventHandlers, ev: Event) => any;
239
252
  oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
@@ -242,7 +255,9 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
242
255
  onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
243
256
  onclose: (this: GlobalEventHandlers, ev: Event) => any;
244
257
  oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
258
+ oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
245
259
  oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
260
+ oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
246
261
  ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
247
262
  ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
248
263
  ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
@@ -275,6 +290,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
275
290
  onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
276
291
  onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
277
292
  onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
293
+ onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
278
294
  onpause: (this: GlobalEventHandlers, ev: Event) => any;
279
295
  onplay: (this: GlobalEventHandlers, ev: Event) => any;
280
296
  onplaying: (this: GlobalEventHandlers, ev: Event) => any;
@@ -291,6 +307,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
291
307
  onreset: (this: GlobalEventHandlers, ev: Event) => any;
292
308
  onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
293
309
  onscroll: (this: GlobalEventHandlers, ev: Event) => any;
310
+ onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
294
311
  onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
295
312
  onseeked: (this: GlobalEventHandlers, ev: Event) => any;
296
313
  onseeking: (this: GlobalEventHandlers, ev: Event) => any;
@@ -1 +1 @@
1
- {"version":3,"file":"fdc3-raise-intent.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-raise-intent.ts"],"names":[],"mappings":"AACA,OAAO,EAAuB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC/E,OAAO,EAAE,IAAI,EAA4B,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEzD;;;GAGG;AACH,qBAGa,eAAgB,SAAQ,oBAAiC;IAC9D,IAAI,EAAE,IAAI,CAAC;IACkB,SAAS,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IAEvD,eAAe,EAAE,CAAC,GAAG,KAAA,KAAK,GAAG,CAAC;IAErB,SAAS,IAAI,IAAI;IAU1B,iBAAiB;IAIjB,oBAAoB;IAIpB,OAAO,CAAC,kBAAkB,CAaxB;CACH"}
1
+ {"version":3,"file":"fdc3-raise-intent.d.ts","sourceRoot":"","sources":["../../../src/util/fdc3-raise-intent.ts"],"names":[],"mappings":";AACA,OAAO,EAAuB,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAC/E,OAAO,EAAE,IAAI,EAA4B,MAAM,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEzD;;;GAGG;AACH,qBAGa,eAAgB,SAAQ,oBAAiC;IAC9D,IAAI,EAAE,IAAI,CAAC;IACkB,SAAS,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IAEvD,eAAe,EAAE,CAAC,GAAG,KAAA,KAAK,GAAG,CAAC;IAErB,SAAS,IAAI,IAAI;IAU1B,iBAAiB;IAIjB,oBAAoB;IAIpB,OAAO,CAAC,kBAAkB,CAaxB;CACH"}