@genesislcap/foundation-events 14.301.0 → 14.302.1-alpha-d11831b.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,6 +201,7 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
201
201
  accessKey: string;
202
202
  readonly accessKeyLabel: string;
203
203
  autocapitalize: string;
204
+ autocorrect: boolean;
204
205
  dir: string;
205
206
  draggable: boolean;
206
207
  hidden: boolean;
@@ -209,74 +210,90 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
209
210
  lang: string;
210
211
  readonly offsetHeight: number;
211
212
  readonly offsetLeft: number;
212
- readonly offsetParent: Element;
213
+ readonly offsetParent: Element | null;
213
214
  readonly offsetTop: number;
214
215
  readonly offsetWidth: number;
215
216
  outerText: string;
217
+ popover: string | null;
216
218
  spellcheck: boolean;
217
219
  title: string;
218
220
  translate: boolean;
221
+ writingSuggestions: string;
219
222
  attachInternals(): ElementInternals;
220
223
  click(): void;
221
- addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): 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;
222
228
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
223
- removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
229
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
224
230
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
225
231
  readonly attributes: NamedNodeMap;
226
- readonly classList: DOMTokenList;
232
+ get classList(): DOMTokenList;
233
+ set classList(value: string);
227
234
  className: string;
228
235
  readonly clientHeight: number;
229
236
  readonly clientLeft: number;
230
237
  readonly clientTop: number;
231
238
  readonly clientWidth: number;
239
+ readonly currentCSSZoom: number;
232
240
  id: string;
241
+ innerHTML: string;
233
242
  readonly localName: string;
234
- readonly namespaceURI: string;
243
+ readonly namespaceURI: string | null;
235
244
  onfullscreenchange: (this: Element, ev: Event) => any;
236
245
  onfullscreenerror: (this: Element, ev: Event) => any;
237
246
  outerHTML: string;
238
247
  readonly ownerDocument: Document;
239
- readonly part: DOMTokenList;
240
- readonly prefix: string;
248
+ get part(): DOMTokenList;
249
+ set part(value: string);
250
+ readonly prefix: string | null;
241
251
  readonly scrollHeight: number;
242
252
  scrollLeft: number;
243
253
  scrollTop: number;
244
254
  readonly scrollWidth: number;
245
- readonly shadowRoot: ShadowRoot;
255
+ readonly shadowRoot: ShadowRoot | null;
246
256
  slot: string;
247
257
  readonly tagName: string;
248
258
  attachShadow(init: ShadowRootInit): ShadowRoot;
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];
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];
251
263
  closest<E extends Element = Element>(selectors: string): E;
252
- getAttribute(qualifiedName: string): string;
253
- getAttributeNS(namespace: string, localName: string): string;
264
+ computedStyleMap(): StylePropertyMapReadOnly;
265
+ getAttribute(qualifiedName: string): string | null;
266
+ getAttributeNS(namespace: string | null, localName: string): string | null;
254
267
  getAttributeNames(): string[];
255
- getAttributeNode(qualifiedName: string): Attr;
256
- getAttributeNodeNS(namespace: string, localName: string): Attr;
268
+ getAttributeNode(qualifiedName: string): Attr | null;
269
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
257
270
  getBoundingClientRect(): DOMRect;
258
271
  getClientRects(): DOMRectList;
259
272
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
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]>;
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]>;
262
277
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
263
278
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
264
279
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
265
- getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
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;
266
283
  hasAttribute(qualifiedName: string): boolean;
267
- hasAttributeNS(namespace: string, localName: string): boolean;
284
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
268
285
  hasAttributes(): boolean;
269
286
  hasPointerCapture(pointerId: number): boolean;
270
- insertAdjacentElement(where: InsertPosition, element: Element): Element;
271
- insertAdjacentHTML(position: InsertPosition, text: string): void;
287
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
288
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
272
289
  insertAdjacentText(where: InsertPosition, data: string): void;
273
290
  matches(selectors: string): boolean;
274
291
  releasePointerCapture(pointerId: number): void;
275
292
  removeAttribute(qualifiedName: string): void;
