drab 6.5.1 → 7.0.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/announcer/index.d.ts +2 -0
- package/dist/base/index.d.ts +101 -1536
- package/dist/base/index.js +87 -76
- package/dist/contextmenu/index.d.ts +1045 -3
- package/dist/contextmenu/index.js +15 -15
- package/dist/define.d.ts +11 -1
- package/dist/define.js +11 -5
- package/dist/dialog/index.d.ts +1047 -6
- package/dist/dialog/index.js +22 -22
- package/dist/editor/index.d.ts +1047 -12
- package/dist/editor/index.js +36 -36
- package/dist/fullscreen/index.d.ts +1045 -7
- package/dist/fullscreen/index.js +8 -8
- package/dist/index.d.ts +0 -3
- package/dist/index.js +0 -3
- package/dist/intersect/index.d.ts +1059 -16
- package/dist/intersect/index.js +26 -33
- package/dist/prefetch/index.d.ts +706 -25
- package/dist/prefetch/index.js +25 -44
- package/dist/share/index.d.ts +1413 -11
- package/dist/share/index.js +50 -18
- package/dist/tablesort/index.d.ts +1390 -5
- package/dist/tablesort/index.js +5 -5
- package/dist/tabs/index.d.ts +702 -4
- package/dist/tabs/index.js +3 -3
- package/dist/types/index.d.ts +29 -0
- package/dist/wakelock/index.d.ts +1390 -6
- package/dist/wakelock/index.js +16 -16
- package/package.json +5 -24
- package/dist/base/define.js +0 -3
- package/dist/copy/define.d.ts +0 -1
- package/dist/copy/define.js +0 -3
- package/dist/copy/index.d.ts +0 -30
- package/dist/copy/index.js +0 -39
- package/dist/youtube/define.d.ts +0 -1
- package/dist/youtube/define.js +0 -3
- package/dist/youtube/index.d.ts +0 -31
- package/dist/youtube/index.js +0 -56
- /package/dist/{base/define.d.ts → types/index.js} +0 -0
@@ -1,9 +1,1393 @@
|
|
1
|
-
import {
|
2
|
-
export
|
3
|
-
|
1
|
+
import { type TriggerAttributes, type ContentAttributes } from "../base/index.js";
|
2
|
+
export interface TableSortAttributes extends TriggerAttributes, ContentAttributes {
|
3
|
+
}
|
4
|
+
export interface TableSortTriggerAttributes {
|
4
5
|
"data-type": "string" | "boolean" | "number";
|
5
6
|
"data-value": string;
|
6
|
-
}
|
7
|
+
}
|
8
|
+
declare const TableSort_base: {
|
9
|
+
new (...args: any[]): {
|
10
|
+
"__#1@#listenerController": AbortController;
|
11
|
+
safeListener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: HTMLElement, event: HTMLElementEventMap[T]) => any, element?: HTMLElement, options?: AddEventListenerOptions): void;
|
12
|
+
safeListener<T extends keyof DocumentEventMap>(type: T, listener: (this: Document, event: DocumentEventMap[T]) => any, document: Document, options?: AddEventListenerOptions): void;
|
13
|
+
safeListener<T extends keyof WindowEventMap>(type: T, listener: (this: Window, event: WindowEventMap[T]) => any, window: Window, options?: AddEventListenerOptions): void;
|
14
|
+
mount(): void;
|
15
|
+
connectedCallback(): void;
|
16
|
+
destroy(): void;
|
17
|
+
disconnectedCallback(): void;
|
18
|
+
accessKey: string;
|
19
|
+
readonly accessKeyLabel: string;
|
20
|
+
autocapitalize: string;
|
21
|
+
dir: string;
|
22
|
+
draggable: boolean;
|
23
|
+
hidden: boolean;
|
24
|
+
inert: boolean;
|
25
|
+
innerText: string;
|
26
|
+
lang: string;
|
27
|
+
readonly offsetHeight: number;
|
28
|
+
readonly offsetLeft: number;
|
29
|
+
readonly offsetParent: Element | null;
|
30
|
+
readonly offsetTop: number;
|
31
|
+
readonly offsetWidth: number;
|
32
|
+
outerText: string;
|
33
|
+
popover: string | null;
|
34
|
+
spellcheck: boolean;
|
35
|
+
title: string;
|
36
|
+
translate: boolean;
|
37
|
+
writingSuggestions: string;
|
38
|
+
attachInternals(): ElementInternals;
|
39
|
+
click(): void;
|
40
|
+
hidePopover(): void;
|
41
|
+
showPopover(): void;
|
42
|
+
togglePopover(options?: boolean): boolean;
|
43
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
44
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
45
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
46
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
47
|
+
readonly attributes: NamedNodeMap;
|
48
|
+
get classList(): DOMTokenList;
|
49
|
+
set classList(value: string);
|
50
|
+
className: string;
|
51
|
+
readonly clientHeight: number;
|
52
|
+
readonly clientLeft: number;
|
53
|
+
readonly clientTop: number;
|
54
|
+
readonly clientWidth: number;
|
55
|
+
readonly currentCSSZoom: number;
|
56
|
+
id: string;
|
57
|
+
innerHTML: string;
|
58
|
+
readonly localName: string;
|
59
|
+
readonly namespaceURI: string | null;
|
60
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
61
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
62
|
+
outerHTML: string;
|
63
|
+
readonly ownerDocument: Document;
|
64
|
+
get part(): DOMTokenList;
|
65
|
+
set part(value: string);
|
66
|
+
readonly prefix: string | null;
|
67
|
+
readonly scrollHeight: number;
|
68
|
+
scrollLeft: number;
|
69
|
+
scrollTop: number;
|
70
|
+
readonly scrollWidth: number;
|
71
|
+
readonly shadowRoot: ShadowRoot | null;
|
72
|
+
slot: string;
|
73
|
+
readonly tagName: string;
|
74
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
75
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
76
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
77
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
78
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
79
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
80
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
81
|
+
getAttribute(qualifiedName: string): string | null;
|
82
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
83
|
+
getAttributeNames(): string[];
|
84
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
85
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
86
|
+
getBoundingClientRect(): DOMRect;
|
87
|
+
getClientRects(): DOMRectList;
|
88
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
89
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
90
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
91
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
92
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
93
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
94
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
95
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
96
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
97
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
98
|
+
getHTML(options?: GetHTMLOptions): string;
|
99
|
+
hasAttribute(qualifiedName: string): boolean;
|
100
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
101
|
+
hasAttributes(): boolean;
|
102
|
+
hasPointerCapture(pointerId: number): boolean;
|
103
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
104
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
105
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
106
|
+
matches(selectors: string): boolean;
|
107
|
+
releasePointerCapture(pointerId: number): void;
|
108
|
+
removeAttribute(qualifiedName: string): void;
|
109
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
110
|
+
removeAttributeNode(attr: Attr): Attr;
|
111
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
112
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
113
|
+
scroll(options?: ScrollToOptions): void;
|
114
|
+
scroll(x: number, y: number): void;
|
115
|
+
scrollBy(options?: ScrollToOptions): void;
|
116
|
+
scrollBy(x: number, y: number): void;
|
117
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
118
|
+
scrollTo(options?: ScrollToOptions): void;
|
119
|
+
scrollTo(x: number, y: number): void;
|
120
|
+
setAttribute(qualifiedName: string, value: string): void;
|
121
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
122
|
+
setAttributeNode(attr: Attr): Attr | null;
|
123
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
124
|
+
setHTMLUnsafe(html: string): void;
|
125
|
+
setPointerCapture(pointerId: number): void;
|
126
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
127
|
+
webkitMatchesSelector(selectors: string): boolean;
|
128
|
+
readonly baseURI: string;
|
129
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
130
|
+
readonly firstChild: ChildNode | null;
|
131
|
+
readonly isConnected: boolean;
|
132
|
+
readonly lastChild: ChildNode | null;
|
133
|
+
readonly nextSibling: ChildNode | null;
|
134
|
+
readonly nodeName: string;
|
135
|
+
readonly nodeType: number;
|
136
|
+
nodeValue: string | null;
|
137
|
+
readonly parentElement: HTMLElement | null;
|
138
|
+
readonly parentNode: ParentNode | null;
|
139
|
+
readonly previousSibling: ChildNode | null;
|
140
|
+
textContent: string | null;
|
141
|
+
appendChild<T extends Node>(node: T): T;
|
142
|
+
cloneNode(subtree?: boolean): Node;
|
143
|
+
compareDocumentPosition(other: Node): number;
|
144
|
+
contains(other: Node | null): boolean;
|
145
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
146
|
+
hasChildNodes(): boolean;
|
147
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
148
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
149
|
+
isEqualNode(otherNode: Node | null): boolean;
|
150
|
+
isSameNode(otherNode: Node | null): boolean;
|
151
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
152
|
+
lookupPrefix(namespace: string | null): string | null;
|
153
|
+
normalize(): void;
|
154
|
+
removeChild<T extends Node>(child: T): T;
|
155
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
156
|
+
readonly ELEMENT_NODE: 1;
|
157
|
+
readonly ATTRIBUTE_NODE: 2;
|
158
|
+
readonly TEXT_NODE: 3;
|
159
|
+
readonly CDATA_SECTION_NODE: 4;
|
160
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
161
|
+
readonly ENTITY_NODE: 6;
|
162
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
163
|
+
readonly COMMENT_NODE: 8;
|
164
|
+
readonly DOCUMENT_NODE: 9;
|
165
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
166
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
167
|
+
readonly NOTATION_NODE: 12;
|
168
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
169
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
170
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
171
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
172
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
173
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
174
|
+
dispatchEvent(event: Event): boolean;
|
175
|
+
ariaAtomic: string | null;
|
176
|
+
ariaAutoComplete: string | null;
|
177
|
+
ariaBrailleLabel: string | null;
|
178
|
+
ariaBrailleRoleDescription: string | null;
|
179
|
+
ariaBusy: string | null;
|
180
|
+
ariaChecked: string | null;
|
181
|
+
ariaColCount: string | null;
|
182
|
+
ariaColIndex: string | null;
|
183
|
+
ariaColIndexText: string | null;
|
184
|
+
ariaColSpan: string | null;
|
185
|
+
ariaCurrent: string | null;
|
186
|
+
ariaDescription: string | null;
|
187
|
+
ariaDisabled: string | null;
|
188
|
+
ariaExpanded: string | null;
|
189
|
+
ariaHasPopup: string | null;
|
190
|
+
ariaHidden: string | null;
|
191
|
+
ariaInvalid: string | null;
|
192
|
+
ariaKeyShortcuts: string | null;
|
193
|
+
ariaLabel: string | null;
|
194
|
+
ariaLevel: string | null;
|
195
|
+
ariaLive: string | null;
|
196
|
+
ariaModal: string | null;
|
197
|
+
ariaMultiLine: string | null;
|
198
|
+
ariaMultiSelectable: string | null;
|
199
|
+
ariaOrientation: string | null;
|
200
|
+
ariaPlaceholder: string | null;
|
201
|
+
ariaPosInSet: string | null;
|
202
|
+
ariaPressed: string | null;
|
203
|
+
ariaReadOnly: string | null;
|
204
|
+
ariaRelevant: string | null;
|
205
|
+
ariaRequired: string | null;
|
206
|
+
ariaRoleDescription: string | null;
|
207
|
+
ariaRowCount: string | null;
|
208
|
+
ariaRowIndex: string | null;
|
209
|
+
ariaRowIndexText: string | null;
|
210
|
+
ariaRowSpan: string | null;
|
211
|
+
ariaSelected: string | null;
|
212
|
+
ariaSetSize: string | null;
|
213
|
+
ariaSort: string | null;
|
214
|
+
ariaValueMax: string | null;
|
215
|
+
ariaValueMin: string | null;
|
216
|
+
ariaValueNow: string | null;
|
217
|
+
ariaValueText: string | null;
|
218
|
+
role: string | null;
|
219
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
220
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
221
|
+
after(...nodes: (Node | string)[]): void;
|
222
|
+
before(...nodes: (Node | string)[]): void;
|
223
|
+
remove(): void;
|
224
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
225
|
+
readonly nextElementSibling: Element | null;
|
226
|
+
readonly previousElementSibling: Element | null;
|
227
|
+
readonly childElementCount: number;
|
228
|
+
readonly children: HTMLCollection;
|
229
|
+
readonly firstElementChild: Element | null;
|
230
|
+
readonly lastElementChild: Element | null;
|
231
|
+
append(...nodes: (Node | string)[]): void;
|
232
|
+
prepend(...nodes: (Node | string)[]): void;
|
233
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
234
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
235
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
236
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
237
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
238
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
239
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
240
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
241
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
242
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
243
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
244
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
245
|
+
readonly attributeStyleMap: StylePropertyMap;
|
246
|
+
get style(): CSSStyleDeclaration;
|
247
|
+
set style(cssText: string);
|
248
|
+
contentEditable: string;
|
249
|
+
enterKeyHint: string;
|
250
|
+
inputMode: string;
|
251
|
+
readonly isContentEditable: boolean;
|
252
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
253
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
254
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
255
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
256
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
257
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
258
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
259
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
260
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
261
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
262
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
263
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
264
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
265
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
266
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
267
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
268
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
269
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
270
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
271
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
272
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
273
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
274
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
275
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
276
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
277
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
278
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
279
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
280
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
281
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
282
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
283
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
284
|
+
onerror: OnErrorEventHandler;
|
285
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
286
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
287
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
288
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
289
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
290
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
291
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
292
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
293
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
294
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
295
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
296
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
297
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
298
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
299
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
300
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
301
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
302
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
303
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
304
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
305
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
306
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
307
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
308
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
309
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
310
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
311
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
312
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
313
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
314
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
315
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
316
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
317
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
318
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
319
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
320
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
321
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
322
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
323
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
324
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
325
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
326
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
327
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
328
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
329
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
330
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
331
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
332
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
333
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
334
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
335
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
336
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
337
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
338
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
339
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
340
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
341
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
342
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
343
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
344
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
345
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
346
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
347
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
348
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
349
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
350
|
+
autofocus: boolean;
|
351
|
+
readonly dataset: DOMStringMap;
|
352
|
+
nonce?: string;
|
353
|
+
tabIndex: number;
|
354
|
+
blur(): void;
|
355
|
+
focus(options?: FocusOptions): void;
|
356
|
+
};
|
357
|
+
} & {
|
358
|
+
new (...args: any[]): {
|
359
|
+
event: keyof HTMLElementEventMap;
|
360
|
+
triggers<T extends HTMLElement>(instance: import("../base/index.js").Constructor<T>): NodeListOf<T>;
|
361
|
+
triggers(): NodeListOf<HTMLElement>;
|
362
|
+
listener<T extends keyof HTMLElementEventMap>(listener: (this: HTMLElement, e: HTMLElementEventMap[T]) => any, options?: AddEventListenerOptions): void;
|
363
|
+
listener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: HTMLElement, e: HTMLElementEventMap[T]) => any, options?: AddEventListenerOptions): void;
|
364
|
+
accessKey: string;
|
365
|
+
readonly accessKeyLabel: string;
|
366
|
+
autocapitalize: string;
|
367
|
+
dir: string;
|
368
|
+
draggable: boolean;
|
369
|
+
hidden: boolean;
|
370
|
+
inert: boolean;
|
371
|
+
innerText: string;
|
372
|
+
lang: string;
|
373
|
+
readonly offsetHeight: number;
|
374
|
+
readonly offsetLeft: number;
|
375
|
+
readonly offsetParent: Element | null;
|
376
|
+
readonly offsetTop: number;
|
377
|
+
readonly offsetWidth: number;
|
378
|
+
outerText: string;
|
379
|
+
popover: string | null;
|
380
|
+
spellcheck: boolean;
|
381
|
+
title: string;
|
382
|
+
translate: boolean;
|
383
|
+
writingSuggestions: string;
|
384
|
+
attachInternals(): ElementInternals;
|
385
|
+
click(): void;
|
386
|
+
hidePopover(): void;
|
387
|
+
showPopover(): void;
|
388
|
+
togglePopover(options?: boolean): boolean;
|
389
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
390
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
391
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
392
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
393
|
+
readonly attributes: NamedNodeMap;
|
394
|
+
get classList(): DOMTokenList;
|
395
|
+
set classList(value: string);
|
396
|
+
className: string;
|
397
|
+
readonly clientHeight: number;
|
398
|
+
readonly clientLeft: number;
|
399
|
+
readonly clientTop: number;
|
400
|
+
readonly clientWidth: number;
|
401
|
+
readonly currentCSSZoom: number;
|
402
|
+
id: string;
|
403
|
+
innerHTML: string;
|
404
|
+
readonly localName: string;
|
405
|
+
readonly namespaceURI: string | null;
|
406
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
407
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
408
|
+
outerHTML: string;
|
409
|
+
readonly ownerDocument: Document;
|
410
|
+
get part(): DOMTokenList;
|
411
|
+
set part(value: string);
|
412
|
+
readonly prefix: string | null;
|
413
|
+
readonly scrollHeight: number;
|
414
|
+
scrollLeft: number;
|
415
|
+
scrollTop: number;
|
416
|
+
readonly scrollWidth: number;
|
417
|
+
readonly shadowRoot: ShadowRoot | null;
|
418
|
+
slot: string;
|
419
|
+
readonly tagName: string;
|
420
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
421
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
422
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
423
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
424
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
425
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
426
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
427
|
+
getAttribute(qualifiedName: string): string | null;
|
428
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
429
|
+
getAttributeNames(): string[];
|
430
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
431
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
432
|
+
getBoundingClientRect(): DOMRect;
|
433
|
+
getClientRects(): DOMRectList;
|
434
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
435
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
436
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
437
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
438
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
439
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
440
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
441
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
442
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
443
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
444
|
+
getHTML(options?: GetHTMLOptions): string;
|
445
|
+
hasAttribute(qualifiedName: string): boolean;
|
446
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
447
|
+
hasAttributes(): boolean;
|
448
|
+
hasPointerCapture(pointerId: number): boolean;
|
449
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
450
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
451
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
452
|
+
matches(selectors: string): boolean;
|
453
|
+
releasePointerCapture(pointerId: number): void;
|
454
|
+
removeAttribute(qualifiedName: string): void;
|
455
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
456
|
+
removeAttributeNode(attr: Attr): Attr;
|
457
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
458
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
459
|
+
scroll(options?: ScrollToOptions): void;
|
460
|
+
scroll(x: number, y: number): void;
|
461
|
+
scrollBy(options?: ScrollToOptions): void;
|
462
|
+
scrollBy(x: number, y: number): void;
|
463
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
464
|
+
scrollTo(options?: ScrollToOptions): void;
|
465
|
+
scrollTo(x: number, y: number): void;
|
466
|
+
setAttribute(qualifiedName: string, value: string): void;
|
467
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
468
|
+
setAttributeNode(attr: Attr): Attr | null;
|
469
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
470
|
+
setHTMLUnsafe(html: string): void;
|
471
|
+
setPointerCapture(pointerId: number): void;
|
472
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
473
|
+
webkitMatchesSelector(selectors: string): boolean;
|
474
|
+
readonly baseURI: string;
|
475
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
476
|
+
readonly firstChild: ChildNode | null;
|
477
|
+
readonly isConnected: boolean;
|
478
|
+
readonly lastChild: ChildNode | null;
|
479
|
+
readonly nextSibling: ChildNode | null;
|
480
|
+
readonly nodeName: string;
|
481
|
+
readonly nodeType: number;
|
482
|
+
nodeValue: string | null;
|
483
|
+
readonly parentElement: HTMLElement | null;
|
484
|
+
readonly parentNode: ParentNode | null;
|
485
|
+
readonly previousSibling: ChildNode | null;
|
486
|
+
textContent: string | null;
|
487
|
+
appendChild<T extends Node>(node: T): T;
|
488
|
+
cloneNode(subtree?: boolean): Node;
|
489
|
+
compareDocumentPosition(other: Node): number;
|
490
|
+
contains(other: Node | null): boolean;
|
491
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
492
|
+
hasChildNodes(): boolean;
|
493
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
494
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
495
|
+
isEqualNode(otherNode: Node | null): boolean;
|
496
|
+
isSameNode(otherNode: Node | null): boolean;
|
497
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
498
|
+
lookupPrefix(namespace: string | null): string | null;
|
499
|
+
normalize(): void;
|
500
|
+
removeChild<T extends Node>(child: T): T;
|
501
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
502
|
+
readonly ELEMENT_NODE: 1;
|
503
|
+
readonly ATTRIBUTE_NODE: 2;
|
504
|
+
readonly TEXT_NODE: 3;
|
505
|
+
readonly CDATA_SECTION_NODE: 4;
|
506
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
507
|
+
readonly ENTITY_NODE: 6;
|
508
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
509
|
+
readonly COMMENT_NODE: 8;
|
510
|
+
readonly DOCUMENT_NODE: 9;
|
511
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
512
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
513
|
+
readonly NOTATION_NODE: 12;
|
514
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
515
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
516
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
517
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
518
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
519
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
520
|
+
dispatchEvent(event: Event): boolean;
|
521
|
+
ariaAtomic: string | null;
|
522
|
+
ariaAutoComplete: string | null;
|
523
|
+
ariaBrailleLabel: string | null;
|
524
|
+
ariaBrailleRoleDescription: string | null;
|
525
|
+
ariaBusy: string | null;
|
526
|
+
ariaChecked: string | null;
|
527
|
+
ariaColCount: string | null;
|
528
|
+
ariaColIndex: string | null;
|
529
|
+
ariaColIndexText: string | null;
|
530
|
+
ariaColSpan: string | null;
|
531
|
+
ariaCurrent: string | null;
|
532
|
+
ariaDescription: string | null;
|
533
|
+
ariaDisabled: string | null;
|
534
|
+
ariaExpanded: string | null;
|
535
|
+
ariaHasPopup: string | null;
|
536
|
+
ariaHidden: string | null;
|
537
|
+
ariaInvalid: string | null;
|
538
|
+
ariaKeyShortcuts: string | null;
|
539
|
+
ariaLabel: string | null;
|
540
|
+
ariaLevel: string | null;
|
541
|
+
ariaLive: string | null;
|
542
|
+
ariaModal: string | null;
|
543
|
+
ariaMultiLine: string | null;
|
544
|
+
ariaMultiSelectable: string | null;
|
545
|
+
ariaOrientation: string | null;
|
546
|
+
ariaPlaceholder: string | null;
|
547
|
+
ariaPosInSet: string | null;
|
548
|
+
ariaPressed: string | null;
|
549
|
+
ariaReadOnly: string | null;
|
550
|
+
ariaRelevant: string | null;
|
551
|
+
ariaRequired: string | null;
|
552
|
+
ariaRoleDescription: string | null;
|
553
|
+
ariaRowCount: string | null;
|
554
|
+
ariaRowIndex: string | null;
|
555
|
+
ariaRowIndexText: string | null;
|
556
|
+
ariaRowSpan: string | null;
|
557
|
+
ariaSelected: string | null;
|
558
|
+
ariaSetSize: string | null;
|
559
|
+
ariaSort: string | null;
|
560
|
+
ariaValueMax: string | null;
|
561
|
+
ariaValueMin: string | null;
|
562
|
+
ariaValueNow: string | null;
|
563
|
+
ariaValueText: string | null;
|
564
|
+
role: string | null;
|
565
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
566
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
567
|
+
after(...nodes: (Node | string)[]): void;
|
568
|
+
before(...nodes: (Node | string)[]): void;
|
569
|
+
remove(): void;
|
570
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
571
|
+
readonly nextElementSibling: Element | null;
|
572
|
+
readonly previousElementSibling: Element | null;
|
573
|
+
readonly childElementCount: number;
|
574
|
+
readonly children: HTMLCollection;
|
575
|
+
readonly firstElementChild: Element | null;
|
576
|
+
readonly lastElementChild: Element | null;
|
577
|
+
append(...nodes: (Node | string)[]): void;
|
578
|
+
prepend(...nodes: (Node | string)[]): void;
|
579
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
580
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
581
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
582
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
583
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
584
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
585
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
586
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
587
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
588
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
589
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
590
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
591
|
+
readonly attributeStyleMap: StylePropertyMap;
|
592
|
+
get style(): CSSStyleDeclaration;
|
593
|
+
set style(cssText: string);
|
594
|
+
contentEditable: string;
|
595
|
+
enterKeyHint: string;
|
596
|
+
inputMode: string;
|
597
|
+
readonly isContentEditable: boolean;
|
598
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
599
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
600
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
601
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
602
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
603
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
604
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
605
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
606
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
607
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
608
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
609
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
610
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
611
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
612
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
613
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
614
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
615
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
616
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
617
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
618
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
619
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
620
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
621
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
622
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
623
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
624
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
625
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
626
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
627
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
628
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
629
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
630
|
+
onerror: OnErrorEventHandler;
|
631
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
632
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
633
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
634
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
635
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
636
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
637
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
638
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
639
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
640
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
641
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
642
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
643
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
644
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
645
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
646
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
647
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
648
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
649
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
650
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
651
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
652
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
653
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
654
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
655
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
656
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
657
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
658
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
659
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
660
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
661
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
662
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
663
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
664
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
665
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
666
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
667
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
668
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
669
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
670
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
671
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
672
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
673
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
674
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
675
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
676
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
677
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
678
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
679
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
680
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
681
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
682
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
683
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
684
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
685
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
686
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
687
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
688
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
689
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
690
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
691
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
692
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
693
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
694
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
695
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
696
|
+
autofocus: boolean;
|
697
|
+
readonly dataset: DOMStringMap;
|
698
|
+
nonce?: string;
|
699
|
+
tabIndex: number;
|
700
|
+
blur(): void;
|
701
|
+
focus(options?: FocusOptions): void;
|
702
|
+
};
|
703
|
+
} & {
|
704
|
+
new (...args: any[]): {
|
705
|
+
content<T extends HTMLElement>(instance: import("../base/index.js").Constructor<T>): T;
|
706
|
+
content(): HTMLElement;
|
707
|
+
swap(revert?: number | false): void;
|
708
|
+
accessKey: string;
|
709
|
+
readonly accessKeyLabel: string;
|
710
|
+
autocapitalize: string;
|
711
|
+
dir: string;
|
712
|
+
draggable: boolean;
|
713
|
+
hidden: boolean;
|
714
|
+
inert: boolean;
|
715
|
+
innerText: string;
|
716
|
+
lang: string;
|
717
|
+
readonly offsetHeight: number;
|
718
|
+
readonly offsetLeft: number;
|
719
|
+
readonly offsetParent: Element | null;
|
720
|
+
readonly offsetTop: number;
|
721
|
+
readonly offsetWidth: number;
|
722
|
+
outerText: string;
|
723
|
+
popover: string | null;
|
724
|
+
spellcheck: boolean;
|
725
|
+
title: string;
|
726
|
+
translate: boolean;
|
727
|
+
writingSuggestions: string;
|
728
|
+
attachInternals(): ElementInternals;
|
729
|
+
click(): void;
|
730
|
+
hidePopover(): void;
|
731
|
+
showPopover(): void;
|
732
|
+
togglePopover(options?: boolean): boolean;
|
733
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
734
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
735
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
736
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
737
|
+
readonly attributes: NamedNodeMap;
|
738
|
+
get classList(): DOMTokenList;
|
739
|
+
set classList(value: string);
|
740
|
+
className: string;
|
741
|
+
readonly clientHeight: number;
|
742
|
+
readonly clientLeft: number;
|
743
|
+
readonly clientTop: number;
|
744
|
+
readonly clientWidth: number;
|
745
|
+
readonly currentCSSZoom: number;
|
746
|
+
id: string;
|
747
|
+
innerHTML: string;
|
748
|
+
readonly localName: string;
|
749
|
+
readonly namespaceURI: string | null;
|
750
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
751
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
752
|
+
outerHTML: string;
|
753
|
+
readonly ownerDocument: Document;
|
754
|
+
get part(): DOMTokenList;
|
755
|
+
set part(value: string);
|
756
|
+
readonly prefix: string | null;
|
757
|
+
readonly scrollHeight: number;
|
758
|
+
scrollLeft: number;
|
759
|
+
scrollTop: number;
|
760
|
+
readonly scrollWidth: number;
|
761
|
+
readonly shadowRoot: ShadowRoot | null;
|
762
|
+
slot: string;
|
763
|
+
readonly tagName: string;
|
764
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
765
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
766
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
767
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
768
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
769
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
770
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
771
|
+
getAttribute(qualifiedName: string): string | null;
|
772
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
773
|
+
getAttributeNames(): string[];
|
774
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
775
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
776
|
+
getBoundingClientRect(): DOMRect;
|
777
|
+
getClientRects(): DOMRectList;
|
778
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
779
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
780
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
781
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
782
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
783
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
784
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
785
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
786
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
787
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
788
|
+
getHTML(options?: GetHTMLOptions): string;
|
789
|
+
hasAttribute(qualifiedName: string): boolean;
|
790
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
791
|
+
hasAttributes(): boolean;
|
792
|
+
hasPointerCapture(pointerId: number): boolean;
|
793
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
794
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
795
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
796
|
+
matches(selectors: string): boolean;
|
797
|
+
releasePointerCapture(pointerId: number): void;
|
798
|
+
removeAttribute(qualifiedName: string): void;
|
799
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
800
|
+
removeAttributeNode(attr: Attr): Attr;
|
801
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
802
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
803
|
+
scroll(options?: ScrollToOptions): void;
|
804
|
+
scroll(x: number, y: number): void;
|
805
|
+
scrollBy(options?: ScrollToOptions): void;
|
806
|
+
scrollBy(x: number, y: number): void;
|
807
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
808
|
+
scrollTo(options?: ScrollToOptions): void;
|
809
|
+
scrollTo(x: number, y: number): void;
|
810
|
+
setAttribute(qualifiedName: string, value: string): void;
|
811
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
812
|
+
setAttributeNode(attr: Attr): Attr | null;
|
813
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
814
|
+
setHTMLUnsafe(html: string): void;
|
815
|
+
setPointerCapture(pointerId: number): void;
|
816
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
817
|
+
webkitMatchesSelector(selectors: string): boolean;
|
818
|
+
readonly baseURI: string;
|
819
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
820
|
+
readonly firstChild: ChildNode | null;
|
821
|
+
readonly isConnected: boolean;
|
822
|
+
readonly lastChild: ChildNode | null;
|
823
|
+
readonly nextSibling: ChildNode | null;
|
824
|
+
readonly nodeName: string;
|
825
|
+
readonly nodeType: number;
|
826
|
+
nodeValue: string | null;
|
827
|
+
readonly parentElement: HTMLElement | null;
|
828
|
+
readonly parentNode: ParentNode | null;
|
829
|
+
readonly previousSibling: ChildNode | null;
|
830
|
+
textContent: string | null;
|
831
|
+
appendChild<T extends Node>(node: T): T;
|
832
|
+
cloneNode(subtree?: boolean): Node;
|
833
|
+
compareDocumentPosition(other: Node): number;
|
834
|
+
contains(other: Node | null): boolean;
|
835
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
836
|
+
hasChildNodes(): boolean;
|
837
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
838
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
839
|
+
isEqualNode(otherNode: Node | null): boolean;
|
840
|
+
isSameNode(otherNode: Node | null): boolean;
|
841
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
842
|
+
lookupPrefix(namespace: string | null): string | null;
|
843
|
+
normalize(): void;
|
844
|
+
removeChild<T extends Node>(child: T): T;
|
845
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
846
|
+
readonly ELEMENT_NODE: 1;
|
847
|
+
readonly ATTRIBUTE_NODE: 2;
|
848
|
+
readonly TEXT_NODE: 3;
|
849
|
+
readonly CDATA_SECTION_NODE: 4;
|
850
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
851
|
+
readonly ENTITY_NODE: 6;
|
852
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
853
|
+
readonly COMMENT_NODE: 8;
|
854
|
+
readonly DOCUMENT_NODE: 9;
|
855
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
856
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
857
|
+
readonly NOTATION_NODE: 12;
|
858
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
859
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
860
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
861
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
862
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
863
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
864
|
+
dispatchEvent(event: Event): boolean;
|
865
|
+
ariaAtomic: string | null;
|
866
|
+
ariaAutoComplete: string | null;
|
867
|
+
ariaBrailleLabel: string | null;
|
868
|
+
ariaBrailleRoleDescription: string | null;
|
869
|
+
ariaBusy: string | null;
|
870
|
+
ariaChecked: string | null;
|
871
|
+
ariaColCount: string | null;
|
872
|
+
ariaColIndex: string | null;
|
873
|
+
ariaColIndexText: string | null;
|
874
|
+
ariaColSpan: string | null;
|
875
|
+
ariaCurrent: string | null;
|
876
|
+
ariaDescription: string | null;
|
877
|
+
ariaDisabled: string | null;
|
878
|
+
ariaExpanded: string | null;
|
879
|
+
ariaHasPopup: string | null;
|
880
|
+
ariaHidden: string | null;
|
881
|
+
ariaInvalid: string | null;
|
882
|
+
ariaKeyShortcuts: string | null;
|
883
|
+
ariaLabel: string | null;
|
884
|
+
ariaLevel: string | null;
|
885
|
+
ariaLive: string | null;
|
886
|
+
ariaModal: string | null;
|
887
|
+
ariaMultiLine: string | null;
|
888
|
+
ariaMultiSelectable: string | null;
|
889
|
+
ariaOrientation: string | null;
|
890
|
+
ariaPlaceholder: string | null;
|
891
|
+
ariaPosInSet: string | null;
|
892
|
+
ariaPressed: string | null;
|
893
|
+
ariaReadOnly: string | null;
|
894
|
+
ariaRelevant: string | null;
|
895
|
+
ariaRequired: string | null;
|
896
|
+
ariaRoleDescription: string | null;
|
897
|
+
ariaRowCount: string | null;
|
898
|
+
ariaRowIndex: string | null;
|
899
|
+
ariaRowIndexText: string | null;
|
900
|
+
ariaRowSpan: string | null;
|
901
|
+
ariaSelected: string | null;
|
902
|
+
ariaSetSize: string | null;
|
903
|
+
ariaSort: string | null;
|
904
|
+
ariaValueMax: string | null;
|
905
|
+
ariaValueMin: string | null;
|
906
|
+
ariaValueNow: string | null;
|
907
|
+
ariaValueText: string | null;
|
908
|
+
role: string | null;
|
909
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
910
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
911
|
+
after(...nodes: (Node | string)[]): void;
|
912
|
+
before(...nodes: (Node | string)[]): void;
|
913
|
+
remove(): void;
|
914
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
915
|
+
readonly nextElementSibling: Element | null;
|
916
|
+
readonly previousElementSibling: Element | null;
|
917
|
+
readonly childElementCount: number;
|
918
|
+
readonly children: HTMLCollection;
|
919
|
+
readonly firstElementChild: Element | null;
|
920
|
+
readonly lastElementChild: Element | null;
|
921
|
+
append(...nodes: (Node | string)[]): void;
|
922
|
+
prepend(...nodes: (Node | string)[]): void;
|
923
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
924
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
925
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
926
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
927
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
928
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
929
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
930
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
931
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
932
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
933
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
934
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
935
|
+
readonly attributeStyleMap: StylePropertyMap;
|
936
|
+
get style(): CSSStyleDeclaration;
|
937
|
+
set style(cssText: string);
|
938
|
+
contentEditable: string;
|
939
|
+
enterKeyHint: string;
|
940
|
+
inputMode: string;
|
941
|
+
readonly isContentEditable: boolean;
|
942
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
943
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
944
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
945
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
946
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
947
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
948
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
949
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
950
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
951
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
952
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
953
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
954
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
955
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
956
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
957
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
958
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
959
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
960
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
961
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
962
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
963
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
964
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
965
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
966
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
967
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
968
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
969
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
970
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
971
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
972
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
973
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
974
|
+
onerror: OnErrorEventHandler;
|
975
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
976
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
977
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
978
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
979
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
980
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
981
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
982
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
983
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
984
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
985
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
986
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
987
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
988
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
989
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
990
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
991
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
992
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
993
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
994
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
995
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
996
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
997
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
998
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
999
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1000
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1001
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1002
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1003
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1004
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1005
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1006
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1007
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
1008
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1009
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1010
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
1011
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1012
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1013
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
1014
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1015
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1016
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1017
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1018
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1019
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1020
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1021
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
1022
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1023
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1024
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1025
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1026
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1027
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1028
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1029
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1030
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1031
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1032
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1033
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1034
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1035
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1036
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1037
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1038
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1039
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
1040
|
+
autofocus: boolean;
|
1041
|
+
readonly dataset: DOMStringMap;
|
1042
|
+
nonce?: string;
|
1043
|
+
tabIndex: number;
|
1044
|
+
blur(): void;
|
1045
|
+
focus(options?: FocusOptions): void;
|
1046
|
+
};
|
1047
|
+
} & {
|
1048
|
+
new (...args: any[]): {
|
1049
|
+
announce(message: string): void;
|
1050
|
+
accessKey: string;
|
1051
|
+
readonly accessKeyLabel: string;
|
1052
|
+
autocapitalize: string;
|
1053
|
+
dir: string;
|
1054
|
+
draggable: boolean;
|
1055
|
+
hidden: boolean;
|
1056
|
+
inert: boolean;
|
1057
|
+
innerText: string;
|
1058
|
+
lang: string;
|
1059
|
+
readonly offsetHeight: number;
|
1060
|
+
readonly offsetLeft: number;
|
1061
|
+
readonly offsetParent: Element | null;
|
1062
|
+
readonly offsetTop: number;
|
1063
|
+
readonly offsetWidth: number;
|
1064
|
+
outerText: string;
|
1065
|
+
popover: string | null;
|
1066
|
+
spellcheck: boolean;
|
1067
|
+
title: string;
|
1068
|
+
translate: boolean;
|
1069
|
+
writingSuggestions: string;
|
1070
|
+
attachInternals(): ElementInternals;
|
1071
|
+
click(): void;
|
1072
|
+
hidePopover(): void;
|
1073
|
+
showPopover(): void;
|
1074
|
+
togglePopover(options?: boolean): boolean;
|
1075
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
1076
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
1077
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
1078
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
1079
|
+
readonly attributes: NamedNodeMap;
|
1080
|
+
get classList(): DOMTokenList;
|
1081
|
+
set classList(value: string);
|
1082
|
+
className: string;
|
1083
|
+
readonly clientHeight: number;
|
1084
|
+
readonly clientLeft: number;
|
1085
|
+
readonly clientTop: number;
|
1086
|
+
readonly clientWidth: number;
|
1087
|
+
readonly currentCSSZoom: number;
|
1088
|
+
id: string;
|
1089
|
+
innerHTML: string;
|
1090
|
+
readonly localName: string;
|
1091
|
+
readonly namespaceURI: string | null;
|
1092
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
1093
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
1094
|
+
outerHTML: string;
|
1095
|
+
readonly ownerDocument: Document;
|
1096
|
+
get part(): DOMTokenList;
|
1097
|
+
set part(value: string);
|
1098
|
+
readonly prefix: string | null;
|
1099
|
+
readonly scrollHeight: number;
|
1100
|
+
scrollLeft: number;
|
1101
|
+
scrollTop: number;
|
1102
|
+
readonly scrollWidth: number;
|
1103
|
+
readonly shadowRoot: ShadowRoot | null;
|
1104
|
+
slot: string;
|
1105
|
+
readonly tagName: string;
|
1106
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
1107
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
1108
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
1109
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
1110
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
1111
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
1112
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
1113
|
+
getAttribute(qualifiedName: string): string | null;
|
1114
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
1115
|
+
getAttributeNames(): string[];
|
1116
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
1117
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
1118
|
+
getBoundingClientRect(): DOMRect;
|
1119
|
+
getClientRects(): DOMRectList;
|
1120
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
1121
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
1122
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
1123
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
1124
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
1125
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
1126
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
1127
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
1128
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
1129
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
1130
|
+
getHTML(options?: GetHTMLOptions): string;
|
1131
|
+
hasAttribute(qualifiedName: string): boolean;
|
1132
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
1133
|
+
hasAttributes(): boolean;
|
1134
|
+
hasPointerCapture(pointerId: number): boolean;
|
1135
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
1136
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
1137
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
1138
|
+
matches(selectors: string): boolean;
|
1139
|
+
releasePointerCapture(pointerId: number): void;
|
1140
|
+
removeAttribute(qualifiedName: string): void;
|
1141
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
1142
|
+
removeAttributeNode(attr: Attr): Attr;
|
1143
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
1144
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
1145
|
+
scroll(options?: ScrollToOptions): void;
|
1146
|
+
scroll(x: number, y: number): void;
|
1147
|
+
scrollBy(options?: ScrollToOptions): void;
|
1148
|
+
scrollBy(x: number, y: number): void;
|
1149
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
1150
|
+
scrollTo(options?: ScrollToOptions): void;
|
1151
|
+
scrollTo(x: number, y: number): void;
|
1152
|
+
setAttribute(qualifiedName: string, value: string): void;
|
1153
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
1154
|
+
setAttributeNode(attr: Attr): Attr | null;
|
1155
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
1156
|
+
setHTMLUnsafe(html: string): void;
|
1157
|
+
setPointerCapture(pointerId: number): void;
|
1158
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
1159
|
+
webkitMatchesSelector(selectors: string): boolean;
|
1160
|
+
readonly baseURI: string;
|
1161
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
1162
|
+
readonly firstChild: ChildNode | null;
|
1163
|
+
readonly isConnected: boolean;
|
1164
|
+
readonly lastChild: ChildNode | null;
|
1165
|
+
readonly nextSibling: ChildNode | null;
|
1166
|
+
readonly nodeName: string;
|
1167
|
+
readonly nodeType: number;
|
1168
|
+
nodeValue: string | null;
|
1169
|
+
readonly parentElement: HTMLElement | null;
|
1170
|
+
readonly parentNode: ParentNode | null;
|
1171
|
+
readonly previousSibling: ChildNode | null;
|
1172
|
+
textContent: string | null;
|
1173
|
+
appendChild<T extends Node>(node: T): T;
|
1174
|
+
cloneNode(subtree?: boolean): Node;
|
1175
|
+
compareDocumentPosition(other: Node): number;
|
1176
|
+
contains(other: Node | null): boolean;
|
1177
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
1178
|
+
hasChildNodes(): boolean;
|
1179
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
1180
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
1181
|
+
isEqualNode(otherNode: Node | null): boolean;
|
1182
|
+
isSameNode(otherNode: Node | null): boolean;
|
1183
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
1184
|
+
lookupPrefix(namespace: string | null): string | null;
|
1185
|
+
normalize(): void;
|
1186
|
+
removeChild<T extends Node>(child: T): T;
|
1187
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
1188
|
+
readonly ELEMENT_NODE: 1;
|
1189
|
+
readonly ATTRIBUTE_NODE: 2;
|
1190
|
+
readonly TEXT_NODE: 3;
|
1191
|
+
readonly CDATA_SECTION_NODE: 4;
|
1192
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
1193
|
+
readonly ENTITY_NODE: 6;
|
1194
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
1195
|
+
readonly COMMENT_NODE: 8;
|
1196
|
+
readonly DOCUMENT_NODE: 9;
|
1197
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
1198
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
1199
|
+
readonly NOTATION_NODE: 12;
|
1200
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
1201
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
1202
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
1203
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
1204
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
1205
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
1206
|
+
dispatchEvent(event: Event): boolean;
|
1207
|
+
ariaAtomic: string | null;
|
1208
|
+
ariaAutoComplete: string | null;
|
1209
|
+
ariaBrailleLabel: string | null;
|
1210
|
+
ariaBrailleRoleDescription: string | null;
|
1211
|
+
ariaBusy: string | null;
|
1212
|
+
ariaChecked: string | null;
|
1213
|
+
ariaColCount: string | null;
|
1214
|
+
ariaColIndex: string | null;
|
1215
|
+
ariaColIndexText: string | null;
|
1216
|
+
ariaColSpan: string | null;
|
1217
|
+
ariaCurrent: string | null;
|
1218
|
+
ariaDescription: string | null;
|
1219
|
+
ariaDisabled: string | null;
|
1220
|
+
ariaExpanded: string | null;
|
1221
|
+
ariaHasPopup: string | null;
|
1222
|
+
ariaHidden: string | null;
|
1223
|
+
ariaInvalid: string | null;
|
1224
|
+
ariaKeyShortcuts: string | null;
|
1225
|
+
ariaLabel: string | null;
|
1226
|
+
ariaLevel: string | null;
|
1227
|
+
ariaLive: string | null;
|
1228
|
+
ariaModal: string | null;
|
1229
|
+
ariaMultiLine: string | null;
|
1230
|
+
ariaMultiSelectable: string | null;
|
1231
|
+
ariaOrientation: string | null;
|
1232
|
+
ariaPlaceholder: string | null;
|
1233
|
+
ariaPosInSet: string | null;
|
1234
|
+
ariaPressed: string | null;
|
1235
|
+
ariaReadOnly: string | null;
|
1236
|
+
ariaRelevant: string | null;
|
1237
|
+
ariaRequired: string | null;
|
1238
|
+
ariaRoleDescription: string | null;
|
1239
|
+
ariaRowCount: string | null;
|
1240
|
+
ariaRowIndex: string | null;
|
1241
|
+
ariaRowIndexText: string | null;
|
1242
|
+
ariaRowSpan: string | null;
|
1243
|
+
ariaSelected: string | null;
|
1244
|
+
ariaSetSize: string | null;
|
1245
|
+
ariaSort: string | null;
|
1246
|
+
ariaValueMax: string | null;
|
1247
|
+
ariaValueMin: string | null;
|
1248
|
+
ariaValueNow: string | null;
|
1249
|
+
ariaValueText: string | null;
|
1250
|
+
role: string | null;
|
1251
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
1252
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
1253
|
+
after(...nodes: (Node | string)[]): void;
|
1254
|
+
before(...nodes: (Node | string)[]): void;
|
1255
|
+
remove(): void;
|
1256
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
1257
|
+
readonly nextElementSibling: Element | null;
|
1258
|
+
readonly previousElementSibling: Element | null;
|
1259
|
+
readonly childElementCount: number;
|
1260
|
+
readonly children: HTMLCollection;
|
1261
|
+
readonly firstElementChild: Element | null;
|
1262
|
+
readonly lastElementChild: Element | null;
|
1263
|
+
append(...nodes: (Node | string)[]): void;
|
1264
|
+
prepend(...nodes: (Node | string)[]): void;
|
1265
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
1266
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
1267
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
1268
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
1269
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
1270
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
1271
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
1272
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
1273
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
1274
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
1275
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
1276
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
1277
|
+
readonly attributeStyleMap: StylePropertyMap;
|
1278
|
+
get style(): CSSStyleDeclaration;
|
1279
|
+
set style(cssText: string);
|
1280
|
+
contentEditable: string;
|
1281
|
+
enterKeyHint: string;
|
1282
|
+
inputMode: string;
|
1283
|
+
readonly isContentEditable: boolean;
|
1284
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
1285
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
1286
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
1287
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
1288
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
1289
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1290
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
1291
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1292
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
1293
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1294
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1295
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1296
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1297
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1298
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1299
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1300
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1301
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1302
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
1303
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1304
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
1305
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1306
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1307
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1308
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1309
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1310
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1311
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1312
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
1313
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1314
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1315
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1316
|
+
onerror: OnErrorEventHandler;
|
1317
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
1318
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
1319
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1320
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1321
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1322
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
1323
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
1324
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
1325
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1326
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1327
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1328
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1329
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1330
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1331
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1332
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1333
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1334
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1335
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1336
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
1337
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
1338
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1339
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1340
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1341
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1342
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1343
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1344
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1345
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1346
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1347
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1348
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
1349
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
1350
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1351
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1352
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
1353
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1354
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1355
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
1356
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1357
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1358
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1359
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1360
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1361
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1362
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1363
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
1364
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1365
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1366
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1367
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1368
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1369
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1370
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
1371
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1372
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1373
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1374
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
1375
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1376
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1377
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1378
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1379
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1380
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
1381
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
1382
|
+
autofocus: boolean;
|
1383
|
+
readonly dataset: DOMStringMap;
|
1384
|
+
nonce?: string;
|
1385
|
+
tabIndex: number;
|
1386
|
+
blur(): void;
|
1387
|
+
focus(options?: FocusOptions): void;
|
1388
|
+
};
|
1389
|
+
"__#2@#announcer": import("../index.js").Announcer;
|
1390
|
+
} & import("../base/index.js").Constructor<HTMLElement>;
|
7
1391
|
/**
|
8
1392
|
* Wrap a `HTMLTableElement` in the `TableSort` element to have sortable column
|
9
1393
|
* headers. Set each `th` that you want to sort to the `trigger`. Set the `tbody`
|
@@ -17,8 +1401,9 @@ export type TableSortTriggerAttributes = {
|
|
17
1401
|
* datatype `number` or `boolean`, set `data-type="number"` on the corresponding
|
18
1402
|
* `th`/`trigger` element. The data will be converted to the specified type before sorting.
|
19
1403
|
*/
|
20
|
-
export declare class TableSort extends
|
1404
|
+
export declare class TableSort extends TableSort_base {
|
21
1405
|
#private;
|
22
1406
|
constructor();
|
23
1407
|
mount(): void;
|
24
1408
|
}
|
1409
|
+
export {};
|