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