@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.
@@ -201,7 +201,6 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
201
201
  accessKey: string;
202
202
  readonly accessKeyLabel: string;
203
203
  autocapitalize: string;
204
- autocorrect: boolean;
205
204
  dir: string;
206
205
  draggable: boolean;
207
206
  hidden: boolean;
@@ -210,90 +209,74 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
210
209
  lang: string;
211
210
  readonly offsetHeight: number;
212
211
  readonly offsetLeft: number;
213
- readonly offsetParent: Element | null;
212
+ readonly offsetParent: Element;
214
213
  readonly offsetTop: number;
215
214
  readonly offsetWidth: number;
216
215
  outerText: string;
217
- popover: string | null;
218
216
  spellcheck: boolean;
219
217
  title: string;
220
218
  translate: boolean;
221
- writingSuggestions: string;
222
219
  attachInternals(): ElementInternals;
223
220
  click(): void;
224
- hidePopover(): void;
225
- showPopover(): void;
226
- togglePopover(options?: boolean): boolean;
227
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
221
+ addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
228
222
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
229
- removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
223
+ removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
230
224
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
231
225
  readonly attributes: NamedNodeMap;
232
- get classList(): DOMTokenList;
233
- set classList(value: string);
226
+ readonly classList: DOMTokenList;
234
227
  className: string;
235
228
  readonly clientHeight: number;
236
229
  readonly clientLeft: number;
237
230
  readonly clientTop: number;
238
231
  readonly clientWidth: number;
239
- readonly currentCSSZoom: number;
240
232
  id: string;
241
- innerHTML: string;
242
233
  readonly localName: string;
243
- readonly namespaceURI: string | null;
234
+ readonly namespaceURI: string;
244
235
  onfullscreenchange: (this: Element, ev: Event) => any;
245
236
  onfullscreenerror: (this: Element, ev: Event) => any;
246
237
  outerHTML: string;
247
238
  readonly ownerDocument: Document;
248
- get part(): DOMTokenList;
249
- set part(value: string);
250
- readonly prefix: string | null;
239
+ readonly part: DOMTokenList;
240
+ readonly prefix: string;
251
241
  readonly scrollHeight: number;
252
242
  scrollLeft: number;
253
243
  scrollTop: number;
254
244
  readonly scrollWidth: number;
255
- readonly shadowRoot: ShadowRoot | null;
245
+ readonly shadowRoot: ShadowRoot;
256
246
  slot: string;
257
247
  readonly tagName: string;
258
248
  attachShadow(init: ShadowRootInit): ShadowRoot;
259
- checkVisibility(options?: CheckVisibilityOptions): boolean;
260
- closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
261
- closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
262
- closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
249
+ closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
250
+ closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
263
251
  closest<E extends Element = Element>(selectors: string): E;
264
- computedStyleMap(): StylePropertyMapReadOnly;
265
- getAttribute(qualifiedName: string): string | null;
266
- getAttributeNS(namespace: string | null, localName: string): string | null;
252
+ getAttribute(qualifiedName: string): string;
253
+ getAttributeNS(namespace: string, localName: string): string;
267
254
  getAttributeNames(): string[];
268
- getAttributeNode(qualifiedName: string): Attr | null;
269
- getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
255
+ getAttributeNode(qualifiedName: string): Attr;
256
+ getAttributeNodeNS(namespace: string, localName: string): Attr;
270
257
  getBoundingClientRect(): DOMRect;
271
258
  getClientRects(): DOMRectList;
272
259
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
273
- getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
274
- getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
275
- getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
276
- getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
260
+ getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
261
+ getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
277
262
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
278
263
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
279
264
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
280
- getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
281
- getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
282
- getHTML(options?: GetHTMLOptions): string;
265
+ getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
283
266
  hasAttribute(qualifiedName: string): boolean;
284
- hasAttributeNS(namespace: string | null, localName: string): boolean;
267
+ hasAttributeNS(namespace: string, localName: string): boolean;
285
268
  hasAttributes(): boolean;
286
269
  hasPointerCapture(pointerId: number): boolean;
287
- insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
288
- insertAdjacentHTML(position: InsertPosition, string: string): void;
270
+ insertAdjacentElement(where: InsertPosition, element: Element): Element;
271
+ insertAdjacentHTML(position: InsertPosition, text: string): void;
289
272
  insertAdjacentText(where: InsertPosition, data: string): void;
290
273
  matches(selectors: string): boolean;
291
274
  releasePointerCapture(pointerId: number): void;
