@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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Home](./index.md) > [@genesislcap/foundation-events](./foundation-events.md) > [EventEmitter](./foundation-events.eventemitter.md)
4
4
 
5
- ## EventEmitter variable
5
+ ## EventEmitter() function
6
6
 
7
7
  EventEmitter mixin.
8
8
 
@@ -14,6 +14,7 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
14
14
  accessKey: string;
15
15
  readonly accessKeyLabel: string;
16
16
  autocapitalize: string;
17
+ autocorrect: boolean;
17
18
  dir: string;
18
19
  draggable: boolean;
19
20
  hidden: boolean;
@@ -22,74 +23,90 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
22
23
  lang: string;
23
24
  readonly offsetHeight: number;
24
25
  readonly offsetLeft: number;
25
- readonly offsetParent: Element;
26
+ readonly offsetParent: Element | null;
26
27
  readonly offsetTop: number;
27
28
  readonly offsetWidth: number;
28
29
  outerText: string;
30
+ popover: string | null;
29
31
  spellcheck: boolean;
30
32
  title: string;
31
33
  translate: boolean;
34
+ writingSuggestions: string;
32
35
  attachInternals(): ElementInternals;
33
36
  click(): void;
34
- addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
37
+ hidePopover(): void;
38
+ showPopover(): void;
39
+ togglePopover(options?: boolean): boolean;
40
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
35
41
  addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
36
- removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
42
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
37
43
  removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
38
44
  readonly attributes: NamedNodeMap;
39
- readonly classList: DOMTokenList;
45
+ get classList(): DOMTokenList;
46
+ set classList(value: string);
40
47
  className: string;
41
48
  readonly clientHeight: number;
42
49
  readonly clientLeft: number;
43
50
  readonly clientTop: number;
44
51
  readonly clientWidth: number;
52
+ readonly currentCSSZoom: number;
45
53
  id: string;
54
+ innerHTML: string;
46
55
  readonly localName: string;
47
- readonly namespaceURI: string;
56
+ readonly namespaceURI: string | null;
48
57
  onfullscreenchange: (this: Element, ev: Event) => any;
49
58
  onfullscreenerror: (this: Element, ev: Event) => any;
50
59
  outerHTML: string;
51
60
  readonly ownerDocument: Document;
52
- readonly part: DOMTokenList;
53
- readonly prefix: string;
61
+ get part(): DOMTokenList;
62
+ set part(value: string);
63
+ readonly prefix: string | null;
54
64
  readonly scrollHeight: number;
55
65
  scrollLeft: number;
56
66
  scrollTop: number;
57
67
  readonly scrollWidth: number;
58
- readonly shadowRoot: ShadowRoot;
68
+ readonly shadowRoot: ShadowRoot | null;
59
69
  slot: string;
60
70
  readonly tagName: string;
61
71
  attachShadow(init: ShadowRootInit): ShadowRoot;
62
- closest<K_3 extends keyof HTMLElementTagNameMap>(selector: K_3): HTMLElementTagNameMap[K_3];
63
- closest<K_4 extends keyof SVGElementTagNameMap>(selector: K_4): SVGElementTagNameMap[K_4];
72
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
73
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
74
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
75
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
64
76
  closest<E extends Element = Element>(selectors: string): E;
65
- getAttribute(qualifiedName: string): string;
66
- getAttributeNS(namespace: string, localName: string): string;
77
+ computedStyleMap(): StylePropertyMapReadOnly;
78
+ getAttribute(qualifiedName: string): string | null;
79
+ getAttributeNS(namespace: string | null, localName: string): string | null;
67
80
  getAttributeNames(): string[];
68
- getAttributeNode(qualifiedName: string): Attr;
69
- getAttributeNodeNS(namespace: string, localName: string): Attr;
81
+ getAttributeNode(qualifiedName: string): Attr | null;
82
+ getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
70
83
  getBoundingClientRect(): DOMRect;
71
84
  getClientRects(): DOMRectList;
72
85
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
73
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
74
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
86
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
87
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
88
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
89
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
75
90
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
76
91
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
77
92
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
78
- getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
93
+ getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
94
+ getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
95
+ getHTML(options?: GetHTMLOptions): string;
79
96
  hasAttribute(qualifiedName: string): boolean;
80
- hasAttributeNS(namespace: string, localName: string): boolean;
97
+ hasAttributeNS(namespace: string | null, localName: string): boolean;
81
98
  hasAttributes(): boolean;
82
99
  hasPointerCapture(pointerId: number): boolean;
83
- insertAdjacentElement(where: InsertPosition, element: Element): Element;
84
- insertAdjacentHTML(position: InsertPosition, text: string): void;
100
+ insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
101
+ insertAdjacentHTML(position: InsertPosition, string: string): void;
85
102
  insertAdjacentText(where: InsertPosition, data: string): void;
86
103
  matches(selectors: string): boolean;
87
104
  releasePointerCapture(pointerId: number): void;
88
105
  removeAttribute(qualifiedName: string): void;
89
- removeAttributeNS(namespace: string, localName: string): void;
106
+ removeAttributeNS(namespace: string | null, localName: string): void;
90
107
  removeAttributeNode(attr: Attr): Attr;
