@genesislcap/foundation-events 14.302.1-alpha-945e484.0 → 14.302.1-alpha-ecc0cfb.0

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.
@@ -1,466 +0,0 @@
1
- ## API Report File for "@genesislcap/foundation-events"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import { Binding } from '@microsoft/fast-element';
8
- import { Constructable } from '@microsoft/fast-element';
9
- import { Controller } from '@microsoft/fast-element';
10
- import { ExecutionContext } from '@microsoft/fast-element';
11
- import { FASTElement } from '@microsoft/fast-element';
12
- import { InterfaceSymbol } from '@microsoft/fast-foundation';
13
- import { Logger } from '@genesislcap/foundation-logger';
14
-
15
- // @public @deprecated (undocumented)
16
- export type ConstructableTypedEventEmitter = Constructable<FASTElement & HTMLElement>;
17
-
18
- // @public
19
- export const createInputEmitter: <TEventDetailMap extends EventDetailMap>() => <K extends KeysMatching<TEventDetailMap, string>>(type: K, options?: EmitOptions) => Binding;
20
-
21
- // @public
22
- export const createSelectEmitter: <TEventDetailMap extends EventDetailMap>() => <K extends KeysMatching<TEventDetailMap, string>>(type: K, options?: EmitOptions) => Binding;
23
-
24
- // @public (undocumented)
25
- export const customEvent: <TEventDetail = void>(ctx: ExecutionContext) => CustomEvent<TEventDetail>;
26
-
27
- // @public (undocumented)
28
- export type CustomEventMap<TEventDetailMap extends EventDetailMap> = {
29
- [K in keyof TEventDetailMap]: CustomEvent<TEventDetailMap[K]>;
30
- };
31
-
32
- // @public
33
- export class DefaultEventEmitterDI<TEventDetailMap extends EventDetailMap> implements EventEmitterDI<TEventDetailMap> {
34
- // (undocumented)
35
- emit<K extends keyof TEventDetailMap>(...args: TEventDetailMap[K] extends void ? [origin: EmitOrigin, type: K, options?: EmitOptions] : [origin: EmitOrigin, type: K, detail: TEventDetailMap[K], options?: EmitOptions]): EmitReturn;
36
- }
37
-
38
- // @public (undocumented)
39
- export type EmitArgs = [string, {} | undefined, EmitOptions | undefined];
40
-
41
- // @public (undocumented)
42
- export type EmitOptions = Omit<CustomEventInit, 'detail'>;
43
-
44
- // @public (undocumented)
45
- export type EmitOrigin = FASTElement;
46
-
47
- // @public (undocumented)
48
- export type EmitReturn = boolean | void;
49
-
50
- // @public
51
- export const emitter: <TEventDetailMap extends EventDetailMap>() => {
52
- emit: <K extends keyof TEventDetailMap>(...args: TEventDetailMap[K] extends void ? [origin: HTMLElement, type: K, options?: EmitOptions] : [origin: HTMLElement, type: K, detail: TEventDetailMap[K], options?: EmitOptions]) => void;
53
- };
54
-
55
- // @public (undocumented)
56
- export type EventDetailMap = Record<string, unknown>;
57
-
58
- // @public
59
- export const EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLElement & FASTElement = HTMLElement & FASTElement>(Target: EventEmitterTarget<TTarget>) => abstract new (...args: any[]) => {
60
- $emit<K extends keyof TEventDetailMap & string>(...args: TEventDetailMap[K] extends void ? [type: K, options?: EmitOptions] : [type: K, detail: TEventDetailMap[K], options?: EmitOptions]): EmitReturn;
61
- accessKey: string;
62
- readonly accessKeyLabel: string;
63
- autocapitalize: string;
64
- autocorrect: boolean;
65
- dir: string;
66
- draggable: boolean;
67
- hidden: boolean;
68
- inert: boolean;
69
- innerText: string;
70
- lang: string;
71
- readonly offsetHeight: number;
72
- readonly offsetLeft: number;
73
- readonly offsetParent: Element | null;
74
- readonly offsetTop: number;
75
- readonly offsetWidth: number;
76
- outerText: string;
77
- popover: string | null;
78
- spellcheck: boolean;
79
- title: string;
80
- translate: boolean;
81
- writingSuggestions: string;
82
- attachInternals(): ElementInternals;
83
- click(): void;
84
- hidePopover(): void;
85
- showPopover(): void;
86
- togglePopover(options?: boolean): boolean;
87
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
88
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
89
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
90
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
91
- readonly attributes: NamedNodeMap;
92
- get classList(): DOMTokenList;
93
- set classList(value: string);
94
- className: string;
95
- readonly clientHeight: number;
96
- readonly clientLeft: number;
97
- readonly clientTop: number;
98
- readonly clientWidth: number;
99
- readonly currentCSSZoom: number;
100
- id: string;
101
- innerHTML: string;
102
- readonly localName: string;
103
- readonly namespaceURI: string | null;
104
- onfullscreenchange: (this: Element, ev: Event) => any;
105
- onfullscreenerror: (this: Element, ev: Event) => any;
106
- outerHTML: string;
107
- readonly ownerDocument: Document;
108
- get part(): DOMTokenList;
109
- set part(value: string);
110
- readonly prefix: string | null;
111
- readonly scrollHeight: number;
112
- scrollLeft: number;
113
- scrollTop: number;
114
- readonly scrollWidth: number;
115
- readonly shadowRoot: ShadowRoot | null;
116
- slot: string;
117
- readonly tagName: string;
118
- attachShadow(init: ShadowRootInit): ShadowRoot;
119
- checkVisibility(options?: CheckVisibilityOptions): boolean;
120
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
121
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
122
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
123
- closest<E extends Element = Element>(selectors: string): E;
124
- computedStyleMap(): StylePropertyMapReadOnly;
125
- getAttribute(qualifiedName: string): string | null;
126
- getAttributeNS(namespace: string | null, localName: string): string | null;
127
- getAttributeNames(): string[];
128
- getAttributeNode(qualifiedName: string): Attr | null;
129
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
130
- getBoundingClientRect(): DOMRect;
131
- getClientRects(): DOMRectList;
132
- getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
133
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
134
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
135
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
136
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
137
- getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
138
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
139
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
140
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
141
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
142
- getHTML(options?: GetHTMLOptions): string;
143
- hasAttribute(qualifiedName: string): boolean;
144
- hasAttributeNS(namespace: string | null, localName: string): boolean;
145
- hasAttributes(): boolean;
146
- hasPointerCapture(pointerId: number): boolean;
147
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
148
- insertAdjacentHTML(position: InsertPosition, string: string): void;
149
- insertAdjacentText(where: InsertPosition, data: string): void;
150
- matches(selectors: string): boolean;
151
- releasePointerCapture(pointerId: number): void;
152
- removeAttribute(qualifiedName: string): void;
153
- removeAttributeNS(namespace: string | null, localName: string): void;
154
- removeAttributeNode(attr: Attr): Attr;
155
- requestFullscreen(options?: FullscreenOptions): Promise<void>;
156
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
157
- scroll(options?: ScrollToOptions): void;
158
- scroll(x: number, y: number): void;
159
- scrollBy(options?: ScrollToOptions): void;
160
- scrollBy(x: number, y: number): void;
161
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
162
- scrollTo(options?: ScrollToOptions): void;
163
- scrollTo(x: number, y: number): void;
164
- setAttribute(qualifiedName: string, value: string): void;
165
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
166
- setAttributeNode(attr: Attr): Attr | null;
167
- setAttributeNodeNS(attr: Attr): Attr | null;
168
- setHTMLUnsafe(html: string): void;
169
- setPointerCapture(pointerId: number): void;
170
- toggleAttribute(qualifiedName: string, force?: boolean): boolean;
171
- webkitMatchesSelector(selectors: string): boolean;
172
- textContent: string;
173
- readonly baseURI: string;
174
- readonly childNodes: NodeListOf<ChildNode>;
175
- readonly firstChild: ChildNode | null;
176
- readonly isConnected: boolean;
177
- readonly lastChild: ChildNode | null;
178
- readonly nextSibling: ChildNode | null;
179
- readonly nodeName: string;
180
- readonly nodeType: number;
181
- nodeValue: string | null;
182
- readonly parentElement: HTMLElement | null;
183
- readonly parentNode: ParentNode | null;
184
- readonly previousSibling: ChildNode | null;
185
- appendChild<T extends Node>(node: T): T;
186
- cloneNode(subtree?: boolean): Node;
187
- compareDocumentPosition(other: Node): number;
188
- contains(other: Node | null): boolean;
189
- getRootNode(options?: GetRootNodeOptions): Node;
190
- hasChildNodes(): boolean;
191
- insertBefore<T extends Node>(node: T, child: Node | null): T;
192
- isDefaultNamespace(namespace: string | null): boolean;
193
- isEqualNode(otherNode: Node | null): boolean;
194
- isSameNode(otherNode: Node | null): boolean;
195
- lookupNamespaceURI(prefix: string | null): string | null;
196
- lookupPrefix(namespace: string | null): string | null;
197
- normalize(): void;
198
- removeChild<T extends Node>(child: T): T;
199
- replaceChild<T extends Node>(node: Node, child: T): T;
200
- readonly ELEMENT_NODE: 1;
201
- readonly ATTRIBUTE_NODE: 2;
202
- readonly TEXT_NODE: 3;
203
- readonly CDATA_SECTION_NODE: 4;
204
- readonly ENTITY_REFERENCE_NODE: 5;
205
- readonly ENTITY_NODE: 6;
206
- readonly PROCESSING_INSTRUCTION_NODE: 7;
207
- readonly COMMENT_NODE: 8;
208
- readonly DOCUMENT_NODE: 9;
209
- readonly DOCUMENT_TYPE_NODE: 10;
210
- readonly DOCUMENT_FRAGMENT_NODE: 11;
211
- readonly NOTATION_NODE: 12;
212
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
213
- readonly DOCUMENT_POSITION_PRECEDING: 2;
214
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
215
- readonly DOCUMENT_POSITION_CONTAINS: 8;
216
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
217
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
218
- dispatchEvent(event: Event): boolean;
219
- ariaActiveDescendantElement: Element | null;
220
- ariaAtomic: string | null;
221
- ariaAutoComplete: string | null;
222
- ariaBrailleLabel: string | null;
223
- ariaBrailleRoleDescription: string | null;
224
- ariaBusy: string | null;
225
- ariaChecked: string | null;
226
- ariaColCount: string | null;
227
- ariaColIndex: string | null;
228
- ariaColIndexText: string | null;
229
- ariaColSpan: string | null;
230
- ariaControlsElements: ReadonlyArray<Element> | null;
231
- ariaCurrent: string | null;
232
- ariaDescribedByElements: ReadonlyArray<Element> | null;
233
- ariaDescription: string | null;
234
- ariaDetailsElements: ReadonlyArray<Element> | null;
235
- ariaDisabled: string | null;
236
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
237
- ariaExpanded: string | null;
238
- ariaFlowToElements: ReadonlyArray<Element> | null;
239
- ariaHasPopup: string | null;
240
- ariaHidden: string | null;
241
- ariaInvalid: string | null;
242
- ariaKeyShortcuts: string | null;
243
- ariaLabel: string | null;
244
- ariaLabelledByElements: ReadonlyArray<Element> | null;
245
- ariaLevel: string | null;
246
- ariaLive: string | null;
247
- ariaModal: string | null;
248
- ariaMultiLine: string | null;
249
- ariaMultiSelectable: string | null;
250
- ariaOrientation: string | null;
251
- ariaOwnsElements: ReadonlyArray<Element> | null;
252
- ariaPlaceholder: string | null;
253
- ariaPosInSet: string | null;
254
- ariaPressed: string | null;
255
- ariaReadOnly: string | null;
256
- ariaRelevant: string | null;
257
- ariaRequired: string | null;
258
- ariaRoleDescription: string | null;
259
- ariaRowCount: string | null;
260
- ariaRowIndex: string | null;
261
- ariaRowIndexText: string | null;
262
- ariaRowSpan: string | null;
263
- ariaSelected: string | null;
264
- ariaSetSize: string | null;
265
- ariaSort: string | null;
266
- ariaValueMax: string | null;
267
- ariaValueMin: string | null;
268
- ariaValueNow: string | null;
269
- ariaValueText: string | null;
270
- role: string | null;
271
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
272
- getAnimations(options?: GetAnimationsOptions): Animation[];
273
- after(...nodes: (Node | string)[]): void;
274
- before(...nodes: (Node | string)[]): void;
275
- remove(): void;
276
- replaceWith(...nodes: (Node | string)[]): void;
277
- readonly nextElementSibling: Element | null;
278
- readonly previousElementSibling: Element | null;
279
- readonly childElementCount: number;
280
- readonly children: HTMLCollection;
281
- readonly firstElementChild: Element | null;
282
- readonly lastElementChild: Element | null;
283
- append(...nodes: (Node | string)[]): void;
284
- prepend(...nodes: (Node | string)[]): void;
285
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
286
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
287
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
288
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
289
- querySelector<E extends Element = Element>(selectors: string): E | null;
290
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
291
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
292
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
293
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
294
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
295
- replaceChildren(...nodes: (Node | string)[]): void;
296
- readonly assignedSlot: HTMLSlotElement | null;
297
- readonly attributeStyleMap: StylePropertyMap;
298
- get style(): CSSStyleDeclaration;
299
- set style(cssText: string);
300
- contentEditable: string;
301
- enterKeyHint: string;
302
- inputMode: string;
303
- readonly isContentEditable: boolean;
304
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
305
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
306
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
307
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
308
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
309
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
310
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
311
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
312
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
313
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
314
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
316
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
317
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
318
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
319
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
320
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
321
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
324
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
325
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
326
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
327
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
328
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
329
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
330
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
331
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
332
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
333
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
334
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
337
- onerror: OnErrorEventHandler;
338
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
339
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
340
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
341
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
342
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
343
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
344
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
345
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
346
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
347
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
348
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
349
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
350
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
351
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
352
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
353
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
354
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
355
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
356
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
357
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
358
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
359
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
360
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
361
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
362
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
363
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
364
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
365
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
366
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
367
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
368
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
369
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
370
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
371
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
372
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
373
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
374
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
375
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
376
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
377
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
378
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
379
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
380
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
381
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
382
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
383
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
384
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
385
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
386
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
387
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
388
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
389
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
390
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
391
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
392
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
393
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
394
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
395
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
396
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
397
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
398
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
399
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
400
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
401
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
402
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
403
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
404
- autofocus: boolean;
405
- readonly dataset: DOMStringMap;
406
- nonce?: string;
407
- tabIndex: number;
408
- blur(): void;
409
- focus(options?: FocusOptions): void;
410
- readonly $fastController: Controller;
411
- connectedCallback(): void;
412
- disconnectedCallback(): void;
413
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
414
- };
415
-
416
- // Warning: (ae-internal-mixed-release-tag) Mixed release tags are not allowed for "EventEmitterDI" because one of its declarations is marked as @internal
417
- //
418
- // @public
419
- export interface EventEmitterDI<TEventDetailMap extends EventDetailMap> {
420
- // (undocumented)
421
- emit<K extends keyof TEventDetailMap>(...args: TEventDetailMap[K] extends void ? [origin: EmitOrigin, type: K, options?: EmitOptions] : [origin: EmitOrigin, type: K, detail: TEventDetailMap[K], options?: EmitOptions]): EmitReturn;
422
- }
423
-
424
- // @internal
425
- export const EventEmitterDI: InterfaceSymbol<EventEmitterDI<EventDetailMap>>;
426
-
427
- // @public (undocumented)
428
- export type EventEmitterTarget<TBase extends FASTElement> = abstract new (...args: any[]) => TBase;
429
-
430
- // @public (undocumented)
431
- export const getBaseEmitArgs: (...args: unknown[]) => EmitArgs;
432
-
433
- // @public (undocumented)
434
- export const isEmitOptions: (candidate: EmitOptions | any) => boolean;
435
-
436
- // @public (undocumented)
437
- export type KeysMatching<T, V> = {
438
- [K in keyof T]-?: T[K] extends V ? K : never;
439
- }[keyof T];
440
-
441
- // @public (undocumented)
442
- export const logger: Logger;
443
-
444
- // @public
445
- export const registerEmitter: <TEventDetailMap extends EventDetailMap>() => InterfaceSymbol<EventEmitterDI<TEventDetailMap>>;
446
-
447
- // Warning: (ae-forgotten-export) The symbol "ValueGetter" needs to be exported by the entry point index.d.ts
448
- //
449
- // @public (undocumented)
450
- export const targetChecked: ValueGetter;
451
-
452
- // @public (undocumented)
453
- export const targetFirstSelectedValue: ValueGetter;
454
-
455
- // @public (undocumented)
456
- export const targetValue: ValueGetter;
457
-
458
- // @public (undocumented)
459
- export interface TypedEmitter<TEventDetailMap extends EventDetailMap> {
460
- // (undocumented)
461
- $emit<K extends keyof TEventDetailMap & string>(...args: TEventDetailMap[K] extends void ? [type: K, options?: EmitOptions] : [type: K, detail: TEventDetailMap[K], options?: EmitOptions]): EmitReturn;
462
- }
463
-
464
- // (No @packageDocumentation comment for this package)
465
-
466
- ```