@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
@@ -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
|
5
|
+
## EventEmitter variable
|
6
6
|
|
7
7
|
EventEmitter mixin.
|
8
8
|
|
@@ -14,7 +14,6 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
|
|
14
14
|
accessKey: string;
|
15
15
|
readonly accessKeyLabel: string;
|
16
16
|
autocapitalize: string;
|
17
|
-
autocorrect: boolean;
|
18
17
|
dir: string;
|
19
18
|
draggable: boolean;
|
20
19
|
hidden: boolean;
|
@@ -23,90 +22,74 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
|
|
23
22
|
lang: string;
|
24
23
|
readonly offsetHeight: number;
|
25
24
|
readonly offsetLeft: number;
|
26
|
-
readonly offsetParent: Element
|
25
|
+
readonly offsetParent: Element;
|
27
26
|
readonly offsetTop: number;
|
28
27
|
readonly offsetWidth: number;
|
29
28
|
outerText: string;
|
30
|
-
popover: string | null;
|
31
29
|
spellcheck: boolean;
|
32
30
|
title: string;
|
33
31
|
translate: boolean;
|
34
|
-
writingSuggestions: string;
|
35
32
|
attachInternals(): ElementInternals;
|
36
33
|
click(): void;
|
37
|
-
|
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;
|
34
|
+
addEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | AddEventListenerOptions): void;
|
41
35
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
42
|
-
removeEventListener<
|
36
|
+
removeEventListener<K_2 extends keyof HTMLElementEventMap>(type: K_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_2]) => any, options?: boolean | EventListenerOptions): void;
|
43
37
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
44
38
|
readonly attributes: NamedNodeMap;
|
45
|
-
|
46
|
-
set classList(value: string);
|
39
|
+
readonly classList: DOMTokenList;
|
47
40
|
className: string;
|
48
41
|
readonly clientHeight: number;
|
49
42
|
readonly clientLeft: number;
|
50
43
|
readonly clientTop: number;
|
51
44
|
readonly clientWidth: number;
|
52
|
-
readonly currentCSSZoom: number;
|
53
45
|
id: string;
|
54
|
-
innerHTML: string;
|
55
46
|
readonly localName: string;
|
56
|
-
readonly namespaceURI: string
|
47
|
+
readonly namespaceURI: string;
|
57
48
|
onfullscreenchange: (this: Element, ev: Event) => any;
|
58
49
|
onfullscreenerror: (this: Element, ev: Event) => any;
|
59
50
|
outerHTML: string;
|
60
51
|
readonly ownerDocument: Document;
|
61
|
-
|
62
|
-
|
63
|
-
readonly prefix: string | null;
|
52
|
+
readonly part: DOMTokenList;
|
53
|
+
readonly prefix: string;
|
64
54
|
readonly scrollHeight: number;
|
65
55
|
scrollLeft: number;
|
66
56
|
scrollTop: number;
|
67
57
|
readonly scrollWidth: number;
|
68
|
-
readonly shadowRoot: ShadowRoot
|
58
|
+
readonly shadowRoot: ShadowRoot;
|
69
59
|
slot: string;
|
70
60
|
readonly tagName: string;
|
71
61
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
72
|
-
|
73
|
-
closest<
|
74
|
-
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
|
75
|
-
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K];
|
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];
|
76
64
|
closest<E extends Element = Element>(selectors: string): E;
|
77
|
-
|
78
|
-
|
79
|
-
getAttributeNS(namespace: string | null, localName: string): string | null;
|
65
|
+
getAttribute(qualifiedName: string): string;
|
66
|
+
getAttributeNS(namespace: string, localName: string): string;
|
80
67
|
getAttributeNames(): string[];
|
81
|
-
getAttributeNode(qualifiedName: string): Attr
|
82
|
-
getAttributeNodeNS(namespace: string
|
68
|
+
getAttributeNode(qualifiedName: string): Attr;
|
69
|
+
getAttributeNodeNS(namespace: string, localName: string): Attr;
|
83
70
|
getBoundingClientRect(): DOMRect;
|
84
71
|
getClientRects(): DOMRectList;
|
85
72
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
86
|
-
getElementsByTagName<
|
87
|
-
getElementsByTagName<
|
88
|
-
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
89
|
-
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
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]>;
|
90
75
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
91
76
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
92
77
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
93
|
-
getElementsByTagNameNS(
|
94
|
-
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
95
|
-
getHTML(options?: GetHTMLOptions): string;
|
78
|
+
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
96
79
|
hasAttribute(qualifiedName: string): boolean;
|
97
|
-
hasAttributeNS(namespace: string
|
80
|
+
hasAttributeNS(namespace: string, localName: string): boolean;
|
98
81
|
hasAttributes(): boolean;
|
99
82
|
hasPointerCapture(pointerId: number): boolean;
|
100
|
-
insertAdjacentElement(where: InsertPosition, element: Element): Element
|
101
|
-
insertAdjacentHTML(position: InsertPosition,
|
83
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element;
|
84
|
+
insertAdjacentHTML(position: InsertPosition, text: string): void;
|
102
85
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
103
86
|
matches(selectors: string): boolean;
|
104
87
|
releasePointerCapture(pointerId: number): void;
|
105
88
|
removeAttribute(qualifiedName: string): void;
|
106
|
-
removeAttributeNS(namespace: string
|
89
|
+
removeAttributeNS(namespace: string, localName: string): void;
|
107
90
|
removeAttributeNode(attr: Attr): Attr;
|
108
91
|
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
109
|
-
requestPointerLock(
|
92
|
+
requestPointerLock(): void;
|
110
93
|
scroll(options?: ScrollToOptions): void;
|
111
94
|
scroll(x: number, y: number): void;
|
112
95
|
scrollBy(options?: ScrollToOptions): void;
|
@@ -115,245 +98,221 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
|
|
115
98
|
scrollTo(options?: ScrollToOptions): void;
|
116
99
|
scrollTo(x: number, y: number): void;
|
117
100
|
setAttribute(qualifiedName: string, value: string): void;
|
118
|
-
setAttributeNS(namespace: string
|
119
|
-
setAttributeNode(attr: Attr): Attr
|
120
|
-
setAttributeNodeNS(attr: Attr): Attr
|
121
|
-
setHTMLUnsafe(html: string): void;
|
101
|
+
setAttributeNS(namespace: string, qualifiedName: string, value: string): void;
|
102
|
+
setAttributeNode(attr: Attr): Attr;
|
103
|
+
setAttributeNodeNS(attr: Attr): Attr;
|
122
104
|
setPointerCapture(pointerId: number): void;
|
123
105
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
124
106
|
webkitMatchesSelector(selectors: string): boolean;
|
125
|
-
textContent: string;
|
126
107
|
readonly baseURI: string;
|
127
108
|
readonly childNodes: NodeListOf<ChildNode>;
|
128
|
-
readonly firstChild: ChildNode
|
109
|
+
readonly firstChild: ChildNode;
|
129
110
|
readonly isConnected: boolean;
|
130
|
-
readonly lastChild: ChildNode
|
131
|
-
readonly nextSibling: ChildNode
|
111
|
+
readonly lastChild: ChildNode;
|
112
|
+
readonly nextSibling: ChildNode;
|
132
113
|
readonly nodeName: string;
|
133
114
|
readonly nodeType: number;
|
134
|
-
nodeValue: string
|
135
|
-
readonly parentElement: HTMLElement
|
136
|
-
readonly parentNode: ParentNode
|
137
|
-
readonly previousSibling: ChildNode
|
115
|
+
nodeValue: string;
|
116
|
+
readonly parentElement: HTMLElement;
|
117
|
+
readonly parentNode: ParentNode;
|
118
|
+
readonly previousSibling: ChildNode;
|
119
|
+
textContent: string;
|
138
120
|
appendChild<T extends Node>(node: T): T;
|
139
|
-
cloneNode(
|
121
|
+
cloneNode(deep?: boolean): Node;
|
140
122
|
compareDocumentPosition(other: Node): number;
|
141
|
-
contains(other: Node
|
123
|
+
contains(other: Node): boolean;
|
142
124
|
getRootNode(options?: GetRootNodeOptions): Node;
|
143
125
|
hasChildNodes(): boolean;
|
144
|
-
insertBefore<
|
145
|
-
isDefaultNamespace(namespace: string
|
146
|
-
isEqualNode(otherNode: Node
|
147
|
-
isSameNode(otherNode: Node
|
148
|
-
lookupNamespaceURI(prefix: string
|
149
|
-
lookupPrefix(namespace: string
|
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;
|
150
132
|
normalize(): void;
|
151
|
-
removeChild<
|
152
|
-
replaceChild<
|
153
|
-
readonly
|
154
|
-
readonly
|
155
|
-
readonly
|
156
|
-
readonly
|
157
|
-
readonly
|
158
|
-
readonly
|
159
|
-
readonly
|
160
|
-
readonly
|
161
|
-
readonly
|
162
|
-
readonly
|
163
|
-
readonly
|
164
|
-
readonly
|
165
|
-
readonly
|
166
|
-
readonly
|
167
|
-
readonly
|
168
|
-
readonly
|
169
|
-
readonly
|
170
|
-
readonly
|
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;
|
171
153
|
dispatchEvent(event: Event): boolean;
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
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;
|
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;
|
225
195
|
getAnimations(options?: GetAnimationsOptions): Animation[];
|
226
|
-
after(...nodes: (
|
227
|
-
before(...nodes: (
|
196
|
+
after(...nodes: (string | Node)[]): void;
|
197
|
+
before(...nodes: (string | Node)[]): void;
|
228
198
|
remove(): void;
|
229
|
-
replaceWith(...nodes: (
|
230
|
-
|
231
|
-
readonly
|
199
|
+
replaceWith(...nodes: (string | Node)[]): void;
|
200
|
+
innerHTML: string;
|
201
|
+
readonly nextElementSibling: Element;
|
202
|
+
readonly previousElementSibling: Element;
|
232
203
|
readonly childElementCount: number;
|
233
204
|
readonly children: HTMLCollection;
|
234
|
-
readonly firstElementChild: Element
|
235
|
-
readonly lastElementChild: Element
|
236
|
-
append(...nodes: (
|
237
|
-
prepend(...nodes: (
|
238
|
-
querySelector<
|
239
|
-
querySelector<
|
240
|
-
querySelector<
|
241
|
-
|
242
|
-
|
243
|
-
querySelectorAll<
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
readonly
|
250
|
-
readonly attributeStyleMap: StylePropertyMap;
|
251
|
-
get style(): CSSStyleDeclaration;
|
252
|
-
set style(cssText: string);
|
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;
|
253
221
|
contentEditable: string;
|
254
222
|
enterKeyHint: string;
|
255
223
|
inputMode: string;
|
256
224
|
readonly isContentEditable: boolean;
|
257
|
-
onabort: (
|
258
|
-
onanimationcancel: (
|
259
|
-
onanimationend: (
|
260
|
-
onanimationiteration: (
|
261
|
-
onanimationstart: (
|
262
|
-
onauxclick: (
|
263
|
-
onbeforeinput: (
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
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;
|
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;
|
357
316
|
autofocus: boolean;
|
358
317
|
readonly dataset: DOMStringMap;
|
359
318
|
nonce?: string;
|
@@ -367,46 +326,6 @@ EventEmitter: <TEventDetailMap extends EventDetailMap, TTarget extends HTMLEleme
|
|
367
326
|
}
|
368
327
|
```
|
369
328
|
|
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)<!-- --><TTarget>
|
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\[\]) => { $emit<K extends keyof TEventDetailMap & string>(...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<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap\[K\]) => any, options?: boolean \| AddEventListenerOptions): void; addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean \| AddEventListenerOptions): void; removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap\[K\]) => 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) => any; onfullscreenerror: (this: Element, ev: Event) => 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<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap\[K\]; closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap\[K\]; closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap\[K\]; closest<E extends Element = Element>(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<Element>; getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap\[K\]>; getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap\[K\]>; getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap\[K\]>; getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap\[K\]>; getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>; getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>; getElementsByTagNameNS(namespace: string \| null, localName: string): HTMLCollectionOf<Element>; 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<void>; requestPointerLock(options?: PointerLockOptions): Promise<void>; 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<ChildNode>; 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<T extends Node>(node: T): T; cloneNode(subtree?: boolean): Node; compareDocumentPosition(other: Node): number; contains(other: Node \| null): boolean; getRootNode(options?: GetRootNodeOptions): Node; hasChildNodes(): boolean; insertBefore<T extends Node>(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<T extends Node>(child: T): T; replaceChild<T extends Node>(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<Element> \| null; ariaCurrent: string \| null; ariaDescribedByElements: ReadonlyArray<Element> \| null; ariaDescription: string \| null; ariaDetailsElements: ReadonlyArray<Element> \| null; ariaDisabled: string \| null; ariaErrorMessageElements: ReadonlyArray<Element> \| null; ariaExpanded: string \| null; ariaFlowToElements: ReadonlyArray<Element> \| null; ariaHasPopup: string \| null; ariaHidden: string \| null; ariaInvalid: string \| null; ariaKeyShortcuts: string \| null; ariaLabel: string \| null; ariaLabelledByElements: ReadonlyArray<Element> \| null; ariaLevel: string \| null; ariaLive: string \| null; ariaModal: string \| null; ariaMultiLine: string \| null; ariaMultiSelectable: string \| null; ariaOrientation: string \| null; ariaOwnsElements: ReadonlyArray<Element> \| 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<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap\[K\] \| null; querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap\[K\] \| null; querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap\[K\] \| null; querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap\[K\] \| null; querySelector<E extends Element = Element>(selectors: string): E \| null; querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap\[K\]>; querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap\[K\]>; querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap\[K\]>; querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap\[K\]>; querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>; 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) => any) \| null; onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) \| null; onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) \| null; onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) \| null; onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) \| null; onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) \| null; onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) \| null; onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) \| null; oncancel: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onchange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onclose: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) \| null; oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) \| null; ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) \| null; ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onemptied: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onended: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onerror: OnErrorEventHandler; onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) \| null; onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) \| null; ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; oninput: ((this: GlobalEventHandlers, ev: Event) => any) \| null; oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) \| null; onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) \| null; onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) \| null; onload: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) \| null; onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) \| null; onpause: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onplay: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onplaying: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) \| null; onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) \| null; onratechange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onreset: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) \| null; onscroll: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) \| null; onseeked: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onseeking: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onselect: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onstalled: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) \| null; onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) \| null; ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) \| null; ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) \| null; ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) \| null \| undefined; ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) \| null \| undefined; ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) \| null \| undefined; ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) \| null \| undefined; ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) \| null; ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) \| null; ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) \| null; ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) \| null; onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) \| null; onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => 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
|
-
|
410
329
|
## Remarks
|
411
330
|
|
412
331
|
Strongly types the components `$emit` method, allowing only the mapped events to be emitted.
|