91
108
  requestFullscreen(options?: FullscreenOptions): Promise<void>;
92
- requestPointerLock(): void;
109
+ requestPointerLock(options?: PointerLockOptions): Promise<void>;
93
110
  scroll(options?: ScrollToOptions): void;
94
111
  scroll(x: number, y: number): void;
95
112
  scrollBy(options?: ScrollToOptions): void;
@@ -98,221 +115,245 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
98
115
  scrollTo(options?: ScrollToOptions): void;
99
116
  scrollTo(x: number, y: number): void;
100
117
  setAttribute(qualifiedName: string, value: string): void;
101
- setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
102
- setAttributeNode(attr: Attr): Attr;
103
- setAttributeNodeNS(attr: Attr): Attr;
118
+ setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
119
+ setAttributeNode(attr: Attr): Attr | null;
120
+ setAttributeNodeNS(attr: Attr): Attr | null;
121
+ setHTMLUnsafe(html: string): void;
104
122
  setPointerCapture(pointerId: number): void;
105
123
  toggleAttribute(qualifiedName: string, force?: boolean): boolean;
106
124
  webkitMatchesSelector(selectors: string): boolean;
125
+ textContent: string;
107
126
  readonly baseURI: string;
108
127
  readonly childNodes: NodeListOf<ChildNode>;
109
- readonly firstChild: ChildNode;
128
+ readonly firstChild: ChildNode | null;
110
129
  readonly isConnected: boolean;
111
- readonly lastChild: ChildNode;
112
- readonly nextSibling: ChildNode;
130
+ readonly lastChild: ChildNode | null;
131
+ readonly nextSibling: ChildNode | null;
113
132
  readonly nodeName: string;
114
133
  readonly nodeType: number;
115
- nodeValue: string;
116
- readonly parentElement: HTMLElement;
117
- readonly parentNode: ParentNode;
118
- readonly previousSibling: ChildNode;
119
- textContent: string;
134
+ nodeValue: string | null;
135
+ readonly parentElement: HTMLElement | null;
136
+ readonly parentNode: ParentNode | null;
137
+ readonly previousSibling: ChildNode | null;
120
138
  appendChild<T extends Node>(node: T): T;
121
- cloneNode(deep?: boolean): Node;
139
+ cloneNode(subtree?: boolean): Node;
122
140
  compareDocumentPosition(other: Node): number;
123
- contains(other: Node): boolean;
141
+ contains(other: Node | null): boolean;
124
142
  getRootNode(options?: GetRootNodeOptions): Node;
125
143
  hasChildNodes(): boolean;
126
- insertBefore<T_1 extends Node>(node: T_1, child: Node): T_1;
127
- isDefaultNamespace(namespace: string): boolean;
128
- isEqualNode(otherNode: Node): boolean;
129
- isSameNode(otherNode: Node): boolean;
130
- lookupNamespaceURI(prefix: string): string;
131
- lookupPrefix(namespace: string): string;
144
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
145
+ isDefaultNamespace(namespace: string | null): boolean;
146
+ isEqualNode(otherNode: Node | null): boolean;
147
+ isSameNode(otherNode: Node | null): boolean;
148
+ lookupNamespaceURI(prefix: string | null): string | null;
149
+ lookupPrefix(namespace: string | null): string | null;
132
150
  normalize(): void;
133
- removeChild<T_2 extends Node>(child: T_2): T_2;
134
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
135
- readonly ATTRIBUTE_NODE: number;
136
- readonly CDATA_SECTION_NODE: number;
137
- readonly COMMENT_NODE: number;
138
- readonly DOCUMENT_FRAGMENT_NODE: number;
139
- readonly DOCUMENT_NODE: number;
140
- readonly DOCUMENT_POSITION_CONTAINED_BY: number;
141
- readonly DOCUMENT_POSITION_CONTAINS: number;
142
- readonly DOCUMENT_POSITION_DISCONNECTED: number;
143
- readonly DOCUMENT_POSITION_FOLLOWING: number;
144
- readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: number;
145
- readonly DOCUMENT_POSITION_PRECEDING: number;
146
- readonly DOCUMENT_TYPE_NODE: number;
147
- readonly ELEMENT_NODE: number;
148
- readonly ENTITY_NODE: number;
149
- readonly ENTITY_REFERENCE_NODE: number;
150
- readonly NOTATION_NODE: number;
151
- readonly PROCESSING_INSTRUCTION_NODE: number;
152
- readonly TEXT_NODE: number;
151
+ removeChild<T extends Node>(child: T): T;
152
+ replaceChild<T extends Node>(node: Node, child: T): T;
153
+ readonly ELEMENT_NODE: 1;
154
+ readonly ATTRIBUTE_NODE: 2;
155
+ readonly TEXT_NODE: 3;
156
+ readonly CDATA_SECTION_NODE: 4;
157
+ readonly ENTITY_REFERENCE_NODE: 5;
158
+ readonly ENTITY_NODE: 6;
159
+ readonly PROCESSING_INSTRUCTION_NODE: 7;
160
+ readonly COMMENT_NODE: 8;
161
+ readonly DOCUMENT_NODE: 9;
162
+ readonly DOCUMENT_TYPE_NODE: 10;
163
+ readonly DOCUMENT_FRAGMENT_NODE: 11;
164
+ readonly NOTATION_NODE: 12;
165
+ readonly DOCUMENT_POSITION_DISCONNECTED: 1;
166
+ readonly DOCUMENT_POSITION_PRECEDING: 2;
167
+ readonly DOCUMENT_POSITION_FOLLOWING: 4;
168
+ readonly DOCUMENT_POSITION_CONTAINS: 8;
169
+ readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
170
+ readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
153
171
  dispatchEvent(event: Event): boolean;