292
275
  removeAttribute(qualifiedName: string): void;
293
- removeAttributeNS(namespace: string | null, localName: string): void;
276
+ removeAttributeNS(namespace: string, localName: string): void;
294
277
  removeAttributeNode(attr: Attr): Attr;
295
278
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
296
- requestPointerLock(options?: PointerLockOptions): Promise<void>;
279
+ requestPointerLock(): void;
297
280
  scroll(options?: ScrollToOptions): void;
298
281
  scroll(x: number, y: number): void;
299
282
  scrollBy(options?: ScrollToOptions): void;
@@ -302,245 +285,221 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
302
285
  scrollTo(options?: ScrollToOptions): void;
303
286
  scrollTo(x: number, y: number): void;
304
287
  setAttribute(qualifiedName: string, value: string): void;
305
- setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
306
- setAttributeNode(attr: Attr): Attr | null;
307
- setAttributeNodeNS(attr: Attr): Attr | null;
308
- setHTMLUnsafe(html: string): void;
288
+ setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
289
+ setAttributeNode(attr: Attr): Attr;
290
+ setAttributeNodeNS(attr: Attr): Attr;
309
291
  setPointerCapture(pointerId: number): void;
310
292
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
311
293
  webkitMatchesSelector(selectors: string): boolean;
312
- textContent: string;
313
294
  readonly baseURI: string;
314
295
  readonly childNodes: NodeListOf<ChildNode>;
315
- readonly firstChild: ChildNode | null;
296
+ readonly firstChild: ChildNode;
316
297
  readonly isConnected: boolean;
317
- readonly lastChild: ChildNode | null;
318
- readonly nextSibling: ChildNode | null;
298
+ readonly lastChild: ChildNode;
299
+ readonly nextSibling: ChildNode;
319
300
  readonly nodeName: string;
320
301
  readonly nodeType: number;
321
- nodeValue: string | null;
322
- readonly parentElement: HTMLElement | null;
323
- readonly parentNode: ParentNode | null;
324
- readonly previousSibling: ChildNode | null;
302
+ nodeValue: string;
303
+ readonly parentElement: HTMLElement;
304
+ readonly parentNode: ParentNode;
305
+ readonly previousSibling: ChildNode;
306
+ textContent: string;
325
307
  appendChild<T extends Node>(node: T): T;
326
- cloneNode(subtree?: boolean): Node;
308
+ cloneNode(deep?: boolean): Node;
327
309
  compareDocumentPosition(other: Node): number;
328
- contains(other: Node | null): boolean;
310
+ contains(other: Node): boolean;
329
311
  getRootNode(options?: GetRootNodeOptions): Node;
330
312
  hasChildNodes(): boolean;
331
- insertBefore<T extends Node>(node: T, child: Node | null): T;
332
- isDefaultNamespace(namespace: string | null): boolean;
333
- isEqualNode(otherNode: Node | null): boolean;
334
- isSameNode(otherNode: Node | null): boolean;
335
- lookupNamespaceURI(prefix: string | null): string | null;
336
- lookupPrefix(namespace: string | null): string | null;
313
+ insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
314
+ isDefaultNamespace(namespace: string): boolean;
315
+ isEqualNode(otherNode: Node): boolean;
316
+ isSameNode(otherNode: Node): boolean;
317
+ lookupNamespaceURI(prefix: string): string;
318
+ lookupPrefix(namespace: string): string;
337
319
  normalize(): void;
