@genesislcap/foundation-fdc3 14.192.0 → 14.192.2-FUI-2127.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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';
@@ -15,6 +14,7 @@ import { IOConnectDesktop } from '@interopio/desktop';
15
14
  import { LayoutCacheContainer } from '@genesislcap/foundation-utils';
16
15
  import { NotificationDataRow } from '@genesislcap/foundation-notifications';
17
16
  import { NotificationListener } from '@genesislcap/foundation-ui';
17
+ import { Observable } from 'rxjs';
18
18
  import { OverrideFoundationElementDefinition } from '@microsoft/fast-foundation';
19
19
  import { ViewTemplate } from '@microsoft/fast-element';
20
20
 
@@ -23,9 +23,9 @@ import { ViewTemplate } from '@microsoft/fast-element';
23
23
  * @alpha
24
24
  */
25
25
  export declare interface ChannelConfig {
26
- channelName: string;
26
+ channelName?: string;
27
27
  channelType: string;
28
- callback: (any: any) => void;
28
+ callback: (FDC3Context: any) => void;
29
29
  }
30
30
 
31
31
  /**
@@ -33,19 +33,30 @@ export declare interface ChannelConfig {
33
33
  * @internal
34
34
  */
35
35
  export declare class DefaultFDC3 implements FDC3 {
36
- isReady: boolean;
36
+ private isReady;
37
+ private _isReady$;
38
+ isReadyObs: Observable<true>;
39
+ private _currentChannel$;
40
+ private _currentChannel;
41
+ currentChannelObs: Observable<Channel>;
42
+ isInteropFdc3: () => boolean;
37
43
  constructor();
38
- private connect;
44
+ init(): Promise<void>;
39
45
  addIntentListeners(listeners: Map<FDC3Intents, FDC3ContextHandler>): void;
40
46
  findIntent(intent: FDC3Intents, context?: FDC3Context): Promise<FDC3AppIntent>;
41
47
  findIntentsByContext(context: FDC3Context): Promise<FDC3AppIntent[]>;
42
- raiseIntent(context: FDC3Context, intent?: FDC3Intents): Promise<FDC3IntentResolution>;
48
+ raiseIntentForContext(context: FDC3Context): Promise<FDC3IntentResolution>;
49
+ raiseIntent(context: FDC3Context, intent: FDC3Intents): Promise<FDC3IntentResolution>;
43
50
  joinChannel(channelId: string): Promise<void>;
44
51
  getOrCreateChannel(channelId: string): Promise<FDC3Channel>;
45
52
  broadcastOnChannel(channelName: string, type: string, payload: any): Promise<void>;
53
+ broadcastOnCurrentChannel(payload: any, type?: string): Promise<void>;
46
54
  broadcastOnChannelEventHandler(channelName: string, type: string): Promise<(e: any) => Promise<void>>;
47
- addChannelListener(channelName: string, channelType: string, callback: (any: any) => void): Promise<Channel>;
55
+ addChannelListener(channel: FDC3Channel | Channel, channelType: string, callback: (any: any) => void): Promise<FDC3Channel | Channel>;
48
56
  getCurrentChannel(): Promise<Channel>;
57
+ private broadcastMessageOnChannel;
58
+ private getAndUpdateCurrentChannel;
59
+ private handleInteropChannelChanges;
49
60
  }
50
61
 
51
62
  /**
@@ -54,10 +65,27 @@ export declare class DefaultFDC3 implements FDC3 {
54
65
  */
