@genesislcap/foundation-fdc3 14.225.3-alpha-31011b5.0 → 14.225.4-alpha-9342136.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dts/fdc3-channel-event.d.ts +46 -29
- 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 +46 -29
- package/dist/dts/util/fdc3-intent-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-raise-intent.d.ts +46 -29
- package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
- package/dist/dts/util/fdc3-system-channel-listener.d.ts +46 -29
- 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 +845 -178
- package/dist/foundation-fdc3.d.ts +182 -116
- package/docs/api/foundation-fdc3.appchannellistenerconfig.channelname.md +14 -0
- package/docs/api/foundation-fdc3.appchannellistenerconfig.md +24 -0
- package/docs/api/foundation-fdc3.fdc3contextlistener.config.md +14 -0
- package/docs/api/foundation-fdc3.fdc3contextlistener.md +24 -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 +25 -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 +28 -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 +25 -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 +24 -0
- package/docs/api/foundation-fdc3.interopfoundationnotificationlistener.md +11 -1
- package/docs/api/foundation-fdc3.md +13 -1
- 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 +24 -0
- package/docs/{api-report.md → api-report.md.api.md} +2 -0
- package/package.json +15 -15
@@ -1,3 +1,5 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
|
1
3
|
import type { AppIdentifier } from '@finos/fdc3';
|
2
4
|
import type { AppIntent } from '@finos/fdc3';
|
3
5
|
import type { Channel } from '@finos/fdc3';
|
@@ -271,11 +273,15 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
271
273
|
readonly offsetTop: number;
|
272
274
|
readonly offsetWidth: number;
|
273
275
|
outerText: string;
|
276
|
+
popover: string;
|
274
277
|
spellcheck: boolean;
|
275
278
|
title: string;
|
276
279
|
translate: boolean;
|
277
280
|
attachInternals(): ElementInternals;
|
278
281
|
click(): void;
|
282
|
+
hidePopover(): void;
|
283
|
+
showPopover(): void;
|
284
|
+
togglePopover(force?: boolean): boolean;
|
279
285
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
280
286
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
281
287
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -304,9 +310,12 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
304
310
|
slot: string;
|
305
311
|
readonly tagName: string;
|
306
312
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
313
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
307
314
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
308
315
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
316
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
309
317
|
closest<E extends Element = Element>(selectors: string): E;
|
318
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
310
319
|
getAttribute(qualifiedName: string): string;
|
311
320
|
getAttributeNS(namespace: string, localName: string): string;
|
312
321
|
getAttributeNames(): string[];
|
@@ -315,11 +324,14 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
315
324
|
getBoundingClientRect(): DOMRect;
|
316
325
|
getClientRects(): DOMRectList;
|
317
326
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
318
|
-
getElementsByTagName<
|
319
|
-
getElementsByTagName<
|
327
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
328
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
329
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
330
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
320
331
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
321
332
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
322
333
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
334
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
323
335
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
324
336
|
hasAttribute(qualifiedName: string): boolean;
|
325
337
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -376,24 +388,24 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
376
388
|
normalize(): void;
|
377
389
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
378
390
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
379
|
-
readonly
|
380
|
-
readonly
|
381
|
-
readonly
|
382
|
-
readonly
|
383
|
-
readonly
|
384
|
-
readonly
|
385
|
-
readonly
|
386
|
-
readonly
|
387
|
-
readonly
|
388
|
-
readonly
|
389
|
-
readonly
|
390
|
-
readonly
|
391
|
-
readonly
|
392
|
-
readonly
|
393
|
-
readonly
|
394
|
-
readonly
|
395
|
-
readonly
|
396
|
-
readonly
|
391
|
+
readonly ELEMENT_NODE: 1;
|
392
|
+
readonly ATTRIBUTE_NODE: 2;
|
393
|
+
readonly TEXT_NODE: 3;
|
394
|
+
readonly CDATA_SECTION_NODE: 4;
|
395
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
396
|
+
readonly ENTITY_NODE: 6;
|
397
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
398
|
+
readonly COMMENT_NODE: 8;
|
399
|
+
readonly DOCUMENT_NODE: 9;
|
400
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
401
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
402
|
+
readonly NOTATION_NODE: 12;
|
403
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
404
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
405
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
406
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
407
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
408
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
397
409
|
dispatchEvent(event: Event): boolean;
|
398
410
|
ariaAtomic: string;
|
399
411
|
ariaAutoComplete: string;
|
@@ -401,9 +413,9 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
401
413
|
ariaChecked: string;
|
402
414
|
ariaColCount: string;
|
403
415
|
ariaColIndex: string;
|
404
|
-
ariaColIndexText: string;
|
405
416
|
ariaColSpan: string;
|
406
417
|
ariaCurrent: string;
|
418
|
+
ariaDescription: string;
|
407
419
|
ariaDisabled: string;
|
408
420
|
ariaExpanded: string;
|
409
421
|
ariaHasPopup: string;
|
@@ -425,7 +437,6 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
425
437
|
ariaRoleDescription: string;
|
426
438
|
ariaRowCount: string;
|
427
439
|
ariaRowIndex: string;
|
428
|
-
ariaRowIndexText: string;
|
429
440
|
ariaRowSpan: string;
|
430
441
|
ariaSelected: string;
|
431
442
|
ariaSetSize: string;
|
@@ -450,17 +461,19 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
450
461
|
readonly lastElementChild: Element;
|
451
462
|
append(...nodes: (string | Node)[]): void;
|
452
463
|
prepend(...nodes: (string | Node)[]): void;
|
453
|
-
querySelector<
|
454
|
-
querySelector<
|
464
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
465
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
466
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
467
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
455
468
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
456
|
-
querySelectorAll<
|
457
|
-
querySelectorAll<
|
469
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
470
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
471
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
472
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
458
473
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
459
474
|
replaceChildren(...nodes: (string | Node)[]): void;
|
460
475
|
readonly assignedSlot: HTMLSlotElement;
|
461
|
-
|
462
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
463
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
476
|
+
readonly attributeStyleMap: StylePropertyMap;
|
464
477
|
readonly style: CSSStyleDeclaration;
|
465
478
|
contentEditable: string;
|
466
479
|
enterKeyHint: string;
|
@@ -473,6 +486,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
473
486
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
474
487
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
475
488
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
489
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
476
490
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
477
491
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
478
492
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -481,7 +495,9 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
481
495
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
482
496
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
483
497
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
498
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
484
499
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
500
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
485
501
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
486
502
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
487
503
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -514,6 +530,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
514
530
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
515
531
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
516
532
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
533
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
517
534
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
518
535
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
519
536
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -530,6 +547,7 @@ declare const Fdc3ChannelEvent_base: (new (...args: any[]) => {
|
|
530
547
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
531
548
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
532
549
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
550
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
533
551
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
534
552
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
535
553
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -634,11 +652,15 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
634
652
|
readonly offsetTop: number;
|
635
653
|
readonly offsetWidth: number;
|
636
654
|
outerText: string;
|
655
|
+
popover: string;
|
637
656
|
spellcheck: boolean;
|
638
657
|
title: string;
|
639
658
|
translate: boolean;
|
640
659
|
attachInternals(): ElementInternals;
|
641
660
|
click(): void;
|
661
|
+
hidePopover(): void;
|
662
|
+
showPopover(): void;
|
663
|
+
togglePopover(force?: boolean): boolean;
|
642
664
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
643
665
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
644
666
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -667,9 +689,12 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
667
689
|
slot: string;
|
668
690
|
readonly tagName: string;
|
669
691
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
692
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
670
693
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
671
694
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
695
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
672
696
|
closest<E extends Element = Element>(selectors: string): E;
|
697
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
673
698
|
getAttribute(qualifiedName: string): string;
|
674
699
|
getAttributeNS(namespace: string, localName: string): string;
|
675
700
|
getAttributeNames(): string[];
|
@@ -678,11 +703,14 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
678
703
|
getBoundingClientRect(): DOMRect;
|
679
704
|
getClientRects(): DOMRectList;
|
680
705
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
681
|
-
getElementsByTagName<
|
682
|
-
getElementsByTagName<
|
706
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
707
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
708
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
709
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
683
710
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
684
711
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
685
712
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
713
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
686
714
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
687
715
|
hasAttribute(qualifiedName: string): boolean;
|
688
716
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -739,24 +767,24 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
739
767
|
normalize(): void;
|
740
768
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
741
769
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
742
|
-
readonly
|
743
|
-
readonly
|
744
|
-
readonly
|
745
|
-
readonly
|
746
|
-
readonly
|
747
|
-
readonly
|
748
|
-
readonly
|
749
|
-
readonly
|
750
|
-
readonly
|
751
|
-
readonly
|
752
|
-
readonly
|
753
|
-
readonly
|
754
|
-
readonly
|
755
|
-
readonly
|
756
|
-
readonly
|
757
|
-
readonly
|
758
|
-
readonly
|
759
|
-
readonly
|
770
|
+
readonly ELEMENT_NODE: 1;
|
771
|
+
readonly ATTRIBUTE_NODE: 2;
|
772
|
+
readonly TEXT_NODE: 3;
|
773
|
+
readonly CDATA_SECTION_NODE: 4;
|
774
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
775
|
+
readonly ENTITY_NODE: 6;
|
776
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
777
|
+
readonly COMMENT_NODE: 8;
|
778
|
+
readonly DOCUMENT_NODE: 9;
|
779
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
780
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
781
|
+
readonly NOTATION_NODE: 12;
|
782
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
783
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
784
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
785
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
786
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
787
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
760
788
|
dispatchEvent(event: Event): boolean;
|
761
789
|
ariaAtomic: string;
|
762
790
|
ariaAutoComplete: string;
|
@@ -764,9 +792,9 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
764
792
|
ariaChecked: string;
|
765
793
|
ariaColCount: string;
|
766
794
|
ariaColIndex: string;
|
767
|
-
ariaColIndexText: string;
|
768
795
|
ariaColSpan: string;
|
769
796
|
ariaCurrent: string;
|
797
|
+
ariaDescription: string;
|
770
798
|
ariaDisabled: string;
|
771
799
|
ariaExpanded: string;
|
772
800
|
ariaHasPopup: string;
|
@@ -788,7 +816,6 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
788
816
|
ariaRoleDescription: string;
|
789
817
|
ariaRowCount: string;
|
790
818
|
ariaRowIndex: string;
|
791
|
-
ariaRowIndexText: string;
|
792
819
|
ariaRowSpan: string;
|
793
820
|
ariaSelected: string;
|
794
821
|
ariaSetSize: string;
|
@@ -813,17 +840,19 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
813
840
|
readonly lastElementChild: Element;
|
814
841
|
append(...nodes: (string | Node)[]): void;
|
815
842
|
prepend(...nodes: (string | Node)[]): void;
|
816
|
-
querySelector<
|
817
|
-
querySelector<
|
843
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
844
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
845
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
846
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
818
847
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
819
|
-
querySelectorAll<
|
820
|
-
querySelectorAll<
|
848
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
849
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
850
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
851
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
821
852
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
822
853
|
replaceChildren(...nodes: (string | Node)[]): void;
|
823
854
|
readonly assignedSlot: HTMLSlotElement;
|
824
|
-
|
825
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
826
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
855
|
+
readonly attributeStyleMap: StylePropertyMap;
|
827
856
|
readonly style: CSSStyleDeclaration;
|
828
857
|
contentEditable: string;
|
829
858
|
enterKeyHint: string;
|
@@ -836,6 +865,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
836
865
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
837
866
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
838
867
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
868
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
839
869
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
840
870
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
841
871
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -844,7 +874,9 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
844
874
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
845
875
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
846
876
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
877
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
847
878
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
879
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
848
880
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
849
881
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
850
882
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -877,6 +909,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
877
909
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
878
910
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
879
911
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
912
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
880
913
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
881
914
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
882
915
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -893,6 +926,7 @@ declare const Fdc3IntentListener_base: (new (...args: any[]) => {
|
|
893
926
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
894
927
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
895
928
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
929
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
896
930
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
897
931
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
898
932
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -991,11 +1025,15 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
991
1025
|
readonly offsetTop: number;
|
992
1026
|
readonly offsetWidth: number;
|
993
1027
|
outerText: string;
|
1028
|
+
popover: string;
|
994
1029
|
spellcheck: boolean;
|
995
1030
|
title: string;
|
996
1031
|
translate: boolean;
|
997
1032
|
attachInternals(): ElementInternals;
|
998
1033
|
click(): void;
|
1034
|
+
hidePopover(): void;
|
1035
|
+
showPopover(): void;
|
1036
|
+
togglePopover(force?: boolean): boolean;
|
999
1037
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
1000
1038
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
1001
1039
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -1024,9 +1062,12 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1024
1062
|
slot: string;
|
1025
1063
|
readonly tagName: string;
|
1026
1064
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
1065
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
1027
1066
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
1028
1067
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
1068
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
1029
1069
|
closest<E extends Element = Element>(selectors: string): E;
|
1070
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
1030
1071
|
getAttribute(qualifiedName: string): string;
|
1031
1072
|
getAttributeNS(namespace: string, localName: string): string;
|
1032
1073
|
getAttributeNames(): string[];
|
@@ -1035,11 +1076,14 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1035
1076
|
getBoundingClientRect(): DOMRect;
|
1036
1077
|
getClientRects(): DOMRectList;
|
1037
1078
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
1038
|
-
getElementsByTagName<
|
1039
|
-
getElementsByTagName<
|
1079
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
1080
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
1081
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
1082
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
1040
1083
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
1041
1084
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
1042
1085
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
1086
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
1043
1087
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
1044
1088
|
hasAttribute(qualifiedName: string): boolean;
|
1045
1089
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -1096,24 +1140,24 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1096
1140
|
normalize(): void;
|
1097
1141
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
1098
1142
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
1099
|
-
readonly
|
1100
|
-
readonly
|
1101
|
-
readonly
|
1102
|
-
readonly
|
1103
|
-
readonly
|
1104
|
-
readonly
|
1105
|
-
readonly
|
1106
|
-
readonly
|
1107
|
-
readonly
|
1108
|
-
readonly
|
1109
|
-
readonly
|
1110
|
-
readonly
|
1111
|
-
readonly
|
1112
|
-
readonly
|
1113
|
-
readonly
|
1114
|
-
readonly
|
1115
|
-
readonly
|
1116
|
-
readonly
|
1143
|
+
readonly ELEMENT_NODE: 1;
|
1144
|
+
readonly ATTRIBUTE_NODE: 2;
|
1145
|
+
readonly TEXT_NODE: 3;
|
1146
|
+
readonly CDATA_SECTION_NODE: 4;
|
1147
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
1148
|
+
readonly ENTITY_NODE: 6;
|
1149
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
1150
|
+
readonly COMMENT_NODE: 8;
|
1151
|
+
readonly DOCUMENT_NODE: 9;
|
1152
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
1153
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
1154
|
+
readonly NOTATION_NODE: 12;
|
1155
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
1156
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
1157
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
1158
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
1159
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
1160
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
1117
1161
|
dispatchEvent(event: Event): boolean;
|
1118
1162
|
ariaAtomic: string;
|
1119
1163
|
ariaAutoComplete: string;
|
@@ -1121,9 +1165,9 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1121
1165
|
ariaChecked: string;
|
1122
1166
|
ariaColCount: string;
|
1123
1167
|
ariaColIndex: string;
|
1124
|
-
ariaColIndexText: string;
|
1125
1168
|
ariaColSpan: string;
|
1126
1169
|
ariaCurrent: string;
|
1170
|
+
ariaDescription: string;
|
1127
1171
|
ariaDisabled: string;
|
1128
1172
|
ariaExpanded: string;
|
1129
1173
|
ariaHasPopup: string;
|
@@ -1145,7 +1189,6 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1145
1189
|
ariaRoleDescription: string;
|
1146
1190
|
ariaRowCount: string;
|
1147
1191
|
ariaRowIndex: string;
|
1148
|
-
ariaRowIndexText: string;
|
1149
1192
|
ariaRowSpan: string;
|
1150
1193
|
ariaSelected: string;
|
1151
1194
|
ariaSetSize: string;
|
@@ -1170,17 +1213,19 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1170
1213
|
readonly lastElementChild: Element;
|
1171
1214
|
append(...nodes: (string | Node)[]): void;
|
1172
1215
|
prepend(...nodes: (string | Node)[]): void;
|
1173
|
-
querySelector<
|
1174
|
-
querySelector<
|
1216
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
1217
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
1218
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
1219
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
1175
1220
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
1176
|
-
querySelectorAll<
|
1177
|
-
querySelectorAll<
|
1221
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
1222
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
1223
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
1224
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
1178
1225
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
1179
1226
|
replaceChildren(...nodes: (string | Node)[]): void;
|
1180
1227
|
readonly assignedSlot: HTMLSlotElement;
|
1181
|
-
|
1182
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1183
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1228
|
+
readonly attributeStyleMap: StylePropertyMap;
|
1184
1229
|
readonly style: CSSStyleDeclaration;
|
1185
1230
|
contentEditable: string;
|
1186
1231
|
enterKeyHint: string;
|
@@ -1193,6 +1238,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1193
1238
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1194
1239
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1195
1240
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
1241
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
1196
1242
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
1197
1243
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
1198
1244
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1201,7 +1247,9 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1201
1247
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1202
1248
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
1203
1249
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1250
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1204
1251
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1252
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1205
1253
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1206
1254
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1207
1255
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -1234,6 +1282,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1234
1282
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1235
1283
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1236
1284
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1285
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1237
1286
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
1238
1287
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
1239
1288
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1250,6 +1299,7 @@ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
|
1250
1299
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
1251
1300
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
1252
1301
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
1302
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
1253
1303
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
1254
1304
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
1255
1305
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1332,11 +1382,15 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1332
1382
|
readonly offsetTop: number;
|
1333
1383
|
readonly offsetWidth: number;
|
1334
1384
|
outerText: string;
|
1385
|
+
popover: string;
|
1335
1386
|
spellcheck: boolean;
|
1336
1387
|
title: string;
|
1337
1388
|
translate: boolean;
|
1338
1389
|
attachInternals(): ElementInternals;
|
1339
1390
|
click(): void;
|
1391
|
+
hidePopover(): void;
|
1392
|
+
showPopover(): void;
|
1393
|
+
togglePopover(force?: boolean): boolean;
|
1340
1394
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
1341
1395
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
1342
1396
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
@@ -1365,9 +1419,12 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1365
1419
|
slot: string;
|
1366
1420
|
readonly tagName: string;
|
1367
1421
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
1422
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
1368
1423
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
1369
1424
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
1425
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
1370
1426
|
closest<E extends Element = Element>(selectors: string): E;
|
1427
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
1371
1428
|
getAttribute(qualifiedName: string): string;
|
1372
1429
|
getAttributeNS(namespace: string, localName: string): string;
|
1373
1430
|
getAttributeNames(): string[];
|
@@ -1376,11 +1433,14 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1376
1433
|
getBoundingClientRect(): DOMRect;
|
1377
1434
|
getClientRects(): DOMRectList;
|
1378
1435
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
1379
|
-
getElementsByTagName<
|
1380
|
-
getElementsByTagName<
|
1436
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
1437
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
1438
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
1439
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
1381
1440
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
1382
1441
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
1383
1442
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
1443
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
1384
1444
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
1385
1445
|
hasAttribute(qualifiedName: string): boolean;
|
1386
1446
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
@@ -1437,24 +1497,24 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1437
1497
|
normalize(): void;
|
1438
1498
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
1439
1499
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
1440
|
-
readonly
|
1441
|
-
readonly
|
1442
|
-
readonly
|
1443
|
-
readonly
|
1444
|
-
readonly
|
1445
|
-
readonly
|
1446
|
-
readonly
|
1447
|
-
readonly
|
1448
|
-
readonly
|
1449
|
-
readonly
|
1450
|
-
readonly
|
1451
|
-
readonly
|
1452
|
-
readonly
|
1453
|
-
readonly
|
1454
|
-
readonly
|
1455
|
-
readonly
|
1456
|
-
readonly
|
1457
|
-
readonly
|
1500
|
+
readonly ELEMENT_NODE: 1;
|
1501
|
+
readonly ATTRIBUTE_NODE: 2;
|
1502
|
+
readonly TEXT_NODE: 3;
|
1503
|
+
readonly CDATA_SECTION_NODE: 4;
|
1504
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
1505
|
+
readonly ENTITY_NODE: 6;
|
1506
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
1507
|
+
readonly COMMENT_NODE: 8;
|
1508
|
+
readonly DOCUMENT_NODE: 9;
|
1509
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
1510
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
1511
|
+
readonly NOTATION_NODE: 12;
|
1512
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
1513
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
1514
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
1515
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
1516
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
1517
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
1458
1518
|
dispatchEvent(event: Event): boolean;
|
1459
1519
|
ariaAtomic: string;
|
1460
1520
|
ariaAutoComplete: string;
|
@@ -1462,9 +1522,9 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1462
1522
|
ariaChecked: string;
|
1463
1523
|
ariaColCount: string;
|
1464
1524
|
ariaColIndex: string;
|
1465
|
-
ariaColIndexText: string;
|
1466
1525
|
ariaColSpan: string;
|
1467
1526
|
ariaCurrent: string;
|
1527
|
+
ariaDescription: string;
|
1468
1528
|
ariaDisabled: string;
|
1469
1529
|
ariaExpanded: string;
|
1470
1530
|
ariaHasPopup: string;
|
@@ -1486,7 +1546,6 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1486
1546
|
ariaRoleDescription: string;
|
1487
1547
|
ariaRowCount: string;
|
1488
1548
|
ariaRowIndex: string;
|
1489
|
-
ariaRowIndexText: string;
|
1490
1549
|
ariaRowSpan: string;
|
1491
1550
|
ariaSelected: string;
|
1492
1551
|
ariaSetSize: string;
|
@@ -1511,17 +1570,19 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1511
1570
|
readonly lastElementChild: Element;
|
1512
1571
|
append(...nodes: (string | Node)[]): void;
|
1513
1572
|
prepend(...nodes: (string | Node)[]): void;
|
1514
|
-
querySelector<
|
1515
|
-
querySelector<
|
1573
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
1574
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
1575
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
1576
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
1516
1577
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
1517
|
-
querySelectorAll<
|
1518
|
-
querySelectorAll<
|
1578
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
1579
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
1580
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
1581
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
1519
1582
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
1520
1583
|
replaceChildren(...nodes: (string | Node)[]): void;
|
1521
1584
|
readonly assignedSlot: HTMLSlotElement;
|
1522
|
-
|
1523
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1524
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1585
|
+
readonly attributeStyleMap: StylePropertyMap;
|
1525
1586
|
readonly style: CSSStyleDeclaration;
|
1526
1587
|
contentEditable: string;
|
1527
1588
|
enterKeyHint: string;
|
@@ -1534,6 +1595,7 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1534
1595
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1535
1596
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1536
1597
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
1598
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
1537
1599
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
1538
1600
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
1539
1601
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1542,7 +1604,9 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1542
1604
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1543
1605
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
1544
1606
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1607
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1545
1608
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1609
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1546
1610
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1547
1611
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1548
1612
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
@@ -1575,6 +1639,7 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1575
1639
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1576
1640
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1577
1641
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1642
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
1578
1643
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
1579
1644
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
1580
1645
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
@@ -1591,6 +1656,7 @@ declare const Fdc3SystemChannelListener_base: (new (...args: any[]) => {
|
|
1591
1656
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
1592
1657
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
1593
1658
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
1659
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
1594
1660
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
1595
1661
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
1596
1662
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|