338
- removeChild<T extends Node>(child: T): T;
339
- replaceChild<T extends Node>(node: Node, child: T): T;
340
- readonly ELEMENT_NODE: 1;
341
- readonly ATTRIBUTE_NODE: 2;
342
- readonly TEXT_NODE: 3;
343
- readonly CDATA_SECTION_NODE: 4;
344
- readonly ENTITY_REFERENCE_NODE: 5;
345
- readonly ENTITY_NODE: 6;
346
- readonly PROCESSING_INSTRUCTION_NODE: 7;
347
- readonly COMMENT_NODE: 8;
348
- readonly DOCUMENT_NODE: 9;
349
- readonly DOCUMENT_TYPE_NODE: 10;
350
- readonly DOCUMENT_FRAGMENT_NODE: 11;
351
- readonly NOTATION_NODE: 12;
352
- readonly DOCUMENT_POSITION_DISCONNECTED: 1;
353
- readonly DOCUMENT_POSITION_PRECEDING: 2;
354
- readonly DOCUMENT_POSITION_FOLLOWING: 4;
355
- readonly DOCUMENT_POSITION_CONTAINS: 8;
356
- readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
357
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
320
+ removeChild<T_2 extends Node>(child: T_2): T_2;
321
+ replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
322
+ readonly ATTRIBUTE_NODE: number;
323
+ readonly CDATA_SECTION_NODE: number;
324
+ readonly COMMENT_NODE: number;
325
+ readonly DOCUMENT_FRAGMENT_NODE: number;
326
+ readonly DOCUMENT_NODE: number;
327
+ readonly DOCUMENT_POSITION_CONTAINED_BY: number;
328
+ readonly DOCUMENT_POSITION_CONTAINS: number;
329
+ readonly DOCUMENT_POSITION_DISCONNECTED: number;
330
+ readonly DOCUMENT_POSITION_FOLLOWING: number;
331
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
332
+ readonly DOCUMENT_POSITION_PRECEDING: number;
333
+ readonly DOCUMENT_TYPE_NODE: number;
334
+ readonly ELEMENT_NODE: number;
335
+ readonly ENTITY_NODE: number;
336
+ readonly ENTITY_REFERENCE_NODE: number;
337
+ readonly NOTATION_NODE: number;
338
+ readonly PROCESSING_INSTRUCTION_NODE: number;
339
+ readonly TEXT_NODE: number;
358
340
  dispatchEvent(event: Event): boolean;
359
- ariaActiveDescendantElement: Element | null;
360
- ariaAtomic: string | null;
361
- ariaAutoComplete: string | null;
362
- ariaBrailleLabel: string | null;
363
- ariaBrailleRoleDescription: string | null;
364
- ariaBusy: string | null;
365
- ariaChecked: string | null;
366
- ariaColCount: string | null;
367
- ariaColIndex: string | null;
368
- ariaColIndexText: string | null;
369
- ariaColSpan: string | null;
370
- ariaControlsElements: ReadonlyArray<Element> | null;
371
- ariaCurrent: string | null;
372
- ariaDescribedByElements: ReadonlyArray<Element> | null;
373
- ariaDescription: string | null;
374
- ariaDetailsElements: ReadonlyArray<Element> | null;
375
- ariaDisabled: string | null;
376
- ariaErrorMessageElements: ReadonlyArray<Element> | null;
377
- ariaExpanded: string | null;
378
- ariaFlowToElements: ReadonlyArray<Element> | null;
379
- ariaHasPopup: string | null;
380
- ariaHidden: string | null;
381
- ariaInvalid: string | null;
382
- ariaKeyShortcuts: string | null;
383
- ariaLabel: string | null;
384
- ariaLabelledByElements: ReadonlyArray<Element> | null;
385
- ariaLevel: string | null;
386
- ariaLive: string | null;
387
- ariaModal: string | null;
388
- ariaMultiLine: string | null;
389
- ariaMultiSelectable: string | null;
390
- ariaOrientation: string | null;
391
- ariaOwnsElements: ReadonlyArray<Element> | null;
392
- ariaPlaceholder: string | null;
393
- ariaPosInSet: string | null;
394
- ariaPressed: string | null;
395
- ariaReadOnly: string | null;
396
- ariaRelevant: string | null;
397
- ariaRequired: string | null;
398
- ariaRoleDescription: string | null;
399
- ariaRowCount: string | null;
400
- ariaRowIndex: string | null;
401
- ariaRowIndexText: string | null;
402
- ariaRowSpan: string | null;
403
- ariaSelected: string | null;
404
- ariaSetSize: string | null;
405
- ariaSort: string | null;
406
- ariaValueMax: string | null;
407
- ariaValueMin: string | null;
408
- ariaValueNow: string | null;
409
- ariaValueText: string | null;
410
- role: string | null;
411
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
341
+ ariaAtomic: string;
342
+ ariaAutoComplete: string;
343
+ ariaBusy: string;
344
+ ariaChecked: string;
345
+ ariaColCount: string;
346
+ ariaColIndex: string;
347
+ ariaColIndexText: string;
348
+ ariaColSpan: string;
349
+ ariaCurrent: string;
350
+ ariaDisabled: string;
351
+ ariaExpanded: string;
352
+ ariaHasPopup: string;
353
+ ariaHidden: string;
354
+ ariaInvalid: string;
355
+ ariaKeyShortcuts: string;
356
+ ariaLabel: string;
357
+ ariaLevel: string;
358
+ ariaLive: string;
359
+ ariaModal: string;
360
+ ariaMultiLine: string;
361
+ ariaMultiSelectable: string;
362
+ ariaOrientation: string;
363
+ ariaPlaceholder: string;
364
+ ariaPosInSet: string;
365
+ ariaPressed: string;
366
+ ariaReadOnly: string;
367
+ ariaRequired: string;
368
+ ariaRoleDescription: string;
369
+ ariaRowCount: string;
370
+ ariaRowIndex: string;
371
+ ariaRowIndexText: string;
372
+ ariaRowSpan: string;
373
+ ariaSelected: string;
374
+ ariaSetSize: string;
375
+ ariaSort: string;
376
+ ariaValueMax: string;
377
+ ariaValueMin: string;
378
+ ariaValueNow: string;
379
+ ariaValueText: string;
380
+ role: string;
381
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
412
382
  getAnimations(options?: GetAnimationsOptions): Animation[];