154
- ariaAtomic: string;
155
- ariaAutoComplete: string;
156
- ariaBusy: string;
157
- ariaChecked: string;
158
- ariaColCount: string;
159
- ariaColIndex: string;
160
- ariaColIndexText: string;
161
- ariaColSpan: string;
162
- ariaCurrent: string;
163
- ariaDisabled: string;
164
- ariaExpanded: string;
165
- ariaHasPopup: string;
166
- ariaHidden: string;
167
- ariaInvalid: string;
168
- ariaKeyShortcuts: string;
169
- ariaLabel: string;
170
- ariaLevel: string;
171
- ariaLive: string;
172
- ariaModal: string;
173
- ariaMultiLine: string;
174
- ariaMultiSelectable: string;
175
- ariaOrientation: string;
176
- ariaPlaceholder: string;
177
- ariaPosInSet: string;
178
- ariaPressed: string;
179
- ariaReadOnly: string;
180
- ariaRequired: string;
181
- ariaRoleDescription: string;
182
- ariaRowCount: string;
183
- ariaRowIndex: string;
184
- ariaRowIndexText: string;
185
- ariaRowSpan: string;
186
- ariaSelected: string;
187
- ariaSetSize: string;
188
- ariaSort: string;
189
- ariaValueMax: string;
190
- ariaValueMin: string;
191
- ariaValueNow: string;
192
- ariaValueText: string;
193
- role: string;
194
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions): Animation;
172
+ ariaActiveDescendantElement: Element | null;
173
+ ariaAtomic: string | null;
174
+ ariaAutoComplete: string | null;
175
+ ariaBrailleLabel: string | null;
176
+ ariaBrailleRoleDescription: string | null;
177
+ ariaBusy: string | null;
178
+ ariaChecked: string | null;
179
+ ariaColCount: string | null;
180
+ ariaColIndex: string | null;
181
+ ariaColIndexText: string | null;
182
+ ariaColSpan: string | null;
183
+ ariaControlsElements: ReadonlyArray<Element> | null;
184
+ ariaCurrent: string | null;
185
+ ariaDescribedByElements: ReadonlyArray<Element> | null;
186
+ ariaDescription: string | null;
187
+ ariaDetailsElements: ReadonlyArray<Element> | null;
188
+ ariaDisabled: string | null;
189
+ ariaErrorMessageElements: ReadonlyArray<Element> | null;
190
+ ariaExpanded: string | null;
191
+ ariaFlowToElements: ReadonlyArray<Element> | null;
192
+ ariaHasPopup: string | null;
193
+ ariaHidden: string | null;
194
+ ariaInvalid: string | null;
195
+ ariaKeyShortcuts: string | null;
196
+ ariaLabel: string | null;
197
+ ariaLabelledByElements: ReadonlyArray<Element> | null;
198
+ ariaLevel: string | null;
199
+ ariaLive: string | null;
200
+ ariaModal: string | null;
201
+ ariaMultiLine: string | null;
202
+ ariaMultiSelectable: string | null;
203
+ ariaOrientation: string | null;
204
+ ariaOwnsElements: ReadonlyArray<Element> | null;
205
+ ariaPlaceholder: string | null;
206
+ ariaPosInSet: string | null;
207
+ ariaPressed: string | null;
208
+ ariaReadOnly: string | null;
209
+ ariaRelevant: string | null;
210
+ ariaRequired: string | null;
211
+ ariaRoleDescription: string | null;
212
+ ariaRowCount: string | null;
213
+ ariaRowIndex: string | null;
214
+ ariaRowIndexText: string | null;
215
+ ariaRowSpan: string | null;
216
+ ariaSelected: string | null;
217
+ ariaSetSize: string | null;
218
+ ariaSort: string | null;
219
+ ariaValueMax: string | null;
220
+ ariaValueMin: string | null;
221
+ ariaValueNow: string | null;
222
+ ariaValueText: string | null;
223
+ role: string | null;
224
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
195
225
  getAnimations(options?: GetAnimationsOptions): Animation[];
196
- after(...nodes: (string | Node)[]): void;
197
- before(...nodes: (string | Node)[]): void;
226
+ after(...nodes: (Node | string)[]): void;
227
+ before(...nodes: (Node | string)[]): void;
198
228
  remove(): void;
199
- replaceWith(...nodes: (string | Node)[]): void;
200
- innerHTML: string;
201
- readonly nextElementSibling: Element;
202
- readonly previousElementSibling: Element;
229
+ replaceWith(...nodes: (Node | string)[]): void;
230
+ readonly nextElementSibling: Element | null;
231
+ readonly previousElementSibling: Element | null;
203
232
  readonly childElementCount: number;
204
233
  readonly children: HTMLCollection;
