@genesislcap/foundation-fdc3 14.192.1 → 14.192.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/dts/util/fdc3-context-listener.d.ts +329 -2
- package/dist/dts/util/fdc3-context-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-listener.d.ts +329 -2
- package/dist/dts/util/fdc3-listener.d.ts.map +1 -1
- package/dist/dts/util/fdc3-raise-intent.d.ts +329 -2
- package/dist/dts/util/fdc3-raise-intent.d.ts.map +1 -1
- package/dist/esm/util/fdc3-context-listener.js +16 -2
- package/dist/esm/util/fdc3-listener.js +25 -2
- package/dist/esm/util/fdc3-raise-intent.js +11 -3
- package/dist/foundation-fdc3.d.ts +667 -14
- package/docs/api-report.md +10 -3
- package/package.json +14 -14
@@ -4,7 +4,6 @@ import { Context } from '@finos/fdc3';
|
|
4
4
|
import { ContextHandler } from '@finos/fdc3';
|
5
5
|
import { Controller } from '@microsoft/fast-element';
|
6
6
|
import { DOMContainer } from '@genesislcap/foundation-utils';
|
7
|
-
import { FASTElement } from '@genesislcap/web-core';
|
8
7
|
import { FoundationElement } from '@genesislcap/web-core';
|
9
8
|
import { FoundationElementRegistry } from '@microsoft/fast-foundation';
|
10
9
|
import { FoundationLayoutContainer } from '@genesislcap/foundation-utils';
|
@@ -513,27 +512,681 @@ export declare type FDC3Intents = Intents;
|
|
513
512
|
* fdc3-listener
|
514
513
|
* @alpha
|
515
514
|
*/
|
516
|
-
export declare class Fdc3Listener extends
|
515
|
+
export declare class Fdc3Listener extends Fdc3Listener_base {
|
517
516
|
fdc3: FDC3;
|
518
517
|
intentConfig: IntentConfig[];
|
519
518
|
channelConfig: ChannelConfig[];
|
519
|
+
deepClone(): Node;
|
520
520
|
connectedCallback(): void;
|
521
521
|
}
|
522
522
|
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
523
|
+
declare const Fdc3Listener_base: (new (...args: any[]) => {
|
524
|
+
"__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
525
|
+
"__#1@#_latestTokenCode": string;
|
526
|
+
"__#1@#_hasFirstLoaded": boolean;
|
527
|
+
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
528
|
+
"__#1@#_shouldForceLifecycle": boolean;
|
529
|
+
cloneNode(deep?: boolean): Node;
|
530
|
+
deepClone(): Node;
|
531
|
+
readonly shouldRunDisconnect: boolean;
|
532
|
+
readonly shouldRunConnect: boolean;
|
533
|
+
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
534
|
+
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
533
535
|
connectedCallback(): void;
|
536
|
+
readonly $fastController: Controller;
|
537
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
534
538
|
disconnectedCallback(): void;
|
535
|
-
|
536
|
-
|
539
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
540
|
+
accessKey: string;
|
541
|
+
readonly accessKeyLabel: string;
|
542
|
+
autocapitalize: string;
|
543
|
+
dir: string;
|
544
|
+
draggable: boolean;
|
545
|
+
hidden: boolean;
|
546
|
+
inert: boolean;
|
547
|
+
innerText: string;
|
548
|
+
lang: string;
|
549
|
+
readonly offsetHeight: number;
|
550
|
+
readonly offsetLeft: number;
|
551
|
+
readonly offsetParent: Element;
|
552
|
+
readonly offsetTop: number;
|
553
|
+
readonly offsetWidth: number;
|
554
|
+
outerText: string;
|
555
|
+
spellcheck: boolean;
|
556
|
+
title: string;
|
557
|
+
translate: boolean;
|
558
|
+
attachInternals(): ElementInternals;
|
559
|
+
click(): void;
|
560
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
561
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
562
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
563
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
564
|
+
readonly attributes: NamedNodeMap;
|
565
|
+
readonly classList: DOMTokenList;
|
566
|
+
className: string;
|
567
|
+
readonly clientHeight: number;
|
568
|
+
readonly clientLeft: number;
|
569
|
+
readonly clientTop: number;
|
570
|
+
readonly clientWidth: number;
|
571
|
+
id: string;
|
572
|
+
readonly localName: string;
|
573
|
+
readonly namespaceURI: string;
|
574
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
575
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
576
|
+
outerHTML: string;
|
577
|
+
readonly ownerDocument: Document;
|
578
|
+
readonly part: DOMTokenList;
|
579
|
+
readonly prefix: string;
|
580
|
+
readonly scrollHeight: number;
|
581
|
+
scrollLeft: number;
|
582
|
+
scrollTop: number;
|
583
|
+
readonly scrollWidth: number;
|
584
|
+
readonly shadowRoot: ShadowRoot;
|
585
|
+
slot: string;
|
586
|
+
readonly tagName: string;
|
587
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
588
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
589
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
590
|
+
closest<E extends Element = Element>(selectors: string): E;
|
591
|
+
getAttribute(qualifiedName: string): string;
|
592
|
+
getAttributeNS(namespace: string, localName: string): string;
|
593
|
+
getAttributeNames(): string[];
|
594
|
+
getAttributeNode(qualifiedName: string): Attr;
|
595
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
596
|
+
getBoundingClientRect(): DOMRect;
|
597
|
+
getClientRects(): DOMRectList;
|
598
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
599
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
600
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
601
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
602
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
603
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
604
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
605
|
+
hasAttribute(qualifiedName: string): boolean;
|
606
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
607
|
+
hasAttributes(): boolean;
|
608
|
+
hasPointerCapture(pointerId: number): boolean;
|
609
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
610
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
611
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
612
|
+
matches(selectors: string): boolean;
|
613
|
+
releasePointerCapture(pointerId: number): void;
|
614
|
+
removeAttribute(qualifiedName: string): void;
|
615
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
616
|
+
removeAttributeNode(attr: Attr): Attr;
|
617
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
618
|
+
requestPointerLock(): void;
|
619
|
+
scroll(options?: ScrollToOptions): void;
|
620
|
+
scroll(x: number, y: number): void;
|
621
|
+
scrollBy(options?: ScrollToOptions): void;
|
622
|
+
scrollBy(x: number, y: number): void;
|
623
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
624
|
+
scrollTo(options?: ScrollToOptions): void;
|
625
|
+
scrollTo(x: number, y: number): void;
|
626
|
+
setAttribute(qualifiedName: string, value: string): void;
|
627
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
628
|
+
setAttributeNode(attr: Attr): Attr;
|
629
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
630
|
+
setPointerCapture(pointerId: number): void;
|
631
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
632
|
+
webkitMatchesSelector(selectors: string): boolean;
|
633
|
+
readonly baseURI: string;
|
634
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
635
|
+
readonly firstChild: ChildNode;
|
636
|
+
readonly isConnected: boolean;
|
637
|
+
readonly lastChild: ChildNode;
|
638
|
+
readonly nextSibling: ChildNode;
|
639
|
+
readonly nodeName: string;
|
640
|
+
readonly nodeType: number;
|
641
|
+
nodeValue: string;
|
642
|
+
readonly parentElement: HTMLElement;
|
643
|
+
readonly parentNode: ParentNode;
|
644
|
+
readonly previousSibling: ChildNode;
|
645
|
+
textContent: string;
|
646
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
647
|
+
compareDocumentPosition(other: Node): number;
|
648
|
+
contains(other: Node): boolean;
|
649
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
650
|
+
hasChildNodes(): boolean;
|
651
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
652
|
+
isDefaultNamespace(namespace: string): boolean;
|
653
|
+
isEqualNode(otherNode: Node): boolean;
|
654
|
+
isSameNode(otherNode: Node): boolean;
|
655
|
+
lookupNamespaceURI(prefix: string): string;
|
656
|
+
lookupPrefix(namespace: string): string;
|
657
|
+
normalize(): void;
|
658
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
659
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
660
|
+
readonly ATTRIBUTE_NODE: number;
|
661
|
+
readonly CDATA_SECTION_NODE: number;
|
662
|
+
readonly COMMENT_NODE: number;
|
663
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
664
|
+
readonly DOCUMENT_NODE: number;
|
665
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
666
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
667
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
668
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
669
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
670
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
671
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
672
|
+
readonly ELEMENT_NODE: number;
|
673
|
+
readonly ENTITY_NODE: number;
|
674
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
675
|
+
readonly NOTATION_NODE: number;
|
676
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
677
|
+
readonly TEXT_NODE: number;
|
678
|
+
dispatchEvent(event: Event): boolean;
|
679
|
+
ariaAtomic: string;
|
680
|
+
ariaAutoComplete: string;
|
681
|
+
ariaBusy: string;
|
682
|
+
ariaChecked: string;
|
683
|
+
ariaColCount: string;
|
684
|
+
ariaColIndex: string;
|
685
|
+
ariaColIndexText: string;
|
686
|
+
ariaColSpan: string;
|
687
|
+
ariaCurrent: string;
|
688
|
+
ariaDisabled: string;
|
689
|
+
ariaExpanded: string;
|
690
|
+
ariaHasPopup: string;
|
691
|
+
ariaHidden: string;
|
692
|
+
ariaInvalid: string;
|
693
|
+
ariaKeyShortcuts: string;
|
694
|
+
ariaLabel: string;
|
695
|
+
ariaLevel: string;
|
696
|
+
ariaLive: string;
|
697
|
+
ariaModal: string;
|
698
|
+
ariaMultiLine: string;
|
699
|
+
ariaMultiSelectable: string;
|
700
|
+
ariaOrientation: string;
|
701
|
+
ariaPlaceholder: string;
|
702
|
+
ariaPosInSet: string;
|
703
|
+
ariaPressed: string;
|
704
|
+
ariaReadOnly: string;
|
705
|
+
ariaRequired: string;
|
706
|
+
ariaRoleDescription: string;
|
707
|
+
ariaRowCount: string;
|
708
|
+
ariaRowIndex: string;
|
709
|
+
ariaRowIndexText: string;
|
710
|
+
ariaRowSpan: string;
|
711
|
+
ariaSelected: string;
|
712
|
+
ariaSetSize: string;
|
713
|
+
ariaSort: string;
|
714
|
+
ariaValueMax: string;
|
715
|
+
ariaValueMin: string;
|
716
|
+
ariaValueNow: string;
|
717
|
+
ariaValueText: string;
|
718
|
+
role: string;
|
719
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
720
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
721
|
+
after(...nodes: (string | Node)[]): void;
|
722
|
+
before(...nodes: (string | Node)[]): void;
|
723
|
+
remove(): void;
|
724
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
725
|
+
innerHTML: string;
|
726
|
+
readonly nextElementSibling: Element;
|
727
|
+
readonly previousElementSibling: Element;
|
728
|
+
readonly childElementCount: number;
|
729
|
+
readonly children: HTMLCollection;
|
730
|
+
readonly firstElementChild: Element;
|
731
|
+
readonly lastElementChild: Element;
|
732
|
+
append(...nodes: (string | Node)[]): void;
|
733
|
+
prepend(...nodes: (string | Node)[]): void;
|
734
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
735
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
736
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
737
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
738
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
739
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
740
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
741
|
+
readonly assignedSlot: HTMLSlotElement;
|
742
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
743
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
744
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
745
|
+
readonly style: CSSStyleDeclaration;
|
746
|
+
contentEditable: string;
|
747
|
+
enterKeyHint: string;
|
748
|
+
inputMode: string;
|
749
|
+
readonly isContentEditable: boolean;
|
750
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
751
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
752
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
753
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
754
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
755
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
756
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
757
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
758
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
759
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
760
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
761
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
762
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
763
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
764
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
765
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
766
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
767
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
768
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
769
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
770
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
771
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
772
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
773
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
774
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
775
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
776
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
777
|
+
onerror: OnErrorEventHandlerNonNull;
|
778
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
779
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
780
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
781
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
782
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
783
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
784
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
785
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
786
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
787
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
788
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
789
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
790
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
791
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
792
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
793
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
794
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
795
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
796
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
797
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
798
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
799
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
800
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
801
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
802
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
803
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
804
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
805
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
806
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
807
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
808
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
809
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
810
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
811
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
812
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
813
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
814
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
815
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
816
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
817
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
818
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
819
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
820
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
821
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
822
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
823
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
824
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
825
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
826
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
827
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
828
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
829
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
830
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
831
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
832
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
833
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
834
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
835
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
836
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
837
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
838
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
839
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
840
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
841
|
+
autofocus: boolean;
|
842
|
+
readonly dataset: DOMStringMap;
|
843
|
+
nonce?: string;
|
844
|
+
tabIndex: number;
|
845
|
+
blur(): void;
|
846
|
+
focus(options?: FocusOptions): void;
|
847
|
+
}) & typeof FoundationElement;
|
848
|
+
|
849
|
+
/**
|
850
|
+
* fdc3-raise-intent
|
851
|
+
* @alpha
|
852
|
+
*/
|
853
|
+
export declare class Fdc3RaiseIntent extends Fdc3RaiseIntent_base {
|
854
|
+
fdc3: FDC3;
|
855
|
+
eventName: string;
|
856
|
+
intentType: string;
|
857
|
+
intentName: string;
|
858
|
+
mappingFunction: (any: any) => any;
|
859
|
+
deepClone(): Node;
|
860
|
+
connectedCallback(): void;
|
861
|
+
disconnectedCallback(): void;
|
862
|
+
private sendEventOnChannel;
|
863
|
+
}
|
864
|
+
|
865
|
+
declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
|
866
|
+
"__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
867
|
+
"__#1@#_latestTokenCode": string;
|
868
|
+
"__#1@#_hasFirstLoaded": boolean;
|
869
|
+
"__#1@#_cleanupTimeout": NodeJS.Timeout;
|
870
|
+
"__#1@#_shouldForceLifecycle": boolean;
|
871
|
+
cloneNode(deep?: boolean): Node;
|
872
|
+
deepClone(): Node;
|
873
|
+
readonly shouldRunDisconnect: boolean;
|
874
|
+
readonly shouldRunConnect: boolean;
|
875
|
+
"__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
|
876
|
+
"__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
|
877
|
+
connectedCallback(): void;
|
878
|
+
readonly $fastController: Controller;
|
879
|
+
$emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
|
880
|
+
disconnectedCallback(): void;
|
881
|
+
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
|
882
|
+
accessKey: string;
|
883
|
+
readonly accessKeyLabel: string;
|
884
|
+
autocapitalize: string;
|
885
|
+
dir: string;
|
886
|
+
draggable: boolean;
|
887
|
+
hidden: boolean;
|
888
|
+
inert: boolean;
|
889
|
+
innerText: string;
|
890
|
+
lang: string;
|
891
|
+
readonly offsetHeight: number;
|
892
|
+
readonly offsetLeft: number;
|
893
|
+
readonly offsetParent: Element;
|
894
|
+
readonly offsetTop: number;
|
895
|
+
readonly offsetWidth: number;
|
896
|
+
outerText: string;
|
897
|
+
spellcheck: boolean;
|
898
|
+
title: string;
|
899
|
+
translate: boolean;
|
900
|
+
attachInternals(): ElementInternals;
|
901
|
+
click(): void;
|
902
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
903
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
904
|
+
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
905
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
906
|
+
readonly attributes: NamedNodeMap;
|
907
|
+
readonly classList: DOMTokenList;
|
908
|
+
className: string;
|
909
|
+
readonly clientHeight: number;
|
910
|
+
readonly clientLeft: number;
|
911
|
+
readonly clientTop: number;
|
912
|
+
readonly clientWidth: number;
|
913
|
+
id: string;
|
914
|
+
readonly localName: string;
|
915
|
+
readonly namespaceURI: string;
|
916
|
+
onfullscreenchange: (this: Element, ev: Event) => any;
|
917
|
+
onfullscreenerror: (this: Element, ev: Event) => any;
|
918
|
+
outerHTML: string;
|
919
|
+
readonly ownerDocument: Document;
|
920
|
+
readonly part: DOMTokenList;
|
921
|
+
readonly prefix: string;
|
922
|
+
readonly scrollHeight: number;
|
923
|
+
scrollLeft: number;
|
924
|
+
scrollTop: number;
|
925
|
+
readonly scrollWidth: number;
|
926
|
+
readonly shadowRoot: ShadowRoot;
|
927
|
+
slot: string;
|
928
|
+
readonly tagName: string;
|
929
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
930
|
+
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
931
|
+
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
932
|
+
closest<E extends Element = Element>(selectors: string): E;
|
933
|
+
getAttribute(qualifiedName: string): string;
|
934
|
+
getAttributeNS(namespace: string, localName: string): string;
|
935
|
+
getAttributeNames(): string[];
|
936
|
+
getAttributeNode(qualifiedName: string): Attr;
|
937
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
938
|
+
getBoundingClientRect(): DOMRect;
|
939
|
+
getClientRects(): DOMRectList;
|
940
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
941
|
+
getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
|
942
|
+
getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
|
943
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
944
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
945
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
946
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
947
|
+
hasAttribute(qualifiedName: string): boolean;
|
948
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
949
|
+
hasAttributes(): boolean;
|
950
|
+
hasPointerCapture(pointerId: number): boolean;
|
951
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
952
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
953
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
954
|
+
matches(selectors: string): boolean;
|
955
|
+
releasePointerCapture(pointerId: number): void;
|
956
|
+
removeAttribute(qualifiedName: string): void;
|
957
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
958
|
+
removeAttributeNode(attr: Attr): Attr;
|
959
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
960
|
+
requestPointerLock(): void;
|
961
|
+
scroll(options?: ScrollToOptions): void;
|
962
|
+
scroll(x: number, y: number): void;
|
963
|
+
scrollBy(options?: ScrollToOptions): void;
|
964
|
+
scrollBy(x: number, y: number): void;
|
965
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
966
|
+
scrollTo(options?: ScrollToOptions): void;
|
967
|
+
scrollTo(x: number, y: number): void;
|
968
|
+
setAttribute(qualifiedName: string, value: string): void;
|
969
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
970
|
+
setAttributeNode(attr: Attr): Attr;
|
971
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
972
|
+
setPointerCapture(pointerId: number): void;
|
973
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
974
|
+
webkitMatchesSelector(selectors: string): boolean;
|
975
|
+
readonly baseURI: string;
|
976
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
977
|
+
readonly firstChild: ChildNode;
|
978
|
+
readonly isConnected: boolean;
|
979
|
+
readonly lastChild: ChildNode;
|
980
|
+
readonly nextSibling: ChildNode;
|
981
|
+
readonly nodeName: string;
|
982
|
+
readonly nodeType: number;
|
983
|
+
nodeValue: string;
|
984
|
+
readonly parentElement: HTMLElement;
|
985
|
+
readonly parentNode: ParentNode;
|
986
|
+
readonly previousSibling: ChildNode;
|
987
|
+
textContent: string;
|
988
|
+
appendChild<T_1 extends Node>(node: T_1): T_1;
|
989
|
+
compareDocumentPosition(other: Node): number;
|
990
|
+
contains(other: Node): boolean;
|
991
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
992
|
+
hasChildNodes(): boolean;
|
993
|
+
insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
|
994
|
+
isDefaultNamespace(namespace: string): boolean;
|
995
|
+
isEqualNode(otherNode: Node): boolean;
|
996
|
+
isSameNode(otherNode: Node): boolean;
|
997
|
+
lookupNamespaceURI(prefix: string): string;
|
998
|
+
lookupPrefix(namespace: string): string;
|
999
|
+
normalize(): void;
|
1000
|
+
removeChild<T_3 extends Node>(child: T_3): T_3;
|
1001
|
+
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
1002
|
+
readonly ATTRIBUTE_NODE: number;
|
1003
|
+
readonly CDATA_SECTION_NODE: number;
|
1004
|
+
readonly COMMENT_NODE: number;
|
1005
|
+
readonly DOCUMENT_FRAGMENT_NODE: number;
|
1006
|
+
readonly DOCUMENT_NODE: number;
|
1007
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: number;
|
1008
|
+
readonly DOCUMENT_POSITION_CONTAINS: number;
|
1009
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: number;
|
1010
|
+
readonly DOCUMENT_POSITION_FOLLOWING: number;
|
1011
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
|
1012
|
+
readonly DOCUMENT_POSITION_PRECEDING: number;
|
1013
|
+
readonly DOCUMENT_TYPE_NODE: number;
|
1014
|
+
readonly ELEMENT_NODE: number;
|
1015
|
+
readonly ENTITY_NODE: number;
|
1016
|
+
readonly ENTITY_REFERENCE_NODE: number;
|
1017
|
+
readonly NOTATION_NODE: number;
|
1018
|
+
readonly PROCESSING_INSTRUCTION_NODE: number;
|
1019
|
+
readonly TEXT_NODE: number;
|
1020
|
+
dispatchEvent(event: Event): boolean;
|
1021
|
+
ariaAtomic: string;
|
1022
|
+
ariaAutoComplete: string;
|
1023
|
+
ariaBusy: string;
|
1024
|
+
ariaChecked: string;
|
1025
|
+
ariaColCount: string;
|
1026
|
+
ariaColIndex: string;
|
1027
|
+
ariaColIndexText: string;
|
1028
|
+
ariaColSpan: string;
|
1029
|
+
ariaCurrent: string;
|
1030
|
+
ariaDisabled: string;
|
1031
|
+
ariaExpanded: string;
|
1032
|
+
ariaHasPopup: string;
|
1033
|
+
ariaHidden: string;
|
1034
|
+
ariaInvalid: string;
|
1035
|
+
ariaKeyShortcuts: string;
|
1036
|
+
ariaLabel: string;
|
1037
|
+
ariaLevel: string;
|
1038
|
+
ariaLive: string;
|
1039
|
+
ariaModal: string;
|
1040
|
+
ariaMultiLine: string;
|
1041
|
+
ariaMultiSelectable: string;
|
1042
|
+
ariaOrientation: string;
|
1043
|
+
ariaPlaceholder: string;
|
1044
|
+
ariaPosInSet: string;
|
1045
|
+
ariaPressed: string;
|
1046
|
+
ariaReadOnly: string;
|
1047
|
+
ariaRequired: string;
|
1048
|
+
ariaRoleDescription: string;
|
1049
|
+
ariaRowCount: string;
|
1050
|
+
ariaRowIndex: string;
|
1051
|
+
ariaRowIndexText: string;
|
1052
|
+
ariaRowSpan: string;
|
1053
|
+
ariaSelected: string;
|
1054
|
+
ariaSetSize: string;
|
1055
|
+
ariaSort: string;
|
1056
|
+
ariaValueMax: string;
|
1057
|
+
ariaValueMin: string;
|
1058
|
+
ariaValueNow: string;
|
1059
|
+
ariaValueText: string;
|
1060
|
+
role: string;
|
1061
|
+
animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
|
1062
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
1063
|
+
after(...nodes: (string | Node)[]): void;
|
1064
|
+
before(...nodes: (string | Node)[]): void;
|
1065
|
+
remove(): void;
|
1066
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
1067
|
+
innerHTML: string;
|
1068
|
+
readonly nextElementSibling: Element;
|
1069
|
+
readonly previousElementSibling: Element;
|
1070
|
+
readonly childElementCount: number;
|
1071
|
+
readonly children: HTMLCollection;
|
1072
|
+
readonly firstElementChild: Element;
|
1073
|
+
readonly lastElementChild: Element;
|
1074
|
+
append(...nodes: (string | Node)[]): void;
|
1075
|
+
prepend(...nodes: (string | Node)[]): void;
|
1076
|
+
querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
|
1077
|
+
querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
|
1078
|
+
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
1079
|
+
querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
|
1080
|
+
querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
|
1081
|
+
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
1082
|
+
replaceChildren(...nodes: (string | Node)[]): void;
|
1083
|
+
readonly assignedSlot: HTMLSlotElement;
|
1084
|
+
oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1085
|
+
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1086
|
+
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
1087
|
+
readonly style: CSSStyleDeclaration;
|
1088
|
+
contentEditable: string;
|
1089
|
+
enterKeyHint: string;
|
1090
|
+
inputMode: string;
|
1091
|
+
readonly isContentEditable: boolean;
|
1092
|
+
onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
1093
|
+
onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1094
|
+
onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1095
|
+
onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1096
|
+
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
1097
|
+
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1098
|
+
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
1099
|
+
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
1100
|
+
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
1101
|
+
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
1102
|
+
oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
|
1103
|
+
onchange: (this: GlobalEventHandlers, ev: Event) => any;
|
1104
|
+
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1105
|
+
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
1106
|
+
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1107
|
+
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1108
|
+
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1109
|
+
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1110
|
+
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1111
|
+
ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1112
|
+
ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1113
|
+
ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1114
|
+
ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1115
|
+
ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
1116
|
+
ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
|
1117
|
+
onemptied: (this: GlobalEventHandlers, ev: Event) => any;
|
1118
|
+
onended: (this: GlobalEventHandlers, ev: Event) => any;
|
1119
|
+
onerror: OnErrorEventHandlerNonNull;
|
1120
|
+
onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
1121
|
+
onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
|
1122
|
+
ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1123
|
+
oninput: (this: GlobalEventHandlers, ev: Event) => any;
|
1124
|
+
oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
|
1125
|
+
onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
1126
|
+
onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
1127
|
+
onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
|
1128
|
+
onload: (this: GlobalEventHandlers, ev: Event) => any;
|
1129
|
+
onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
|
1130
|
+
onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
|
1131
|
+
onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
|
1132
|
+
onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1133
|
+
onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1134
|
+
onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1135
|
+
onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1136
|
+
onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1137
|
+
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1138
|
+
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1139
|
+
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
1140
|
+
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
1141
|
+
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
1142
|
+
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
1143
|
+
onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1144
|
+
onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1145
|
+
onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1146
|
+
onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1147
|
+
onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1148
|
+
onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1149
|
+
onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1150
|
+
onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
|
1151
|
+
onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
|
1152
|
+
onratechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1153
|
+
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
1154
|
+
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
1155
|
+
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
1156
|
+
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
1157
|
+
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
1158
|
+
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
1159
|
+
onselect: (this: GlobalEventHandlers, ev: Event) => any;
|
1160
|
+
onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
|
1161
|
+
onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
|
1162
|
+
onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
|
1163
|
+
onstalled: (this: GlobalEventHandlers, ev: Event) => any;
|
1164
|
+
onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
|
1165
|
+
onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
|
1166
|
+
ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
|
1167
|
+
ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
1168
|
+
ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
1169
|
+
ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
1170
|
+
ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
1171
|
+
ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
|
1172
|
+
ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
1173
|
+
ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
1174
|
+
ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
1175
|
+
ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
|
1176
|
+
onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
|
1177
|
+
onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
|
1178
|
+
onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
|
1179
|
+
onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
|
1180
|
+
onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
|
1181
|
+
onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
|
1182
|
+
onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
|
1183
|
+
autofocus: boolean;
|
1184
|
+
readonly dataset: DOMStringMap;
|
1185
|
+
nonce?: string;
|
1186
|
+
tabIndex: number;
|
1187
|
+
blur(): void;
|
1188
|
+
focus(options?: FocusOptions): void;
|
1189
|
+
}) & typeof FoundationElement;
|
537
1190
|
|
538
1191
|
/**
|
539
1192
|
* fdc3-listener listen intent config
|