@descope/sdk-mixins 0.2.43 → 0.3.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/cjs/index.cjs.js +71 -47
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/index.d.ts +921 -632
- package/dist/index.esm.js +71 -47
- package/dist/index.esm.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="sdk-component-drivers" />
|
|
2
1
|
import { ModalDriver } from '@descope/sdk-component-drivers';
|
|
3
2
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
4
3
|
import { SliceCaseReducers, SliceSelectors, CreateSliceOptions, Draft } from '@reduxjs/toolkit';
|
|
@@ -57,8 +56,8 @@ interface ProjectConfiguration {
|
|
|
57
56
|
declare const configMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
58
57
|
new (...params: any[]): {
|
|
59
58
|
readonly config: any;
|
|
60
|
-
"__#
|
|
61
|
-
"__#
|
|
59
|
+
"__#12326@#_configResource": any;
|
|
60
|
+
"__#12326@#fetchConfig": () => Promise<{
|
|
62
61
|
projectConfig: ProjectConfiguration;
|
|
63
62
|
executionContext: {
|
|
64
63
|
geo: string;
|
|
@@ -85,11 +84,15 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
85
84
|
readonly offsetTop: number;
|
|
86
85
|
readonly offsetWidth: number;
|
|
87
86
|
outerText: string;
|
|
87
|
+
popover: string;
|
|
88
88
|
spellcheck: boolean;
|
|
89
89
|
title: string;
|
|
90
90
|
translate: boolean;
|
|
91
91
|
attachInternals(): ElementInternals;
|
|
92
92
|
click(): void;
|
|
93
|
+
hidePopover(): void;
|
|
94
|
+
showPopover(): void;
|
|
95
|
+
togglePopover(force?: boolean): boolean;
|
|
93
96
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
94
97
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
95
98
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -120,9 +123,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
120
123
|
slot: string;
|
|
121
124
|
readonly tagName: string;
|
|
122
125
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
126
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
123
127
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
124
128
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
129
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
125
130
|
closest<E extends Element = Element>(selectors: string): E;
|
|
131
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
126
132
|
getAttribute(qualifiedName: string): string;
|
|
127
133
|
getAttributeNS(namespace: string, localName: string): string;
|
|
128
134
|
getAttributeNames(): string[];
|
|
@@ -131,11 +137,14 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
131
137
|
getBoundingClientRect(): DOMRect;
|
|
132
138
|
getClientRects(): DOMRectList;
|
|
133
139
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
134
|
-
getElementsByTagName<
|
|
135
|
-
getElementsByTagName<
|
|
140
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
141
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
142
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
143
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
136
144
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
137
145
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
138
146
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
147
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
139
148
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
140
149
|
hasAttribute(qualifiedName: string): boolean;
|
|
141
150
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -193,24 +202,24 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
193
202
|
normalize(): void;
|
|
194
203
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
195
204
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
196
|
-
readonly
|
|
197
|
-
readonly
|
|
198
|
-
readonly
|
|
199
|
-
readonly
|
|
200
|
-
readonly
|
|
201
|
-
readonly
|
|
202
|
-
readonly
|
|
203
|
-
readonly
|
|
204
|
-
readonly
|
|
205
|
-
readonly
|
|
206
|
-
readonly
|
|
207
|
-
readonly
|
|
208
|
-
readonly
|
|
209
|
-
readonly
|
|
210
|
-
readonly
|
|
211
|
-
readonly
|
|
212
|
-
readonly
|
|
213
|
-
readonly
|
|
205
|
+
readonly ELEMENT_NODE: 1;
|
|
206
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
207
|
+
readonly TEXT_NODE: 3;
|
|
208
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
209
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
210
|
+
readonly ENTITY_NODE: 6;
|
|
211
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
212
|
+
readonly COMMENT_NODE: 8;
|
|
213
|
+
readonly DOCUMENT_NODE: 9;
|
|
214
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
215
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
216
|
+
readonly NOTATION_NODE: 12;
|
|
217
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
218
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
219
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
220
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
221
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
222
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
214
223
|
dispatchEvent(event: Event): boolean;
|
|
215
224
|
ariaAtomic: string;
|
|
216
225
|
ariaAutoComplete: string;
|
|
@@ -218,9 +227,9 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
218
227
|
ariaChecked: string;
|
|
219
228
|
ariaColCount: string;
|
|
220
229
|
ariaColIndex: string;
|
|
221
|
-
ariaColIndexText: string;
|
|
222
230
|
ariaColSpan: string;
|
|
223
231
|
ariaCurrent: string;
|
|
232
|
+
ariaDescription: string;
|
|
224
233
|
ariaDisabled: string;
|
|
225
234
|
ariaExpanded: string;
|
|
226
235
|
ariaHasPopup: string;
|
|
@@ -242,7 +251,6 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
242
251
|
ariaRoleDescription: string;
|
|
243
252
|
ariaRowCount: string;
|
|
244
253
|
ariaRowIndex: string;
|
|
245
|
-
ariaRowIndexText: string;
|
|
246
254
|
ariaRowSpan: string;
|
|
247
255
|
ariaSelected: string;
|
|
248
256
|
ariaSetSize: string;
|
|
@@ -267,17 +275,19 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
267
275
|
readonly lastElementChild: Element;
|
|
268
276
|
append(...nodes: (string | Node)[]): void;
|
|
269
277
|
prepend(...nodes: (string | Node)[]): void;
|
|
270
|
-
querySelector<
|
|
271
|
-
querySelector<
|
|
278
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
279
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
280
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
281
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
272
282
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
273
|
-
querySelectorAll<
|
|
274
|
-
querySelectorAll<
|
|
283
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
284
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
285
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
286
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
275
287
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
276
288
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
277
289
|
readonly assignedSlot: HTMLSlotElement;
|
|
278
|
-
|
|
279
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
280
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
290
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
281
291
|
readonly style: CSSStyleDeclaration;
|
|
282
292
|
contentEditable: string;
|
|
283
293
|
enterKeyHint: string;
|
|
@@ -290,6 +300,7 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
290
300
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
291
301
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
292
302
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
303
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
293
304
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
294
305
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
295
306
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -298,7 +309,9 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
298
309
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
299
310
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
300
311
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
312
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
301
313
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
314
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
302
315
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
303
316
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
304
317
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -331,6 +344,7 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
331
344
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
332
345
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
333
346
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
347
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
334
348
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
335
349
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
336
350
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -347,6 +361,7 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
347
361
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
348
362
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
349
363
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
364
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
350
365
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
351
366
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
352
367
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -381,15 +396,16 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
381
396
|
blur(): void;
|
|
382
397
|
focus(options?: FocusOptions): void;
|
|
383
398
|
readonly projectId: string;
|
|
384
|
-
"__#
|
|
399
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
385
400
|
init(): Promise<void>;
|
|
386
|
-
"__#
|
|
401
|
+
"__#12324@#observeMappings": {};
|
|
387
402
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
388
403
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
389
|
-
"__#
|
|
390
|
-
"__#
|
|
391
|
-
"__#
|
|
392
|
-
logger: Logger;
|
|
404
|
+
"__#12323@#isInit": boolean;
|
|
405
|
+
"__#12322@#logger": Logger;
|
|
406
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
407
|
+
get logger(): Logger;
|
|
408
|
+
set logger(logger: Partial<Logger>);
|
|
393
409
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
394
410
|
};
|
|
395
411
|
} & T;
|
|
@@ -397,12 +413,12 @@ declare const configMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
397
413
|
declare const createValidateAttributesMixin: {
|
|
398
414
|
(mappings: Record<string, CheckValueFn | string>): <T extends CustomElementConstructor>(superclass: T) => {
|
|
399
415
|
new (...args: any): {
|
|
400
|
-
"__#
|
|
416
|
+
"__#12325@#handleError"(attrName: string, newValue: string | null): void;
|
|
401
417
|
init(): Promise<void>;
|
|
402
|
-
"__#
|
|
418
|
+
"__#12324@#observeMappings": {};
|
|
403
419
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
404
420
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
405
|
-
"__#
|
|
421
|
+
"__#12323@#isInit": boolean;
|
|
406
422
|
connectedCallback: (() => void) & (() => void) & (() => void);
|
|
407
423
|
accessKey: string;
|
|
408
424
|
readonly accessKeyLabel: string;
|
|
@@ -419,11 +435,15 @@ declare const createValidateAttributesMixin: {
|
|
|
419
435
|
readonly offsetTop: number;
|
|
420
436
|
readonly offsetWidth: number;
|
|
421
437
|
outerText: string;
|
|
438
|
+
popover: string;
|
|
422
439
|
spellcheck: boolean;
|
|
423
440
|
title: string;
|
|
424
441
|
translate: boolean;
|
|
425
442
|
attachInternals(): ElementInternals;
|
|
426
443
|
click(): void;
|
|
444
|
+
hidePopover(): void;
|
|
445
|
+
showPopover(): void;
|
|
446
|
+
togglePopover(force?: boolean): boolean;
|
|
427
447
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
428
448
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
429
449
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -453,9 +473,12 @@ declare const createValidateAttributesMixin: {
|
|
|
453
473
|
slot: string;
|
|
454
474
|
readonly tagName: string;
|
|
455
475
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
476
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
456
477
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
457
478
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
479
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
458
480
|
closest<E extends Element = Element>(selectors: string): E;
|
|
481
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
459
482
|
getAttribute(qualifiedName: string): string;
|
|
460
483
|
getAttributeNS(namespace: string, localName: string): string;
|
|
461
484
|
getAttributeNames(): string[];
|
|
@@ -464,11 +487,14 @@ declare const createValidateAttributesMixin: {
|
|
|
464
487
|
getBoundingClientRect(): DOMRect;
|
|
465
488
|
getClientRects(): DOMRectList;
|
|
466
489
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
467
|
-
getElementsByTagName<
|
|
468
|
-
getElementsByTagName<
|
|
490
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
491
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
492
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
493
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
469
494
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
470
495
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
471
496
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
497
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
472
498
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
473
499
|
hasAttribute(qualifiedName: string): boolean;
|
|
474
500
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -526,24 +552,24 @@ declare const createValidateAttributesMixin: {
|
|
|
526
552
|
normalize(): void;
|
|
527
553
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
528
554
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
529
|
-
readonly
|
|
530
|
-
readonly
|
|
531
|
-
readonly
|
|
532
|
-
readonly
|
|
533
|
-
readonly
|
|
534
|
-
readonly
|
|
535
|
-
readonly
|
|
536
|
-
readonly
|
|
537
|
-
readonly
|
|
538
|
-
readonly
|
|
539
|
-
readonly
|
|
540
|
-
readonly
|
|
541
|
-
readonly
|
|
542
|
-
readonly
|
|
543
|
-
readonly
|
|
544
|
-
readonly
|
|
545
|
-
readonly
|
|
546
|
-
readonly
|
|
555
|
+
readonly ELEMENT_NODE: 1;
|
|
556
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
557
|
+
readonly TEXT_NODE: 3;
|
|
558
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
559
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
560
|
+
readonly ENTITY_NODE: 6;
|
|
561
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
562
|
+
readonly COMMENT_NODE: 8;
|
|
563
|
+
readonly DOCUMENT_NODE: 9;
|
|
564
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
565
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
566
|
+
readonly NOTATION_NODE: 12;
|
|
567
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
568
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
569
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
570
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
571
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
572
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
547
573
|
dispatchEvent(event: Event): boolean;
|
|
548
574
|
ariaAtomic: string;
|
|
549
575
|
ariaAutoComplete: string;
|
|
@@ -551,9 +577,9 @@ declare const createValidateAttributesMixin: {
|
|
|
551
577
|
ariaChecked: string;
|
|
552
578
|
ariaColCount: string;
|
|
553
579
|
ariaColIndex: string;
|
|
554
|
-
ariaColIndexText: string;
|
|
555
580
|
ariaColSpan: string;
|
|
556
581
|
ariaCurrent: string;
|
|
582
|
+
ariaDescription: string;
|
|
557
583
|
ariaDisabled: string;
|
|
558
584
|
ariaExpanded: string;
|
|
559
585
|
ariaHasPopup: string;
|
|
@@ -575,7 +601,6 @@ declare const createValidateAttributesMixin: {
|
|
|
575
601
|
ariaRoleDescription: string;
|
|
576
602
|
ariaRowCount: string;
|
|
577
603
|
ariaRowIndex: string;
|
|
578
|
-
ariaRowIndexText: string;
|
|
579
604
|
ariaRowSpan: string;
|
|
580
605
|
ariaSelected: string;
|
|
581
606
|
ariaSetSize: string;
|
|
@@ -600,17 +625,19 @@ declare const createValidateAttributesMixin: {
|
|
|
600
625
|
readonly lastElementChild: Element;
|
|
601
626
|
append(...nodes: (string | Node)[]): void;
|
|
602
627
|
prepend(...nodes: (string | Node)[]): void;
|
|
603
|
-
querySelector<
|
|
604
|
-
querySelector<
|
|
628
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
629
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
630
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
631
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
605
632
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
606
|
-
querySelectorAll<
|
|
607
|
-
querySelectorAll<
|
|
633
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
634
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
635
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
636
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
608
637
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
609
638
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
610
639
|
readonly assignedSlot: HTMLSlotElement;
|
|
611
|
-
|
|
612
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
613
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
640
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
614
641
|
readonly style: CSSStyleDeclaration;
|
|
615
642
|
contentEditable: string;
|
|
616
643
|
enterKeyHint: string;
|
|
@@ -623,6 +650,7 @@ declare const createValidateAttributesMixin: {
|
|
|
623
650
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
624
651
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
625
652
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
653
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
626
654
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
627
655
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
628
656
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -631,7 +659,9 @@ declare const createValidateAttributesMixin: {
|
|
|
631
659
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
632
660
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
633
661
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
662
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
634
663
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
664
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
635
665
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
636
666
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
637
667
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -664,6 +694,7 @@ declare const createValidateAttributesMixin: {
|
|
|
664
694
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
665
695
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
666
696
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
697
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
667
698
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
668
699
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
669
700
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -680,6 +711,7 @@ declare const createValidateAttributesMixin: {
|
|
|
680
711
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
681
712
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
682
713
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
714
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
683
715
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
684
716
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
685
717
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -713,9 +745,10 @@ declare const createValidateAttributesMixin: {
|
|
|
713
745
|
tabIndex: number;
|
|
714
746
|
blur(): void;
|
|
715
747
|
focus(options?: FocusOptions): void;
|
|
716
|
-
"__#
|
|
717
|
-
"__#
|
|
718
|
-
logger: Logger;
|
|
748
|
+
"__#12322@#logger": Logger;
|
|
749
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
750
|
+
get logger(): Logger;
|
|
751
|
+
set logger(logger: Partial<Logger>);
|
|
719
752
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
720
753
|
};
|
|
721
754
|
} & T;
|
|
@@ -727,9 +760,10 @@ declare const logLevels: readonly ["error", "warn", "info", "debug"];
|
|
|
727
760
|
type LogLevel = (typeof logLevels)[number];
|
|
728
761
|
declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
729
762
|
new (...params: any[]): {
|
|
730
|
-
"__#
|
|
731
|
-
"__#
|
|
732
|
-
logger: Logger;
|
|
763
|
+
"__#12322@#logger": Logger;
|
|
764
|
+
"__#12322@#wrapLogger"(logger: Partial<Logger>): Logger;
|
|
765
|
+
get logger(): Logger;
|
|
766
|
+
set logger(logger: Partial<Logger>);
|
|
733
767
|
onLogEvent(logLevel: LogLevel, data: any[]): void;
|
|
734
768
|
accessKey: string;
|
|
735
769
|
readonly accessKeyLabel: string;
|
|
@@ -746,11 +780,15 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
746
780
|
readonly offsetTop: number;
|
|
747
781
|
readonly offsetWidth: number;
|
|
748
782
|
outerText: string;
|
|
783
|
+
popover: string;
|
|
749
784
|
spellcheck: boolean;
|
|
750
785
|
title: string;
|
|
751
786
|
translate: boolean;
|
|
752
787
|
attachInternals(): ElementInternals;
|
|
753
788
|
click(): void;
|
|
789
|
+
hidePopover(): void;
|
|
790
|
+
showPopover(): void;
|
|
791
|
+
togglePopover(force?: boolean): boolean;
|
|
754
792
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
755
793
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
756
794
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -781,9 +819,12 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
781
819
|
slot: string;
|
|
782
820
|
readonly tagName: string;
|
|
783
821
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
822
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
784
823
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
785
824
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
825
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
786
826
|
closest<E extends Element = Element>(selectors: string): E;
|
|
827
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
787
828
|
getAttribute(qualifiedName: string): string;
|
|
788
829
|
getAttributeNS(namespace: string, localName: string): string;
|
|
789
830
|
getAttributeNames(): string[];
|
|
@@ -792,11 +833,14 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
792
833
|
getBoundingClientRect(): DOMRect;
|
|
793
834
|
getClientRects(): DOMRectList;
|
|
794
835
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
795
|
-
getElementsByTagName<
|
|
796
|
-
getElementsByTagName<
|
|
836
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
837
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
838
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
839
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
797
840
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
798
841
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
799
842
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
843
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
800
844
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
801
845
|
hasAttribute(qualifiedName: string): boolean;
|
|
802
846
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -854,24 +898,24 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
854
898
|
normalize(): void;
|
|
855
899
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
856
900
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
857
|
-
readonly
|
|
858
|
-
readonly
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
861
|
-
readonly
|
|
862
|
-
readonly
|
|
863
|
-
readonly
|
|
864
|
-
readonly
|
|
865
|
-
readonly
|
|
866
|
-
readonly
|
|
867
|
-
readonly
|
|
868
|
-
readonly
|
|
869
|
-
readonly
|
|
870
|
-
readonly
|
|
871
|
-
readonly
|
|
872
|
-
readonly
|
|
873
|
-
readonly
|
|
874
|
-
readonly
|
|
901
|
+
readonly ELEMENT_NODE: 1;
|
|
902
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
903
|
+
readonly TEXT_NODE: 3;
|
|
904
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
905
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
906
|
+
readonly ENTITY_NODE: 6;
|
|
907
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
908
|
+
readonly COMMENT_NODE: 8;
|
|
909
|
+
readonly DOCUMENT_NODE: 9;
|
|
910
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
911
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
912
|
+
readonly NOTATION_NODE: 12;
|
|
913
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
914
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
915
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
916
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
917
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
918
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
875
919
|
dispatchEvent(event: Event): boolean;
|
|
876
920
|
ariaAtomic: string;
|
|
877
921
|
ariaAutoComplete: string;
|
|
@@ -879,9 +923,9 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
879
923
|
ariaChecked: string;
|
|
880
924
|
ariaColCount: string;
|
|
881
925
|
ariaColIndex: string;
|
|
882
|
-
ariaColIndexText: string;
|
|
883
926
|
ariaColSpan: string;
|
|
884
927
|
ariaCurrent: string;
|
|
928
|
+
ariaDescription: string;
|
|
885
929
|
ariaDisabled: string;
|
|
886
930
|
ariaExpanded: string;
|
|
887
931
|
ariaHasPopup: string;
|
|
@@ -903,7 +947,6 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
903
947
|
ariaRoleDescription: string;
|
|
904
948
|
ariaRowCount: string;
|
|
905
949
|
ariaRowIndex: string;
|
|
906
|
-
ariaRowIndexText: string;
|
|
907
950
|
ariaRowSpan: string;
|
|
908
951
|
ariaSelected: string;
|
|
909
952
|
ariaSetSize: string;
|
|
@@ -928,17 +971,19 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
928
971
|
readonly lastElementChild: Element;
|
|
929
972
|
append(...nodes: (string | Node)[]): void;
|
|
930
973
|
prepend(...nodes: (string | Node)[]): void;
|
|
931
|
-
querySelector<
|
|
932
|
-
querySelector<
|
|
974
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
975
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
976
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
977
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
933
978
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
934
|
-
querySelectorAll<
|
|
935
|
-
querySelectorAll<
|
|
979
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
980
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
981
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
982
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
936
983
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
937
984
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
938
985
|
readonly assignedSlot: HTMLSlotElement;
|
|
939
|
-
|
|
940
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
941
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
986
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
942
987
|
readonly style: CSSStyleDeclaration;
|
|
943
988
|
contentEditable: string;
|
|
944
989
|
enterKeyHint: string;
|
|
@@ -951,6 +996,7 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
951
996
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
952
997
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
953
998
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
999
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
954
1000
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
955
1001
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
956
1002
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -959,7 +1005,9 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
959
1005
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
960
1006
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
961
1007
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1008
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
962
1009
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1010
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
963
1011
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
964
1012
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
965
1013
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -992,6 +1040,7 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
992
1040
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
993
1041
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
994
1042
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1043
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
995
1044
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
996
1045
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
997
1046
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1008,6 +1057,7 @@ declare const loggerMixin: <T extends CustomElementConstructor>(superclass: T) =
|
|
|
1008
1057
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1009
1058
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
1010
1059
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1060
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1011
1061
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
1012
1062
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1013
1063
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1051,20 +1101,21 @@ type DebuggerMessage = {
|
|
|
1051
1101
|
|
|
1052
1102
|
declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
1053
1103
|
new (...params: any[]): {
|
|
1054
|
-
"__#
|
|
1104
|
+
"__#12328@#debuggerEle": (HTMLElement & {
|
|
1055
1105
|
updateData: (data: DebuggerMessage | DebuggerMessage[]) => void;
|
|
1056
|
-
};
|
|
1057
|
-
"__#
|
|
1058
|
-
"__#
|
|
1106
|
+
}) | null;
|
|
1107
|
+
"__#12328@#disableDebugger"(): void;
|
|
1108
|
+
"__#12328@#enableDebugger"(): Promise<void>;
|
|
1059
1109
|
attributeChangedCallback: (attrName: string, oldValue: string | null, newValue: string | null) => void;
|
|
1060
1110
|
readonly debug: boolean;
|
|
1061
|
-
"__#
|
|
1111
|
+
"__#12328@#handleDebugMode"(): void;
|
|
1062
1112
|
onLogEvent(logLevel: LogLevel, args: any[]): void;
|
|
1063
1113
|
init(): Promise<void>;
|
|
1064
|
-
"__#
|
|
1065
|
-
"__#
|
|
1066
|
-
"__#
|
|
1067
|
-
logger: Logger;
|
|
1114
|
+
"__#12328@#updateDebuggerMessages"(title: string, description: string): void;
|
|
1115
|
+
"__#12322@#logger": Logger;
|
|
1116
|
+
"__#12322@#wrapLogger"(logger: Partial<Logger>): Logger;
|
|
1117
|
+
get logger(): Logger;
|
|
1118
|
+
set logger(logger: Partial<Logger>);
|
|
1068
1119
|
accessKey: string;
|
|
1069
1120
|
readonly accessKeyLabel: string;
|
|
1070
1121
|
autocapitalize: string;
|
|
@@ -1080,11 +1131,15 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1080
1131
|
readonly offsetTop: number;
|
|
1081
1132
|
readonly offsetWidth: number;
|
|
1082
1133
|
outerText: string;
|
|
1134
|
+
popover: string;
|
|
1083
1135
|
spellcheck: boolean;
|
|
1084
1136
|
title: string;
|
|
1085
1137
|
translate: boolean;
|
|
1086
1138
|
attachInternals(): ElementInternals;
|
|
1087
1139
|
click(): void;
|
|
1140
|
+
hidePopover(): void;
|
|
1141
|
+
showPopover(): void;
|
|
1142
|
+
togglePopover(force?: boolean): boolean;
|
|
1088
1143
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1089
1144
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1090
1145
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -1114,9 +1169,12 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1114
1169
|
slot: string;
|
|
1115
1170
|
readonly tagName: string;
|
|
1116
1171
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1172
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1117
1173
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1118
1174
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1175
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1119
1176
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1177
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1120
1178
|
getAttribute(qualifiedName: string): string;
|
|
1121
1179
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1122
1180
|
getAttributeNames(): string[];
|
|
@@ -1125,11 +1183,14 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1125
1183
|
getBoundingClientRect(): DOMRect;
|
|
1126
1184
|
getClientRects(): DOMRectList;
|
|
1127
1185
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1128
|
-
getElementsByTagName<
|
|
1129
|
-
getElementsByTagName<
|
|
1186
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
1187
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
1188
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1189
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1130
1190
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1131
1191
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1132
1192
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1193
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1133
1194
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1134
1195
|
hasAttribute(qualifiedName: string): boolean;
|
|
1135
1196
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1187,24 +1248,24 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1187
1248
|
normalize(): void;
|
|
1188
1249
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1189
1250
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1190
|
-
readonly
|
|
1191
|
-
readonly
|
|
1192
|
-
readonly
|
|
1193
|
-
readonly
|
|
1194
|
-
readonly
|
|
1195
|
-
readonly
|
|
1196
|
-
readonly
|
|
1197
|
-
readonly
|
|
1198
|
-
readonly
|
|
1199
|
-
readonly
|
|
1200
|
-
readonly
|
|
1201
|
-
readonly
|
|
1202
|
-
readonly
|
|
1203
|
-
readonly
|
|
1204
|
-
readonly
|
|
1205
|
-
readonly
|
|
1206
|
-
readonly
|
|
1207
|
-
readonly
|
|
1251
|
+
readonly ELEMENT_NODE: 1;
|
|
1252
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
1253
|
+
readonly TEXT_NODE: 3;
|
|
1254
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
1255
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
1256
|
+
readonly ENTITY_NODE: 6;
|
|
1257
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
1258
|
+
readonly COMMENT_NODE: 8;
|
|
1259
|
+
readonly DOCUMENT_NODE: 9;
|
|
1260
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
1261
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
1262
|
+
readonly NOTATION_NODE: 12;
|
|
1263
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
1264
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
1265
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
1266
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
1267
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1268
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1208
1269
|
dispatchEvent(event: Event): boolean;
|
|
1209
1270
|
ariaAtomic: string;
|
|
1210
1271
|
ariaAutoComplete: string;
|
|
@@ -1212,9 +1273,9 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1212
1273
|
ariaChecked: string;
|
|
1213
1274
|
ariaColCount: string;
|
|
1214
1275
|
ariaColIndex: string;
|
|
1215
|
-
ariaColIndexText: string;
|
|
1216
1276
|
ariaColSpan: string;
|
|
1217
1277
|
ariaCurrent: string;
|
|
1278
|
+
ariaDescription: string;
|
|
1218
1279
|
ariaDisabled: string;
|
|
1219
1280
|
ariaExpanded: string;
|
|
1220
1281
|
ariaHasPopup: string;
|
|
@@ -1236,7 +1297,6 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1236
1297
|
ariaRoleDescription: string;
|
|
1237
1298
|
ariaRowCount: string;
|
|
1238
1299
|
ariaRowIndex: string;
|
|
1239
|
-
ariaRowIndexText: string;
|
|
1240
1300
|
ariaRowSpan: string;
|
|
1241
1301
|
ariaSelected: string;
|
|
1242
1302
|
ariaSetSize: string;
|
|
@@ -1261,17 +1321,19 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1261
1321
|
readonly lastElementChild: Element;
|
|
1262
1322
|
append(...nodes: (string | Node)[]): void;
|
|
1263
1323
|
prepend(...nodes: (string | Node)[]): void;
|
|
1264
|
-
querySelector<
|
|
1265
|
-
querySelector<
|
|
1324
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
1325
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
1326
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
1327
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1266
1328
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1267
|
-
querySelectorAll<
|
|
1268
|
-
querySelectorAll<
|
|
1329
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
1330
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
1331
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
1332
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1269
1333
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1270
1334
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1271
1335
|
readonly assignedSlot: HTMLSlotElement;
|
|
1272
|
-
|
|
1273
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1274
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1336
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
1275
1337
|
readonly style: CSSStyleDeclaration;
|
|
1276
1338
|
contentEditable: string;
|
|
1277
1339
|
enterKeyHint: string;
|
|
@@ -1284,6 +1346,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1284
1346
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
1285
1347
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1286
1348
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
1349
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1287
1350
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
1288
1351
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1289
1352
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1292,7 +1355,9 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1292
1355
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1293
1356
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1294
1357
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1358
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1295
1359
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1360
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1296
1361
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1297
1362
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1298
1363
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1325,6 +1390,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1325
1390
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1326
1391
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1327
1392
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1393
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1328
1394
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1329
1395
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1330
1396
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1341,6 +1407,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1341
1407
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1342
1408
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
1343
1409
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1410
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1344
1411
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
1345
1412
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1346
1413
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1374,7 +1441,7 @@ declare const debuggerMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
1374
1441
|
tabIndex: number;
|
|
1375
1442
|
blur(): void;
|
|
1376
1443
|
focus(options?: FocusOptions): void;
|
|
1377
|
-
"__#
|
|
1444
|
+
"__#12323@#isInit": boolean;
|
|
1378
1445
|
};
|
|
1379
1446
|
} & T;
|
|
1380
1447
|
|
|
@@ -1382,21 +1449,21 @@ type ErrorCb = (error: string) => void;
|
|
|
1382
1449
|
type LoadCb = () => void;
|
|
1383
1450
|
declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
1384
1451
|
new (...params: any[]): {
|
|
1385
|
-
"__#
|
|
1386
|
-
"__#
|
|
1387
|
-
"__#
|
|
1388
|
-
"__#
|
|
1389
|
-
"__#
|
|
1390
|
-
"__#
|
|
1391
|
-
"__#
|
|
1392
|
-
"__#
|
|
1452
|
+
"__#12329@#errorCbsSym": symbol;
|
|
1453
|
+
"__#12329@#loadCbsSym": symbol;
|
|
1454
|
+
"__#12329@#getComponentsVersion"(): Promise<any>;
|
|
1455
|
+
"__#12329@#exposeAlternateEvents"(scriptEle: HTMLScriptElement): void;
|
|
1456
|
+
"__#12329@#handleFallbackScript"(errorCbs: ErrorCb[], loadCbs: LoadCb[]): Promise<void>;
|
|
1457
|
+
"__#12329@#registerEvents"(scriptEle: HTMLScriptElement): void;
|
|
1458
|
+
"__#12329@#getDescopeUiLoadingScript"(): Promise<HTMLElement>;
|
|
1459
|
+
"__#12329@#descopeUi": Promise<any>;
|
|
1393
1460
|
readonly descopeUi: Promise<any>;
|
|
1394
|
-
"__#
|
|
1461
|
+
"__#12329@#loadDescopeUiComponent"(componentName: string): Promise<any>;
|
|
1395
1462
|
loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
|
|
1396
|
-
"__#
|
|
1463
|
+
"__#12329@#getDescopeUi"(): Promise<unknown>;
|
|
1397
1464
|
readonly config: any;
|
|
1398
|
-
"__#
|
|
1399
|
-
"__#
|
|
1465
|
+
"__#12326@#_configResource": any;
|
|
1466
|
+
"__#12326@#fetchConfig": () => Promise<{
|
|
1400
1467
|
projectConfig: ProjectConfiguration;
|
|
1401
1468
|
executionContext: {
|
|
1402
1469
|
geo: string;
|
|
@@ -1423,11 +1490,15 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1423
1490
|
readonly offsetTop: number;
|
|
1424
1491
|
readonly offsetWidth: number;
|
|
1425
1492
|
outerText: string;
|
|
1493
|
+
popover: string;
|
|
1426
1494
|
spellcheck: boolean;
|
|
1427
1495
|
title: string;
|
|
1428
1496
|
translate: boolean;
|
|
1429
1497
|
attachInternals(): ElementInternals;
|
|
1430
1498
|
click(): void;
|
|
1499
|
+
hidePopover(): void;
|
|
1500
|
+
showPopover(): void;
|
|
1501
|
+
togglePopover(force?: boolean): boolean;
|
|
1431
1502
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1432
1503
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1433
1504
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -1458,9 +1529,12 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1458
1529
|
slot: string;
|
|
1459
1530
|
readonly tagName: string;
|
|
1460
1531
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1532
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1461
1533
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1462
1534
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1535
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1463
1536
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1537
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1464
1538
|
getAttribute(qualifiedName: string): string;
|
|
1465
1539
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1466
1540
|
getAttributeNames(): string[];
|
|
@@ -1469,11 +1543,14 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1469
1543
|
getBoundingClientRect(): DOMRect;
|
|
1470
1544
|
getClientRects(): DOMRectList;
|
|
1471
1545
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1472
|
-
getElementsByTagName<
|
|
1473
|
-
getElementsByTagName<
|
|
1546
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
1547
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
1548
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1549
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1474
1550
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1475
1551
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1476
1552
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1553
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1477
1554
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1478
1555
|
hasAttribute(qualifiedName: string): boolean;
|
|
1479
1556
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1531,24 +1608,24 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1531
1608
|
normalize(): void;
|
|
1532
1609
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1533
1610
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1534
|
-
readonly
|
|
1535
|
-
readonly
|
|
1536
|
-
readonly
|
|
1537
|
-
readonly
|
|
1538
|
-
readonly
|
|
1539
|
-
readonly
|
|
1540
|
-
readonly
|
|
1541
|
-
readonly
|
|
1542
|
-
readonly
|
|
1543
|
-
readonly
|
|
1544
|
-
readonly
|
|
1545
|
-
readonly
|
|
1546
|
-
readonly
|
|
1547
|
-
readonly
|
|
1548
|
-
readonly
|
|
1549
|
-
readonly
|
|
1550
|
-
readonly
|
|
1551
|
-
readonly
|
|
1611
|
+
readonly ELEMENT_NODE: 1;
|
|
1612
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
1613
|
+
readonly TEXT_NODE: 3;
|
|
1614
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
1615
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
1616
|
+
readonly ENTITY_NODE: 6;
|
|
1617
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
1618
|
+
readonly COMMENT_NODE: 8;
|
|
1619
|
+
readonly DOCUMENT_NODE: 9;
|
|
1620
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
1621
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
1622
|
+
readonly NOTATION_NODE: 12;
|
|
1623
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
1624
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
1625
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
1626
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
1627
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
1628
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1552
1629
|
dispatchEvent(event: Event): boolean;
|
|
1553
1630
|
ariaAtomic: string;
|
|
1554
1631
|
ariaAutoComplete: string;
|
|
@@ -1556,9 +1633,9 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1556
1633
|
ariaChecked: string;
|
|
1557
1634
|
ariaColCount: string;
|
|
1558
1635
|
ariaColIndex: string;
|
|
1559
|
-
ariaColIndexText: string;
|
|
1560
1636
|
ariaColSpan: string;
|
|
1561
1637
|
ariaCurrent: string;
|
|
1638
|
+
ariaDescription: string;
|
|
1562
1639
|
ariaDisabled: string;
|
|
1563
1640
|
ariaExpanded: string;
|
|
1564
1641
|
ariaHasPopup: string;
|
|
@@ -1580,7 +1657,6 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1580
1657
|
ariaRoleDescription: string;
|
|
1581
1658
|
ariaRowCount: string;
|
|
1582
1659
|
ariaRowIndex: string;
|
|
1583
|
-
ariaRowIndexText: string;
|
|
1584
1660
|
ariaRowSpan: string;
|
|
1585
1661
|
ariaSelected: string;
|
|
1586
1662
|
ariaSetSize: string;
|
|
@@ -1605,17 +1681,19 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1605
1681
|
readonly lastElementChild: Element;
|
|
1606
1682
|
append(...nodes: (string | Node)[]): void;
|
|
1607
1683
|
prepend(...nodes: (string | Node)[]): void;
|
|
1608
|
-
querySelector<
|
|
1609
|
-
querySelector<
|
|
1684
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
1685
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
1686
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
1687
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1610
1688
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1611
|
-
querySelectorAll<
|
|
1612
|
-
querySelectorAll<
|
|
1689
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
1690
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
1691
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
1692
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1613
1693
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1614
1694
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1615
1695
|
readonly assignedSlot: HTMLSlotElement;
|
|
1616
|
-
|
|
1617
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1618
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
1696
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
1619
1697
|
readonly style: CSSStyleDeclaration;
|
|
1620
1698
|
contentEditable: string;
|
|
1621
1699
|
enterKeyHint: string;
|
|
@@ -1628,6 +1706,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1628
1706
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
1629
1707
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1630
1708
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
1709
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1631
1710
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
1632
1711
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1633
1712
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1636,7 +1715,9 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1636
1715
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1637
1716
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1638
1717
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1718
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1639
1719
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1720
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1640
1721
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1641
1722
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
1642
1723
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -1669,6 +1750,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1669
1750
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1670
1751
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1671
1752
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
1753
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
1672
1754
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1673
1755
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1674
1756
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1685,6 +1767,7 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1685
1767
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1686
1768
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
1687
1769
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1770
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1688
1771
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
1689
1772
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
1690
1773
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -1719,22 +1802,23 @@ declare const descopeUiMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
1719
1802
|
blur(): void;
|
|
1720
1803
|
focus(options?: FocusOptions): void;
|
|
1721
1804
|
readonly projectId: string;
|
|
1722
|
-
"__#
|
|
1805
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
1723
1806
|
init(): Promise<void>;
|
|
1724
|
-
"__#
|
|
1807
|
+
"__#12324@#observeMappings": {};
|
|
1725
1808
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
1726
1809
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
1727
|
-
"__#
|
|
1728
|
-
"__#
|
|
1729
|
-
"__#
|
|
1730
|
-
logger: Logger;
|
|
1810
|
+
"__#12323@#isInit": boolean;
|
|
1811
|
+
"__#12322@#logger": Logger;
|
|
1812
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
1813
|
+
get logger(): Logger;
|
|
1814
|
+
set logger(logger: Partial<Logger>);
|
|
1731
1815
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
1732
1816
|
};
|
|
1733
1817
|
} & T;
|
|
1734
1818
|
|
|
1735
1819
|
declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
1736
1820
|
new (...params: any[]): {
|
|
1737
|
-
"__#
|
|
1821
|
+
"__#12333@#ModalDriverWrapper": {
|
|
1738
1822
|
new (refOrRefFn: Element | (() => HTMLElement), config: {
|
|
1739
1823
|
logger: {
|
|
1740
1824
|
error(...data: any[]): void;
|
|
@@ -1744,7 +1828,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1744
1828
|
};
|
|
1745
1829
|
}): {
|
|
1746
1830
|
setContent(template: HTMLTemplateElement): void;
|
|
1747
|
-
"__#
|
|
1831
|
+
"__#12332@#private": any;
|
|
1748
1832
|
beforeOpen: () => void | Promise<void>;
|
|
1749
1833
|
afterClose: () => void;
|
|
1750
1834
|
nodeName: string;
|
|
@@ -1752,7 +1836,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1752
1836
|
open(): Promise<void>;
|
|
1753
1837
|
reset(): void;
|
|
1754
1838
|
remove(): void;
|
|
1755
|
-
"__#
|
|
1839
|
+
"__#12330@#private": any;
|
|
1756
1840
|
logger: {
|
|
1757
1841
|
error(...data: any[]): void;
|
|
1758
1842
|
warn(...data: any[]): void;
|
|
@@ -1765,21 +1849,21 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1765
1849
|
};
|
|
1766
1850
|
createModal(config?: Record<string, string>): ModalDriver;
|
|
1767
1851
|
init(): Promise<void>;
|
|
1768
|
-
"__#
|
|
1769
|
-
"__#
|
|
1770
|
-
"__#
|
|
1771
|
-
"__#
|
|
1772
|
-
"__#
|
|
1773
|
-
"__#
|
|
1774
|
-
"__#
|
|
1775
|
-
"__#
|
|
1852
|
+
"__#12329@#errorCbsSym": symbol;
|
|
1853
|
+
"__#12329@#loadCbsSym": symbol;
|
|
1854
|
+
"__#12329@#getComponentsVersion"(): Promise<any>;
|
|
1855
|
+
"__#12329@#exposeAlternateEvents"(scriptEle: HTMLScriptElement): void;
|
|
1856
|
+
"__#12329@#handleFallbackScript"(errorCbs: ((error: string) => void)[], loadCbs: (() => void)[]): Promise<void>;
|
|
1857
|
+
"__#12329@#registerEvents"(scriptEle: HTMLScriptElement): void;
|
|
1858
|
+
"__#12329@#getDescopeUiLoadingScript"(): Promise<HTMLElement>;
|
|
1859
|
+
"__#12329@#descopeUi": Promise<any>;
|
|
1776
1860
|
readonly descopeUi: Promise<any>;
|
|
1777
|
-
"__#
|
|
1861
|
+
"__#12329@#loadDescopeUiComponent"(componentName: string): Promise<any>;
|
|
1778
1862
|
loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
|
|
1779
|
-
"__#
|
|
1863
|
+
"__#12329@#getDescopeUi"(): Promise<unknown>;
|
|
1780
1864
|
readonly config: any;
|
|
1781
|
-
"__#
|
|
1782
|
-
"__#
|
|
1865
|
+
"__#12326@#_configResource": any;
|
|
1866
|
+
"__#12326@#fetchConfig": () => Promise<{
|
|
1783
1867
|
projectConfig: ProjectConfiguration;
|
|
1784
1868
|
executionContext: {
|
|
1785
1869
|
geo: string;
|
|
@@ -1806,11 +1890,15 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1806
1890
|
readonly offsetTop: number;
|
|
1807
1891
|
readonly offsetWidth: number;
|
|
1808
1892
|
outerText: string;
|
|
1893
|
+
popover: string;
|
|
1809
1894
|
spellcheck: boolean;
|
|
1810
1895
|
title: string;
|
|
1811
1896
|
translate: boolean;
|
|
1812
1897
|
attachInternals(): ElementInternals;
|
|
1813
1898
|
click(): void;
|
|
1899
|
+
hidePopover(): void;
|
|
1900
|
+
showPopover(): void;
|
|
1901
|
+
togglePopover(force?: boolean): boolean;
|
|
1814
1902
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1815
1903
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1816
1904
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -1841,9 +1929,12 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1841
1929
|
slot: string;
|
|
1842
1930
|
readonly tagName: string;
|
|
1843
1931
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1932
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1844
1933
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
1845
1934
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
1935
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
1846
1936
|
closest<E extends Element = Element>(selectors: string): E;
|
|
1937
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1847
1938
|
getAttribute(qualifiedName: string): string;
|
|
1848
1939
|
getAttributeNS(namespace: string, localName: string): string;
|
|
1849
1940
|
getAttributeNames(): string[];
|
|
@@ -1852,11 +1943,14 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1852
1943
|
getBoundingClientRect(): DOMRect;
|
|
1853
1944
|
getClientRects(): DOMRectList;
|
|
1854
1945
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1855
|
-
getElementsByTagName<
|
|
1856
|
-
getElementsByTagName<
|
|
1946
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
1947
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
1948
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
1949
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
1857
1950
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1858
1951
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1859
1952
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
1953
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
1860
1954
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
1861
1955
|
hasAttribute(qualifiedName: string): boolean;
|
|
1862
1956
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -1914,24 +2008,24 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1914
2008
|
normalize(): void;
|
|
1915
2009
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
1916
2010
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
1917
|
-
readonly
|
|
1918
|
-
readonly
|
|
1919
|
-
readonly
|
|
1920
|
-
readonly
|
|
1921
|
-
readonly
|
|
1922
|
-
readonly
|
|
1923
|
-
readonly
|
|
1924
|
-
readonly
|
|
1925
|
-
readonly
|
|
1926
|
-
readonly
|
|
1927
|
-
readonly
|
|
1928
|
-
readonly
|
|
1929
|
-
readonly
|
|
1930
|
-
readonly
|
|
1931
|
-
readonly
|
|
1932
|
-
readonly
|
|
1933
|
-
readonly
|
|
1934
|
-
readonly
|
|
2011
|
+
readonly ELEMENT_NODE: 1;
|
|
2012
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
2013
|
+
readonly TEXT_NODE: 3;
|
|
2014
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
2015
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
2016
|
+
readonly ENTITY_NODE: 6;
|
|
2017
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
2018
|
+
readonly COMMENT_NODE: 8;
|
|
2019
|
+
readonly DOCUMENT_NODE: 9;
|
|
2020
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
2021
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
2022
|
+
readonly NOTATION_NODE: 12;
|
|
2023
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
2024
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
2025
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
2026
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
2027
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
2028
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
1935
2029
|
dispatchEvent(event: Event): boolean;
|
|
1936
2030
|
ariaAtomic: string;
|
|
1937
2031
|
ariaAutoComplete: string;
|
|
@@ -1939,9 +2033,9 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1939
2033
|
ariaChecked: string;
|
|
1940
2034
|
ariaColCount: string;
|
|
1941
2035
|
ariaColIndex: string;
|
|
1942
|
-
ariaColIndexText: string;
|
|
1943
2036
|
ariaColSpan: string;
|
|
1944
2037
|
ariaCurrent: string;
|
|
2038
|
+
ariaDescription: string;
|
|
1945
2039
|
ariaDisabled: string;
|
|
1946
2040
|
ariaExpanded: string;
|
|
1947
2041
|
ariaHasPopup: string;
|
|
@@ -1963,7 +2057,6 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1963
2057
|
ariaRoleDescription: string;
|
|
1964
2058
|
ariaRowCount: string;
|
|
1965
2059
|
ariaRowIndex: string;
|
|
1966
|
-
ariaRowIndexText: string;
|
|
1967
2060
|
ariaRowSpan: string;
|
|
1968
2061
|
ariaSelected: string;
|
|
1969
2062
|
ariaSetSize: string;
|
|
@@ -1988,17 +2081,19 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
1988
2081
|
readonly lastElementChild: Element;
|
|
1989
2082
|
append(...nodes: (string | Node)[]): void;
|
|
1990
2083
|
prepend(...nodes: (string | Node)[]): void;
|
|
1991
|
-
querySelector<
|
|
1992
|
-
querySelector<
|
|
2084
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
2085
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
2086
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
2087
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
1993
2088
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
1994
|
-
querySelectorAll<
|
|
1995
|
-
querySelectorAll<
|
|
2089
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
2090
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
2091
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
2092
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
1996
2093
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
1997
2094
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1998
2095
|
readonly assignedSlot: HTMLSlotElement;
|
|
1999
|
-
|
|
2000
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2001
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2096
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
2002
2097
|
readonly style: CSSStyleDeclaration;
|
|
2003
2098
|
contentEditable: string;
|
|
2004
2099
|
enterKeyHint: string;
|
|
@@ -2011,6 +2106,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2011
2106
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
2012
2107
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2013
2108
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
2109
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2014
2110
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
2015
2111
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2016
2112
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2019,7 +2115,9 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2019
2115
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2020
2116
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2021
2117
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2118
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2022
2119
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2120
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2023
2121
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2024
2122
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
2025
2123
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -2052,6 +2150,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2052
2150
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2053
2151
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2054
2152
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2153
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2055
2154
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2056
2155
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2057
2156
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2068,6 +2167,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2068
2167
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2069
2168
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
2070
2169
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2170
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2071
2171
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
2072
2172
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2073
2173
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2102,14 +2202,15 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2102
2202
|
blur(): void;
|
|
2103
2203
|
focus(options?: FocusOptions): void;
|
|
2104
2204
|
readonly projectId: string;
|
|
2105
|
-
"__#
|
|
2106
|
-
"__#
|
|
2205
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
2206
|
+
"__#12324@#observeMappings": {};
|
|
2107
2207
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
2108
2208
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
2109
|
-
"__#
|
|
2110
|
-
"__#
|
|
2111
|
-
"__#
|
|
2112
|
-
logger: Logger;
|
|
2209
|
+
"__#12323@#isInit": boolean;
|
|
2210
|
+
"__#12322@#logger": Logger;
|
|
2211
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
2212
|
+
get logger(): Logger;
|
|
2213
|
+
set logger(logger: Partial<Logger>);
|
|
2113
2214
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
2114
2215
|
contentRootElement: HTMLElement;
|
|
2115
2216
|
rootElement: HTMLElement;
|
|
@@ -2118,7 +2219,7 @@ declare const modalMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
2118
2219
|
|
|
2119
2220
|
declare const notificationsMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
2120
2221
|
new (...params: any[]): {
|
|
2121
|
-
"__#
|
|
2222
|
+
"__#12334@#NotificationDriverWrapper": {
|
|
2122
2223
|
new (refOrRefFn: Element | (() => HTMLElement), config: {
|
|
2123
2224
|
logger: {
|
|
2124
2225
|
error(...data: any[]): void;
|
|
@@ -2132,7 +2233,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2132
2233
|
close(): void;
|
|
2133
2234
|
show(): void;
|
|
2134
2235
|
remove(): void;
|
|
2135
|
-
"__#
|
|
2236
|
+
"__#12330@#private": any;
|
|
2136
2237
|
logger: {
|
|
2137
2238
|
error(...data: any[]): void;
|
|
2138
2239
|
warn(...data: any[]): void;
|
|
@@ -2151,14 +2252,14 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2151
2252
|
size: 'xs' | 'sm' | 'md' | 'lg';
|
|
2152
2253
|
bordered?: boolean;
|
|
2153
2254
|
} & {
|
|
2154
|
-
[key: string]: string |
|
|
2255
|
+
[key: string]: string | boolean | number;
|
|
2155
2256
|
}): {
|
|
2156
2257
|
setContent(templateOrString: HTMLTemplateElement | string): void;
|
|
2157
2258
|
nodeName: string;
|
|
2158
2259
|
close(): void;
|
|
2159
2260
|
show(): void;
|
|
2160
2261
|
remove(): void;
|
|
2161
|
-
"__#
|
|
2262
|
+
"__#12330@#private": any;
|
|
2162
2263
|
logger: {
|
|
2163
2264
|
error(...data: any[]): void;
|
|
2164
2265
|
warn(...data: any[]): void;
|
|
@@ -2169,21 +2270,21 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2169
2270
|
readonly ele: Element;
|
|
2170
2271
|
};
|
|
2171
2272
|
init(): Promise<void>;
|
|
2172
|
-
"__#
|
|
2173
|
-
"__#
|
|
2174
|
-
"__#
|
|
2175
|
-
"__#
|
|
2176
|
-
"__#
|
|
2177
|
-
"__#
|
|
2178
|
-
"__#
|
|
2179
|
-
"__#
|
|
2273
|
+
"__#12329@#errorCbsSym": symbol;
|
|
2274
|
+
"__#12329@#loadCbsSym": symbol;
|
|
2275
|
+
"__#12329@#getComponentsVersion"(): Promise<any>;
|
|
2276
|
+
"__#12329@#exposeAlternateEvents"(scriptEle: HTMLScriptElement): void;
|
|
2277
|
+
"__#12329@#handleFallbackScript"(errorCbs: ((error: string) => void)[], loadCbs: (() => void)[]): Promise<void>;
|
|
2278
|
+
"__#12329@#registerEvents"(scriptEle: HTMLScriptElement): void;
|
|
2279
|
+
"__#12329@#getDescopeUiLoadingScript"(): Promise<HTMLElement>;
|
|
2280
|
+
"__#12329@#descopeUi": Promise<any>;
|
|
2180
2281
|
readonly descopeUi: Promise<any>;
|
|
2181
|
-
"__#
|
|
2282
|
+
"__#12329@#loadDescopeUiComponent"(componentName: string): Promise<any>;
|
|
2182
2283
|
loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
|
|
2183
|
-
"__#
|
|
2284
|
+
"__#12329@#getDescopeUi"(): Promise<unknown>;
|
|
2184
2285
|
readonly config: any;
|
|
2185
|
-
"__#
|
|
2186
|
-
"__#
|
|
2286
|
+
"__#12326@#_configResource": any;
|
|
2287
|
+
"__#12326@#fetchConfig": () => Promise<{
|
|
2187
2288
|
projectConfig: ProjectConfiguration;
|
|
2188
2289
|
executionContext: {
|
|
2189
2290
|
geo: string;
|
|
@@ -2210,11 +2311,15 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2210
2311
|
readonly offsetTop: number;
|
|
2211
2312
|
readonly offsetWidth: number;
|
|
2212
2313
|
outerText: string;
|
|
2314
|
+
popover: string;
|
|
2213
2315
|
spellcheck: boolean;
|
|
2214
2316
|
title: string;
|
|
2215
2317
|
translate: boolean;
|
|
2216
2318
|
attachInternals(): ElementInternals;
|
|
2217
2319
|
click(): void;
|
|
2320
|
+
hidePopover(): void;
|
|
2321
|
+
showPopover(): void;
|
|
2322
|
+
togglePopover(force?: boolean): boolean;
|
|
2218
2323
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2219
2324
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
2220
2325
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -2245,9 +2350,12 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2245
2350
|
slot: string;
|
|
2246
2351
|
readonly tagName: string;
|
|
2247
2352
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
2353
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
2248
2354
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
2249
2355
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
2356
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
2250
2357
|
closest<E extends Element = Element>(selectors: string): E;
|
|
2358
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
2251
2359
|
getAttribute(qualifiedName: string): string;
|
|
2252
2360
|
getAttributeNS(namespace: string, localName: string): string;
|
|
2253
2361
|
getAttributeNames(): string[];
|
|
@@ -2256,11 +2364,14 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2256
2364
|
getBoundingClientRect(): DOMRect;
|
|
2257
2365
|
getClientRects(): DOMRectList;
|
|
2258
2366
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
2259
|
-
getElementsByTagName<
|
|
2260
|
-
getElementsByTagName<
|
|
2367
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
2368
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
2369
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
2370
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
2261
2371
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
2262
2372
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
2263
2373
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
2374
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
2264
2375
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
2265
2376
|
hasAttribute(qualifiedName: string): boolean;
|
|
2266
2377
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -2318,24 +2429,24 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2318
2429
|
normalize(): void;
|
|
2319
2430
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
2320
2431
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
2321
|
-
readonly
|
|
2322
|
-
readonly
|
|
2323
|
-
readonly
|
|
2324
|
-
readonly
|
|
2325
|
-
readonly
|
|
2326
|
-
readonly
|
|
2327
|
-
readonly
|
|
2328
|
-
readonly
|
|
2329
|
-
readonly
|
|
2330
|
-
readonly
|
|
2331
|
-
readonly
|
|
2332
|
-
readonly
|
|
2333
|
-
readonly
|
|
2334
|
-
readonly
|
|
2335
|
-
readonly
|
|
2336
|
-
readonly
|
|
2337
|
-
readonly
|
|
2338
|
-
readonly
|
|
2432
|
+
readonly ELEMENT_NODE: 1;
|
|
2433
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
2434
|
+
readonly TEXT_NODE: 3;
|
|
2435
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
2436
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
2437
|
+
readonly ENTITY_NODE: 6;
|
|
2438
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
2439
|
+
readonly COMMENT_NODE: 8;
|
|
2440
|
+
readonly DOCUMENT_NODE: 9;
|
|
2441
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
2442
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
2443
|
+
readonly NOTATION_NODE: 12;
|
|
2444
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
2445
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
2446
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
2447
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
2448
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
2449
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
2339
2450
|
dispatchEvent(event: Event): boolean;
|
|
2340
2451
|
ariaAtomic: string;
|
|
2341
2452
|
ariaAutoComplete: string;
|
|
@@ -2343,9 +2454,9 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2343
2454
|
ariaChecked: string;
|
|
2344
2455
|
ariaColCount: string;
|
|
2345
2456
|
ariaColIndex: string;
|
|
2346
|
-
ariaColIndexText: string;
|
|
2347
2457
|
ariaColSpan: string;
|
|
2348
2458
|
ariaCurrent: string;
|
|
2459
|
+
ariaDescription: string;
|
|
2349
2460
|
ariaDisabled: string;
|
|
2350
2461
|
ariaExpanded: string;
|
|
2351
2462
|
ariaHasPopup: string;
|
|
@@ -2367,7 +2478,6 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2367
2478
|
ariaRoleDescription: string;
|
|
2368
2479
|
ariaRowCount: string;
|
|
2369
2480
|
ariaRowIndex: string;
|
|
2370
|
-
ariaRowIndexText: string;
|
|
2371
2481
|
ariaRowSpan: string;
|
|
2372
2482
|
ariaSelected: string;
|
|
2373
2483
|
ariaSetSize: string;
|
|
@@ -2392,17 +2502,19 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2392
2502
|
readonly lastElementChild: Element;
|
|
2393
2503
|
append(...nodes: (string | Node)[]): void;
|
|
2394
2504
|
prepend(...nodes: (string | Node)[]): void;
|
|
2395
|
-
querySelector<
|
|
2396
|
-
querySelector<
|
|
2505
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
2506
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
2507
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
2508
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
2397
2509
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
2398
|
-
querySelectorAll<
|
|
2399
|
-
querySelectorAll<
|
|
2510
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
2511
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
2512
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
2513
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
2400
2514
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
2401
2515
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
2402
2516
|
readonly assignedSlot: HTMLSlotElement;
|
|
2403
|
-
|
|
2404
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2405
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2517
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
2406
2518
|
readonly style: CSSStyleDeclaration;
|
|
2407
2519
|
contentEditable: string;
|
|
2408
2520
|
enterKeyHint: string;
|
|
@@ -2415,6 +2527,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2415
2527
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
2416
2528
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2417
2529
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
2530
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2418
2531
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
2419
2532
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2420
2533
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2423,7 +2536,9 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2423
2536
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2424
2537
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2425
2538
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2539
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2426
2540
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2541
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2427
2542
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2428
2543
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
2429
2544
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -2456,6 +2571,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2456
2571
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2457
2572
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2458
2573
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2574
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2459
2575
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2460
2576
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2461
2577
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2472,6 +2588,7 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2472
2588
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2473
2589
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
2474
2590
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2591
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2475
2592
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
2476
2593
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2477
2594
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2506,14 +2623,15 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2506
2623
|
blur(): void;
|
|
2507
2624
|
focus(options?: FocusOptions): void;
|
|
2508
2625
|
readonly projectId: string;
|
|
2509
|
-
"__#
|
|
2510
|
-
"__#
|
|
2626
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
2627
|
+
"__#12324@#observeMappings": {};
|
|
2511
2628
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
2512
2629
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
2513
|
-
"__#
|
|
2514
|
-
"__#
|
|
2515
|
-
"__#
|
|
2516
|
-
logger: Logger;
|
|
2630
|
+
"__#12323@#isInit": boolean;
|
|
2631
|
+
"__#12322@#logger": Logger;
|
|
2632
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
2633
|
+
get logger(): Logger;
|
|
2634
|
+
set logger(logger: Partial<Logger>);
|
|
2517
2635
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
2518
2636
|
contentRootElement: HTMLElement;
|
|
2519
2637
|
rootElement: HTMLElement;
|
|
@@ -2523,11 +2641,11 @@ declare const notificationsMixin: <T extends CustomElementConstructor>(superclas
|
|
|
2523
2641
|
type OnAttrChange = (attrName: string, value: string | null) => void;
|
|
2524
2642
|
declare const observeAttributesMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
2525
2643
|
new (...params: any[]): {
|
|
2526
|
-
"__#
|
|
2644
|
+
"__#12324@#observeMappings": {};
|
|
2527
2645
|
init(): Promise<void>;
|
|
2528
2646
|
observeAttribute(attrName: string, onAttrChange: OnAttrChange): () => any;
|
|
2529
2647
|
observeAttributes(attrs: string[], cb: OnAttrChange): () => void;
|
|
2530
|
-
"__#
|
|
2648
|
+
"__#12323@#isInit": boolean;
|
|
2531
2649
|
connectedCallback: (() => void) & (() => void);
|
|
2532
2650
|
accessKey: string;
|
|
2533
2651
|
readonly accessKeyLabel: string;
|
|
@@ -2544,11 +2662,15 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2544
2662
|
readonly offsetTop: number;
|
|
2545
2663
|
readonly offsetWidth: number;
|
|
2546
2664
|
outerText: string;
|
|
2665
|
+
popover: string;
|
|
2547
2666
|
spellcheck: boolean;
|
|
2548
2667
|
title: string;
|
|
2549
2668
|
translate: boolean;
|
|
2550
2669
|
attachInternals(): ElementInternals;
|
|
2551
2670
|
click(): void;
|
|
2671
|
+
hidePopover(): void;
|
|
2672
|
+
showPopover(): void;
|
|
2673
|
+
togglePopover(force?: boolean): boolean;
|
|
2552
2674
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2553
2675
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
2554
2676
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -2578,9 +2700,12 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2578
2700
|
slot: string;
|
|
2579
2701
|
readonly tagName: string;
|
|
2580
2702
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
2703
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
2581
2704
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
2582
2705
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
2706
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
2583
2707
|
closest<E extends Element = Element>(selectors: string): E;
|
|
2708
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
2584
2709
|
getAttribute(qualifiedName: string): string;
|
|
2585
2710
|
getAttributeNS(namespace: string, localName: string): string;
|
|
2586
2711
|
getAttributeNames(): string[];
|
|
@@ -2589,11 +2714,14 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2589
2714
|
getBoundingClientRect(): DOMRect;
|
|
2590
2715
|
getClientRects(): DOMRectList;
|
|
2591
2716
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
2592
|
-
getElementsByTagName<
|
|
2593
|
-
getElementsByTagName<
|
|
2717
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
2718
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
2719
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
2720
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
2594
2721
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
2595
2722
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
2596
2723
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
2724
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
2597
2725
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
2598
2726
|
hasAttribute(qualifiedName: string): boolean;
|
|
2599
2727
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -2651,24 +2779,24 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2651
2779
|
normalize(): void;
|
|
2652
2780
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
2653
2781
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
2654
|
-
readonly
|
|
2655
|
-
readonly
|
|
2656
|
-
readonly
|
|
2657
|
-
readonly
|
|
2658
|
-
readonly
|
|
2659
|
-
readonly
|
|
2660
|
-
readonly
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
readonly
|
|
2665
|
-
readonly
|
|
2666
|
-
readonly
|
|
2667
|
-
readonly
|
|
2668
|
-
readonly
|
|
2669
|
-
readonly
|
|
2670
|
-
readonly
|
|
2671
|
-
readonly
|
|
2782
|
+
readonly ELEMENT_NODE: 1;
|
|
2783
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
2784
|
+
readonly TEXT_NODE: 3;
|
|
2785
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
2786
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
2787
|
+
readonly ENTITY_NODE: 6;
|
|
2788
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
2789
|
+
readonly COMMENT_NODE: 8;
|
|
2790
|
+
readonly DOCUMENT_NODE: 9;
|
|
2791
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
2792
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
2793
|
+
readonly NOTATION_NODE: 12;
|
|
2794
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
2795
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
2796
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
2797
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
2798
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
2799
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
2672
2800
|
dispatchEvent(event: Event): boolean;
|
|
2673
2801
|
ariaAtomic: string;
|
|
2674
2802
|
ariaAutoComplete: string;
|
|
@@ -2676,9 +2804,9 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2676
2804
|
ariaChecked: string;
|
|
2677
2805
|
ariaColCount: string;
|
|
2678
2806
|
ariaColIndex: string;
|
|
2679
|
-
ariaColIndexText: string;
|
|
2680
2807
|
ariaColSpan: string;
|
|
2681
2808
|
ariaCurrent: string;
|
|
2809
|
+
ariaDescription: string;
|
|
2682
2810
|
ariaDisabled: string;
|
|
2683
2811
|
ariaExpanded: string;
|
|
2684
2812
|
ariaHasPopup: string;
|
|
@@ -2700,7 +2828,6 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2700
2828
|
ariaRoleDescription: string;
|
|
2701
2829
|
ariaRowCount: string;
|
|
2702
2830
|
ariaRowIndex: string;
|
|
2703
|
-
ariaRowIndexText: string;
|
|
2704
2831
|
ariaRowSpan: string;
|
|
2705
2832
|
ariaSelected: string;
|
|
2706
2833
|
ariaSetSize: string;
|
|
@@ -2725,17 +2852,19 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2725
2852
|
readonly lastElementChild: Element;
|
|
2726
2853
|
append(...nodes: (string | Node)[]): void;
|
|
2727
2854
|
prepend(...nodes: (string | Node)[]): void;
|
|
2728
|
-
querySelector<
|
|
2729
|
-
querySelector<
|
|
2855
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
2856
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
2857
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
2858
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
2730
2859
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
2731
|
-
querySelectorAll<
|
|
2732
|
-
querySelectorAll<
|
|
2860
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
2861
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
2862
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
2863
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
2733
2864
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
2734
2865
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
2735
2866
|
readonly assignedSlot: HTMLSlotElement;
|
|
2736
|
-
|
|
2737
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2738
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
2867
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
2739
2868
|
readonly style: CSSStyleDeclaration;
|
|
2740
2869
|
contentEditable: string;
|
|
2741
2870
|
enterKeyHint: string;
|
|
@@ -2748,6 +2877,7 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2748
2877
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
2749
2878
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2750
2879
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
2880
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2751
2881
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
2752
2882
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2753
2883
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2756,7 +2886,9 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2756
2886
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2757
2887
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2758
2888
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2889
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2759
2890
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2891
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2760
2892
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2761
2893
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
2762
2894
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -2789,6 +2921,7 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2789
2921
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2790
2922
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2791
2923
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
2924
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
2792
2925
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2793
2926
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2794
2927
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2805,6 +2938,7 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2805
2938
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2806
2939
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
2807
2940
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2941
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2808
2942
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
2809
2943
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
2810
2944
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -2838,9 +2972,10 @@ declare const observeAttributesMixin: <T extends CustomElementConstructor>(super
|
|
|
2838
2972
|
tabIndex: number;
|
|
2839
2973
|
blur(): void;
|
|
2840
2974
|
focus(options?: FocusOptions): void;
|
|
2841
|
-
"__#
|
|
2842
|
-
"__#
|
|
2843
|
-
logger: Logger;
|
|
2975
|
+
"__#12322@#logger": Logger;
|
|
2976
|
+
"__#12322@#wrapLogger"(logger: Partial<Logger>): Logger;
|
|
2977
|
+
get logger(): Logger;
|
|
2978
|
+
set logger(logger: Partial<Logger>);
|
|
2844
2979
|
onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
|
|
2845
2980
|
};
|
|
2846
2981
|
} & T;
|
|
@@ -2855,7 +2990,7 @@ declare function getResourceUrl({ projectId, filename, assetsFolder, baseUrl, }:
|
|
|
2855
2990
|
declare const staticResourcesMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
2856
2991
|
new (...params: any[]): {
|
|
2857
2992
|
fetchStaticResource<F extends Format>(filename: string, format: F): Promise<{
|
|
2858
|
-
body: F extends
|
|
2993
|
+
body: F extends 'json' ? Record<string, any> : string;
|
|
2859
2994
|
headers: Record<string, string>;
|
|
2860
2995
|
}>;
|
|
2861
2996
|
readonly baseStaticUrl: string;
|
|
@@ -2875,11 +3010,15 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
2875
3010
|
readonly offsetTop: number;
|
|
2876
3011
|
readonly offsetWidth: number;
|
|
2877
3012
|
outerText: string;
|
|
3013
|
+
popover: string;
|
|
2878
3014
|
spellcheck: boolean;
|
|
2879
3015
|
title: string;
|
|
2880
3016
|
translate: boolean;
|
|
2881
3017
|
attachInternals(): ElementInternals;
|
|
2882
3018
|
click(): void;
|
|
3019
|
+
hidePopover(): void;
|
|
3020
|
+
showPopover(): void;
|
|
3021
|
+
togglePopover(force?: boolean): boolean;
|
|
2883
3022
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
2884
3023
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
2885
3024
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -2910,9 +3049,12 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
2910
3049
|
slot: string;
|
|
2911
3050
|
readonly tagName: string;
|
|
2912
3051
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
3052
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
2913
3053
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
2914
3054
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
3055
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
2915
3056
|
closest<E extends Element = Element>(selectors: string): E;
|
|
3057
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
2916
3058
|
getAttribute(qualifiedName: string): string;
|
|
2917
3059
|
getAttributeNS(namespace: string, localName: string): string;
|
|
2918
3060
|
getAttributeNames(): string[];
|
|
@@ -2921,11 +3063,14 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
2921
3063
|
getBoundingClientRect(): DOMRect;
|
|
2922
3064
|
getClientRects(): DOMRectList;
|
|
2923
3065
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
2924
|
-
getElementsByTagName<
|
|
2925
|
-
getElementsByTagName<
|
|
3066
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
3067
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
3068
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
3069
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
2926
3070
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
2927
3071
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
2928
3072
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
3073
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
2929
3074
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
2930
3075
|
hasAttribute(qualifiedName: string): boolean;
|
|
2931
3076
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -2983,24 +3128,24 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
2983
3128
|
normalize(): void;
|
|
2984
3129
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
2985
3130
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
2986
|
-
readonly
|
|
2987
|
-
readonly
|
|
2988
|
-
readonly
|
|
2989
|
-
readonly
|
|
2990
|
-
readonly
|
|
2991
|
-
readonly
|
|
2992
|
-
readonly
|
|
2993
|
-
readonly
|
|
2994
|
-
readonly
|
|
2995
|
-
readonly
|
|
2996
|
-
readonly
|
|
2997
|
-
readonly
|
|
2998
|
-
readonly
|
|
2999
|
-
readonly
|
|
3000
|
-
readonly
|
|
3001
|
-
readonly
|
|
3002
|
-
readonly
|
|
3003
|
-
readonly
|
|
3131
|
+
readonly ELEMENT_NODE: 1;
|
|
3132
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
3133
|
+
readonly TEXT_NODE: 3;
|
|
3134
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
3135
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
3136
|
+
readonly ENTITY_NODE: 6;
|
|
3137
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
3138
|
+
readonly COMMENT_NODE: 8;
|
|
3139
|
+
readonly DOCUMENT_NODE: 9;
|
|
3140
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
3141
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
3142
|
+
readonly NOTATION_NODE: 12;
|
|
3143
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
3144
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
3145
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
3146
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
3147
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
3148
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
3004
3149
|
dispatchEvent(event: Event): boolean;
|
|
3005
3150
|
ariaAtomic: string;
|
|
3006
3151
|
ariaAutoComplete: string;
|
|
@@ -3008,9 +3153,9 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3008
3153
|
ariaChecked: string;
|
|
3009
3154
|
ariaColCount: string;
|
|
3010
3155
|
ariaColIndex: string;
|
|
3011
|
-
ariaColIndexText: string;
|
|
3012
3156
|
ariaColSpan: string;
|
|
3013
3157
|
ariaCurrent: string;
|
|
3158
|
+
ariaDescription: string;
|
|
3014
3159
|
ariaDisabled: string;
|
|
3015
3160
|
ariaExpanded: string;
|
|
3016
3161
|
ariaHasPopup: string;
|
|
@@ -3032,7 +3177,6 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3032
3177
|
ariaRoleDescription: string;
|
|
3033
3178
|
ariaRowCount: string;
|
|
3034
3179
|
ariaRowIndex: string;
|
|
3035
|
-
ariaRowIndexText: string;
|
|
3036
3180
|
ariaRowSpan: string;
|
|
3037
3181
|
ariaSelected: string;
|
|
3038
3182
|
ariaSetSize: string;
|
|
@@ -3057,17 +3201,19 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3057
3201
|
readonly lastElementChild: Element;
|
|
3058
3202
|
append(...nodes: (string | Node)[]): void;
|
|
3059
3203
|
prepend(...nodes: (string | Node)[]): void;
|
|
3060
|
-
querySelector<
|
|
3061
|
-
querySelector<
|
|
3204
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
3205
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
3206
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
3207
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
3062
3208
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
3063
|
-
querySelectorAll<
|
|
3064
|
-
querySelectorAll<
|
|
3209
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
3210
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
3211
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
3212
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
3065
3213
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
3066
3214
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
3067
3215
|
readonly assignedSlot: HTMLSlotElement;
|
|
3068
|
-
|
|
3069
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3070
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3216
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
3071
3217
|
readonly style: CSSStyleDeclaration;
|
|
3072
3218
|
contentEditable: string;
|
|
3073
3219
|
enterKeyHint: string;
|
|
@@ -3080,6 +3226,7 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3080
3226
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
3081
3227
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3082
3228
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
3229
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3083
3230
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
3084
3231
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3085
3232
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3088,7 +3235,9 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3088
3235
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3089
3236
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3090
3237
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3238
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3091
3239
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3240
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3092
3241
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3093
3242
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
3094
3243
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -3121,6 +3270,7 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3121
3270
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3122
3271
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3123
3272
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3273
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3124
3274
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3125
3275
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3126
3276
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3137,6 +3287,7 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3137
3287
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3138
3288
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
3139
3289
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3290
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3140
3291
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
3141
3292
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3142
3293
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3171,15 +3322,16 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3171
3322
|
blur(): void;
|
|
3172
3323
|
focus(options?: FocusOptions): void;
|
|
3173
3324
|
readonly projectId: string;
|
|
3174
|
-
"__#
|
|
3325
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
3175
3326
|
init(): Promise<void>;
|
|
3176
|
-
"__#
|
|
3327
|
+
"__#12324@#observeMappings": {};
|
|
3177
3328
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
3178
3329
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
3179
|
-
"__#
|
|
3180
|
-
"__#
|
|
3181
|
-
"__#
|
|
3182
|
-
logger: Logger;
|
|
3330
|
+
"__#12323@#isInit": boolean;
|
|
3331
|
+
"__#12322@#logger": Logger;
|
|
3332
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
3333
|
+
get logger(): Logger;
|
|
3334
|
+
set logger(logger: Partial<Logger>);
|
|
3183
3335
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
3184
3336
|
};
|
|
3185
3337
|
} & T;
|
|
@@ -3187,19 +3339,24 @@ declare const staticResourcesMixin: <T extends CustomElementConstructor>(supercl
|
|
|
3187
3339
|
type ThemeOptions = 'light' | 'dark' | 'os';
|
|
3188
3340
|
declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
3189
3341
|
new (...params: any[]): {
|
|
3342
|
+
"__#12335@#globalStyleTag": HTMLStyleElement;
|
|
3190
3343
|
readonly theme: ThemeOptions;
|
|
3191
|
-
|
|
3192
|
-
"__#
|
|
3193
|
-
|
|
3194
|
-
"__#
|
|
3195
|
-
"__#
|
|
3196
|
-
"__#
|
|
3197
|
-
"__#
|
|
3344
|
+
readonly styleId: string;
|
|
3345
|
+
"__#12335@#_themeResource": Promise<void | Record<string, any>>;
|
|
3346
|
+
"__#12335@#fetchTheme"(): Promise<Record<string, any>>;
|
|
3347
|
+
readonly "__#12335@#themeResource": Promise<void | Record<string, any>>;
|
|
3348
|
+
"__#12335@#loadGlobalStyle"(): Promise<void>;
|
|
3349
|
+
"__#12335@#loadComponentsStyle"(): Promise<void>;
|
|
3350
|
+
"__#12335@#getFontsConfig"(): Promise<Record<string, {
|
|
3351
|
+
url?: string;
|
|
3352
|
+
}>>;
|
|
3353
|
+
"__#12335@#loadFonts"(): Promise<void>;
|
|
3354
|
+
"__#12335@#applyTheme"(): Promise<void>;
|
|
3198
3355
|
init(): Promise<void>;
|
|
3199
|
-
"__#
|
|
3356
|
+
"__#12324@#observeMappings": {} & {} & {} & {} & {};
|
|
3200
3357
|
observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
|
|
3201
3358
|
observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
|
|
3202
|
-
"__#
|
|
3359
|
+
"__#12323@#isInit": boolean;
|
|
3203
3360
|
connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
|
|
3204
3361
|
accessKey: string;
|
|
3205
3362
|
readonly accessKeyLabel: string;
|
|
@@ -3216,11 +3373,15 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3216
3373
|
readonly offsetTop: number;
|
|
3217
3374
|
readonly offsetWidth: number;
|
|
3218
3375
|
outerText: string;
|
|
3376
|
+
popover: string;
|
|
3219
3377
|
spellcheck: boolean;
|
|
3220
3378
|
title: string;
|
|
3221
3379
|
translate: boolean;
|
|
3222
3380
|
attachInternals(): ElementInternals;
|
|
3223
3381
|
click(): void;
|
|
3382
|
+
hidePopover(): void;
|
|
3383
|
+
showPopover(): void;
|
|
3384
|
+
togglePopover(force?: boolean): boolean;
|
|
3224
3385
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
3225
3386
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
3226
3387
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -3250,9 +3411,12 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3250
3411
|
slot: string;
|
|
3251
3412
|
readonly tagName: string;
|
|
3252
3413
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
3414
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
3253
3415
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
3254
3416
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
3417
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
3255
3418
|
closest<E extends Element = Element>(selectors: string): E;
|
|
3419
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
3256
3420
|
getAttribute(qualifiedName: string): string;
|
|
3257
3421
|
getAttributeNS(namespace: string, localName: string): string;
|
|
3258
3422
|
getAttributeNames(): string[];
|
|
@@ -3261,11 +3425,14 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3261
3425
|
getBoundingClientRect(): DOMRect;
|
|
3262
3426
|
getClientRects(): DOMRectList;
|
|
3263
3427
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
3264
|
-
getElementsByTagName<
|
|
3265
|
-
getElementsByTagName<
|
|
3428
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
3429
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
3430
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
3431
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
3266
3432
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
3267
3433
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
3268
3434
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
3435
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
3269
3436
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
3270
3437
|
hasAttribute(qualifiedName: string): boolean;
|
|
3271
3438
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -3323,24 +3490,24 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3323
3490
|
normalize(): void;
|
|
3324
3491
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
3325
3492
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
3326
|
-
readonly
|
|
3327
|
-
readonly
|
|
3328
|
-
readonly
|
|
3329
|
-
readonly
|
|
3330
|
-
readonly
|
|
3331
|
-
readonly
|
|
3332
|
-
readonly
|
|
3333
|
-
readonly
|
|
3334
|
-
readonly
|
|
3335
|
-
readonly
|
|
3336
|
-
readonly
|
|
3337
|
-
readonly
|
|
3338
|
-
readonly
|
|
3339
|
-
readonly
|
|
3340
|
-
readonly
|
|
3341
|
-
readonly
|
|
3342
|
-
readonly
|
|
3343
|
-
readonly
|
|
3493
|
+
readonly ELEMENT_NODE: 1;
|
|
3494
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
3495
|
+
readonly TEXT_NODE: 3;
|
|
3496
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
3497
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
3498
|
+
readonly ENTITY_NODE: 6;
|
|
3499
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
3500
|
+
readonly COMMENT_NODE: 8;
|
|
3501
|
+
readonly DOCUMENT_NODE: 9;
|
|
3502
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
3503
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
3504
|
+
readonly NOTATION_NODE: 12;
|
|
3505
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
3506
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
3507
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
3508
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
3509
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
3510
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
3344
3511
|
dispatchEvent(event: Event): boolean;
|
|
3345
3512
|
ariaAtomic: string;
|
|
3346
3513
|
ariaAutoComplete: string;
|
|
@@ -3348,9 +3515,9 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3348
3515
|
ariaChecked: string;
|
|
3349
3516
|
ariaColCount: string;
|
|
3350
3517
|
ariaColIndex: string;
|
|
3351
|
-
ariaColIndexText: string;
|
|
3352
3518
|
ariaColSpan: string;
|
|
3353
3519
|
ariaCurrent: string;
|
|
3520
|
+
ariaDescription: string;
|
|
3354
3521
|
ariaDisabled: string;
|
|
3355
3522
|
ariaExpanded: string;
|
|
3356
3523
|
ariaHasPopup: string;
|
|
@@ -3372,7 +3539,6 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3372
3539
|
ariaRoleDescription: string;
|
|
3373
3540
|
ariaRowCount: string;
|
|
3374
3541
|
ariaRowIndex: string;
|
|
3375
|
-
ariaRowIndexText: string;
|
|
3376
3542
|
ariaRowSpan: string;
|
|
3377
3543
|
ariaSelected: string;
|
|
3378
3544
|
ariaSetSize: string;
|
|
@@ -3397,17 +3563,19 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3397
3563
|
readonly lastElementChild: Element;
|
|
3398
3564
|
append(...nodes: (string | Node)[]): void;
|
|
3399
3565
|
prepend(...nodes: (string | Node)[]): void;
|
|
3400
|
-
querySelector<
|
|
3401
|
-
querySelector<
|
|
3566
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
3567
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
3568
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
3569
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
3402
3570
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
3403
|
-
querySelectorAll<
|
|
3404
|
-
querySelectorAll<
|
|
3571
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
3572
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
3573
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
3574
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
3405
3575
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
3406
3576
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
3407
3577
|
readonly assignedSlot: HTMLSlotElement;
|
|
3408
|
-
|
|
3409
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3410
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3578
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
3411
3579
|
readonly style: CSSStyleDeclaration;
|
|
3412
3580
|
contentEditable: string;
|
|
3413
3581
|
enterKeyHint: string;
|
|
@@ -3420,6 +3588,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3420
3588
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
3421
3589
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3422
3590
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
3591
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3423
3592
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
3424
3593
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3425
3594
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3428,7 +3597,9 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3428
3597
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3429
3598
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3430
3599
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3600
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3431
3601
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3602
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3432
3603
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3433
3604
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
3434
3605
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -3461,6 +3632,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3461
3632
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3462
3633
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3463
3634
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3635
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3464
3636
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3465
3637
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3466
3638
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3477,6 +3649,7 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3477
3649
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3478
3650
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
3479
3651
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3652
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3480
3653
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
3481
3654
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3482
3655
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3510,15 +3683,16 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3510
3683
|
tabIndex: number;
|
|
3511
3684
|
blur(): void;
|
|
3512
3685
|
focus(options?: FocusOptions): void;
|
|
3513
|
-
"__#
|
|
3514
|
-
"__#
|
|
3515
|
-
logger: Logger;
|
|
3686
|
+
"__#12322@#logger": Logger;
|
|
3687
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
3688
|
+
get logger(): Logger;
|
|
3689
|
+
set logger(logger: Partial<Logger>);
|
|
3516
3690
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
3517
3691
|
contentRootElement: HTMLElement;
|
|
3518
3692
|
rootElement: HTMLElement;
|
|
3519
3693
|
readonly config: any;
|
|
3520
|
-
"__#
|
|
3521
|
-
"__#
|
|
3694
|
+
"__#12326@#_configResource": any;
|
|
3695
|
+
"__#12326@#fetchConfig": (() => Promise<{
|
|
3522
3696
|
projectConfig: ProjectConfiguration;
|
|
3523
3697
|
executionContext: {
|
|
3524
3698
|
geo: string;
|
|
@@ -3542,19 +3716,19 @@ declare const themeMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3542
3716
|
readonly baseStaticUrl: string;
|
|
3543
3717
|
readonly baseUrl: string;
|
|
3544
3718
|
readonly projectId: string;
|
|
3545
|
-
"__#
|
|
3546
|
-
"__#
|
|
3547
|
-
"__#
|
|
3548
|
-
"__#
|
|
3549
|
-
"__#
|
|
3550
|
-
"__#
|
|
3551
|
-
"__#
|
|
3552
|
-
"__#
|
|
3553
|
-
"__#
|
|
3719
|
+
"__#12325@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
|
|
3720
|
+
"__#12329@#errorCbsSym": symbol;
|
|
3721
|
+
"__#12329@#loadCbsSym": symbol;
|
|
3722
|
+
"__#12329@#getComponentsVersion"(): Promise<any>;
|
|
3723
|
+
"__#12329@#exposeAlternateEvents"(scriptEle: HTMLScriptElement): void;
|
|
3724
|
+
"__#12329@#handleFallbackScript"(errorCbs: ((error: string) => void)[], loadCbs: (() => void)[]): Promise<void>;
|
|
3725
|
+
"__#12329@#registerEvents"(scriptEle: HTMLScriptElement): void;
|
|
3726
|
+
"__#12329@#getDescopeUiLoadingScript"(): Promise<HTMLElement>;
|
|
3727
|
+
"__#12329@#descopeUi": Promise<any>;
|
|
3554
3728
|
readonly descopeUi: Promise<any>;
|
|
3555
|
-
"__#
|
|
3729
|
+
"__#12329@#loadDescopeUiComponent"(componentName: string): Promise<any>;
|
|
3556
3730
|
loadDescopeUiComponents(templateOrComponentNames: HTMLTemplateElement | string[]): Promise<any[]>;
|
|
3557
|
-
"__#
|
|
3731
|
+
"__#12329@#getDescopeUi"(): Promise<unknown>;
|
|
3558
3732
|
};
|
|
3559
3733
|
} & T;
|
|
3560
3734
|
|
|
@@ -3564,9 +3738,10 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3564
3738
|
new (...args: any): {
|
|
3565
3739
|
actions: _reduxjs_toolkit.CaseReducerActions<CaseReducers, Name> & AsyncActions;
|
|
3566
3740
|
subscribe: <SelectorR = State extends Draft<infer S> ? S : State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => Unsubscribe;
|
|
3567
|
-
"__#
|
|
3568
|
-
"__#
|
|
3569
|
-
logger: Logger;
|
|
3741
|
+
"__#12322@#logger": Logger;
|
|
3742
|
+
"__#12322@#wrapLogger"(logger: Partial<Logger>): Logger;
|
|
3743
|
+
get logger(): Logger;
|
|
3744
|
+
set logger(logger: Partial<Logger>);
|
|
3570
3745
|
onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
|
|
3571
3746
|
accessKey: string;
|
|
3572
3747
|
readonly accessKeyLabel: string;
|
|
@@ -3583,11 +3758,15 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3583
3758
|
readonly offsetTop: number;
|
|
3584
3759
|
readonly offsetWidth: number;
|
|
3585
3760
|
outerText: string;
|
|
3761
|
+
popover: string;
|
|
3586
3762
|
spellcheck: boolean;
|
|
3587
3763
|
title: string;
|
|
3588
3764
|
translate: boolean;
|
|
3589
3765
|
attachInternals(): ElementInternals;
|
|
3590
3766
|
click(): void;
|
|
3767
|
+
hidePopover(): void;
|
|
3768
|
+
showPopover(): void;
|
|
3769
|
+
togglePopover(force?: boolean): boolean;
|
|
3591
3770
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
3592
3771
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
3593
3772
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -3618,9 +3797,12 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3618
3797
|
slot: string;
|
|
3619
3798
|
readonly tagName: string;
|
|
3620
3799
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
3800
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
3621
3801
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
3622
3802
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
3803
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
3623
3804
|
closest<E extends Element = Element>(selectors: string): E;
|
|
3805
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
3624
3806
|
getAttribute(qualifiedName: string): string;
|
|
3625
3807
|
getAttributeNS(namespace: string, localName: string): string;
|
|
3626
3808
|
getAttributeNames(): string[];
|
|
@@ -3629,11 +3811,14 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3629
3811
|
getBoundingClientRect(): DOMRect;
|
|
3630
3812
|
getClientRects(): DOMRectList;
|
|
3631
3813
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
3632
|
-
getElementsByTagName<
|
|
3633
|
-
getElementsByTagName<
|
|
3814
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
3815
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
3816
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
3817
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
3634
3818
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
3635
3819
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
3636
3820
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
3821
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
3637
3822
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
3638
3823
|
hasAttribute(qualifiedName: string): boolean;
|
|
3639
3824
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -3691,24 +3876,24 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3691
3876
|
normalize(): void;
|
|
3692
3877
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
3693
3878
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
3694
|
-
readonly
|
|
3695
|
-
readonly
|
|
3696
|
-
readonly
|
|
3697
|
-
readonly
|
|
3698
|
-
readonly
|
|
3699
|
-
readonly
|
|
3700
|
-
readonly
|
|
3701
|
-
readonly
|
|
3702
|
-
readonly
|
|
3703
|
-
readonly
|
|
3704
|
-
readonly
|
|
3705
|
-
readonly
|
|
3706
|
-
readonly
|
|
3707
|
-
readonly
|
|
3708
|
-
readonly
|
|
3709
|
-
readonly
|
|
3710
|
-
readonly
|
|
3711
|
-
readonly
|
|
3879
|
+
readonly ELEMENT_NODE: 1;
|
|
3880
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
3881
|
+
readonly TEXT_NODE: 3;
|
|
3882
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
3883
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
3884
|
+
readonly ENTITY_NODE: 6;
|
|
3885
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
3886
|
+
readonly COMMENT_NODE: 8;
|
|
3887
|
+
readonly DOCUMENT_NODE: 9;
|
|
3888
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
3889
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
3890
|
+
readonly NOTATION_NODE: 12;
|
|
3891
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
3892
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
3893
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
3894
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
3895
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
3896
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
3712
3897
|
dispatchEvent(event: Event): boolean;
|
|
3713
3898
|
ariaAtomic: string;
|
|
3714
3899
|
ariaAutoComplete: string;
|
|
@@ -3716,9 +3901,9 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3716
3901
|
ariaChecked: string;
|
|
3717
3902
|
ariaColCount: string;
|
|
3718
3903
|
ariaColIndex: string;
|
|
3719
|
-
ariaColIndexText: string;
|
|
3720
3904
|
ariaColSpan: string;
|
|
3721
3905
|
ariaCurrent: string;
|
|
3906
|
+
ariaDescription: string;
|
|
3722
3907
|
ariaDisabled: string;
|
|
3723
3908
|
ariaExpanded: string;
|
|
3724
3909
|
ariaHasPopup: string;
|
|
@@ -3740,7 +3925,6 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3740
3925
|
ariaRoleDescription: string;
|
|
3741
3926
|
ariaRowCount: string;
|
|
3742
3927
|
ariaRowIndex: string;
|
|
3743
|
-
ariaRowIndexText: string;
|
|
3744
3928
|
ariaRowSpan: string;
|
|
3745
3929
|
ariaSelected: string;
|
|
3746
3930
|
ariaSetSize: string;
|
|
@@ -3765,17 +3949,19 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3765
3949
|
readonly lastElementChild: Element;
|
|
3766
3950
|
append(...nodes: (string | Node)[]): void;
|
|
3767
3951
|
prepend(...nodes: (string | Node)[]): void;
|
|
3768
|
-
querySelector<
|
|
3769
|
-
querySelector<
|
|
3952
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
3953
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
3954
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
3955
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
3770
3956
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
3771
|
-
querySelectorAll<
|
|
3772
|
-
querySelectorAll<
|
|
3957
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
3958
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
3959
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
3960
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
3773
3961
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
3774
3962
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
3775
3963
|
readonly assignedSlot: HTMLSlotElement;
|
|
3776
|
-
|
|
3777
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3778
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
3964
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
3779
3965
|
readonly style: CSSStyleDeclaration;
|
|
3780
3966
|
contentEditable: string;
|
|
3781
3967
|
enterKeyHint: string;
|
|
@@ -3788,6 +3974,7 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3788
3974
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
3789
3975
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3790
3976
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
3977
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3791
3978
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
3792
3979
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3793
3980
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3796,7 +3983,9 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3796
3983
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3797
3984
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3798
3985
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3986
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3799
3987
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3988
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3800
3989
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3801
3990
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
3802
3991
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -3829,6 +4018,7 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3829
4018
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3830
4019
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
3831
4020
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4021
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
3832
4022
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3833
4023
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3834
4024
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3845,6 +4035,7 @@ declare const createStateManagementMixin: <State, CaseReducers extends SliceCase
|
|
|
3845
4035
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3846
4036
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
3847
4037
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4038
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3848
4039
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
3849
4040
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
3850
4041
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -3892,9 +4083,10 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3892
4083
|
getFormFieldNames(rootEle: ElementOrEmpty): string[];
|
|
3893
4084
|
disableFormField(rootEle: ElementOrEmpty, name: string): void;
|
|
3894
4085
|
removeFormField(rootEle: ElementOrEmpty, name: string): void;
|
|
3895
|
-
"__#
|
|
3896
|
-
"__#
|
|
3897
|
-
logger: Logger;
|
|
4086
|
+
"__#12322@#logger": Logger;
|
|
4087
|
+
"__#12322@#wrapLogger"(logger: Partial<Logger>): Logger;
|
|
4088
|
+
get logger(): Logger;
|
|
4089
|
+
set logger(logger: Partial<Logger>);
|
|
3898
4090
|
onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
|
|
3899
4091
|
accessKey: string;
|
|
3900
4092
|
readonly accessKeyLabel: string;
|
|
@@ -3911,11 +4103,15 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3911
4103
|
readonly offsetTop: number;
|
|
3912
4104
|
readonly offsetWidth: number;
|
|
3913
4105
|
outerText: string;
|
|
4106
|
+
popover: string;
|
|
3914
4107
|
spellcheck: boolean;
|
|
3915
4108
|
title: string;
|
|
3916
4109
|
translate: boolean;
|
|
3917
4110
|
attachInternals(): ElementInternals;
|
|
3918
4111
|
click(): void;
|
|
4112
|
+
hidePopover(): void;
|
|
4113
|
+
showPopover(): void;
|
|
4114
|
+
togglePopover(force?: boolean): boolean;
|
|
3919
4115
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
3920
4116
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
3921
4117
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -3946,9 +4142,12 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3946
4142
|
slot: string;
|
|
3947
4143
|
readonly tagName: string;
|
|
3948
4144
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
4145
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
3949
4146
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
3950
4147
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
4148
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
3951
4149
|
closest<E extends Element = Element>(selectors: string): E;
|
|
4150
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
3952
4151
|
getAttribute(qualifiedName: string): string;
|
|
3953
4152
|
getAttributeNS(namespace: string, localName: string): string;
|
|
3954
4153
|
getAttributeNames(): string[];
|
|
@@ -3957,11 +4156,14 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
3957
4156
|
getBoundingClientRect(): DOMRect;
|
|
3958
4157
|
getClientRects(): DOMRectList;
|
|
3959
4158
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
3960
|
-
getElementsByTagName<
|
|
3961
|
-
getElementsByTagName<
|
|
4159
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
4160
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
4161
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
4162
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
3962
4163
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
3963
4164
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
3964
4165
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
4166
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
3965
4167
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
3966
4168
|
hasAttribute(qualifiedName: string): boolean;
|
|
3967
4169
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -4019,24 +4221,24 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4019
4221
|
normalize(): void;
|
|
4020
4222
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
4021
4223
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
4022
|
-
readonly
|
|
4023
|
-
readonly
|
|
4024
|
-
readonly
|
|
4025
|
-
readonly
|
|
4026
|
-
readonly
|
|
4027
|
-
readonly
|
|
4028
|
-
readonly
|
|
4029
|
-
readonly
|
|
4030
|
-
readonly
|
|
4031
|
-
readonly
|
|
4032
|
-
readonly
|
|
4033
|
-
readonly
|
|
4034
|
-
readonly
|
|
4035
|
-
readonly
|
|
4036
|
-
readonly
|
|
4037
|
-
readonly
|
|
4038
|
-
readonly
|
|
4039
|
-
readonly
|
|
4224
|
+
readonly ELEMENT_NODE: 1;
|
|
4225
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
4226
|
+
readonly TEXT_NODE: 3;
|
|
4227
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
4228
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
4229
|
+
readonly ENTITY_NODE: 6;
|
|
4230
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
4231
|
+
readonly COMMENT_NODE: 8;
|
|
4232
|
+
readonly DOCUMENT_NODE: 9;
|
|
4233
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
4234
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
4235
|
+
readonly NOTATION_NODE: 12;
|
|
4236
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
4237
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
4238
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
4239
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
4240
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
4241
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
4040
4242
|
dispatchEvent(event: Event): boolean;
|
|
4041
4243
|
ariaAtomic: string;
|
|
4042
4244
|
ariaAutoComplete: string;
|
|
@@ -4044,9 +4246,9 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4044
4246
|
ariaChecked: string;
|
|
4045
4247
|
ariaColCount: string;
|
|
4046
4248
|
ariaColIndex: string;
|
|
4047
|
-
ariaColIndexText: string;
|
|
4048
4249
|
ariaColSpan: string;
|
|
4049
4250
|
ariaCurrent: string;
|
|
4251
|
+
ariaDescription: string;
|
|
4050
4252
|
ariaDisabled: string;
|
|
4051
4253
|
ariaExpanded: string;
|
|
4052
4254
|
ariaHasPopup: string;
|
|
@@ -4068,7 +4270,6 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4068
4270
|
ariaRoleDescription: string;
|
|
4069
4271
|
ariaRowCount: string;
|
|
4070
4272
|
ariaRowIndex: string;
|
|
4071
|
-
ariaRowIndexText: string;
|
|
4072
4273
|
ariaRowSpan: string;
|
|
4073
4274
|
ariaSelected: string;
|
|
4074
4275
|
ariaSetSize: string;
|
|
@@ -4093,17 +4294,19 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4093
4294
|
readonly lastElementChild: Element;
|
|
4094
4295
|
append(...nodes: (string | Node)[]): void;
|
|
4095
4296
|
prepend(...nodes: (string | Node)[]): void;
|
|
4096
|
-
querySelector<
|
|
4097
|
-
querySelector<
|
|
4297
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
4298
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
4299
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
4300
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
4098
4301
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
4099
|
-
querySelectorAll<
|
|
4100
|
-
querySelectorAll<
|
|
4302
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
4303
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
4304
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
4305
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
4101
4306
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
4102
4307
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
4103
4308
|
readonly assignedSlot: HTMLSlotElement;
|
|
4104
|
-
|
|
4105
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4106
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4309
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
4107
4310
|
readonly style: CSSStyleDeclaration;
|
|
4108
4311
|
contentEditable: string;
|
|
4109
4312
|
enterKeyHint: string;
|
|
@@ -4116,6 +4319,7 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4116
4319
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
4117
4320
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4118
4321
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
4322
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4119
4323
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
4120
4324
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4121
4325
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4124,7 +4328,9 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4124
4328
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4125
4329
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4126
4330
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4331
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4127
4332
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4333
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4128
4334
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4129
4335
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
4130
4336
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -4157,6 +4363,7 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4157
4363
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4158
4364
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4159
4365
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4366
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4160
4367
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4161
4368
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4162
4369
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4173,6 +4380,7 @@ declare const formMixin: <T extends CustomElementConstructor>(superclass: T) =>
|
|
|
4173
4380
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4174
4381
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
4175
4382
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4383
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4176
4384
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
4177
4385
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4178
4386
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4228,11 +4436,15 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4228
4436
|
readonly offsetTop: number;
|
|
4229
4437
|
readonly offsetWidth: number;
|
|
4230
4438
|
outerText: string;
|
|
4439
|
+
popover: string;
|
|
4231
4440
|
spellcheck: boolean;
|
|
4232
4441
|
title: string;
|
|
4233
4442
|
translate: boolean;
|
|
4234
4443
|
attachInternals(): ElementInternals;
|
|
4235
4444
|
click(): void;
|
|
4445
|
+
hidePopover(): void;
|
|
4446
|
+
showPopover(): void;
|
|
4447
|
+
togglePopover(force?: boolean): boolean;
|
|
4236
4448
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
4237
4449
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
4238
4450
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -4263,9 +4475,12 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4263
4475
|
slot: string;
|
|
4264
4476
|
readonly tagName: string;
|
|
4265
4477
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
4478
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
4266
4479
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
4267
4480
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
4481
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
4268
4482
|
closest<E extends Element = Element>(selectors: string): E;
|
|
4483
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
4269
4484
|
getAttribute(qualifiedName: string): string;
|
|
4270
4485
|
getAttributeNS(namespace: string, localName: string): string;
|
|
4271
4486
|
getAttributeNames(): string[];
|
|
@@ -4274,11 +4489,14 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4274
4489
|
getBoundingClientRect(): DOMRect;
|
|
4275
4490
|
getClientRects(): DOMRectList;
|
|
4276
4491
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
4277
|
-
getElementsByTagName<
|
|
4278
|
-
getElementsByTagName<
|
|
4492
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
4493
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
4494
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
4495
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
4279
4496
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
4280
4497
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
4281
4498
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
4499
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
4282
4500
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
4283
4501
|
hasAttribute(qualifiedName: string): boolean;
|
|
4284
4502
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -4336,24 +4554,24 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4336
4554
|
normalize(): void;
|
|
4337
4555
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
4338
4556
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
4339
|
-
readonly
|
|
4340
|
-
readonly
|
|
4341
|
-
readonly
|
|
4342
|
-
readonly
|
|
4343
|
-
readonly
|
|
4344
|
-
readonly
|
|
4345
|
-
readonly
|
|
4346
|
-
readonly
|
|
4347
|
-
readonly
|
|
4348
|
-
readonly
|
|
4349
|
-
readonly
|
|
4350
|
-
readonly
|
|
4351
|
-
readonly
|
|
4352
|
-
readonly
|
|
4353
|
-
readonly
|
|
4354
|
-
readonly
|
|
4355
|
-
readonly
|
|
4356
|
-
readonly
|
|
4557
|
+
readonly ELEMENT_NODE: 1;
|
|
4558
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
4559
|
+
readonly TEXT_NODE: 3;
|
|
4560
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
4561
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
4562
|
+
readonly ENTITY_NODE: 6;
|
|
4563
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
4564
|
+
readonly COMMENT_NODE: 8;
|
|
4565
|
+
readonly DOCUMENT_NODE: 9;
|
|
4566
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
4567
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
4568
|
+
readonly NOTATION_NODE: 12;
|
|
4569
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
4570
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
4571
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
4572
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
4573
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
4574
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
4357
4575
|
dispatchEvent(event: Event): boolean;
|
|
4358
4576
|
ariaAtomic: string;
|
|
4359
4577
|
ariaAutoComplete: string;
|
|
@@ -4361,9 +4579,9 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4361
4579
|
ariaChecked: string;
|
|
4362
4580
|
ariaColCount: string;
|
|
4363
4581
|
ariaColIndex: string;
|
|
4364
|
-
ariaColIndexText: string;
|
|
4365
4582
|
ariaColSpan: string;
|
|
4366
4583
|
ariaCurrent: string;
|
|
4584
|
+
ariaDescription: string;
|
|
4367
4585
|
ariaDisabled: string;
|
|
4368
4586
|
ariaExpanded: string;
|
|
4369
4587
|
ariaHasPopup: string;
|
|
@@ -4385,7 +4603,6 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4385
4603
|
ariaRoleDescription: string;
|
|
4386
4604
|
ariaRowCount: string;
|
|
4387
4605
|
ariaRowIndex: string;
|
|
4388
|
-
ariaRowIndexText: string;
|
|
4389
4606
|
ariaRowSpan: string;
|
|
4390
4607
|
ariaSelected: string;
|
|
4391
4608
|
ariaSetSize: string;
|
|
@@ -4410,17 +4627,19 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4410
4627
|
readonly lastElementChild: Element;
|
|
4411
4628
|
append(...nodes: (string | Node)[]): void;
|
|
4412
4629
|
prepend(...nodes: (string | Node)[]): void;
|
|
4413
|
-
querySelector<
|
|
4414
|
-
querySelector<
|
|
4630
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
4631
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
4632
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
4633
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
4415
4634
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
4416
|
-
querySelectorAll<
|
|
4417
|
-
querySelectorAll<
|
|
4635
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
4636
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
4637
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
4638
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
4418
4639
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
4419
4640
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
4420
4641
|
readonly assignedSlot: HTMLSlotElement;
|
|
4421
|
-
|
|
4422
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4423
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4642
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
4424
4643
|
readonly style: CSSStyleDeclaration;
|
|
4425
4644
|
contentEditable: string;
|
|
4426
4645
|
enterKeyHint: string;
|
|
@@ -4433,6 +4652,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4433
4652
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
4434
4653
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4435
4654
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
4655
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4436
4656
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
4437
4657
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4438
4658
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4441,7 +4661,9 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4441
4661
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4442
4662
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4443
4663
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4664
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4444
4665
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4666
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4445
4667
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4446
4668
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
4447
4669
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -4474,6 +4696,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4474
4696
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4475
4697
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4476
4698
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4699
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4477
4700
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4478
4701
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4479
4702
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4490,6 +4713,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4490
4713
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4491
4714
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
4492
4715
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4716
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4493
4717
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
4494
4718
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4495
4719
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4528,7 +4752,7 @@ declare const initElementMixin: <T extends CustomElementConstructor>(superclass:
|
|
|
4528
4752
|
|
|
4529
4753
|
declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
4530
4754
|
new (...params: any[]): {
|
|
4531
|
-
"__#
|
|
4755
|
+
"__#12323@#isInit": boolean;
|
|
4532
4756
|
connectedCallback(): void;
|
|
4533
4757
|
init(): Promise<void>;
|
|
4534
4758
|
accessKey: string;
|
|
@@ -4546,11 +4770,15 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4546
4770
|
readonly offsetTop: number;
|
|
4547
4771
|
readonly offsetWidth: number;
|
|
4548
4772
|
outerText: string;
|
|
4773
|
+
popover: string;
|
|
4549
4774
|
spellcheck: boolean;
|
|
4550
4775
|
title: string;
|
|
4551
4776
|
translate: boolean;
|
|
4552
4777
|
attachInternals(): ElementInternals;
|
|
4553
4778
|
click(): void;
|
|
4779
|
+
hidePopover(): void;
|
|
4780
|
+
showPopover(): void;
|
|
4781
|
+
togglePopover(force?: boolean): boolean;
|
|
4554
4782
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
4555
4783
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
4556
4784
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -4580,9 +4808,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4580
4808
|
slot: string;
|
|
4581
4809
|
readonly tagName: string;
|
|
4582
4810
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
4811
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
4583
4812
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
4584
4813
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
4814
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
4585
4815
|
closest<E extends Element = Element>(selectors: string): E;
|
|
4816
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
4586
4817
|
getAttribute(qualifiedName: string): string;
|
|
4587
4818
|
getAttributeNS(namespace: string, localName: string): string;
|
|
4588
4819
|
getAttributeNames(): string[];
|
|
@@ -4591,11 +4822,14 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4591
4822
|
getBoundingClientRect(): DOMRect;
|
|
4592
4823
|
getClientRects(): DOMRectList;
|
|
4593
4824
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
4594
|
-
getElementsByTagName<
|
|
4595
|
-
getElementsByTagName<
|
|
4825
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
4826
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
4827
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
4828
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
4596
4829
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
4597
4830
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
4598
4831
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
4832
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
4599
4833
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
4600
4834
|
hasAttribute(qualifiedName: string): boolean;
|
|
4601
4835
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -4653,24 +4887,24 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4653
4887
|
normalize(): void;
|
|
4654
4888
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
4655
4889
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
4656
|
-
readonly
|
|
4657
|
-
readonly
|
|
4658
|
-
readonly
|
|
4659
|
-
readonly
|
|
4660
|
-
readonly
|
|
4661
|
-
readonly
|
|
4662
|
-
readonly
|
|
4663
|
-
readonly
|
|
4664
|
-
readonly
|
|
4665
|
-
readonly
|
|
4666
|
-
readonly
|
|
4667
|
-
readonly
|
|
4668
|
-
readonly
|
|
4669
|
-
readonly
|
|
4670
|
-
readonly
|
|
4671
|
-
readonly
|
|
4672
|
-
readonly
|
|
4673
|
-
readonly
|
|
4890
|
+
readonly ELEMENT_NODE: 1;
|
|
4891
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
4892
|
+
readonly TEXT_NODE: 3;
|
|
4893
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
4894
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
4895
|
+
readonly ENTITY_NODE: 6;
|
|
4896
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
4897
|
+
readonly COMMENT_NODE: 8;
|
|
4898
|
+
readonly DOCUMENT_NODE: 9;
|
|
4899
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
4900
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
4901
|
+
readonly NOTATION_NODE: 12;
|
|
4902
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
4903
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
4904
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
4905
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
4906
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
4907
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
4674
4908
|
dispatchEvent(event: Event): boolean;
|
|
4675
4909
|
ariaAtomic: string;
|
|
4676
4910
|
ariaAutoComplete: string;
|
|
@@ -4678,9 +4912,9 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4678
4912
|
ariaChecked: string;
|
|
4679
4913
|
ariaColCount: string;
|
|
4680
4914
|
ariaColIndex: string;
|
|
4681
|
-
ariaColIndexText: string;
|
|
4682
4915
|
ariaColSpan: string;
|
|
4683
4916
|
ariaCurrent: string;
|
|
4917
|
+
ariaDescription: string;
|
|
4684
4918
|
ariaDisabled: string;
|
|
4685
4919
|
ariaExpanded: string;
|
|
4686
4920
|
ariaHasPopup: string;
|
|
@@ -4702,7 +4936,6 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4702
4936
|
ariaRoleDescription: string;
|
|
4703
4937
|
ariaRowCount: string;
|
|
4704
4938
|
ariaRowIndex: string;
|
|
4705
|
-
ariaRowIndexText: string;
|
|
4706
4939
|
ariaRowSpan: string;
|
|
4707
4940
|
ariaSelected: string;
|
|
4708
4941
|
ariaSetSize: string;
|
|
@@ -4727,17 +4960,19 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4727
4960
|
readonly lastElementChild: Element;
|
|
4728
4961
|
append(...nodes: (string | Node)[]): void;
|
|
4729
4962
|
prepend(...nodes: (string | Node)[]): void;
|
|
4730
|
-
querySelector<
|
|
4731
|
-
querySelector<
|
|
4963
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
4964
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
4965
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
4966
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
4732
4967
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
4733
|
-
querySelectorAll<
|
|
4734
|
-
querySelectorAll<
|
|
4968
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
4969
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
4970
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
4971
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
4735
4972
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
4736
4973
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
4737
4974
|
readonly assignedSlot: HTMLSlotElement;
|
|
4738
|
-
|
|
4739
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4740
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
4975
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
4741
4976
|
readonly style: CSSStyleDeclaration;
|
|
4742
4977
|
contentEditable: string;
|
|
4743
4978
|
enterKeyHint: string;
|
|
@@ -4750,6 +4985,7 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4750
4985
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
4751
4986
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4752
4987
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
4988
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4753
4989
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
4754
4990
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4755
4991
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4758,7 +4994,9 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4758
4994
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4759
4995
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4760
4996
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4997
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4761
4998
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4999
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4762
5000
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4763
5001
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
4764
5002
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -4791,6 +5029,7 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4791
5029
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4792
5030
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
4793
5031
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5032
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
4794
5033
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4795
5034
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4796
5035
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4807,6 +5046,7 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4807
5046
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4808
5047
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
4809
5048
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5049
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4810
5050
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
4811
5051
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
4812
5052
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -4846,12 +5086,12 @@ declare const initLifecycleMixin: <T extends CustomElementConstructor>(superclas
|
|
|
4846
5086
|
declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T) => {
|
|
4847
5087
|
new (...args: any): {
|
|
4848
5088
|
readonly projectId: string;
|
|
4849
|
-
"__#
|
|
5089
|
+
"__#12325@#handleError"(attrName: string, newValue: string): void;
|
|
4850
5090
|
init(): Promise<void>;
|
|
4851
|
-
"__#
|
|
5091
|
+
"__#12324@#observeMappings": {};
|
|
4852
5092
|
observeAttribute(attrName: string, onAttrChange: (attrName: string, value: string) => void): () => any;
|
|
4853
5093
|
observeAttributes(attrs: string[], cb: (attrName: string, value: string) => void): () => void;
|
|
4854
|
-
"__#
|
|
5094
|
+
"__#12323@#isInit": boolean;
|
|
4855
5095
|
connectedCallback: (() => void) & (() => void) & (() => void);
|
|
4856
5096
|
accessKey: string;
|
|
4857
5097
|
readonly accessKeyLabel: string;
|
|
@@ -4868,11 +5108,15 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
4868
5108
|
readonly offsetTop: number;
|
|
4869
5109
|
readonly offsetWidth: number;
|
|
4870
5110
|
outerText: string;
|
|
5111
|
+
popover: string;
|
|
4871
5112
|
spellcheck: boolean;
|
|
4872
5113
|
title: string;
|
|
4873
5114
|
translate: boolean;
|
|
4874
5115
|
attachInternals(): ElementInternals;
|
|
4875
5116
|
click(): void;
|
|
5117
|
+
hidePopover(): void;
|
|
5118
|
+
showPopover(): void;
|
|
5119
|
+
togglePopover(force?: boolean): boolean;
|
|
4876
5120
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
4877
5121
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
4878
5122
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -4902,9 +5146,12 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
4902
5146
|
slot: string;
|
|
4903
5147
|
readonly tagName: string;
|
|
4904
5148
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
5149
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
4905
5150
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
4906
5151
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
5152
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
4907
5153
|
closest<E extends Element = Element>(selectors: string): E;
|
|
5154
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
4908
5155
|
getAttribute(qualifiedName: string): string;
|
|
4909
5156
|
getAttributeNS(namespace: string, localName: string): string;
|
|
4910
5157
|
getAttributeNames(): string[];
|
|
@@ -4913,11 +5160,14 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
4913
5160
|
getBoundingClientRect(): DOMRect;
|
|
4914
5161
|
getClientRects(): DOMRectList;
|
|
4915
5162
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
4916
|
-
getElementsByTagName<
|
|
4917
|
-
getElementsByTagName<
|
|
5163
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
5164
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
5165
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
5166
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
4918
5167
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
4919
5168
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
4920
5169
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
5170
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
4921
5171
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
4922
5172
|
hasAttribute(qualifiedName: string): boolean;
|
|
4923
5173
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -4975,24 +5225,24 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
4975
5225
|
normalize(): void;
|
|
4976
5226
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
4977
5227
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
4978
|
-
readonly
|
|
4979
|
-
readonly
|
|
4980
|
-
readonly
|
|
4981
|
-
readonly
|
|
4982
|
-
readonly
|
|
4983
|
-
readonly
|
|
4984
|
-
readonly
|
|
4985
|
-
readonly
|
|
4986
|
-
readonly
|
|
4987
|
-
readonly
|
|
4988
|
-
readonly
|
|
4989
|
-
readonly
|
|
4990
|
-
readonly
|
|
4991
|
-
readonly
|
|
4992
|
-
readonly
|
|
4993
|
-
readonly
|
|
4994
|
-
readonly
|
|
4995
|
-
readonly
|
|
5228
|
+
readonly ELEMENT_NODE: 1;
|
|
5229
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
5230
|
+
readonly TEXT_NODE: 3;
|
|
5231
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
5232
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
5233
|
+
readonly ENTITY_NODE: 6;
|
|
5234
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
5235
|
+
readonly COMMENT_NODE: 8;
|
|
5236
|
+
readonly DOCUMENT_NODE: 9;
|
|
5237
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
5238
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
5239
|
+
readonly NOTATION_NODE: 12;
|
|
5240
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
5241
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
5242
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
5243
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
5244
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
5245
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
4996
5246
|
dispatchEvent(event: Event): boolean;
|
|
4997
5247
|
ariaAtomic: string;
|
|
4998
5248
|
ariaAutoComplete: string;
|
|
@@ -5000,9 +5250,9 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5000
5250
|
ariaChecked: string;
|
|
5001
5251
|
ariaColCount: string;
|
|
5002
5252
|
ariaColIndex: string;
|
|
5003
|
-
ariaColIndexText: string;
|
|
5004
5253
|
ariaColSpan: string;
|
|
5005
5254
|
ariaCurrent: string;
|
|
5255
|
+
ariaDescription: string;
|
|
5006
5256
|
ariaDisabled: string;
|
|
5007
5257
|
ariaExpanded: string;
|
|
5008
5258
|
ariaHasPopup: string;
|
|
@@ -5024,7 +5274,6 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5024
5274
|
ariaRoleDescription: string;
|
|
5025
5275
|
ariaRowCount: string;
|
|
5026
5276
|
ariaRowIndex: string;
|
|
5027
|
-
ariaRowIndexText: string;
|
|
5028
5277
|
ariaRowSpan: string;
|
|
5029
5278
|
ariaSelected: string;
|
|
5030
5279
|
ariaSetSize: string;
|
|
@@ -5049,17 +5298,19 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5049
5298
|
readonly lastElementChild: Element;
|
|
5050
5299
|
append(...nodes: (string | Node)[]): void;
|
|
5051
5300
|
prepend(...nodes: (string | Node)[]): void;
|
|
5052
|
-
querySelector<
|
|
5053
|
-
querySelector<
|
|
5301
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
5302
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
5303
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
5304
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
5054
5305
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
5055
|
-
querySelectorAll<
|
|
5056
|
-
querySelectorAll<
|
|
5306
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
5307
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
5308
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
5309
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
5057
5310
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
5058
5311
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
5059
5312
|
readonly assignedSlot: HTMLSlotElement;
|
|
5060
|
-
|
|
5061
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5062
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5313
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
5063
5314
|
readonly style: CSSStyleDeclaration;
|
|
5064
5315
|
contentEditable: string;
|
|
5065
5316
|
enterKeyHint: string;
|
|
@@ -5072,6 +5323,7 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5072
5323
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
5073
5324
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5074
5325
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
5326
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5075
5327
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
5076
5328
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5077
5329
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5080,7 +5332,9 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5080
5332
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5081
5333
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5082
5334
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5335
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5083
5336
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5337
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5084
5338
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5085
5339
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
5086
5340
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -5113,6 +5367,7 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5113
5367
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5114
5368
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5115
5369
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5370
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5116
5371
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5117
5372
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5118
5373
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5129,6 +5384,7 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5129
5384
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5130
5385
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
5131
5386
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5387
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5132
5388
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
5133
5389
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5134
5390
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5162,9 +5418,10 @@ declare const projectIdMixin: <T extends CustomElementConstructor>(superclass: T
|
|
|
5162
5418
|
tabIndex: number;
|
|
5163
5419
|
blur(): void;
|
|
5164
5420
|
focus(options?: FocusOptions): void;
|
|
5165
|
-
"__#
|
|
5166
|
-
"__#
|
|
5167
|
-
logger: Logger;
|
|
5421
|
+
"__#12322@#logger": Logger;
|
|
5422
|
+
"__#12322@#wrapLogger": ((logger: Partial<Logger>) => Logger) & ((logger: Partial<Logger>) => Logger);
|
|
5423
|
+
get logger(): Logger;
|
|
5424
|
+
set logger(logger: Partial<Logger>);
|
|
5168
5425
|
onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void);
|
|
5169
5426
|
};
|
|
5170
5427
|
} & T;
|
|
@@ -5187,11 +5444,15 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5187
5444
|
readonly offsetTop: number;
|
|
5188
5445
|
readonly offsetWidth: number;
|
|
5189
5446
|
outerText: string;
|
|
5447
|
+
popover: string;
|
|
5190
5448
|
spellcheck: boolean;
|
|
5191
5449
|
title: string;
|
|
5192
5450
|
translate: boolean;
|
|
5193
5451
|
attachInternals(): ElementInternals;
|
|
5194
5452
|
click(): void;
|
|
5453
|
+
hidePopover(): void;
|
|
5454
|
+
showPopover(): void;
|
|
5455
|
+
togglePopover(force?: boolean): boolean;
|
|
5195
5456
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
5196
5457
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
5197
5458
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -5222,9 +5483,12 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5222
5483
|
slot: string;
|
|
5223
5484
|
readonly tagName: string;
|
|
5224
5485
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
5486
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
5225
5487
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
5226
5488
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
5489
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
5227
5490
|
closest<E extends Element = Element>(selectors: string): E;
|
|
5491
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
5228
5492
|
getAttribute(qualifiedName: string): string;
|
|
5229
5493
|
getAttributeNS(namespace: string, localName: string): string;
|
|
5230
5494
|
getAttributeNames(): string[];
|
|
@@ -5233,11 +5497,14 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5233
5497
|
getBoundingClientRect(): DOMRect;
|
|
5234
5498
|
getClientRects(): DOMRectList;
|
|
5235
5499
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
5236
|
-
getElementsByTagName<
|
|
5237
|
-
getElementsByTagName<
|
|
5500
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
5501
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
5502
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
5503
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
5238
5504
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
5239
5505
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
5240
5506
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
5507
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
5241
5508
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
5242
5509
|
hasAttribute(qualifiedName: string): boolean;
|
|
5243
5510
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -5295,24 +5562,24 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5295
5562
|
normalize(): void;
|
|
5296
5563
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
5297
5564
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
5298
|
-
readonly
|
|
5299
|
-
readonly
|
|
5300
|
-
readonly
|
|
5301
|
-
readonly
|
|
5302
|
-
readonly
|
|
5303
|
-
readonly
|
|
5304
|
-
readonly
|
|
5305
|
-
readonly
|
|
5306
|
-
readonly
|
|
5307
|
-
readonly
|
|
5308
|
-
readonly
|
|
5309
|
-
readonly
|
|
5310
|
-
readonly
|
|
5311
|
-
readonly
|
|
5312
|
-
readonly
|
|
5313
|
-
readonly
|
|
5314
|
-
readonly
|
|
5315
|
-
readonly
|
|
5565
|
+
readonly ELEMENT_NODE: 1;
|
|
5566
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
5567
|
+
readonly TEXT_NODE: 3;
|
|
5568
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
5569
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
5570
|
+
readonly ENTITY_NODE: 6;
|
|
5571
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
5572
|
+
readonly COMMENT_NODE: 8;
|
|
5573
|
+
readonly DOCUMENT_NODE: 9;
|
|
5574
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
5575
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
5576
|
+
readonly NOTATION_NODE: 12;
|
|
5577
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
5578
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
5579
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
5580
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
5581
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
5582
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
5316
5583
|
dispatchEvent(event: Event): boolean;
|
|
5317
5584
|
ariaAtomic: string;
|
|
5318
5585
|
ariaAutoComplete: string;
|
|
@@ -5320,9 +5587,9 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5320
5587
|
ariaChecked: string;
|
|
5321
5588
|
ariaColCount: string;
|
|
5322
5589
|
ariaColIndex: string;
|
|
5323
|
-
ariaColIndexText: string;
|
|
5324
5590
|
ariaColSpan: string;
|
|
5325
5591
|
ariaCurrent: string;
|
|
5592
|
+
ariaDescription: string;
|
|
5326
5593
|
ariaDisabled: string;
|
|
5327
5594
|
ariaExpanded: string;
|
|
5328
5595
|
ariaHasPopup: string;
|
|
@@ -5344,7 +5611,6 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5344
5611
|
ariaRoleDescription: string;
|
|
5345
5612
|
ariaRowCount: string;
|
|
5346
5613
|
ariaRowIndex: string;
|
|
5347
|
-
ariaRowIndexText: string;
|
|
5348
5614
|
ariaRowSpan: string;
|
|
5349
5615
|
ariaSelected: string;
|
|
5350
5616
|
ariaSetSize: string;
|
|
@@ -5369,17 +5635,19 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5369
5635
|
readonly lastElementChild: Element;
|
|
5370
5636
|
append(...nodes: (string | Node)[]): void;
|
|
5371
5637
|
prepend(...nodes: (string | Node)[]): void;
|
|
5372
|
-
querySelector<
|
|
5373
|
-
querySelector<
|
|
5638
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
5639
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
5640
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
5641
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
5374
5642
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
5375
|
-
querySelectorAll<
|
|
5376
|
-
querySelectorAll<
|
|
5643
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
5644
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
5645
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
5646
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
5377
5647
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
5378
5648
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
5379
5649
|
readonly assignedSlot: HTMLSlotElement;
|
|
5380
|
-
|
|
5381
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5382
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5650
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
5383
5651
|
readonly style: CSSStyleDeclaration;
|
|
5384
5652
|
contentEditable: string;
|
|
5385
5653
|
enterKeyHint: string;
|
|
@@ -5392,6 +5660,7 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5392
5660
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
5393
5661
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5394
5662
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
5663
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5395
5664
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
5396
5665
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5397
5666
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5400,7 +5669,9 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5400
5669
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5401
5670
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5402
5671
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5672
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5403
5673
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5674
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5404
5675
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5405
5676
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
5406
5677
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -5433,6 +5704,7 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5433
5704
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5434
5705
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5435
5706
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5707
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5436
5708
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5437
5709
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5438
5710
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5449,6 +5721,7 @@ declare const baseUrlMixin: <T extends CustomElementConstructor>(superclass: T)
|
|
|
5449
5721
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5450
5722
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
5451
5723
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5724
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5452
5725
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
5453
5726
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5454
5727
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5503,11 +5776,15 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5503
5776
|
readonly offsetTop: number;
|
|
5504
5777
|
readonly offsetWidth: number;
|
|
5505
5778
|
outerText: string;
|
|
5779
|
+
popover: string;
|
|
5506
5780
|
spellcheck: boolean;
|
|
5507
5781
|
title: string;
|
|
5508
5782
|
translate: boolean;
|
|
5509
5783
|
attachInternals(): ElementInternals;
|
|
5510
5784
|
click(): void;
|
|
5785
|
+
hidePopover(): void;
|
|
5786
|
+
showPopover(): void;
|
|
5787
|
+
togglePopover(force?: boolean): boolean;
|
|
5511
5788
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
5512
5789
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
5513
5790
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
@@ -5538,9 +5815,12 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5538
5815
|
slot: string;
|
|
5539
5816
|
readonly tagName: string;
|
|
5540
5817
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
5818
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
5541
5819
|
closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
|
|
5542
5820
|
closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
|
|
5821
|
+
closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
|
|
5543
5822
|
closest<E extends Element = Element>(selectors: string): E;
|
|
5823
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
5544
5824
|
getAttribute(qualifiedName: string): string;
|
|
5545
5825
|
getAttributeNS(namespace: string, localName: string): string;
|
|
5546
5826
|
getAttributeNames(): string[];
|
|
@@ -5549,11 +5829,14 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5549
5829
|
getBoundingClientRect(): DOMRect;
|
|
5550
5830
|
getClientRects(): DOMRectList;
|
|
5551
5831
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
5552
|
-
getElementsByTagName<
|
|
5553
|
-
getElementsByTagName<
|
|
5832
|
+
getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
|
|
5833
|
+
getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
|
|
5834
|
+
getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
|
|
5835
|
+
getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
|
|
5554
5836
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
5555
5837
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
5556
5838
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
5839
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
5557
5840
|
getElementsByTagNameNS(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
5558
5841
|
hasAttribute(qualifiedName: string): boolean;
|
|
5559
5842
|
hasAttributeNS(namespace: string, localName: string): boolean;
|
|
@@ -5611,24 +5894,24 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5611
5894
|
normalize(): void;
|
|
5612
5895
|
removeChild<T_3 extends Node>(child: T_3): T_3;
|
|
5613
5896
|
replaceChild<T_4 extends Node>(node: Node, child: T_4): T_4;
|
|
5614
|
-
readonly
|
|
5615
|
-
readonly
|
|
5616
|
-
readonly
|
|
5617
|
-
readonly
|
|
5618
|
-
readonly
|
|
5619
|
-
readonly
|
|
5620
|
-
readonly
|
|
5621
|
-
readonly
|
|
5622
|
-
readonly
|
|
5623
|
-
readonly
|
|
5624
|
-
readonly
|
|
5625
|
-
readonly
|
|
5626
|
-
readonly
|
|
5627
|
-
readonly
|
|
5628
|
-
readonly
|
|
5629
|
-
readonly
|
|
5630
|
-
readonly
|
|
5631
|
-
readonly
|
|
5897
|
+
readonly ELEMENT_NODE: 1;
|
|
5898
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
5899
|
+
readonly TEXT_NODE: 3;
|
|
5900
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
5901
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
5902
|
+
readonly ENTITY_NODE: 6;
|
|
5903
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
5904
|
+
readonly COMMENT_NODE: 8;
|
|
5905
|
+
readonly DOCUMENT_NODE: 9;
|
|
5906
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
5907
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
5908
|
+
readonly NOTATION_NODE: 12;
|
|
5909
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
5910
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
5911
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
5912
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
5913
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
5914
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
5632
5915
|
dispatchEvent(event: Event): boolean;
|
|
5633
5916
|
ariaAtomic: string;
|
|
5634
5917
|
ariaAutoComplete: string;
|
|
@@ -5636,9 +5919,9 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5636
5919
|
ariaChecked: string;
|
|
5637
5920
|
ariaColCount: string;
|
|
5638
5921
|
ariaColIndex: string;
|
|
5639
|
-
ariaColIndexText: string;
|
|
5640
5922
|
ariaColSpan: string;
|
|
5641
5923
|
ariaCurrent: string;
|
|
5924
|
+
ariaDescription: string;
|
|
5642
5925
|
ariaDisabled: string;
|
|
5643
5926
|
ariaExpanded: string;
|
|
5644
5927
|
ariaHasPopup: string;
|
|
@@ -5660,7 +5943,6 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5660
5943
|
ariaRoleDescription: string;
|
|
5661
5944
|
ariaRowCount: string;
|
|
5662
5945
|
ariaRowIndex: string;
|
|
5663
|
-
ariaRowIndexText: string;
|
|
5664
5946
|
ariaRowSpan: string;
|
|
5665
5947
|
ariaSelected: string;
|
|
5666
5948
|
ariaSetSize: string;
|
|
@@ -5685,17 +5967,19 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5685
5967
|
readonly lastElementChild: Element;
|
|
5686
5968
|
append(...nodes: (string | Node)[]): void;
|
|
5687
5969
|
prepend(...nodes: (string | Node)[]): void;
|
|
5688
|
-
querySelector<
|
|
5689
|
-
querySelector<
|
|
5970
|
+
querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
|
|
5971
|
+
querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
|
|
5972
|
+
querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
|
|
5973
|
+
querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
|
|
5690
5974
|
querySelector<E_1 extends Element = Element>(selectors: string): E_1;
|
|
5691
|
-
querySelectorAll<
|
|
5692
|
-
querySelectorAll<
|
|
5975
|
+
querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
|
|
5976
|
+
querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
|
|
5977
|
+
querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
|
|
5978
|
+
querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
|
|
5693
5979
|
querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
|
|
5694
5980
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
5695
5981
|
readonly assignedSlot: HTMLSlotElement;
|
|
5696
|
-
|
|
5697
|
-
oncut: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5698
|
-
onpaste: (this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any;
|
|
5982
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
5699
5983
|
readonly style: CSSStyleDeclaration;
|
|
5700
5984
|
contentEditable: string;
|
|
5701
5985
|
enterKeyHint: string;
|
|
@@ -5708,6 +5992,7 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5708
5992
|
onanimationstart: (this: GlobalEventHandlers, ev: AnimationEvent) => any;
|
|
5709
5993
|
onauxclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5710
5994
|
onbeforeinput: (this: GlobalEventHandlers, ev: InputEvent) => any;
|
|
5995
|
+
onbeforetoggle: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5711
5996
|
onblur: (this: GlobalEventHandlers, ev: FocusEvent) => any;
|
|
5712
5997
|
oncancel: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5713
5998
|
oncanplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5716,7 +6001,9 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5716
6001
|
onclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5717
6002
|
onclose: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5718
6003
|
oncontextmenu: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
6004
|
+
oncopy: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5719
6005
|
oncuechange: (this: GlobalEventHandlers, ev: Event) => any;
|
|
6006
|
+
oncut: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5720
6007
|
ondblclick: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5721
6008
|
ondrag: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
5722
6009
|
ondragend: (this: GlobalEventHandlers, ev: DragEvent) => any;
|
|
@@ -5749,6 +6036,7 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5749
6036
|
onmouseout: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5750
6037
|
onmouseover: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
5751
6038
|
onmouseup: (this: GlobalEventHandlers, ev: MouseEvent) => any;
|
|
6039
|
+
onpaste: (this: GlobalEventHandlers, ev: ClipboardEvent) => any;
|
|
5752
6040
|
onpause: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5753
6041
|
onplay: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5754
6042
|
onplaying: (this: GlobalEventHandlers, ev: Event) => any;
|
|
@@ -5765,6 +6053,7 @@ declare const baseStaticUrlMixin: <T extends CustomElementConstructor>(superclas
|
|
|
5765
6053
|
onreset: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5766
6054
|
onresize: (this: GlobalEventHandlers, ev: UIEvent) => any;
|
|
5767
6055
|
onscroll: (this: GlobalEventHandlers, ev: Event) => any;
|
|
6056
|
+
onscrollend: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5768
6057
|
onsecuritypolicyviolation: (this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any;
|
|
5769
6058
|
onseeked: (this: GlobalEventHandlers, ev: Event) => any;
|
|
5770
6059
|
onseeking: (this: GlobalEventHandlers, ev: Event) => any;
|