205
- readonly firstElementChild: Element;
206
- readonly lastElementChild: Element;
207
- append(...nodes: (string | Node)[]): void;
208
- prepend(...nodes: (string | Node)[]): void;
209
- querySelector<K_7 extends keyof HTMLElementTagNameMap>(selectors: K_7): HTMLElementTagNameMap[K_7];
210
- querySelector<K_8 extends keyof SVGElementTagNameMap>(selectors: K_8): SVGElementTagNameMap[K_8];
211
- querySelector<E_1 extends Element = Element>(selectors: string): E_1;
212
- querySelectorAll<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): NodeListOf<HTMLElementTagNameMap[K_9]>;
213
- querySelectorAll<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): NodeListOf<SVGElementTagNameMap[K_10]>;
214
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
215
- replaceChildren(...nodes: (string | Node)[]): void;
216
- readonly assignedSlot: HTMLSlotElement;
217
- oncopy: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
218
- oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
219
- onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
220
- readonly style: CSSStyleDeclaration;
234
+ readonly firstElementChild: Element | null;
235
+ readonly lastElementChild: Element | null;
236
+ append(...nodes: (Node | string)[]): void;
237
+ prepend(...nodes: (Node | string)[]): void;
238
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
239
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
240
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
241
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
242
+ querySelector<E extends Element = Element>(selectors: string): E | null;
243
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
244
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
245
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
246
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
247
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
248
+ replaceChildren(...nodes: (Node | string)[]): void;
249
+ readonly assignedSlot: HTMLSlotElement | null;
250
+ readonly attributeStyleMap: StylePropertyMap;
251
+ get style(): CSSStyleDeclaration;
252
+ set style(cssText: string);
221
253
  contentEditable: string;
222
254
  enterKeyHint: string;
223
255
  inputMode: string;
224
256
  readonly isContentEditable: boolean;