276
- removeAttributeNS(namespace: string, localName: string): void;
293
+ removeAttributeNS(namespace: string | null, localName: string): void;
277
294
  removeAttributeNode(attr: Attr): Attr;
278
295
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
279
- requestPointerLock(): void;
296
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
280
297
  scroll(options?: ScrollToOptions): void;
281
298
  scroll(x: number, y: number): void;
282
299
  scrollBy(options?: ScrollToOptions): void;
@@ -285,221 +302,245 @@ export declare const EventEmitter: <TEventDetailMap extends EventDetailMap, TTar
285
302
  scrollTo(options?: ScrollToOptions): void;
286
303
  scrollTo(x: number, y: number): void;
287
304
  setAttribute(qualifiedName: string, value: string): void;
288
- setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
289
- setAttributeNode(attr: Attr): Attr;
290
- setAttributeNodeNS(attr: Attr): Attr;
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;
291
309
  setPointerCapture(pointerId: number): void;
292
310
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
293
311
  webkitMatchesSelector(selectors: string): boolean;
312
+ textContent: string;
294
313
  readonly baseURI: string;
295
314
  readonly childNodes: NodeListOf<ChildNode>;
296
- readonly firstChild: ChildNode;
315
+ readonly firstChild: ChildNode | null;
297
316
  readonly isConnected: boolean;
298
- readonly lastChild: ChildNode;
299
- readonly nextSibling: ChildNode;
317
+ readonly lastChild: ChildNode | null;
318
+ readonly nextSibling: ChildNode | null;
300
319
  readonly nodeName: string;
301
320
  readonly nodeType: number;
302
- nodeValue: string;
303
- readonly parentElement: HTMLElement;
304
- readonly parentNode: ParentNode;
305
- readonly previousSibling: ChildNode;
306
- textContent: string;
321
+ nodeValue: string | null;
322
+ readonly parentElement: HTMLElement | null;
323
+ readonly parentNode: ParentNode | null;
324
+ readonly previousSibling: ChildNode | null;
307
325
  appendChild<T extends Node>(node: T): T;
308
- cloneNode(deep?: boolean): Node;
326
+ cloneNode(subtree?: boolean): Node;
309
327
  compareDocumentPosition(other: Node): number;
310
- contains(other: Node): boolean;
328
+ contains(other: Node | null): boolean;
311
329
  getRootNode(options?: GetRootNodeOptions): Node;
312
330
  hasChildNodes(): boolean;
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;
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;
319
337
  normalize(): void;
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;
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;
340
358
  dispatchEvent(event: Event): boolean;
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;
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;
382
412
  getAnimations(options?: GetAnimationsOptions): Animation[];
383
- after(...nodes: (string | Node)[]): void;
384
- before(...nodes: (string | Node)[]): void;
413
+ after(...nodes: (Node | string)[]): void;
414
+ before(...nodes: (Node | string)[]): void;
385
415
  remove(): void;
386
- replaceWith(...nodes: (string | Node)[]): void;
387
- innerHTML: string;
388
- readonly nextElementSibling: Element;
389
- readonly previousElementSibling: Element;
416
+ replaceWith(...nodes: (Node | string)[]): void;
417
+ readonly nextElementSibling: Element | null;
418
+ readonly previousElementSibling: Element | null;
390
419
  readonly childElementCount: number;
391
420
  readonly children: HTMLCollection;
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;
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);
408
440
  contentEditable: string;
409
441
  enterKeyHint: string;
410
442
  inputMode: string;
411
443
  readonly isContentEditable: boolean;
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;
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;
503
544
  autofocus: boolean;
504
545
  readonly dataset: DOMStringMap;
505
546
  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 variable
5
+ ## createInputEmitter() function
6
6
 
7
7
  `<input>` template emit helper.
8
8
 
@@ -11,6 +11,9 @@
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
14
17
 
15
18
  ## Remarks
16
19
 
@@ -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 variable
5
+ ## createSelectEmitter() function
6
6
 
7
7
  `<select>` template emit helper.
8
8
 
@@ -11,6 +11,9 @@
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
14
17
 
15
18
  ## Remarks
16
19