drab 7.0.2 → 8.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/base/index.d.ts +122 -48
- package/dist/base/index.d.ts.map +1 -1
- package/dist/base/index.js +10 -7
- package/dist/contextmenu/index.d.ts +90 -35
- package/dist/contextmenu/index.d.ts.map +1 -1
- package/dist/define.d.ts +0 -1
- package/dist/define.d.ts.map +1 -1
- package/dist/define.js +0 -1
- package/dist/editor/index.d.ts +90 -35
- package/dist/editor/index.d.ts.map +1 -1
- package/dist/fullscreen/index.d.ts +90 -36
- package/dist/fullscreen/index.d.ts.map +1 -1
- package/dist/fullscreen/index.js +3 -14
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/intersect/index.d.ts +90 -36
- package/dist/intersect/index.d.ts.map +1 -1
- package/dist/intersect/index.js +1 -11
- package/dist/prefetch/index.d.ts +62 -25
- package/dist/prefetch/index.d.ts.map +1 -1
- package/dist/prefetch/index.js +17 -30
- package/dist/share/index.d.ts +120 -47
- package/dist/share/index.d.ts.map +1 -1
- package/dist/tablesort/index.d.ts +120 -47
- package/dist/tablesort/index.d.ts.map +1 -1
- package/dist/tablesort/index.js +54 -54
- package/dist/tabs/index.d.ts +61 -24
- package/dist/tabs/index.d.ts.map +1 -1
- package/dist/tabs/index.js +10 -2
- package/dist/types/index.d.ts +0 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/util/validate.d.ts.map +1 -1
- package/dist/util/validate.js +2 -1
- package/dist/wakelock/index.d.ts +120 -47
- package/dist/wakelock/index.d.ts.map +1 -1
- package/dist/wakelock/index.js +1 -2
- package/package.json +4 -4
- package/src/base/index.ts +10 -7
- package/src/contextmenu/index.ts +2 -3
- package/src/define.ts +0 -1
- package/src/editor/index.ts +1 -2
- package/src/fullscreen/index.ts +6 -18
- package/src/index.ts +0 -1
- package/src/intersect/index.ts +2 -14
- package/src/prefetch/index.ts +21 -36
- package/src/tablesort/index.ts +64 -63
- package/src/tabs/index.ts +16 -2
- package/src/types/index.ts +0 -2
- package/src/util/validate.ts +2 -1
- package/src/wakelock/index.ts +2 -5
- package/dist/dialog/define.d.ts +0 -2
- package/dist/dialog/define.d.ts.map +0 -1
- package/dist/dialog/define.js +0 -3
- package/dist/dialog/index.d.ts +0 -1079
- package/dist/dialog/index.d.ts.map +0 -1
- package/dist/dialog/index.js +0 -90
- package/src/dialog/define.ts +0 -4
- package/src/dialog/index.ts +0 -120
|
@@ -7,7 +7,7 @@ export interface TableSortTriggerAttributes {
|
|
|
7
7
|
}
|
|
8
8
|
declare const TableSort_base: {
|
|
9
9
|
new (...args: any[]): {
|
|
10
|
-
|
|
10
|
+
controller: AbortController;
|
|
11
11
|
safeListener<T extends keyof HTMLElementEventMap>(type: T, listener: (this: HTMLElement, event: HTMLElementEventMap[T]) => any, element?: HTMLElement, options?: AddEventListenerOptions): void;
|
|
12
12
|
safeListener<T extends keyof DocumentEventMap>(type: T, listener: (this: Document, event: DocumentEventMap[T]) => any, document: Document, options?: AddEventListenerOptions): void;
|
|
13
13
|
safeListener<T extends keyof WindowEventMap>(type: T, listener: (this: Window, event: WindowEventMap[T]) => any, window: Window, options?: AddEventListenerOptions): void;
|
|
@@ -18,9 +18,10 @@ declare const TableSort_base: {
|
|
|
18
18
|
accessKey: string;
|
|
19
19
|
readonly accessKeyLabel: string;
|
|
20
20
|
autocapitalize: string;
|
|
21
|
+
autocorrect: boolean;
|
|
21
22
|
dir: string;
|
|
22
23
|
draggable: boolean;
|
|
23
|
-
hidden: boolean;
|
|
24
|
+
hidden: boolean | "until-found";
|
|
24
25
|
inert: boolean;
|
|
25
26
|
innerText: string;
|
|
26
27
|
lang: string;
|
|
@@ -38,8 +39,8 @@ declare const TableSort_base: {
|
|
|
38
39
|
attachInternals(): ElementInternals;
|
|
39
40
|
click(): void;
|
|
40
41
|
hidePopover(): void;
|
|
41
|
-
showPopover(): void;
|
|
42
|
-
togglePopover(options?: boolean): boolean;
|
|
42
|
+
showPopover(options?: ShowPopoverOptions): void;
|
|
43
|
+
togglePopover(options?: TogglePopoverOptions | boolean): boolean;
|
|
43
44
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
44
45
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
45
46
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -53,6 +54,7 @@ declare const TableSort_base: {
|
|
|
53
54
|
readonly clientTop: number;
|
|
54
55
|
readonly clientWidth: number;
|
|
55
56
|
readonly currentCSSZoom: number;
|
|
57
|
+
readonly customElementRegistry: CustomElementRegistry | null;
|
|
56
58
|
id: string;
|
|
57
59
|
innerHTML: string;
|
|
58
60
|
readonly localName: string;
|
|
@@ -103,6 +105,9 @@ declare const TableSort_base: {
|
|
|
103
105
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
104
106
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
105
107
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
108
|
+
matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
|
|
109
|
+
matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
|
|
110
|
+
matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
|
|
106
111
|
matches(selectors: string): boolean;
|
|
107
112
|
releasePointerCapture(pointerId: number): void;
|
|
108
113
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -125,6 +130,8 @@ declare const TableSort_base: {
|
|
|
125
130
|
setPointerCapture(pointerId: number): void;
|
|
126
131
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
127
132
|
webkitMatchesSelector(selectors: string): boolean;
|
|
133
|
+
get textContent(): string;
|
|
134
|
+
set textContent(value: string | null);
|
|
128
135
|
readonly baseURI: string;
|
|
129
136
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
130
137
|
readonly firstChild: ChildNode | null;
|
|
@@ -137,7 +144,6 @@ declare const TableSort_base: {
|
|
|
137
144
|
readonly parentElement: HTMLElement | null;
|
|
138
145
|
readonly parentNode: ParentNode | null;
|
|
139
146
|
readonly previousSibling: ChildNode | null;
|
|
140
|
-
textContent: string | null;
|
|
141
147
|
appendChild<T extends Node>(node: T): T;
|
|
142
148
|
cloneNode(subtree?: boolean): Node;
|
|
143
149
|
compareDocumentPosition(other: Node): number;
|
|
@@ -172,6 +178,7 @@ declare const TableSort_base: {
|
|
|
172
178
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
173
179
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
174
180
|
dispatchEvent(event: Event): boolean;
|
|
181
|
+
ariaActiveDescendantElement: Element | null;
|
|
175
182
|
ariaAtomic: string | null;
|
|
176
183
|
ariaAutoComplete: string | null;
|
|
177
184
|
ariaBrailleLabel: string | null;
|
|
@@ -182,21 +189,28 @@ declare const TableSort_base: {
|
|
|
182
189
|
ariaColIndex: string | null;
|
|
183
190
|
ariaColIndexText: string | null;
|
|
184
191
|
ariaColSpan: string | null;
|
|
192
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
185
193
|
ariaCurrent: string | null;
|
|
194
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
186
195
|
ariaDescription: string | null;
|
|
196
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
187
197
|
ariaDisabled: string | null;
|
|
198
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
188
199
|
ariaExpanded: string | null;
|
|
200
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
189
201
|
ariaHasPopup: string | null;
|
|
190
202
|
ariaHidden: string | null;
|
|
191
203
|
ariaInvalid: string | null;
|
|
192
204
|
ariaKeyShortcuts: string | null;
|
|
193
205
|
ariaLabel: string | null;
|
|
206
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
194
207
|
ariaLevel: string | null;
|
|
195
208
|
ariaLive: string | null;
|
|
196
209
|
ariaModal: string | null;
|
|
197
210
|
ariaMultiLine: string | null;
|
|
198
211
|
ariaMultiSelectable: string | null;
|
|
199
212
|
ariaOrientation: string | null;
|
|
213
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
200
214
|
ariaPlaceholder: string | null;
|
|
201
215
|
ariaPosInSet: string | null;
|
|
202
216
|
ariaPressed: string | null;
|
|
@@ -229,6 +243,7 @@ declare const TableSort_base: {
|
|
|
229
243
|
readonly firstElementChild: Element | null;
|
|
230
244
|
readonly lastElementChild: Element | null;
|
|
231
245
|
append(...nodes: (Node | string)[]): void;
|
|
246
|
+
moveBefore(node: Node, child: Node | null): void;
|
|
232
247
|
prepend(...nodes: (Node | string)[]): void;
|
|
233
248
|
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
234
249
|
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
@@ -254,18 +269,20 @@ declare const TableSort_base: {
|
|
|
254
269
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
255
270
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
256
271
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
257
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
272
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
258
273
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
259
|
-
|
|
274
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
275
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
260
276
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
261
277
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
262
278
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
263
279
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
264
280
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
265
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
281
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
266
282
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
283
|
+
oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
267
284
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
268
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
285
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
269
286
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
270
287
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
271
288
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -285,7 +302,7 @@ declare const TableSort_base: {
|
|
|
285
302
|
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
286
303
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
287
304
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
288
|
-
oninput: ((this: GlobalEventHandlers, ev:
|
|
305
|
+
oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
289
306
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
290
307
|
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
291
308
|
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
@@ -313,6 +330,7 @@ declare const TableSort_base: {
|
|
|
313
330
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
314
331
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
315
332
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
333
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
316
334
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
317
335
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
318
336
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -331,7 +349,7 @@ declare const TableSort_base: {
|
|
|
331
349
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
332
350
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
333
351
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
352
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
335
353
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
336
354
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
337
355
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -349,14 +367,15 @@ declare const TableSort_base: {
|
|
|
349
367
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
350
368
|
autofocus: boolean;
|
|
351
369
|
readonly dataset: DOMStringMap;
|
|
352
|
-
nonce
|
|
370
|
+
nonce: string;
|
|
353
371
|
tabIndex: number;
|
|
354
372
|
blur(): void;
|
|
355
373
|
focus(options?: FocusOptions): void;
|
|
356
374
|
};
|
|
357
375
|
} & {
|
|
358
376
|
new (...args: any[]): {
|
|
359
|
-
event: keyof HTMLElementEventMap;
|
|
377
|
+
get event(): keyof HTMLElementEventMap;
|
|
378
|
+
set event(value: keyof HTMLElementEventMap);
|
|
360
379
|
triggers<T extends HTMLElement>(instance: import("../base/index.js").Constructor<T>): NodeListOf<T>;
|
|
361
380
|
triggers(): NodeListOf<HTMLElement>;
|
|
362
381
|
listener<T extends keyof HTMLElementEventMap>(listener: (this: HTMLElement, e: HTMLElementEventMap[T]) => any, options?: AddEventListenerOptions): void;
|
|
@@ -364,9 +383,10 @@ declare const TableSort_base: {
|
|
|
364
383
|
accessKey: string;
|
|
365
384
|
readonly accessKeyLabel: string;
|
|
366
385
|
autocapitalize: string;
|
|
386
|
+
autocorrect: boolean;
|
|
367
387
|
dir: string;
|
|
368
388
|
draggable: boolean;
|
|
369
|
-
hidden: boolean;
|
|
389
|
+
hidden: boolean | "until-found";
|
|
370
390
|
inert: boolean;
|
|
371
391
|
innerText: string;
|
|
372
392
|
lang: string;
|
|
@@ -384,8 +404,8 @@ declare const TableSort_base: {
|
|
|
384
404
|
attachInternals(): ElementInternals;
|
|
385
405
|
click(): void;
|
|
386
406
|
hidePopover(): void;
|
|
387
|
-
showPopover(): void;
|
|
388
|
-
togglePopover(options?: boolean): boolean;
|
|
407
|
+
showPopover(options?: ShowPopoverOptions): void;
|
|
408
|
+
togglePopover(options?: TogglePopoverOptions | boolean): boolean;
|
|
389
409
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
390
410
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
391
411
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -399,6 +419,7 @@ declare const TableSort_base: {
|
|
|
399
419
|
readonly clientTop: number;
|
|
400
420
|
readonly clientWidth: number;
|
|
401
421
|
readonly currentCSSZoom: number;
|
|
422
|
+
readonly customElementRegistry: CustomElementRegistry | null;
|
|
402
423
|
id: string;
|
|
403
424
|
innerHTML: string;
|
|
404
425
|
readonly localName: string;
|
|
@@ -449,6 +470,9 @@ declare const TableSort_base: {
|
|
|
449
470
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
450
471
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
451
472
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
473
|
+
matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
|
|
474
|
+
matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
|
|
475
|
+
matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
|
|
452
476
|
matches(selectors: string): boolean;
|
|
453
477
|
releasePointerCapture(pointerId: number): void;
|
|
454
478
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -471,6 +495,8 @@ declare const TableSort_base: {
|
|
|
471
495
|
setPointerCapture(pointerId: number): void;
|
|
472
496
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
473
497
|
webkitMatchesSelector(selectors: string): boolean;
|
|
498
|
+
get textContent(): string;
|
|
499
|
+
set textContent(value: string | null);
|
|
474
500
|
readonly baseURI: string;
|
|
475
501
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
476
502
|
readonly firstChild: ChildNode | null;
|
|
@@ -483,7 +509,6 @@ declare const TableSort_base: {
|
|
|
483
509
|
readonly parentElement: HTMLElement | null;
|
|
484
510
|
readonly parentNode: ParentNode | null;
|
|
485
511
|
readonly previousSibling: ChildNode | null;
|
|
486
|
-
textContent: string | null;
|
|
487
512
|
appendChild<T extends Node>(node: T): T;
|
|
488
513
|
cloneNode(subtree?: boolean): Node;
|
|
489
514
|
compareDocumentPosition(other: Node): number;
|
|
@@ -518,6 +543,7 @@ declare const TableSort_base: {
|
|
|
518
543
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
519
544
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
520
545
|
dispatchEvent(event: Event): boolean;
|
|
546
|
+
ariaActiveDescendantElement: Element | null;
|
|
521
547
|
ariaAtomic: string | null;
|
|
522
548
|
ariaAutoComplete: string | null;
|
|
523
549
|
ariaBrailleLabel: string | null;
|
|
@@ -528,21 +554,28 @@ declare const TableSort_base: {
|
|
|
528
554
|
ariaColIndex: string | null;
|
|
529
555
|
ariaColIndexText: string | null;
|
|
530
556
|
ariaColSpan: string | null;
|
|
557
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
531
558
|
ariaCurrent: string | null;
|
|
559
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
532
560
|
ariaDescription: string | null;
|
|
561
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
533
562
|
ariaDisabled: string | null;
|
|
563
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
534
564
|
ariaExpanded: string | null;
|
|
565
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
535
566
|
ariaHasPopup: string | null;
|
|
536
567
|
ariaHidden: string | null;
|
|
537
568
|
ariaInvalid: string | null;
|
|
538
569
|
ariaKeyShortcuts: string | null;
|
|
539
570
|
ariaLabel: string | null;
|
|
571
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
540
572
|
ariaLevel: string | null;
|
|
541
573
|
ariaLive: string | null;
|
|
542
574
|
ariaModal: string | null;
|
|
543
575
|
ariaMultiLine: string | null;
|
|
544
576
|
ariaMultiSelectable: string | null;
|
|
545
577
|
ariaOrientation: string | null;
|
|
578
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
546
579
|
ariaPlaceholder: string | null;
|
|
547
580
|
ariaPosInSet: string | null;
|
|
548
581
|
ariaPressed: string | null;
|
|
@@ -575,6 +608,7 @@ declare const TableSort_base: {
|
|
|
575
608
|
readonly firstElementChild: Element | null;
|
|
576
609
|
readonly lastElementChild: Element | null;
|
|
577
610
|
append(...nodes: (Node | string)[]): void;
|
|
611
|
+
moveBefore(node: Node, child: Node | null): void;
|
|
578
612
|
prepend(...nodes: (Node | string)[]): void;
|
|
579
613
|
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
580
614
|
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
@@ -600,18 +634,20 @@ declare const TableSort_base: {
|
|
|
600
634
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
601
635
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
602
636
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
603
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
637
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
604
638
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
605
|
-
|
|
639
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
640
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
606
641
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
607
642
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
608
643
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
609
644
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
610
645
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
611
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
646
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
612
647
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
648
|
+
oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
613
649
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
614
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
650
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
615
651
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
616
652
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
617
653
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -631,7 +667,7 @@ declare const TableSort_base: {
|
|
|
631
667
|
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
632
668
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
633
669
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
634
|
-
oninput: ((this: GlobalEventHandlers, ev:
|
|
670
|
+
oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
635
671
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
636
672
|
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
637
673
|
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
@@ -659,6 +695,7 @@ declare const TableSort_base: {
|
|
|
659
695
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
660
696
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
661
697
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
698
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
662
699
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
663
700
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
664
701
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -677,7 +714,7 @@ declare const TableSort_base: {
|
|
|
677
714
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
678
715
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
679
716
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
680
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
717
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
681
718
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
682
719
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
683
720
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -695,7 +732,7 @@ declare const TableSort_base: {
|
|
|
695
732
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
696
733
|
autofocus: boolean;
|
|
697
734
|
readonly dataset: DOMStringMap;
|
|
698
|
-
nonce
|
|
735
|
+
nonce: string;
|
|
699
736
|
tabIndex: number;
|
|
700
737
|
blur(): void;
|
|
701
738
|
focus(options?: FocusOptions): void;
|
|
@@ -708,9 +745,10 @@ declare const TableSort_base: {
|
|
|
708
745
|
accessKey: string;
|
|
709
746
|
readonly accessKeyLabel: string;
|
|
710
747
|
autocapitalize: string;
|
|
748
|
+
autocorrect: boolean;
|
|
711
749
|
dir: string;
|
|
712
750
|
draggable: boolean;
|
|
713
|
-
hidden: boolean;
|
|
751
|
+
hidden: boolean | "until-found";
|
|
714
752
|
inert: boolean;
|
|
715
753
|
innerText: string;
|
|
716
754
|
lang: string;
|
|
@@ -728,8 +766,8 @@ declare const TableSort_base: {
|
|
|
728
766
|
attachInternals(): ElementInternals;
|
|
729
767
|
click(): void;
|
|
730
768
|
hidePopover(): void;
|
|
731
|
-
showPopover(): void;
|
|
732
|
-
togglePopover(options?: boolean): boolean;
|
|
769
|
+
showPopover(options?: ShowPopoverOptions): void;
|
|
770
|
+
togglePopover(options?: TogglePopoverOptions | boolean): boolean;
|
|
733
771
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
734
772
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
735
773
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -743,6 +781,7 @@ declare const TableSort_base: {
|
|
|
743
781
|
readonly clientTop: number;
|
|
744
782
|
readonly clientWidth: number;
|
|
745
783
|
readonly currentCSSZoom: number;
|
|
784
|
+
readonly customElementRegistry: CustomElementRegistry | null;
|
|
746
785
|
id: string;
|
|
747
786
|
innerHTML: string;
|
|
748
787
|
readonly localName: string;
|
|
@@ -793,6 +832,9 @@ declare const TableSort_base: {
|
|
|
793
832
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
794
833
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
795
834
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
835
|
+
matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
|
|
836
|
+
matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
|
|
837
|
+
matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
|
|
796
838
|
matches(selectors: string): boolean;
|
|
797
839
|
releasePointerCapture(pointerId: number): void;
|
|
798
840
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -815,6 +857,8 @@ declare const TableSort_base: {
|
|
|
815
857
|
setPointerCapture(pointerId: number): void;
|
|
816
858
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
817
859
|
webkitMatchesSelector(selectors: string): boolean;
|
|
860
|
+
get textContent(): string;
|
|
861
|
+
set textContent(value: string | null);
|
|
818
862
|
readonly baseURI: string;
|
|
819
863
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
820
864
|
readonly firstChild: ChildNode | null;
|
|
@@ -827,7 +871,6 @@ declare const TableSort_base: {
|
|
|
827
871
|
readonly parentElement: HTMLElement | null;
|
|
828
872
|
readonly parentNode: ParentNode | null;
|
|
829
873
|
readonly previousSibling: ChildNode | null;
|
|
830
|
-
textContent: string | null;
|
|
831
874
|
appendChild<T extends Node>(node: T): T;
|
|
832
875
|
cloneNode(subtree?: boolean): Node;
|
|
833
876
|
compareDocumentPosition(other: Node): number;
|
|
@@ -862,6 +905,7 @@ declare const TableSort_base: {
|
|
|
862
905
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
863
906
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
864
907
|
dispatchEvent(event: Event): boolean;
|
|
908
|
+
ariaActiveDescendantElement: Element | null;
|
|
865
909
|
ariaAtomic: string | null;
|
|
866
910
|
ariaAutoComplete: string | null;
|
|
867
911
|
ariaBrailleLabel: string | null;
|
|
@@ -872,21 +916,28 @@ declare const TableSort_base: {
|
|
|
872
916
|
ariaColIndex: string | null;
|
|
873
917
|
ariaColIndexText: string | null;
|
|
874
918
|
ariaColSpan: string | null;
|
|
919
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
875
920
|
ariaCurrent: string | null;
|
|
921
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
876
922
|
ariaDescription: string | null;
|
|
923
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
877
924
|
ariaDisabled: string | null;
|
|
925
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
878
926
|
ariaExpanded: string | null;
|
|
927
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
879
928
|
ariaHasPopup: string | null;
|
|
880
929
|
ariaHidden: string | null;
|
|
881
930
|
ariaInvalid: string | null;
|
|
882
931
|
ariaKeyShortcuts: string | null;
|
|
883
932
|
ariaLabel: string | null;
|
|
933
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
884
934
|
ariaLevel: string | null;
|
|
885
935
|
ariaLive: string | null;
|
|
886
936
|
ariaModal: string | null;
|
|
887
937
|
ariaMultiLine: string | null;
|
|
888
938
|
ariaMultiSelectable: string | null;
|
|
889
939
|
ariaOrientation: string | null;
|
|
940
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
890
941
|
ariaPlaceholder: string | null;
|
|
891
942
|
ariaPosInSet: string | null;
|
|
892
943
|
ariaPressed: string | null;
|
|
@@ -919,6 +970,7 @@ declare const TableSort_base: {
|
|
|
919
970
|
readonly firstElementChild: Element | null;
|
|
920
971
|
readonly lastElementChild: Element | null;
|
|
921
972
|
append(...nodes: (Node | string)[]): void;
|
|
973
|
+
moveBefore(node: Node, child: Node | null): void;
|
|
922
974
|
prepend(...nodes: (Node | string)[]): void;
|
|
923
975
|
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
924
976
|
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
@@ -944,18 +996,20 @@ declare const TableSort_base: {
|
|
|
944
996
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
945
997
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
946
998
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
947
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
999
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
948
1000
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
949
|
-
|
|
1001
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1002
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
950
1003
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
951
1004
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
952
1005
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
953
1006
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
954
1007
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
955
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
1008
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
956
1009
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1010
|
+
oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
957
1011
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
958
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
1012
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
959
1013
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
960
1014
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
961
1015
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -975,7 +1029,7 @@ declare const TableSort_base: {
|
|
|
975
1029
|
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
976
1030
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
977
1031
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
978
|
-
oninput: ((this: GlobalEventHandlers, ev:
|
|
1032
|
+
oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
979
1033
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
980
1034
|
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
981
1035
|
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
@@ -1003,6 +1057,7 @@ declare const TableSort_base: {
|
|
|
1003
1057
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1004
1058
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1005
1059
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1060
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1006
1061
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1007
1062
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
1008
1063
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -1021,7 +1076,7 @@ declare const TableSort_base: {
|
|
|
1021
1076
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
1022
1077
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1023
1078
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1024
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
1079
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
1025
1080
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1026
1081
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1027
1082
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -1039,7 +1094,7 @@ declare const TableSort_base: {
|
|
|
1039
1094
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
1040
1095
|
autofocus: boolean;
|
|
1041
1096
|
readonly dataset: DOMStringMap;
|
|
1042
|
-
nonce
|
|
1097
|
+
nonce: string;
|
|
1043
1098
|
tabIndex: number;
|
|
1044
1099
|
blur(): void;
|
|
1045
1100
|
focus(options?: FocusOptions): void;
|
|
@@ -1050,9 +1105,10 @@ declare const TableSort_base: {
|
|
|
1050
1105
|
accessKey: string;
|
|
1051
1106
|
readonly accessKeyLabel: string;
|
|
1052
1107
|
autocapitalize: string;
|
|
1108
|
+
autocorrect: boolean;
|
|
1053
1109
|
dir: string;
|
|
1054
1110
|
draggable: boolean;
|
|
1055
|
-
hidden: boolean;
|
|
1111
|
+
hidden: boolean | "until-found";
|
|
1056
1112
|
inert: boolean;
|
|
1057
1113
|
innerText: string;
|
|
1058
1114
|
lang: string;
|
|
@@ -1070,8 +1126,8 @@ declare const TableSort_base: {
|
|
|
1070
1126
|
attachInternals(): ElementInternals;
|
|
1071
1127
|
click(): void;
|
|
1072
1128
|
hidePopover(): void;
|
|
1073
|
-
showPopover(): void;
|
|
1074
|
-
togglePopover(options?: boolean): boolean;
|
|
1129
|
+
showPopover(options?: ShowPopoverOptions): void;
|
|
1130
|
+
togglePopover(options?: TogglePopoverOptions | boolean): boolean;
|
|
1075
1131
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1076
1132
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1077
1133
|
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -1085,6 +1141,7 @@ declare const TableSort_base: {
|
|
|
1085
1141
|
readonly clientTop: number;
|
|
1086
1142
|
readonly clientWidth: number;
|
|
1087
1143
|
readonly currentCSSZoom: number;
|
|
1144
|
+
readonly customElementRegistry: CustomElementRegistry | null;
|
|
1088
1145
|
id: string;
|
|
1089
1146
|
innerHTML: string;
|
|
1090
1147
|
readonly localName: string;
|
|
@@ -1135,6 +1192,9 @@ declare const TableSort_base: {
|
|
|
1135
1192
|
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
1136
1193
|
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
1137
1194
|
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
1195
|
+
matches<K extends keyof HTMLElementTagNameMap>(selectors: K): this is HTMLElementTagNameMap[K];
|
|
1196
|
+
matches<K extends keyof SVGElementTagNameMap>(selectors: K): this is SVGElementTagNameMap[K];
|
|
1197
|
+
matches<K extends keyof MathMLElementTagNameMap>(selectors: K): this is MathMLElementTagNameMap[K];
|
|
1138
1198
|
matches(selectors: string): boolean;
|
|
1139
1199
|
releasePointerCapture(pointerId: number): void;
|
|
1140
1200
|
removeAttribute(qualifiedName: string): void;
|
|
@@ -1157,6 +1217,8 @@ declare const TableSort_base: {
|
|
|
1157
1217
|
setPointerCapture(pointerId: number): void;
|
|
1158
1218
|
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
1159
1219
|
webkitMatchesSelector(selectors: string): boolean;
|
|
1220
|
+
get textContent(): string;
|
|
1221
|
+
set textContent(value: string | null);
|
|
1160
1222
|
readonly baseURI: string;
|
|
1161
1223
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
1162
1224
|
readonly firstChild: ChildNode | null;
|
|
@@ -1169,7 +1231,6 @@ declare const TableSort_base: {
|
|
|
1169
1231
|
readonly parentElement: HTMLElement | null;
|
|
1170
1232
|
readonly parentNode: ParentNode | null;
|
|
1171
1233
|
readonly previousSibling: ChildNode | null;
|
|
1172
|
-
textContent: string | null;
|
|
1173
1234
|
appendChild<T extends Node>(node: T): T;
|
|
1174
1235
|
cloneNode(subtree?: boolean): Node;
|
|
1175
1236
|
compareDocumentPosition(other: Node): number;
|
|
@@ -1204,6 +1265,7 @@ declare const TableSort_base: {
|
|
|
1204
1265
|
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1205
1266
|
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1206
1267
|
dispatchEvent(event: Event): boolean;
|
|
1268
|
+
ariaActiveDescendantElement: Element | null;
|
|
1207
1269
|
ariaAtomic: string | null;
|
|
1208
1270
|
ariaAutoComplete: string | null;
|
|
1209
1271
|
ariaBrailleLabel: string | null;
|
|
@@ -1214,21 +1276,28 @@ declare const TableSort_base: {
|
|
|
1214
1276
|
ariaColIndex: string | null;
|
|
1215
1277
|
ariaColIndexText: string | null;
|
|
1216
1278
|
ariaColSpan: string | null;
|
|
1279
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
1217
1280
|
ariaCurrent: string | null;
|
|
1281
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
1218
1282
|
ariaDescription: string | null;
|
|
1283
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
1219
1284
|
ariaDisabled: string | null;
|
|
1285
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
1220
1286
|
ariaExpanded: string | null;
|
|
1287
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
1221
1288
|
ariaHasPopup: string | null;
|
|
1222
1289
|
ariaHidden: string | null;
|
|
1223
1290
|
ariaInvalid: string | null;
|
|
1224
1291
|
ariaKeyShortcuts: string | null;
|
|
1225
1292
|
ariaLabel: string | null;
|
|
1293
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
1226
1294
|
ariaLevel: string | null;
|
|
1227
1295
|
ariaLive: string | null;
|
|
1228
1296
|
ariaModal: string | null;
|
|
1229
1297
|
ariaMultiLine: string | null;
|
|
1230
1298
|
ariaMultiSelectable: string | null;
|
|
1231
1299
|
ariaOrientation: string | null;
|
|
1300
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
1232
1301
|
ariaPlaceholder: string | null;
|
|
1233
1302
|
ariaPosInSet: string | null;
|
|
1234
1303
|
ariaPressed: string | null;
|
|
@@ -1261,6 +1330,7 @@ declare const TableSort_base: {
|
|
|
1261
1330
|
readonly firstElementChild: Element | null;
|
|
1262
1331
|
readonly lastElementChild: Element | null;
|
|
1263
1332
|
append(...nodes: (Node | string)[]): void;
|
|
1333
|
+
moveBefore(node: Node, child: Node | null): void;
|
|
1264
1334
|
prepend(...nodes: (Node | string)[]): void;
|
|
1265
1335
|
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
1266
1336
|
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
@@ -1286,18 +1356,20 @@ declare const TableSort_base: {
|
|
|
1286
1356
|
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1287
1357
|
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1288
1358
|
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
1289
|
-
onauxclick: ((this: GlobalEventHandlers, ev:
|
|
1359
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1290
1360
|
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
1291
|
-
|
|
1361
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1362
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
1292
1363
|
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
1293
1364
|
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1294
1365
|
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1295
1366
|
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1296
1367
|
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1297
|
-
onclick: ((this: GlobalEventHandlers, ev:
|
|
1368
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1298
1369
|
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1370
|
+
oncommand: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1299
1371
|
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1300
|
-
oncontextmenu: ((this: GlobalEventHandlers, ev:
|
|
1372
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1301
1373
|
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1302
1374
|
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
1303
1375
|
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -1317,7 +1389,7 @@ declare const TableSort_base: {
|
|
|
1317
1389
|
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
1318
1390
|
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
1319
1391
|
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1320
|
-
oninput: ((this: GlobalEventHandlers, ev:
|
|
1392
|
+
oninput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
1321
1393
|
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1322
1394
|
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
1323
1395
|
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
@@ -1345,6 +1417,7 @@ declare const TableSort_base: {
|
|
|
1345
1417
|
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1346
1418
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1347
1419
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1420
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1348
1421
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
1349
1422
|
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
1350
1423
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
@@ -1363,7 +1436,7 @@ declare const TableSort_base: {
|
|
|
1363
1436
|
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
1364
1437
|
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1365
1438
|
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
1366
|
-
ontoggle: ((this: GlobalEventHandlers, ev:
|
|
1439
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
1367
1440
|
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1368
1441
|
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
1369
1442
|
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
@@ -1381,12 +1454,12 @@ declare const TableSort_base: {
|
|
|
1381
1454
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
1382
1455
|
autofocus: boolean;
|
|
1383
1456
|
readonly dataset: DOMStringMap;
|
|
1384
|
-
nonce
|
|
1457
|
+
nonce: string;
|
|
1385
1458
|
tabIndex: number;
|
|
1386
1459
|
blur(): void;
|
|
1387
1460
|
focus(options?: FocusOptions): void;
|
|
1388
1461
|
};
|
|
1389
|
-
|
|
1462
|
+
announcer: import("../index.js").Announcer;
|
|
1390
1463
|
} & import("../base/index.js").Constructor<HTMLElement>;
|
|
1391
1464
|
/**
|
|
1392
1465
|
* Wrap a `HTMLTableElement` in the `TableSort` element to have sortable column
|