225
- onabort: (this: GlobalEventHandlers, ev: UIEvent) => any;
226
- onanimationcancel: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
227
- onanimationend: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
228
- onanimationiteration: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
229
- onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
230
- onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
231
- onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
232
- onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
233
- oncancel: (this: GlobalEventHandlers, ev: Event) => any;
234
- oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
235
- oncanplaythrough: (this: GlobalEventHandlers, ev: Event) => any;
236
- onchange: (this: GlobalEventHandlers, ev: Event) => any;
237
- onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
238
- onclose: (this: GlobalEventHandlers, ev: Event) => any;
239
- oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
240
- oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
241
- ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
242
- ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
243
- ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
244
- ondragenter: (this: GlobalEventHandlers, ev: DragEvent) => any;
245
- ondragleave: (this: GlobalEventHandlers, ev: DragEvent) => any;
246
- ondragover: (this: GlobalEventHandlers, ev: DragEvent) => any;
247
- ondragstart: (this: GlobalEventHandlers, ev: DragEvent) => any;
248
- ondrop: (this: GlobalEventHandlers, ev: DragEvent) => any;
249
- ondurationchange: (this: GlobalEventHandlers, ev: Event) => any;
250
- onemptied: (this: GlobalEventHandlers, ev: Event) => any;
251
- onended: (this: GlobalEventHandlers, ev: Event) => any;
252
- onerror: OnErrorEventHandlerNonNull;
253
- onfocus: (this: GlobalEventHandlers, ev: FocusEvent) => any;
254
- onformdata: (this: GlobalEventHandlers, ev: FormDataEvent) => any;
255
- ongotpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
256
- oninput: (this: GlobalEventHandlers, ev: Event) => any;
257
- oninvalid: (this: GlobalEventHandlers, ev: Event) => any;
258
- onkeydown: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
259
- onkeypress: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
260
- onkeyup: (this: GlobalEventHandlers, ev: KeyboardEvent) => any;
261
- onload: (this: GlobalEventHandlers, ev: Event) => any;
262
- onloadeddata: (this: GlobalEventHandlers, ev: Event) => any;
263
- onloadedmetadata: (this: GlobalEventHandlers, ev: Event) => any;
264
- onloadstart: (this: GlobalEventHandlers, ev: Event) => any;
265
- onlostpointercapture: (this: GlobalEventHandlers, ev: PointerEvent) => any;
266
- onmousedown: (this: GlobalEventHandlers, ev: MouseEvent) => any;
267
- onmouseenter: (this: GlobalEventHandlers, ev: MouseEvent) => any;
268
- onmouseleave: (this: GlobalEventHandlers, ev: MouseEvent) => any;
269
- onmousemove: (this: GlobalEventHandlers, ev: MouseEvent) => any;
270
- onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
271
- onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
272
- onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
273
- onpause: (this: GlobalEventHandlers, ev: Event) => any;
274
- onplay: (this: GlobalEventHandlers, ev: Event) => any;
275
- onplaying: (this: GlobalEventHandlers, ev: Event) => any;
276
- onpointercancel: (this: GlobalEventHandlers, ev: PointerEvent) => any;
277
- onpointerdown: (this: GlobalEventHandlers, ev: PointerEvent) => any;
278
- onpointerenter: (this: GlobalEventHandlers, ev: PointerEvent) => any;
279
- onpointerleave: (this: GlobalEventHandlers, ev: PointerEvent) => any;
280
- onpointermove: (this: GlobalEventHandlers, ev: PointerEvent) => any;
281
- onpointerout: (this: GlobalEventHandlers, ev: PointerEvent) => any;
282
- onpointerover: (this: GlobalEventHandlers, ev: PointerEvent) => any;
283
- onpointerup: (this: GlobalEventHandlers, ev: PointerEvent) => any;
284
- onprogress: (this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any;
285
- onratechange: (this: GlobalEventHandlers, ev: Event) => any;
286
- onreset: (this: GlobalEventHandlers, ev: Event) => any;
287
- onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
288
- onscroll: (this: GlobalEventHandlers, ev: Event) => any;
289
- onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
290
- onseeked: (this: GlobalEventHandlers, ev: Event) => any;
291
- onseeking: (this: GlobalEventHandlers, ev: Event) => any;
292
- onselect: (this: GlobalEventHandlers, ev: Event) => any;
293
- onselectionchange: (this: GlobalEventHandlers, ev: Event) => any;
294
- onselectstart: (this: GlobalEventHandlers, ev: Event) => any;
295
- onslotchange: (this: GlobalEventHandlers, ev: Event) => any;
296
- onstalled: (this: GlobalEventHandlers, ev: Event) => any;
297
- onsubmit: (this: GlobalEventHandlers, ev: SubmitEvent) => any;
298
- onsuspend: (this: GlobalEventHandlers, ev: Event) => any;
299
- ontimeupdate: (this: GlobalEventHandlers, ev: Event) => any;
300
- ontoggle: (this: GlobalEventHandlers, ev: Event) => any;
301
- ontouchcancel?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
302
- ontouchend?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
303
- ontouchmove?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
304
- ontouchstart?: (this: GlobalEventHandlers, ev: TouchEvent) => any;
305
- ontransitioncancel: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
306
- ontransitionend: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
307
- ontransitionrun: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
308
- ontransitionstart: (this: GlobalEventHandlers, ev: TransitionEvent) => any;
309
- onvolumechange: (this: GlobalEventHandlers, ev: Event) => any;
310
- onwaiting: (this: GlobalEventHandlers, ev: Event) => any;
311
- onwebkitanimationend: (this: GlobalEventHandlers, ev: Event) => any;
312
- onwebkitanimationiteration: (this: GlobalEventHandlers, ev: Event) => any;
313
- onwebkitanimationstart: (this: GlobalEventHandlers, ev: Event) => any;
314
- onwebkittransitionend: (this: GlobalEventHandlers, ev: Event) => any;
315
- onwheel: (this: GlobalEventHandlers, ev: WheelEvent) => any;
257
+ onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
258
+ onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
259
+ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
260
+ onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
261
+ onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
262
+ onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
263
+ onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
264
+ onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
265
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
266
+ onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
267
+ oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
268
+ oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
269
+ oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
270
+ onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
271
+ onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
272
+ onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
273
+ oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
274
+ oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
275
+ oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
276
+ oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
277
+ oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
278
+ oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
279
+ ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
280
+ ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
281
+ ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
282
+ ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
283
+ ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
284
+ ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
285
+ ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
286
+ ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
287
+ ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
288
+ onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
289
+ onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
290
+ onerror: OnErrorEventHandler;
291
+ onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
292
+ onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
293
+ ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
294
+ oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
295
+ oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
296
+ onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
297
+ onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
298
+ onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
299
+ onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
300
+ onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
301
+ onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
302
+ onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
303
+ onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
304
+ onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
305
+ onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
306
+ onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
307
+ onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
308
+ onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
309
+ onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
310
+ onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
311
+ onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
312
+ onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
313
+ onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
314
+ onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
315
+ onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
316
+ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
317
+ onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
318
+ onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
319
+ onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
320
+ onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
321
+ onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
322
+ onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
323
+ onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
324
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
325
+ onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
326
+ onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
327
+ onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
328
+ onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
329
+ onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
330
+ onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
331
+ onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
332
+ onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
333
+ onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
334
+ onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
335
+ onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
336
+ onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
337
+ onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
338
+ onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
339
+ onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
340
+ ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
341
+ ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
342
+ ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
343
+ ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
344
+ ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
345
+ ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
346
+ ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
347
+ ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
348
+ ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
349
+ ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
350
+ onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
351
+ onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
352
+ onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
353
+ onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
354
+ onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
355
+ onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
356
+ onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
316
357
  autofocus: boolean;
317
358
  readonly dataset: DOMStringMap;
318
359
  nonce?: string;
@@ -326,6 +367,46 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
326
367
  }
