@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.
- package/dist/dts/eventEmitter/emitterFunction.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterDI.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts +215 -256
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/dts/types.d.ts.map +1 -1
- package/dist/foundation-events.api.json +345 -962
- package/dist/foundation-events.d.ts +215 -256
- package/docs/api/foundation-events.createinputemitter.md +1 -4
- package/docs/api/foundation-events.createselectemitter.md +1 -4
- package/docs/api/foundation-events.customevent.md +1 -40
- package/docs/api/foundation-events.defaulteventemitterdi.emit.md +3 -31
- package/docs/api/foundation-events.defaulteventemitterdi.md +3 -29
- package/docs/api/foundation-events.emitter.md +3 -6
- package/docs/api/foundation-events.eventemitter.md +216 -297
- package/docs/api/foundation-events.eventemitterdi.emit.md +3 -31
- package/docs/api/foundation-events.eventemitterdi.md +4 -22
- package/docs/api/foundation-events.getbaseemitargs.md +1 -40
- package/docs/api/foundation-events.isemitoptions.md +1 -40
- package/docs/api/foundation-events.md +32 -309
- package/docs/api/foundation-events.registeremitter.md +1 -5
- package/docs/api/foundation-events.typedemitter._emit.md +3 -31
- package/docs/api/foundation-events.typedemitter.md +3 -21
- package/docs/api/index.md +3 -21
- package/package.json +11 -11
- package/docs/api-report.md.api.md +0 -466
@@ -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
|
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
|
-
|
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<
|
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
|
-
|
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
|
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
|
-
|
249
|
-
|
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
|
245
|
+
readonly shadowRoot: ShadowRoot;
|
256
246
|
slot: string;
|
257
247
|
readonly tagName: string;
|
258
248
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
259
|
-
|
260
|
-
closest<
|
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
|
-
|
265
|
-
|
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
|
269
|
-
getAttributeNodeNS(namespace: string
|
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<
|
274
|
-
getElementsByTagName<
|
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(
|
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
|
267
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
285
268
|
hasAttributes(): boolean;
|
286
269
|
hasPointerCapture(pointerId: number): boolean;
|
287
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element
|
288
|
-
insertAdjacentHTML(position: InsertPosition,
|
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
|
276
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
294
277
|
removeAttributeNode(attr: Attr): Attr;
|
295
278
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
296
|
-
requestPointerLock(
|
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
|
306
|
-
setAttributeNode(attr: Attr): Attr
|
307
|
-
setAttributeNodeNS(attr: Attr): Attr
|
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
|
296
|
+
readonly firstChild: ChildNode;
|
316
297
|
readonly isConnected: boolean;
|
317
|
-
readonly lastChild: ChildNode
|
318
|
-
readonly nextSibling: ChildNode
|
298
|
+
readonly lastChild: ChildNode;
|
299
|
+
readonly nextSibling: ChildNode;
|
319
300
|
readonly nodeName: string;
|
320
301
|
readonly nodeType: number;
|
321
|
-
nodeValue: string
|
322
|
-
readonly parentElement: HTMLElement
|
323
|
-
readonly parentNode: ParentNode
|
324
|
-
readonly previousSibling: ChildNode
|
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(
|
308
|
+
cloneNode(deep?: boolean): Node;
|
327
309
|
compareDocumentPosition(other: Node): number;
|
328
|
-
contains(other: Node
|
310
|
+
contains(other: Node): boolean;
|
329
311
|
getRootNode(options?: GetRootNodeOptions): Node;
|
330
312
|
hasChildNodes(): boolean;
|
331
|
-
insertBefore<
|
332
|
-
isDefaultNamespace(namespace: string
|
333
|
-
isEqualNode(otherNode: Node
|
334
|
-
isSameNode(otherNode: Node
|
335
|
-
lookupNamespaceURI(prefix: string
|
336
|
-
lookupPrefix(namespace: string
|
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<
|
339
|
-
replaceChild<
|
340
|
-
readonly
|
341
|
-
readonly
|
342
|
-
readonly
|
343
|
-
readonly
|
344
|
-
readonly
|
345
|
-
readonly
|
346
|
-
readonly
|
347
|
-
readonly
|
348
|
-
readonly
|
349
|
-
readonly
|
350
|
-
readonly
|
351
|
-
readonly
|
352
|
-
readonly
|
353
|
-
readonly
|
354
|
-
readonly
|
355
|
-
readonly
|
356
|
-
readonly
|
357
|
-
readonly
|
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
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
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: (
|
414
|
-
before(...nodes: (
|
383
|
+
after(...nodes: (string | Node)[]): void;
|
384
|
+
before(...nodes: (string | Node)[]): void;
|
415
385
|
remove(): void;
|
416
|
-
replaceWith(...nodes: (
|
417
|
-
|
418
|
-
readonly
|
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
|
422
|
-
readonly lastElementChild: Element
|
423
|
-
append(...nodes: (
|
424
|
-
prepend(...nodes: (
|
425
|
-
querySelector<
|
426
|
-
querySelector<
|
427
|
-
querySelector<
|
428
|
-
|
429
|
-
|
430
|
-
querySelectorAll<
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
readonly
|
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: (
|
445
|
-
onanimationcancel: (
|
446
|
-
onanimationend: (
|
447
|
-
onanimationiteration: (
|
448
|
-
onanimationstart: (
|
449
|
-
onauxclick: (
|
450
|
-
onbeforeinput: (
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
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) > [@genesislcap/foundation-events](./foundation-events.md) > [createInputEmitter](./foundation-events.createinputemitter.md)
|
4
4
|
|
5
|
-
## createInputEmitter
|
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
|
-
<K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- --><TEventDetailMap, string>>(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) => Binding
|
17
14
|
|
18
15
|
## Remarks
|
19
16
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[Home](./index.md) > [@genesislcap/foundation-events](./foundation-events.md) > [createSelectEmitter](./foundation-events.createselectemitter.md)
|
4
4
|
|
5
|
-
## createSelectEmitter
|
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
|
-
<K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- --><TEventDetailMap, string>>(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) => Binding
|
17
14
|
|
18
15
|
## Remarks
|
19
16
|
|