@genesislcap/foundation-events 14.302.0 → 14.302.1-alpha-945e484.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dts/eventEmitter/emitterFunction.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterDI.d.ts.map +1 -1
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts +256 -215
- package/dist/dts/eventEmitter/eventEmitterMixin.d.ts.map +1 -1
- package/dist/dts/tsdoc-metadata.json +1 -1
- package/dist/dts/types.d.ts.map +1 -1
- package/dist/foundation-events.api.json +945 -328
- package/dist/foundation-events.d.ts +256 -215
- package/docs/api/foundation-events.createinputemitter.md +4 -1
- package/docs/api/foundation-events.createselectemitter.md +4 -1
- package/docs/api/foundation-events.customevent.md +40 -1
- package/docs/api/foundation-events.defaulteventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.defaulteventemitterdi.md +29 -3
- package/docs/api/foundation-events.emitter.md +6 -3
- package/docs/api/foundation-events.eventemitter.md +297 -216
- package/docs/api/foundation-events.eventemitterdi.emit.md +31 -3
- package/docs/api/foundation-events.eventemitterdi.md +22 -4
- package/docs/api/foundation-events.getbaseemitargs.md +40 -1
- package/docs/api/foundation-events.isemitoptions.md +40 -1
- package/docs/api/foundation-events.md +309 -32
- package/docs/api/foundation-events.registeremitter.md +5 -1
- package/docs/api/foundation-events.typedemitter._emit.md +31 -3
- package/docs/api/foundation-events.typedemitter.md +21 -3
- package/docs/api/index.md +21 -3
- package/docs/api-report.md.api.md +466 -0
- package/package.json +11 -11
@@ -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() 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
|
-
|
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<
|
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
|
-
|
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
|
-
|
53
|
-
|
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
|
-
|
63
|
-
closest<
|
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
|
-
|
66
|
-
|
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<
|
74
|
-
getElementsByTagName<
|
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(
|
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,
|
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(
|
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<
|
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<
|
134
|
-
replaceChild<
|
135
|
-
readonly
|
136
|
-
readonly
|
137
|
-
readonly
|
138
|
-
readonly
|
139
|
-
readonly
|
140
|
-
readonly
|
141
|
-
readonly
|
142
|
-
readonly
|
143
|
-
readonly
|
144
|
-
readonly
|
145
|
-
readonly
|
146
|
-
readonly
|
147
|
-
readonly
|
148
|
-
readonly
|
149
|
-
readonly
|
150
|
-
readonly
|
151
|
-
readonly
|
152
|
-
readonly
|
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
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
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: (
|
197
|
-
before(...nodes: (
|
226
|
+
after(...nodes: (Node | string)[]): void;
|
227
|
+
before(...nodes: (Node | string)[]): void;
|
198
228
|
remove(): void;
|
199
|
-
replaceWith(...nodes: (
|
200
|
-
|
201
|
-
readonly
|
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: (
|
208
|
-
prepend(...nodes: (
|
209
|
-
querySelector<
|
210
|
-
querySelector<
|
211
|
-
querySelector<
|
212
|
-
|
213
|
-
|
214
|
-
querySelectorAll<
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
readonly
|
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:
|
231
|
-
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
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
|
-
|
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)<!-- --><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
|
+
|
329
410
|
## Remarks
|
330
411
|
|
331
412
|
Strongly types the components `$emit` method, allowing only the mapped events to be emitted.
|