327
368
  ```
328
369
 
370
+ ## Parameters
371
+
372
+ <table><thead><tr><th>
373
+
374
+ Parameter
375
+
376
+
377
+ </th><th>
378
+
379
+ Type
380
+
381
+
382
+ </th><th>
383
+
384
+ Description
385
+
386
+
387
+ </th></tr></thead>
388
+ <tbody><tr><td>
389
+
390
+ Target
391
+
392
+
393
+ </td><td>
394
+
395
+ [EventEmitterTarget](./foundation-events.eventemittertarget.md)<!-- -->&lt;TTarget&gt;
396
+
397
+
398
+ </td><td>
399
+
400
+ The class to apply the mixin to which ultimately extends .
401
+
402
+
403
+ </td></tr>
404
+ </tbody></table>
405
+
406
+ **Returns:**
407
+
408
+ abstract new (...args: any\[\]) =&gt; { $emit&lt;K extends keyof TEventDetailMap &amp; string&gt;(...args: TEventDetailMap\[K\] extends void ? \[type: K, options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->\] : \[type: K, detail: TEventDetailMap\[K\], options?: [EmitOptions](./foundation-events.emitoptions.md)<!-- -->\]): [EmitReturn](./foundation-events.emitreturn.md)<!-- -->; accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; autocorrect: boolean; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; readonly offsetLeft: number; readonly offsetParent: Element \| null; readonly offsetTop: number; readonly offsetWidth: number; outerText: string; popover: string \| null; spellcheck: boolean; title: string; translate: boolean; writingSuggestions: string; attachInternals(): ElementInternals; click(): void; hidePopover(): void; showPopover(): void; togglePopover(options?: boolean): boolean; addEventListener&lt;K extends keyof HTMLElementEventMap&gt;(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap\[K\]) =&gt; any, options?: boolean \| AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean \| AddEventListenerOptions): void; removeEventListener&lt;K extends keyof HTMLElementEventMap&gt;(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap\[K\]) =&gt; any, options?: boolean \| EventListenerOptions): void; removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean \| EventListenerOptions): void; readonly attributes: NamedNodeMap; get classList(): DOMTokenList; set classList(value: string); className: string; readonly clientHeight: number; readonly clientLeft: number; readonly clientTop: number; readonly clientWidth: number; readonly currentCSSZoom: number; id: string; innerHTML: string; readonly localName: string; readonly namespaceURI: string \| null; onfullscreenchange: (this: Element, ev: Event) =&gt; any; onfullscreenerror: (this: Element, ev: Event) =&gt; any; outerHTML: string; readonly ownerDocument: Document; get part(): DOMTokenList; set part(value: string); readonly prefix: string \| null; readonly scrollHeight: number; scrollLeft: number; scrollTop: number; readonly scrollWidth: number; readonly shadowRoot: ShadowRoot \| null; slot: string; readonly tagName: string; attachShadow(init: ShadowRootInit): ShadowRoot; checkVisibility(options?: CheckVisibilityOptions): boolean; closest&lt;K extends keyof HTMLElementTagNameMap&gt;(selector: K): HTMLElementTagNameMap\[K\]; closest&lt;K extends keyof SVGElementTagNameMap&gt;(selector: K): SVGElementTagNameMap\[K\]; closest&lt;K extends keyof MathMLElementTagNameMap&gt;(selector: K): MathMLElementTagNameMap\[K\]; closest&lt;E extends Element = Element&gt;(selectors: string): E; computedStyleMap(): StylePropertyMapReadOnly; getAttribute(qualifiedName: string): string \| null; getAttributeNS(namespace: string \| null, localName: string): string \| null; getAttributeNames(): string\[\]; getAttributeNode(qualifiedName: string): Attr \| null; getAttributeNodeNS(namespace: string \| null, localName: string): Attr \| null; getBoundingClientRect(): DOMRect; getClientRects(): DOMRectList; getElementsByClassName(classNames: string): HTMLCollectionOf&lt;Element&gt;; getElementsByTagName&lt;K extends keyof HTMLElementTagNameMap&gt;(qualifiedName: K): HTMLCollectionOf&lt;HTMLElementTagNameMap\[K\]&gt;; getElementsByTagName&lt;K extends keyof SVGElementTagNameMap&gt;(qualifiedName: K): HTMLCollectionOf&lt;SVGElementTagNameMap\[K\]&gt;; getElementsByTagName&lt;K extends keyof MathMLElementTagNameMap&gt;(qualifiedName: K): HTMLCollectionOf&lt;MathMLElementTagNameMap\[K\]&gt;; getElementsByTagName&lt;K extends keyof HTMLElementDeprecatedTagNameMap&gt;(qualifiedName: K): HTMLCollectionOf&lt;HTMLElementDeprecatedTagNameMap\[K\]&gt;; getElementsByTagName(qualifiedName: string): HTMLCollectionOf&lt;Element&gt;; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf&lt;HTMLElement&gt;; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf&lt;SVGElement&gt;; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf&lt;MathMLElement&gt;; getElementsByTagNameNS(namespace: string \| null, localName: string): HTMLCollectionOf&lt;Element&gt;; getHTML(options?: GetHTMLOptions): string; hasAttribute(qualifiedName: string): boolean; hasAttributeNS(namespace: string \| null, localName: string): boolean; hasAttributes(): boolean; hasPointerCapture(pointerId: number): boolean; insertAdjacentElement(where: InsertPosition, element: Element): Element \| null; insertAdjacentHTML(position: InsertPosition, string: string): void; insertAdjacentText(where: InsertPosition, data: string): void; matches(selectors: string): boolean; releasePointerCapture(pointerId: number): void; removeAttribute(qualifiedName: string): void; removeAttributeNS(namespace: string \| null, localName: string): void; removeAttributeNode(attr: Attr): Attr; requestFullscreen(options?: FullscreenOptions): Promise&lt;void&gt;; requestPointerLock(options?: PointerLockOptions): Promise&lt;void&gt;; scroll(options?: ScrollToOptions): void; scroll(x: number, y: number): void; scrollBy(options?: ScrollToOptions): void; scrollBy(x: number, y: number): void; scrollIntoView(arg?: boolean \| ScrollIntoViewOptions): void; scrollTo(options?: ScrollToOptions): void; scrollTo(x: number, y: number): void; setAttribute(qualifiedName: string, value: string): void; setAttributeNS(namespace: string \| null, qualifiedName: string, value: string): void; setAttributeNode(attr: Attr): Attr \| null; setAttributeNodeNS(attr: Attr): Attr \| null; setHTMLUnsafe(html: string): void; setPointerCapture(pointerId: number): void; toggleAttribute(qualifiedName: string, force?: boolean): boolean; webkitMatchesSelector(selectors: string): boolean; textContent: string; readonly baseURI: string; readonly childNodes: NodeListOf&lt;ChildNode&gt;; readonly firstChild: ChildNode \| null; readonly isConnected: boolean; readonly lastChild: ChildNode \| null; readonly nextSibling: ChildNode \| null; readonly nodeName: string; readonly nodeType: number; nodeValue: string \| null; readonly parentElement: HTMLElement \| null; readonly parentNode: ParentNode \| null; readonly previousSibling: ChildNode \| null; appendChild&lt;T extends Node&gt;(node: T): T; cloneNode(subtree?: boolean): Node; compareDocumentPosition(other: Node): number; contains(other: Node \| null): boolean; getRootNode(options?: GetRootNodeOptions): Node; hasChildNodes(): boolean; insertBefore&lt;T extends Node&gt;(node: T, child: Node \| null): T; isDefaultNamespace(namespace: string \| null): boolean; isEqualNode(otherNode: Node \| null): boolean; isSameNode(otherNode: Node \| null): boolean; lookupNamespaceURI(prefix: string \| null): string \| null; lookupPrefix(namespace: string \| null): string \| null; normalize(): void; removeChild&lt;T extends Node&gt;(child: T): T; replaceChild&lt;T extends Node&gt;(node: Node, child: T): T; readonly ELEMENT\_NODE: 1; readonly ATTRIBUTE\_NODE: 2; readonly TEXT\_NODE: 3; readonly CDATA\_SECTION\_NODE: 4; readonly ENTITY\_REFERENCE\_NODE: 5; readonly ENTITY\_NODE: 6; readonly PROCESSING\_INSTRUCTION\_NODE: 7; readonly COMMENT\_NODE: 8; readonly DOCUMENT\_NODE: 9; readonly DOCUMENT\_TYPE\_NODE: 10; readonly DOCUMENT\_FRAGMENT\_NODE: 11; readonly NOTATION\_NODE: 12; readonly DOCUMENT\_POSITION\_DISCONNECTED: 1; readonly DOCUMENT\_POSITION\_PRECEDING: 2; readonly DOCUMENT\_POSITION\_FOLLOWING: 4; readonly DOCUMENT\_POSITION\_CONTAINS: 8; readonly DOCUMENT\_POSITION\_CONTAINED\_BY: 16; readonly DOCUMENT\_POSITION\_IMPLEMENTATION\_SPECIFIC: 32; dispatchEvent(event: Event): boolean; ariaActiveDescendantElement: Element \| null; ariaAtomic: string \| null; ariaAutoComplete: string \| null; ariaBrailleLabel: string \| null; ariaBrailleRoleDescription: string \| null; ariaBusy: string \| null; ariaChecked: string \| null; ariaColCount: string \| null; ariaColIndex: string \| null; ariaColIndexText: string \| null; ariaColSpan: string \| null; ariaControlsElements: ReadonlyArray&lt;Element&gt; \| null; ariaCurrent: string \| null; ariaDescribedByElements: ReadonlyArray&lt;Element&gt; \| null; ariaDescription: string \| null; ariaDetailsElements: ReadonlyArray&lt;Element&gt; \| null; ariaDisabled: string \| null; ariaErrorMessageElements: ReadonlyArray&lt;Element&gt; \| null; ariaExpanded: string \| null; ariaFlowToElements: ReadonlyArray&lt;Element&gt; \| null; ariaHasPopup: string \| null; ariaHidden: string \| null; ariaInvalid: string \| null; ariaKeyShortcuts: string \| null; ariaLabel: string \| null; ariaLabelledByElements: ReadonlyArray&lt;Element&gt; \| null; ariaLevel: string \| null; ariaLive: string \| null; ariaModal: string \| null; ariaMultiLine: string \| null; ariaMultiSelectable: string \| null; ariaOrientation: string \| null; ariaOwnsElements: ReadonlyArray&lt;Element&gt; \| null; ariaPlaceholder: string \| null; ariaPosInSet: string \| null; ariaPressed: string \| null; ariaReadOnly: string \| null; ariaRelevant: string \| null; ariaRequired: string \| null; ariaRoleDescription: string \| null; ariaRowCount: string \| null; ariaRowIndex: string \| null; ariaRowIndexText: string \| null; ariaRowSpan: string \| null; ariaSelected: string \| null; ariaSetSize: string \| null; ariaSort: string \| null; ariaValueMax: string \| null; ariaValueMin: string \| null; ariaValueNow: string \| null; ariaValueText: string \| null; role: string \| null; animate(keyframes: Keyframe\[\] \| PropertyIndexedKeyframes \| null, options?: number \| KeyframeAnimationOptions): Animation; getAnimations(options?: GetAnimationsOptions): Animation\[\]; after(...nodes: (Node \| string)\[\]): void; before(...nodes: (Node \| string)\[\]): void; remove(): void; replaceWith(...nodes: (Node \| string)\[\]): void; readonly nextElementSibling: Element \| null; readonly previousElementSibling: Element \| null; readonly childElementCount: number; readonly children: HTMLCollection; readonly firstElementChild: Element \| null; readonly lastElementChild: Element \| null; append(...nodes: (Node \| string)\[\]): void; prepend(...nodes: (Node \| string)\[\]): void; querySelector&lt;K extends keyof HTMLElementTagNameMap&gt;(selectors: K): HTMLElementTagNameMap\[K\] \| null; querySelector&lt;K extends keyof SVGElementTagNameMap&gt;(selectors: K): SVGElementTagNameMap\[K\] \| null; querySelector&lt;K extends keyof MathMLElementTagNameMap&gt;(selectors: K): MathMLElementTagNameMap\[K\] \| null; querySelector&lt;K extends keyof HTMLElementDeprecatedTagNameMap&gt;(selectors: K): HTMLElementDeprecatedTagNameMap\[K\] \| null; querySelector&lt;E extends Element = Element&gt;(selectors: string): E \| null; querySelectorAll&lt;K extends keyof HTMLElementTagNameMap&gt;(selectors: K): NodeListOf&lt;HTMLElementTagNameMap\[K\]&gt;; querySelectorAll&lt;K extends keyof SVGElementTagNameMap&gt;(selectors: K): NodeListOf&lt;SVGElementTagNameMap\[K\]&gt;; querySelectorAll&lt;K extends keyof MathMLElementTagNameMap&gt;(selectors: K): NodeListOf&lt;MathMLElementTagNameMap\[K\]&gt;; querySelectorAll&lt;K extends keyof HTMLElementDeprecatedTagNameMap&gt;(selectors: K): NodeListOf&lt;HTMLElementDeprecatedTagNameMap\[K\]&gt;; querySelectorAll&lt;E extends Element = Element&gt;(selectors: string): NodeListOf&lt;E&gt;; replaceChildren(...nodes: (Node \| string)\[\]): void; readonly assignedSlot: HTMLSlotElement \| null; readonly attributeStyleMap: StylePropertyMap; get style(): CSSStyleDeclaration; set style(cssText: string); contentEditable: string; enterKeyHint: string; inputMode: string; readonly isContentEditable: boolean; onabort: ((this: GlobalEventHandlers, ev: UIEvent) =&gt; any) \| null; onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) =&gt; any) \| null; onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) =&gt; any) \| null; onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) =&gt; any) \| null; onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) =&gt; any) \| null; onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) =&gt; any) \| null; onbeforematch: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) =&gt; any) \| null; onblur: ((this: GlobalEventHandlers, ev: FocusEvent) =&gt; any) \| null; oncancel: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncanplay: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onchange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onclick: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onclose: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncontextlost: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; oncontextrestored: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) =&gt; any) \| null; oncuechange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) =&gt; any) \| null; ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; ondrag: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondragend: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondragover: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondrop: ((this: GlobalEventHandlers, ev: DragEvent) =&gt; any) \| null; ondurationchange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onemptied: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onended: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onerror: OnErrorEventHandler; onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) =&gt; any) \| null; onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) =&gt; any) \| null; ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; oninput: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; oninvalid: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) =&gt; any) \| null; onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) =&gt; any) \| null; onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) =&gt; any) \| null; onload: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onloadeddata: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onloadstart: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) =&gt; any) \| null; onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) =&gt; any) \| null; onpause: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onplay: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onplaying: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) =&gt; any) \| null; onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) =&gt; any) \| null; onratechange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onreset: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onresize: ((this: GlobalEventHandlers, ev: UIEvent) =&gt; any) \| null; onscroll: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onscrollend: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) =&gt; any) \| null; onseeked: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onseeking: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onselect: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onselectionchange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onselectstart: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onslotchange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onstalled: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) =&gt; any) \| null; onsuspend: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; ontimeupdate: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) =&gt; any) \| null; ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) =&gt; any) \| null \| undefined; ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) =&gt; any) \| null \| undefined; ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) =&gt; any) \| null \| undefined; ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) =&gt; any) \| null \| undefined; ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) =&gt; any) \| null; ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) =&gt; any) \| null; ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) =&gt; any) \| null; ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) =&gt; any) \| null; onvolumechange: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwaiting: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) =&gt; any) \| null; onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) =&gt; any) \| null; autofocus: boolean; readonly dataset: DOMStringMap; nonce?: string; tabIndex: number; blur(): void; focus(options?: FocusOptions): void; readonly $fastController: import("@microsoft/fast-element").Controller; connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(name: string, oldValue: string, newValue: string): void; }
409
+
329
410
  ## Remarks
330
411
 
331
412
  Strongly types the components `$emit` method, allowing only the mapped events to be emitted.