55
66
  export declare interface FDC3 {
56
67
  /**
57
- * Whether the FDC3 API is ready.
68
+ * Observable indicating the FDC3 API is ready.
69
+ * @public
70
+ */
71
+ isReadyObs: Observable<true>;
72
+ /**
73
+ * Check if the interop global is available.
74
+ * @public
75
+ */
76
+ isInteropFdc3: () => boolean;
77
+ /**
78
+ * Observable which emits the current channel
79
+ * When a new channel is joined a new value is emitted
58
80
  * @public
59
81
  */
60
- isReady: boolean;
82
+ currentChannelObs: Observable<FDC3Channel>;
83
+ /**
84
+ * Method to initialize the fdc3 service.
85
+ * The service will check if the fdc3 agent has been initialized and emit via the isReadyObs when ready.
86
+ * The service will store the current app channel internally
87
+ */
88
+ init(): void;
61
89
  /**
62
90
  * Adds intent listeners for the specified intents.
63
91
  * @public
@@ -79,6 +107,13 @@ export declare interface FDC3 {
79
107
  * @returns A promise that resolves with an array of all matching intents and their metadata.
80
108
  */
81
109
  findIntentsByContext(context: FDC3Context): Promise<FDC3AppIntent[]>;
110
+ /**
111
+ * Raises an intent against an application based purely on the context data.
112
+ * @public
113
+ * @param context - The context to use.
114
+ * @returns A promise that resolves with the result of the intent resolution.
115
+ */
116
+ raiseIntentForContext(context: FDC3Context): Promise<FDC3IntentResolution>;
82
117
  /**
83
118
  * Raises the specified intent with the specified context.
84
119
  * @public
@@ -108,6 +143,12 @@ export declare interface FDC3 {
108
143
  * @param payload - payload sent to the channel
109
144
  */
110
145
  broadcastOnChannel(channelName: string, type: string, payload: any): Promise<void>;
146
+ /**
147
+ * Broadcasts a message on the current app channel
148
+ * @param type - type of the channel
149
+ * @param payload - payload sent to the channel
150
+ */
151
+ broadcastOnCurrentChannel(payload: any, type?: string): Promise<void>;
111
152
  /**
112
153
  * Helper function to broadcast message on channel in response to dispatched event
113
154
  * @param channelName - name of the channel
@@ -116,11 +157,11 @@ export declare interface FDC3 {
116
157
  broadcastOnChannelEventHandler(channelName: string, type: string): Promise<(e: any) => Promise<void>>;
117
158
  /**
118
159
  * Helper function to add a context listener on a channel with a handler for channel messages
119
- * @param channelName - name of the channel
120
- * @param channelType - type of the channel
160
+ * @param channel - instance of a channel
161
+ * @param channelType - type of the channel context
121
162
  * @param callback - handler to for the channel context listener
122
163
  * */
123
- addChannelListener(channelName: string, channelType: string, callback: (any: any) => void): Promise<Channel>;
164
+ addChannelListener(channel: FDC3Channel | Channel, channelType: string, callback: (any: any) => void): Promise<Channel>;
124
165
  /**
125
166
  * Helper function to get the current channel of the application
126
167
  * */
@@ -513,27 +554,685 @@ export declare type FDC3Intents = Intents;
513
554
  * fdc3-listener
514
555
  * @alpha
515
556
  */
516
- export declare class Fdc3Listener extends FASTElement {
557
+ export declare class Fdc3Listener extends Fdc3Listener_base {
517
558
  fdc3: FDC3;
518
559
  intentConfig: IntentConfig[];
519
560
  channelConfig: ChannelConfig[];
561
+ private channelSubscription;
562
+ private fdc3ReadySub;
563
+ deepClone(): Node;
520
564
  connectedCallback(): void;
565
+ disconnectedCallback(): void;
566
+ private handleChanelCurrentContext;
521
567
  }
522
568
 
523
- /**
524
- * fdc3-raise-intent
525
- * @alpha
526
- */
527
- export declare class Fdc3RaiseIntent extends FASTElement {
528
- fdc3: FDC3;
529
- eventName: string;
530
- intentType: string;
531
- intentName: string;
532
- mappingFunction: (any: any) => any;
569
+ declare const Fdc3Listener_base: (new (...args: any[]) => {
570
+ "__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
571
+ "__#1@#_latestTokenCode": string;
572
+ "__#1@#_hasFirstLoaded": boolean;
573
+ "__#1@#_cleanupTimeout": NodeJS.Timeout;
574
+ "__#1@#_shouldForceLifecycle": boolean;
575
+ cloneNode(deep?: boolean): Node;
576
+ deepClone(): Node;
577
+ readonly shouldRunDisconnect: boolean;
578
+ readonly shouldRunConnect: boolean;
579
+ "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
580
+ "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
533
581
  connectedCallback(): void;
582
+ readonly $fastController: Controller;
583
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
534
584
  disconnectedCallback(): void;
535
- private sendEventOnChannel;
536
- }
585
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
586
+ accessKey: string;
587
+ readonly accessKeyLabel: string;
588
+ autocapitalize: string;
589
+ dir: string;
590
+ draggable: boolean;
591
+ hidden: boolean;
592
+ inert: boolean;
593
+ innerText: string;
594
+ lang: string;
595
+ readonly offsetHeight: number;
596
+ readonly offsetLeft: number;
597
+ readonly offsetParent: Element;
598
+ readonly offsetTop: number;
599
+ readonly offsetWidth: number;
600
+ outerText: string;
601
+ spellcheck: boolean;
602
+ title: string;
603
+ translate: boolean;
604
+ attachInternals(): ElementInternals;
605
+ click(): void;
606
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
607
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
608
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
609
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
610
+ readonly attributes: NamedNodeMap;
611
+ readonly classList: DOMTokenList;
612
+ className: string;
613
+ readonly clientHeight: number;
614
+ readonly clientLeft: number;
615
+ readonly clientTop: number;
616
+ readonly clientWidth: number;
617
+ id: string;
618
+ readonly localName: string;
619
+ readonly namespaceURI: string;
620
+ onfullscreenchange: (this: Element, ev: Event) => any;
621
+ onfullscreenerror: (this: Element, ev: Event) => any;
622
+ outerHTML: string;
623
+ readonly ownerDocument: Document;
624
+ readonly part: DOMTokenList;
625
+ readonly prefix: string;
626
+ readonly scrollHeight: number;
627
+ scrollLeft: number;
628
+ scrollTop: number;
629
+ readonly scrollWidth: number;
630
+ readonly shadowRoot: ShadowRoot;
631
+ slot: string;
632
+ readonly tagName: string;
633
+ attachShadow(init: ShadowRootInit): ShadowRoot;
634
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
635
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
636
+ closest<E extends Element = Element>(selectors: string): E;
637
+ getAttribute(qualifiedName: string): string;
638
+ getAttributeNS(namespace: string, localName: string): string;
639
+ getAttributeNames(): string[];
640
+ getAttributeNode(qualifiedName: string): Attr;
641
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
642
+ getBoundingClientRect(): DOMRect;
643
+ getClientRects(): DOMRectList;
644
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
645
+ getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
646
+ getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
647
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
648
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
649
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
650
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
651
+ hasAttribute(qualifiedName: string): boolean;
652
+ hasAttributeNS(namespace: string, localName: string): boolean;
653
+ hasAttributes(): boolean;
654
+ hasPointerCapture(pointerId: number): boolean;
655
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
656
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
657
+ insertAdjacentText(where: InsertPosition, data: string): void;
658
+ matches(selectors: string): boolean;
659
+ releasePointerCapture(pointerId: number): void;
660
+ removeAttribute(qualifiedName: string): void;
661
+ removeAttributeNS(namespace: string, localName: string): void;
662
+ removeAttributeNode(attr: Attr): Attr;
663
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
664
+ requestPointerLock(): void;
665
+ scroll(options?: ScrollToOptions): void;
666
+ scroll(x: number, y: number): void;
667
+ scrollBy(options?: ScrollToOptions): void;
668
+ scrollBy(x: number, y: number): void;
669
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
670
+ scrollTo(options?: ScrollToOptions): void;
671
+ scrollTo(x: number, y: number): void;
672
+ setAttribute(qualifiedName: string, value: string): void;
673
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
674
+ setAttributeNode(attr: Attr): Attr;
675
+ setAttributeNodeNS(attr: Attr): Attr;
676
+ setPointerCapture(pointerId: number): void;
677
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
678
+ webkitMatchesSelector(selectors: string): boolean;
679
+ readonly baseURI: string;
680
+ readonly childNodes: NodeListOf<ChildNode>;
681
+ readonly firstChild: ChildNode;
682
+ readonly isConnected: boolean;
683
+ readonly lastChild: ChildNode;
684
+ readonly nextSibling: ChildNode;
685
+ readonly nodeName: string;
686
+ readonly nodeType: number;
687
+ nodeValue: string;
688
+ readonly parentElement: HTMLElement;
689
+ readonly parentNode: ParentNode;
690
+ readonly previousSibling: ChildNode;
691
+ textContent: string;
692
+ appendChild<T_1 extends Node>(node: T_1): T_1;
693
+ compareDocumentPosition(other: Node): number;
694
+ contains(other: Node): boolean;
695
+ getRootNode(options?: GetRootNodeOptions): Node;
696
+ hasChildNodes(): boolean;
697
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
698
+ isDefaultNamespace(namespace: string): boolean;
699
+ isEqualNode(otherNode: Node): boolean;
700
+ isSameNode(otherNode: Node): boolean;
701
+ lookupNamespaceURI(prefix: string): string;
702
+ lookupPrefix(namespace: string): string;
703
+ normalize(): void;
704
+ removeChild<T_3 extends Node>(child: T_3): T_3;
705
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
706
+ readonly ATTRIBUTE_NODE: number;
707
+ readonly CDATA_SECTION_NODE: number;
708
+ readonly COMMENT_NODE: number;
709
+ readonly DOCUMENT_FRAGMENT_NODE: number;
710
+ readonly DOCUMENT_NODE: number;
711
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
712
+ readonly DOCUMENT_POSITION_CONTAINS: number;
713
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
714
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
715
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
716
+ readonly DOCUMENT_POSITION_PRECEDING: number;
717
+ readonly DOCUMENT_TYPE_NODE: number;
718
+ readonly ELEMENT_NODE: number;
719
+ readonly ENTITY_NODE: number;
720
+ readonly ENTITY_REFERENCE_NODE: number;
721
+ readonly NOTATION_NODE: number;
722
+ readonly PROCESSING_INSTRUCTION_NODE: number;
723
+ readonly TEXT_NODE: number;
724
+ dispatchEvent(event: Event): boolean;
725
+ ariaAtomic: string;
726
+ ariaAutoComplete: string;
727
+ ariaBusy: string;
728
+ ariaChecked: string;
729
+ ariaColCount: string;
730
+ ariaColIndex: string;
731
+ ariaColIndexText: string;
732
+ ariaColSpan: string;
733
+ ariaCurrent: string;
734
+ ariaDisabled: string;
735
+ ariaExpanded: string;
736
+ ariaHasPopup: string;
737
+ ariaHidden: string;
738
+ ariaInvalid: string;
739
+ ariaKeyShortcuts: string;
740
+ ariaLabel: string;
741
+ ariaLevel: string;
742
+ ariaLive: string;
743
+ ariaModal: string;
744
+ ariaMultiLine: string;
745
+ ariaMultiSelectable: string;
746
+ ariaOrientation: string;
747
+ ariaPlaceholder: string;
748
+ ariaPosInSet: string;
749
+ ariaPressed: string;
750
+ ariaReadOnly: string;
751
+ ariaRequired: string;
752
+ ariaRoleDescription: string;
753
+ ariaRowCount: string;
754
+ ariaRowIndex: string;
755
+ ariaRowIndexText: string;
756
+ ariaRowSpan: string;
757
+ ariaSelected: string;
758
+ ariaSetSize: string;
759
+ ariaSort: string;
760
+ ariaValueMax: string;
761
+ ariaValueMin: string;
762
+ ariaValueNow: string;
763
+ ariaValueText: string;
764
+ role: string;
765
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
766
+ getAnimations(options?: GetAnimationsOptions): Animation[];
767
+ after(...nodes: (string | Node)[]): void;
768
+ before(...nodes: (string | Node)[]): void;
769
+ remove(): void;
770
+ replaceWith(...nodes: (string | Node)[]): void;
771
+ innerHTML: string;
772
+ readonly nextElementSibling: Element;
773
+ readonly previousElementSibling: Element;
774
+ readonly childElementCount: number;
775
+ readonly children: HTMLCollection;
776
+ readonly firstElementChild: Element;
777
+ readonly lastElementChild: Element;
778
+ append(...nodes: (string | Node)[]): void;
779
+ prepend(...nodes: (string | Node)[]): void;
780
+ querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
781
+ querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
782
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
783
+ querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
784
+ querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
785
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
786
+ replaceChildren(...nodes: (string | Node)[]): void;
787
+ readonly assignedSlot: HTMLSlotElement;
788
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
789
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
790
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
791
+ readonly style: CSSStyleDeclaration;
792
+ contentEditable: string;
793
+ enterKeyHint: string;
794
+ inputMode: string;
795
+ readonly isContentEditable: boolean;
796
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
797
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
798
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
799
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
800
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
801
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
802
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
803
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
804
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
805
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
806
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
807
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
808
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
809
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
810
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
811
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
812
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
813
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
814
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
815
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
816
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
817
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
818
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
819
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
820
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
821
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
822
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
823
+ onerror: OnErrorEventHandlerNonNull;
824
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
825
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
826
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
827
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
828
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
829
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
830
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
831
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
832
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
833
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
834
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
835
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
836
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
837
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
838
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
839
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
840
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
841
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
842
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
843
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
844
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
845
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
846
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
847
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
848
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
849
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
850
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
851
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
852
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
853
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
854
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
855
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
856
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
857
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
858
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
859
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
860
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
861
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
862
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
863
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
864
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
865
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
866
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
867
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
868
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
869
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
870
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
871
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
872
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
873
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
874
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
875
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
876
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
877
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
878
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
879
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
880
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
881
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
882
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
883
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
884
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
885
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
886
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
887
+ autofocus: boolean;
888
+ readonly dataset: DOMStringMap;
889
+ nonce?: string;
890
+ tabIndex: number;
891
+ blur(): void;
892
+ focus(options?: FocusOptions): void;
893
+ }) & typeof FoundationElement;
894
+
895
+ /**
896
+ * fdc3-raise-intent
897
+ * @alpha
898
+ */
899
+ export declare class Fdc3RaiseIntent extends Fdc3RaiseIntent_base {
900
+ fdc3: FDC3;
901
+ eventName: string;
902
+ intentType: string;
903
+ intentName: string;
904
+ mappingFunction: (any: any) => any;
905
+ deepClone(): Node;
906
+ connectedCallback(): void;
907
+ disconnectedCallback(): void;
908
+ private sendEventOnChannel;
909
+ }
910
+
911
+ declare const Fdc3RaiseIntent_base: (new (...args: any[]) => {
912
+ "__#1@#_container": FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
913
+ "__#1@#_latestTokenCode": string;
914
+ "__#1@#_hasFirstLoaded": boolean;
915
+ "__#1@#_cleanupTimeout": NodeJS.Timeout;
916
+ "__#1@#_shouldForceLifecycle": boolean;
917
+ cloneNode(deep?: boolean): Node;
918
+ deepClone(): Node;
919
+ readonly shouldRunDisconnect: boolean;
920
+ readonly shouldRunConnect: boolean;
921
+ "__#1@#_blockLifecycleDueToTokenChange"(lifecycleType: "connect" | "disconnect" | "reconnect"): boolean;
922
+ "__#1@#_tryFindContainingLayout"(e: Element): FoundationLayoutContainer | LayoutCacheContainer | DOMContainer;
923
+ connectedCallback(): void;
924
+ readonly $fastController: Controller;
925
+ $emit(type: string, detail?: any, options?: Omit<CustomEventInit<any>, "detail">): boolean | void;
926
+ disconnectedCallback(): void;
927
+ attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
928
+ accessKey: string;
929
+ readonly accessKeyLabel: string;
930
+ autocapitalize: string;
931
+ dir: string;
932
+ draggable: boolean;
933
+ hidden: boolean;
934
+ inert: boolean;
935
+ innerText: string;
936
+ lang: string;
937
+ readonly offsetHeight: number;
938
+ readonly offsetLeft: number;
939
+ readonly offsetParent: Element;
940
+ readonly offsetTop: number;
941
+ readonly offsetWidth: number;
942
+ outerText: string;
943
+ spellcheck: boolean;
944
+ title: string;
945
+ translate: boolean;
946
+ attachInternals(): ElementInternals;
947
+ click(): void;
948
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
949
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
950
+ removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
951
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
952
+ readonly attributes: NamedNodeMap;
953
+ readonly classList: DOMTokenList;
954
+ className: string;
955
+ readonly clientHeight: number;
956
+ readonly clientLeft: number;
957
+ readonly clientTop: number;
958
+ readonly clientWidth: number;
959
+ id: string;
960
+ readonly localName: string;
961
+ readonly namespaceURI: string;
962
+ onfullscreenchange: (this: Element, ev: Event) => any;
963
+ onfullscreenerror: (this: Element, ev: Event) => any;
964
+ outerHTML: string;
965
+ readonly ownerDocument: Document;
966
+ readonly part: DOMTokenList;
967
+ readonly prefix: string;
968
+ readonly scrollHeight: number;
969
+ scrollLeft: number;
970
+ scrollTop: number;
971
+ readonly scrollWidth: number;
972
+ readonly shadowRoot: ShadowRoot;
973
+ slot: string;
974
+ readonly tagName: string;
975
+ attachShadow(init: ShadowRootInit): ShadowRoot;
976
+ closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
977
+ closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
978
+ closest<E extends Element = Element>(selectors: string): E;
979
+ getAttribute(qualifiedName: string): string;
980
+ getAttributeNS(namespace: string, localName: string): string;
981
+ getAttributeNames(): string[];
982
+ getAttributeNode(qualifiedName: string): Attr;
983
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
984
+ getBoundingClientRect(): DOMRect;
985
+ getClientRects(): DOMRectList;
986
+ getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
987
+ getElementsByTagName<K_4 extends keyof HTMLElementTagNameMap>(qualifiedName: K_4): HTMLCollectionOf<HTMLElementTagNameMap[K_4]>;
988
+ getElementsByTagName<K_5 extends keyof SVGElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<SVGElementTagNameMap[K_5]>;
989
+ getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
990
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
991
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
992
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
993
+ hasAttribute(qualifiedName: string): boolean;
994
+ hasAttributeNS(namespace: string, localName: string): boolean;
995
+ hasAttributes(): boolean;
996
+ hasPointerCapture(pointerId: number): boolean;
997
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
998
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
999
+ insertAdjacentText(where: InsertPosition, data: string): void;
1000
+ matches(selectors: string): boolean;
1001
+ releasePointerCapture(pointerId: number): void;
1002
+ removeAttribute(qualifiedName: string): void;
1003
+ removeAttributeNS(namespace: string, localName: string): void;
1004
+ removeAttributeNode(attr: Attr): Attr;
1005
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
1006
+ requestPointerLock(): void;
1007
+ scroll(options?: ScrollToOptions): void;
1008
+ scroll(x: number, y: number): void;
1009
+ scrollBy(options?: ScrollToOptions): void;
1010
+ scrollBy(x: number, y: number): void;
1011
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
1012
+ scrollTo(options?: ScrollToOptions): void;
1013
+ scrollTo(x: number, y: number): void;
1014
+ setAttribute(qualifiedName: string, value: string): void;
1015
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
1016
+ setAttributeNode(attr: Attr): Attr;
1017
+ setAttributeNodeNS(attr: Attr): Attr;
1018
+ setPointerCapture(pointerId: number): void;
1019
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
1020
+ webkitMatchesSelector(selectors: string): boolean;
1021
+ readonly baseURI: string;
1022
+ readonly childNodes: NodeListOf<ChildNode>;
1023
+ readonly firstChild: ChildNode;
1024
+ readonly isConnected: boolean;
1025
+ readonly lastChild: ChildNode;
1026
+ readonly nextSibling: ChildNode;
1027
+ readonly nodeName: string;
1028
+ readonly nodeType: number;
1029
+ nodeValue: string;
1030
+ readonly parentElement: HTMLElement;
1031
+ readonly parentNode: ParentNode;
1032
+ readonly previousSibling: ChildNode;
1033
+ textContent: string;
1034
+ appendChild<T_1 extends Node>(node: T_1): T_1;
1035
+ compareDocumentPosition(other: Node): number;
1036
+ contains(other: Node): boolean;
1037
+ getRootNode(options?: GetRootNodeOptions): Node;
1038
+ hasChildNodes(): boolean;
1039
+ insertBefore<T_2 extends Node>(node: T_2, child: Node): T_2;
1040
+ isDefaultNamespace(namespace: string): boolean;
1041
+ isEqualNode(otherNode: Node): boolean;
1042
+ isSameNode(otherNode: Node): boolean;
1043
+ lookupNamespaceURI(prefix: string): string;
1044
+ lookupPrefix(namespace: string): string;
1045
+ normalize(): void;
1046
+ removeChild<T_3 extends Node>(child: T_3): T_3;
1047
+ replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
1048
+ readonly ATTRIBUTE_NODE: number;
1049
+ readonly CDATA_SECTION_NODE: number;
1050
+ readonly COMMENT_NODE: number;
1051
+ readonly DOCUMENT_FRAGMENT_NODE: number;
1052
+ readonly DOCUMENT_NODE: number;
1053
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
1054
+ readonly DOCUMENT_POSITION_CONTAINS: number;
1055
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
1056
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
1057
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
1058
+ readonly DOCUMENT_POSITION_PRECEDING: number;
1059
+ readonly DOCUMENT_TYPE_NODE: number;
1060
+ readonly ELEMENT_NODE: number;
1061
+ readonly ENTITY_NODE: number;
1062
+ readonly ENTITY_REFERENCE_NODE: number;
1063
+ readonly NOTATION_NODE: number;
1064
+ readonly PROCESSING_INSTRUCTION_NODE: number;
1065
+ readonly TEXT_NODE: number;
1066
+ dispatchEvent(event: Event): boolean;
1067
+ ariaAtomic: string;
1068
+ ariaAutoComplete: string;
1069
+ ariaBusy: string;
1070
+ ariaChecked: string;
1071
+ ariaColCount: string;
1072
+ ariaColIndex: string;
1073
+ ariaColIndexText: string;
1074
+ ariaColSpan: string;
1075
+ ariaCurrent: string;
1076
+ ariaDisabled: string;
1077
+ ariaExpanded: string;
1078
+ ariaHasPopup: string;
1079
+ ariaHidden: string;
1080
+ ariaInvalid: string;
1081
+ ariaKeyShortcuts: string;
1082
+ ariaLabel: string;
1083
+ ariaLevel: string;
1084
+ ariaLive: string;
1085
+ ariaModal: string;
1086
+ ariaMultiLine: string;
1087
+ ariaMultiSelectable: string;
1088
+ ariaOrientation: string;
1089
+ ariaPlaceholder: string;
1090
+ ariaPosInSet: string;
1091
+ ariaPressed: string;
1092
+ ariaReadOnly: string;
1093
+ ariaRequired: string;
1094
+ ariaRoleDescription: string;
1095
+ ariaRowCount: string;
1096
+ ariaRowIndex: string;
1097
+ ariaRowIndexText: string;
1098
+ ariaRowSpan: string;
1099
+ ariaSelected: string;
1100
+ ariaSetSize: string;
1101
+ ariaSort: string;
1102
+ ariaValueMax: string;
1103
+ ariaValueMin: string;
1104
+ ariaValueNow: string;
1105
+ ariaValueText: string;
1106
+ role: string;
1107
+ animate(keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions): Animation;
1108
+ getAnimations(options?: GetAnimationsOptions): Animation[];
1109
+ after(...nodes: (string | Node)[]): void;
1110
+ before(...nodes: (string | Node)[]): void;
1111
+ remove(): void;
1112
+ replaceWith(...nodes: (string | Node)[]): void;
1113
+ innerHTML: string;
1114
+ readonly nextElementSibling: Element;
1115
+ readonly previousElementSibling: Element;
1116
+ readonly childElementCount: number;
1117
+ readonly children: HTMLCollection;
1118
+ readonly firstElementChild: Element;
1119
+ readonly lastElementChild: Element;
1120
+ append(...nodes: (string | Node)[]): void;
1121
+ prepend(...nodes: (string | Node)[]): void;
1122
+ querySelector<K_6 extends keyof HTMLElementTagNameMap>(selectors: K_6): HTMLElementTagNameMap[K_6];
1123
+ querySelector<K_7 extends keyof SVGElementTagNameMap>(selectors: K_7): SVGElementTagNameMap[K_7];
1124
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
1125
+ querySelectorAll<K_8 extends keyof HTMLElementTagNameMap>(selectors: K_8): NodeListOf<HTMLElementTagNameMap[K_8]>;
1126
+ querySelectorAll<K_9 extends keyof SVGElementTagNameMap>(selectors: K_9): NodeListOf<SVGElementTagNameMap[K_9]>;
1127
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
1128
+ replaceChildren(...nodes: (string | Node)[]): void;
1129
+ readonly assignedSlot: HTMLSlotElement;
1130
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1131
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1132
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
1133
+ readonly style: CSSStyleDeclaration;
1134
+ contentEditable: string;
1135
+ enterKeyHint: string;
1136
+ inputMode: string;
1137
+ readonly isContentEditable: boolean;
1138
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
1139
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1140
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1141
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1142
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
1143
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1144
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
1145
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
1146
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
1147
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
1148
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
1149
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
1150
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1151
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
1152
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1153
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
1154
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1155
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
1156
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
1157
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
1158
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
1159
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
1160
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
1161
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
1162
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
1163
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
1164
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
1165
+ onerror: OnErrorEventHandlerNonNull;
1166
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
1167
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
1168
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1169
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
1170
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
1171
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
1172
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
1173
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
1174
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
1175
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
1176
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
1177
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
1178
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1179
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1180
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1181
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1182
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1183
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1184
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1185
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
1186
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
1187
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
1188
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
1189
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1190
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1191
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1192
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1193
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1194
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1195
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1196
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
1197
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
1198
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
1199
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
1200
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
1201
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
1202
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
1203
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
1204
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
1205
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
1206
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
1207
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
1208
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
1209
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
1210
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
1211
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
1212
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
1213
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
1214
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
1215
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
1216
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
1217
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
1218
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
1219
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
1220
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
1221
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
1222
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
1223
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
1224
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
1225
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
1226
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
1227
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
1228
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
1229
+ autofocus: boolean;
1230
+ readonly dataset: DOMStringMap;
1231
+ nonce?: string;
1232
+ tabIndex: number;
1233
+ blur(): void;
1234
+ focus(options?: FocusOptions): void;
1235
+ }) & typeof FoundationElement;
537
1236
 
538
1237
  /**
539
1238
  * fdc3-listener listen intent config
@@ -541,7 +1240,7 @@ export declare class Fdc3RaiseIntent extends FASTElement {
541
1240
  */
542
1241
  export declare interface IntentConfig {
543
1242
  intent: string;
544
- callback: (any: any) => void;
1243
+ callback: (FDC3Context: any) => void;
545
1244
  }
546
1245
 
547
1246
  /**