413
- after(...nodes: (Node | string)[]): void;
414
- before(...nodes: (Node | string)[]): void;
383
+ after(...nodes: (string | Node)[]): void;
384
+ before(...nodes: (string | Node)[]): void;
415
385
  remove(): void;
416
- replaceWith(...nodes: (Node | string)[]): void;
417
- readonly nextElementSibling: Element | null;
418
- readonly previousElementSibling: Element | null;
386
+ replaceWith(...nodes: (string | Node)[]): void;
387
+ innerHTML: string;
388
+ readonly nextElementSibling: Element;
389
+ readonly previousElementSibling: Element;
419
390
  readonly childElementCount: number;
420
391
  readonly children: HTMLCollection;
421
- readonly firstElementChild: Element | null;
422
- readonly lastElementChild: Element | null;
423
- append(...nodes: (Node | string)[]): void;
424
- prepend(...nodes: (Node | string)[]): void;
425
- querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
426
- querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
427
- querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
428
- querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
429
- querySelector<E extends Element = Element>(selectors: string): E | null;
430
- querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
431
- querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
432
- querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
433
- querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
434
- querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
435
- replaceChildren(...nodes: (Node | string)[]): void;
436
- readonly assignedSlot: HTMLSlotElement | null;
437
- readonly attributeStyleMap: StylePropertyMap;
438
- get style(): CSSStyleDeclaration;
439
- set style(cssText: string);
392
+ readonly firstElementChild: Element;
393
+ readonly lastElementChild: Element;
394
+ append(...nodes: (string | Node)[]): void;
395
+ prepend(...nodes: (string | Node)[]): void;
396
+ querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
397
+ querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
398
+ querySelector<E_1 extends Element = Element>(selectors: string): E_1;
399
+ querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
400
+ querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
401
+ querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
402
+ replaceChildren(...nodes: (string | Node)[]): void;
403
+ readonly assignedSlot: HTMLSlotElement;
404
+ oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
405
+ oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
406
+ onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
407
+ readonly style: CSSStyleDeclaration;
440
408
  contentEditable: string;
441
409
  enterKeyHint: string;
442
410
  inputMode: string;
443
411
  readonly isContentEditable: boolean;
