@genesislcap/foundation-events 14.302.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.
- 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 +256 -215
- 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 +945 -328
- package/dist/foundation-events.d.ts +256 -215
- package/docs/api/foundation-events.createinputemitter.md +4 -1
- package/docs/api/foundation-events.createselectemitter.md +4 -1
- package/docs/api/foundation-events.customevent.md +40 -1
- package/docs/api/foundation-events.defaulteventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.defaulteventemitterdi.md +29 -3
- package/docs/api/foundation-events.emitter.md +6 -3
- package/docs/api/foundation-events.eventemitter.md +297 -216
- package/docs/api/foundation-events.eventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.eventemitterdi.md +22 -4
- package/docs/api/foundation-events.getbaseemitargs.md +40 -1
- package/docs/api/foundation-events.isemitoptions.md +40 -1
- package/docs/api/foundation-events.md +309 -32
- package/docs/api/foundation-events.registeremitter.md +5 -1
- package/docs/api/foundation-events.typedemitter._emit.md +31 -3
- package/docs/api/foundation-events.typedemitter.md +21 -3
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +466 -0
- package/package.json +11 -11
@@ -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
|
-
|
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<
|
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
|
-
|
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
|
-
|
240
|
-
|
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
|
-
|
250
|
-
closest<
|
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
|
-
|
253
|
-
|
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<
|
261
|
-
getElementsByTagName<
|
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(
|
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,
|
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(
|
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<
|
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<
|
321
|
-
replaceChild<
|
322
|
-
readonly
|
323
|
-
readonly
|
324
|
-
readonly
|
325
|
-
readonly
|
326
|
-
readonly
|
327
|
-
readonly
|
328
|
-
readonly
|
329
|
-
readonly
|
330
|
-
readonly
|
331
|
-
readonly
|
332
|
-
readonly
|
333
|
-
readonly
|
334
|
-
readonly
|
335
|
-
readonly
|
336
|
-
readonly
|
337
|
-
readonly
|
338
|
-
readonly
|
339
|
-
readonly
|
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
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
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: (
|
384
|
-
before(...nodes: (
|
413
|
+
after(...nodes: (Node | string)[]): void;
|
414
|
+
before(...nodes: (Node | string)[]): void;
|
385
415
|
remove(): void;
|
386
|
-
replaceWith(...nodes: (
|
387
|
-
|
388
|
-
readonly
|
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: (
|
395
|
-
prepend(...nodes: (
|
396
|
-
querySelector<
|
397
|
-
querySelector<
|
398
|
-
querySelector<
|
399
|
-
|
400
|
-
|
401
|
-
querySelectorAll<
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
readonly
|
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:
|
418
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
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
|
-
|
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) > [@genesislcap/foundation-events](./foundation-events.md) > [createInputEmitter](./foundation-events.createinputemitter.md)
|
4
4
|
|
5
|
-
## createInputEmitter
|
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
|
+
<K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- --><TEventDetailMap, string>>(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) => Binding
|
14
17
|
|
15
18
|
## Remarks
|
16
19
|
|
@@ -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() 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
|
+
<K extends [KeysMatching](./foundation-events.keysmatching.md)<!-- --><TEventDetailMap, string>>(type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->) => Binding
|
14
17
|
|
15
18
|
## Remarks
|
16
19
|
|