444
- onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
445
- onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
446
- onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
447
- onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
448
- onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
449
- onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
450
- onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
451
- onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
452
- onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
453
- onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
454
- oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
455
- oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
456
- oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
457
- onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
458
- onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
459
- onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
460
- oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
461
- oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
462
- oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
463
- oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
464
- oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
465
- oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
466
- ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
467
- ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
468
- ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
469
- ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
470
- ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
471
- ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
472
- ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
473
- ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
474
- ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
475
- onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
476
- onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
477
- onerror: OnErrorEventHandler;
478
- onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
479
- onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
480
- ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
481
- oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
482
- oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
483
- onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
484
- onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
485
- onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
486
- onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
487
- onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
488
- onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
489
- onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
490
- onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
491
- onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
492
- onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
493
- onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
494
- onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
495
- onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
496
- onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
497
- onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
498
- onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
499
- onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
500
- onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
501
- onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
502
- onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
503
- onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
504
- onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
505
- onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
506
- onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
507
- onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
508
- onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
509
- onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
510
- onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
511
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
512
- onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
513
- onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
514
- onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
515
- onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
516
- onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
517
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
518
- onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
519
- onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
520
- onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
521
- onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
522
- onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
523
- onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
524
- onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
525
- onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
526
- onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
527
- ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
528
- ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
529
- ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
530
- ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
531
- ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
532
- ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
533
- ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
534
- ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
535
- ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
536
- ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
537
- onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
538
- onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
539
- onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
540
- onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
541
- onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
542
- onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
543
- onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
412
+ onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
413
+ onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
414
+ onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
415
+ onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
416
+ onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
417
+ onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
418
+ onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
419
+ onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
420
+ oncancel: (this: GlobalEventHandlers, ev: Event) => any;
421
+ oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
422
+ oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
423
+ onchange: (this: GlobalEventHandlers, ev: Event) => any;
424
+ onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
425
+ onclose: (this: GlobalEventHandlers, ev: Event) => any;
426
+ oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
427
+ oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
428
+ ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
429
+ ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
430
+ ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
431
+ ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
432
+ ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
433
+ ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
434
+ ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
435
+ ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
436
+ ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
437
+ onemptied: (this: GlobalEventHandlers, ev: Event) => any;
438
+ onended: (this: GlobalEventHandlers, ev: Event) => any;
439
+ onerror: OnErrorEventHandlerNonNull;
440
+ onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
441
+ onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
442
+ ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
443
+ oninput: (this: GlobalEventHandlers, ev: Event) => any;
444
+ oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
445
+ onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
446
+ onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
447
+ onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
448
+ onload: (this: GlobalEventHandlers, ev: Event) => any;
449
+ onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
450
+ onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
451
+ onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
452
+ onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
453
+ onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
454
+ onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
455
+ onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
456
+ onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
457
+ onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
458
+ onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
459
+ onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
460
+ onpause: (this: GlobalEventHandlers, ev: Event) => any;
461
+ onplay: (this: GlobalEventHandlers, ev: Event) => any;
462
+ onplaying: (this: GlobalEventHandlers, ev: Event) => any;
463
+ onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
464
+ onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
465
+ onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
466
+ onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
467
+ onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
468
+ onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
469
+ onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
470
+ onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
471
+ onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
472
+ onratechange: (this: GlobalEventHandlers, ev: Event) => any;
473
+ onreset: (this: GlobalEventHandlers, ev: Event) => any;
474
+ onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
475
+ onscroll: (this: GlobalEventHandlers, ev: Event) => any;
476
+ onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
477
+ onseeked: (this: GlobalEventHandlers, ev: Event) => any;
478
+ onseeking: (this: GlobalEventHandlers, ev: Event) => any;
479
+ onselect: (this: GlobalEventHandlers, ev: Event) => any;
480
+ onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
481
+ onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
482
+ onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
483
+ onstalled: (this: GlobalEventHandlers, ev: Event) => any;
484
+ onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
485
+ onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
486
+ ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
487
+ ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
488
+ ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
489
+ ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
490
+ ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
491
+ ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
492
+ ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
493
+ ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
494
+ ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
495
+ ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
496
+ onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
497
+ onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
498
+ onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
499
+ onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
500
+ onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
501
+ onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
502
+ onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
544
503
  autofocus: boolean;
545
504
  readonly dataset: DOMStringMap;
546
505
  nonce?: string;
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-events](./foundation-events.md) &gt; [createInputEmitter](./foundation-events.createinputemitter.md)
4
4
 
5
- ## createInputEmitter() function
5
+ ## createInputEmitter variable
6
6
 
7
7
  `<input>` template emit helper.
8
8
 
@@ -11,9 +11,6 @@
11
11
  ```typescript
12
12
  createInputEmitter: <TEventDetailMap extends EventDetailMap>() => <K extends KeysMatching<TEventDetailMap, string>>(type: K, options?: EmitOptions) => Binding
13
13
  ```
14
- **Returns:**
15
-
16
- &lt;K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- -->&lt;TEventDetailMap, string&gt;&gt;(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) =&gt; Binding
17
14
 
18
15
  ## Remarks
19
16
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) &gt; [@genesislcap/foundation-events](./foundation-events.md) &gt; [createSelectEmitter](./foundation-events.createselectemitter.md)
4
4
 
5
- ## createSelectEmitter() function
5
+ ## createSelectEmitter variable
6
6
 
7
7
  `<select>` template emit helper.
8
8
 
@@ -11,9 +11,6 @@
11
11
  ```typescript
12
12
  createSelectEmitter: <TEventDetailMap extends EventDetailMap>() => <K extends KeysMatching<TEventDetailMap, string>>(type: K, options?: EmitOptions) => Binding
13
13
  ```
14
- **Returns:**
15
-
16
- &lt;K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- -->&lt;TEventDetailMap, string&gt;&gt;(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) =&gt; Binding
17
14
 
18
15
  ## Remarks
19
16