@descope/web-component 3.66.1 → 3.67.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/descope-wc/BaseDescopeWc.js +1 -1
- package/dist/cjs/descope-wc/BaseDescopeWc.js.map +1 -1
- package/dist/cjs/descope-wc/DescopeWc.js +1 -1
- package/dist/cjs/descope-wc/DescopeWc.js.map +1 -1
- package/dist/cjs/helpers/realtime-conditions/applier.js +2 -0
- package/dist/cjs/helpers/realtime-conditions/applier.js.map +1 -0
- package/dist/cjs/helpers/realtime-conditions/config.js +2 -0
- package/dist/cjs/helpers/realtime-conditions/config.js.map +1 -0
- package/dist/cjs/helpers/realtime-conditions/evaluator.js +2 -0
- package/dist/cjs/helpers/realtime-conditions/evaluator.js.map +1 -0
- package/dist/cjs/helpers/templates.js +1 -1
- package/dist/cjs/helpers/templates.js.map +1 -1
- package/dist/cjs/mixins/componentConditionsMixin.js +2 -0
- package/dist/cjs/mixins/componentConditionsMixin.js.map +1 -0
- package/dist/cjs/types.js.map +1 -1
- package/dist/esm/descope-wc/BaseDescopeWc.js +1 -1
- package/dist/esm/descope-wc/BaseDescopeWc.js.map +1 -1
- package/dist/esm/descope-wc/DescopeWc.js +1 -1
- package/dist/esm/descope-wc/DescopeWc.js.map +1 -1
- package/dist/esm/helpers/realtime-conditions/applier.js +2 -0
- package/dist/esm/helpers/realtime-conditions/applier.js.map +1 -0
- package/dist/esm/helpers/realtime-conditions/config.js +2 -0
- package/dist/esm/helpers/realtime-conditions/config.js.map +1 -0
- package/dist/esm/helpers/realtime-conditions/evaluator.js +2 -0
- package/dist/esm/helpers/realtime-conditions/evaluator.js.map +1 -0
- package/dist/esm/helpers/templates.js +1 -1
- package/dist/esm/helpers/templates.js.map +1 -1
- package/dist/esm/mixins/componentConditionsMixin.js +2 -0
- package/dist/esm/mixins/componentConditionsMixin.js.map +1 -0
- package/dist/esm/types.js.map +1 -1
- package/dist/index.d.ts +517 -69
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,29 @@ type LastAuthState = NonNullable<NextFnReturnPromiseValue['data']['lastAuth']> &
|
|
|
27
27
|
name?: string;
|
|
28
28
|
lastUsedPerScreen?: Record<string, string>;
|
|
29
29
|
};
|
|
30
|
+
type RealtimeOperandKind = 'value' | 'form' | 'list';
|
|
31
|
+
type RealtimeOperator = 'equal' | 'not-equal' | 'contains' | 'greater-than' | 'greater-than-or-equal' | 'less-than' | 'less-than-or-equal' | 'empty' | 'not-empty' | 'is-true' | 'is-false' | 'in' | 'not-in' | 'matches';
|
|
32
|
+
interface RealtimeOperand {
|
|
33
|
+
kind: RealtimeOperandKind;
|
|
34
|
+
form?: string;
|
|
35
|
+
items?: RealtimeOperand[];
|
|
36
|
+
value?: unknown;
|
|
37
|
+
}
|
|
38
|
+
interface RealtimeAtomicCondition {
|
|
39
|
+
operator: RealtimeOperator;
|
|
40
|
+
target?: RealtimeOperand;
|
|
41
|
+
predicate?: RealtimeOperand;
|
|
42
|
+
}
|
|
43
|
+
interface RealtimeRule {
|
|
44
|
+
logicalOr?: boolean;
|
|
45
|
+
atomicConditions: RealtimeAtomicCondition[];
|
|
46
|
+
}
|
|
47
|
+
interface RealtimeComponentsCondition {
|
|
48
|
+
id?: string;
|
|
49
|
+
componentIds: string[];
|
|
50
|
+
action: string;
|
|
51
|
+
rules: RealtimeRule[];
|
|
52
|
+
}
|
|
30
53
|
interface ScreenState {
|
|
31
54
|
errorText?: string;
|
|
32
55
|
errorType?: string;
|
|
@@ -54,6 +77,8 @@ interface ScreenState {
|
|
|
54
77
|
sentTo?: unknown;
|
|
55
78
|
clientScripts?: ClientScript[];
|
|
56
79
|
componentsState?: Record<string, string>;
|
|
80
|
+
serverOnlyComponentsState?: Record<string, string>;
|
|
81
|
+
realtimeComponentsConditions?: RealtimeComponentsCondition[];
|
|
57
82
|
}
|
|
58
83
|
type SSOQueryParams = {
|
|
59
84
|
oidcIdpStateId?: string;
|
|
@@ -266,6 +291,25 @@ declare class State<T extends StateObject> {
|
|
|
266
291
|
unsubscribeAll(): boolean;
|
|
267
292
|
}
|
|
268
293
|
|
|
294
|
+
/**
|
|
295
|
+
* Snapshot of on-screen form values keyed by their full context key
|
|
296
|
+
* (e.g. `form.phone`). The mixin maintains this snapshot as the user types.
|
|
297
|
+
*/
|
|
298
|
+
type FormSnapshot = Record<string, unknown>;
|
|
299
|
+
|
|
300
|
+
interface RealtimeRuntime {
|
|
301
|
+
conditions: RealtimeComponentsCondition[];
|
|
302
|
+
touchedIds: Set<string>;
|
|
303
|
+
snapshot: FormSnapshot;
|
|
304
|
+
applied: Record<string, string>;
|
|
305
|
+
serverBaseline: Record<string, string>;
|
|
306
|
+
debounceTimer: ReturnType<typeof setTimeout> | null;
|
|
307
|
+
paused: boolean;
|
|
308
|
+
unsubscribePauseListener: (() => void) | null;
|
|
309
|
+
inputHandler: (e: Event) => void;
|
|
310
|
+
root: HTMLElement | null;
|
|
311
|
+
}
|
|
312
|
+
|
|
269
313
|
declare const BaseClass: (new (...params: any[]) => {
|
|
270
314
|
injectStyle(cssString: string, { prepend }?: {
|
|
271
315
|
prepend?: boolean;
|
|
@@ -613,6 +657,410 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
613
657
|
set logger(logger: Partial<_descope_sdk_mixins_static_resources_mixin.Logger>);
|
|
614
658
|
onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
|
|
615
659
|
}) & {
|
|
660
|
+
new (...params: any[]): {
|
|
661
|
+
"__#8@#rtRuntime": RealtimeRuntime;
|
|
662
|
+
applyComponentsState(root: ParentNode, componentsState: Record<string, string>): void;
|
|
663
|
+
initRealtimeConditions(rootElement: HTMLElement, screenState: ScreenState): void;
|
|
664
|
+
"__#8@#handleRealtimeInput"(e: InputEvent): void;
|
|
665
|
+
"__#8@#reEvaluateRealtime"(): void;
|
|
666
|
+
disconnectedCallback(): void;
|
|
667
|
+
"__#8@#teardownRealtimeRuntime"(): void;
|
|
668
|
+
"__#34158@#logger": _descope_sdk_mixins_static_resources_mixin.Logger;
|
|
669
|
+
"__#34158@#wrapLogger"(logger: Partial<_descope_sdk_mixins_static_resources_mixin.Logger>): _descope_sdk_mixins_static_resources_mixin.Logger;
|
|
670
|
+
get logger(): _descope_sdk_mixins_static_resources_mixin.Logger;
|
|
671
|
+
set logger(logger: Partial<_descope_sdk_mixins_static_resources_mixin.Logger>);
|
|
672
|
+
onLogEvent(logLevel: "error" | "warn" | "info" | "debug", data: any[]): void;
|
|
673
|
+
accessKey: string;
|
|
674
|
+
readonly accessKeyLabel: string;
|
|
675
|
+
autocapitalize: string;
|
|
676
|
+
dir: string;
|
|
677
|
+
draggable: boolean;
|
|
678
|
+
hidden: boolean;
|
|
679
|
+
inert: boolean;
|
|
680
|
+
innerText: string;
|
|
681
|
+
lang: string;
|
|
682
|
+
readonly offsetHeight: number;
|
|
683
|
+
readonly offsetLeft: number;
|
|
684
|
+
readonly offsetParent: Element;
|
|
685
|
+
readonly offsetTop: number;
|
|
686
|
+
readonly offsetWidth: number;
|
|
687
|
+
outerText: string;
|
|
688
|
+
popover: string;
|
|
689
|
+
spellcheck: boolean;
|
|
690
|
+
title: string;
|
|
691
|
+
translate: boolean;
|
|
692
|
+
attachInternals: (() => ElementInternals) & (() => ElementInternals);
|
|
693
|
+
click: (() => void) & (() => void);
|
|
694
|
+
hidePopover: (() => void) & (() => void);
|
|
695
|
+
showPopover: (() => void) & (() => void);
|
|
696
|
+
togglePopover: ((force?: boolean) => boolean) & ((force?: boolean) => boolean);
|
|
697
|
+
addEventListener: {
|
|
698
|
+
<K_17 extends keyof HTMLElementEventMap>(type: K_17, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_17]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
699
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
700
|
+
} & {
|
|
701
|
+
<K_18 extends keyof HTMLElementEventMap>(type: K_18, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_18]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
702
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
703
|
+
};
|
|
704
|
+
removeEventListener: {
|
|
705
|
+
<K_1_1 extends keyof HTMLElementEventMap>(type: K_1_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_1]) => any, options?: boolean | EventListenerOptions): void;
|
|
706
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
707
|
+
} & {
|
|
708
|
+
<K_19 extends keyof HTMLElementEventMap>(type: K_19, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_19]) => any, options?: boolean | EventListenerOptions): void;
|
|
709
|
+
(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
710
|
+
};
|
|
711
|
+
attributeChangedCallback: ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void);
|
|
712
|
+
connectedCallback: (() => void) & (() => void);
|
|
713
|
+
readonly attributes: NamedNodeMap;
|
|
714
|
+
readonly classList: DOMTokenList;
|
|
715
|
+
className: string;
|
|
716
|
+
readonly clientHeight: number;
|
|
717
|
+
readonly clientLeft: number;
|
|
718
|
+
readonly clientTop: number;
|
|
719
|
+
readonly clientWidth: number;
|
|
720
|
+
id: string;
|
|
721
|
+
readonly localName: string;
|
|
722
|
+
readonly namespaceURI: string;
|
|
723
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any);
|
|
724
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) & ((this: Element, ev: Event) => any);
|
|
725
|
+
outerHTML: string;
|
|
726
|
+
readonly ownerDocument: Document;
|
|
727
|
+
readonly part: DOMTokenList;
|
|
728
|
+
readonly prefix: string;
|
|
729
|
+
readonly scrollHeight: number;
|
|
730
|
+
scrollLeft: number;
|
|
731
|
+
scrollTop: number;
|
|
732
|
+
readonly scrollWidth: number;
|
|
733
|
+
readonly shadowRoot: ShadowRoot;
|
|
734
|
+
slot: string;
|
|
735
|
+
readonly tagName: string;
|
|
736
|
+
attachShadow: ((init: ShadowRootInit) => ShadowRoot) & ((init: ShadowRootInit) => ShadowRoot);
|
|
737
|
+
checkVisibility: ((options?: CheckVisibilityOptions) => boolean) & ((options?: CheckVisibilityOptions) => boolean);
|
|
738
|
+
closest: {
|
|
739
|
+
<K_2_1 extends keyof HTMLElementTagNameMap>(selector: K_2_1): HTMLElementTagNameMap[K_2_1];
|
|
740
|
+
<K_3_1 extends keyof SVGElementTagNameMap>(selector: K_3_1): SVGElementTagNameMap[K_3_1];
|
|
741
|
+
<K_4_1 extends keyof MathMLElementTagNameMap>(selector: K_4_1): MathMLElementTagNameMap[K_4_1];
|
|
742
|
+
<E_3 extends Element = Element>(selectors: string): E_3;
|
|
743
|
+
} & {
|
|
744
|
+
<K_20 extends keyof HTMLElementTagNameMap>(selector: K_20): HTMLElementTagNameMap[K_20];
|
|
745
|
+
<K_21 extends keyof SVGElementTagNameMap>(selector: K_21): SVGElementTagNameMap[K_21];
|
|
746
|
+
<K_22 extends keyof MathMLElementTagNameMap>(selector: K_22): MathMLElementTagNameMap[K_22];
|
|
747
|
+
<E_4 extends Element = Element>(selectors: string): E_4;
|
|
748
|
+
};
|
|
749
|
+
computedStyleMap: (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly);
|
|
750
|
+
getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
|
|
751
|
+
getAttributeNS: ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string);
|
|
752
|
+
getAttributeNames: (() => string[]) & (() => string[]);
|
|
753
|
+
getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
|
|
754
|
+
getAttributeNodeNS: ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr);
|
|
755
|
+
getBoundingClientRect: (() => DOMRect) & (() => DOMRect);
|
|
756
|
+
getClientRects: (() => DOMRectList) & (() => DOMRectList);
|
|
757
|
+
getElementsByClassName: ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>);
|
|
758
|
+
getElementsByTagName: {
|
|
759
|
+
<K_5_1 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_1): HTMLCollectionOf<HTMLElementTagNameMap[K_5_1]>;
|
|
760
|
+
<K_6_1 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_1): HTMLCollectionOf<SVGElementTagNameMap[K_6_1]>;
|
|
761
|
+
<K_7_1 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_1): HTMLCollectionOf<MathMLElementTagNameMap[K_7_1]>;
|
|
762
|
+
<K_8_1 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_1): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_1]>;
|
|
763
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
764
|
+
} & {
|
|
765
|
+
<K_23 extends keyof HTMLElementTagNameMap>(qualifiedName: K_23): HTMLCollectionOf<HTMLElementTagNameMap[K_23]>;
|
|
766
|
+
<K_24 extends keyof SVGElementTagNameMap>(qualifiedName: K_24): HTMLCollectionOf<SVGElementTagNameMap[K_24]>;
|
|
767
|
+
<K_25 extends keyof MathMLElementTagNameMap>(qualifiedName: K_25): HTMLCollectionOf<MathMLElementTagNameMap[K_25]>;
|
|
768
|
+
<K_26 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_26): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_26]>;
|
|
769
|
+
(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
770
|
+
};
|
|
771
|
+
getElementsByTagNameNS: {
|
|
772
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
773
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
774
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
775
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
776
|
+
} & {
|
|
777
|
+
(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
778
|
+
(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
779
|
+
(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
780
|
+
(namespace: string, localName: string): HTMLCollectionOf<Element>;
|
|
781
|
+
};
|
|
782
|
+
hasAttribute: ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean);
|
|
783
|
+
hasAttributeNS: ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean);
|
|
784
|
+
hasAttributes: (() => boolean) & (() => boolean);
|
|
785
|
+
hasPointerCapture: ((pointerId: number) => boolean) & ((pointerId: number) => boolean);
|
|
786
|
+
insertAdjacentElement: ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element);
|
|
787
|
+
insertAdjacentHTML: ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void);
|
|
788
|
+
insertAdjacentText: ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void);
|
|
789
|
+
matches: ((selectors: string) => boolean) & ((selectors: string) => boolean);
|
|
790
|
+
releasePointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void);
|
|
791
|
+
removeAttribute: ((qualifiedName: string) => void) & ((qualifiedName: string) => void);
|
|
792
|
+
removeAttributeNS: ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void);
|
|
793
|
+
removeAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
794
|
+
requestFullscreen: ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>);
|
|
795
|
+
requestPointerLock: (() => void) & (() => void);
|
|
796
|
+
scroll: {
|
|
797
|
+
(options?: ScrollToOptions): void;
|
|
798
|
+
(x: number, y: number): void;
|
|
799
|
+
} & {
|
|
800
|
+
(options?: ScrollToOptions): void;
|
|
801
|
+
(x: number, y: number): void;
|
|
802
|
+
};
|
|
803
|
+
scrollBy: {
|
|
804
|
+
(options?: ScrollToOptions): void;
|
|
805
|
+
(x: number, y: number): void;
|
|
806
|
+
} & {
|
|
807
|
+
(options?: ScrollToOptions): void;
|
|
808
|
+
(x: number, y: number): void;
|
|
809
|
+
};
|
|
810
|
+
scrollIntoView: ((arg?: boolean | ScrollIntoViewOptions) => void) & ((arg?: boolean | ScrollIntoViewOptions) => void);
|
|
811
|
+
scrollTo: {
|
|
812
|
+
(options?: ScrollToOptions): void;
|
|
813
|
+
(x: number, y: number): void;
|
|
814
|
+
} & {
|
|
815
|
+
(options?: ScrollToOptions): void;
|
|
816
|
+
(x: number, y: number): void;
|
|
817
|
+
};
|
|
818
|
+
setAttribute: ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void);
|
|
819
|
+
setAttributeNS: ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void);
|
|
820
|
+
setAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
821
|
+
setAttributeNodeNS: ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
|
|
822
|
+
setPointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void);
|
|
823
|
+
toggleAttribute: ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean);
|
|
824
|
+
webkitMatchesSelector: ((selectors: string) => boolean) & ((selectors: string) => boolean);
|
|
825
|
+
readonly baseURI: string;
|
|
826
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
827
|
+
readonly firstChild: ChildNode;
|
|
828
|
+
readonly isConnected: boolean;
|
|
829
|
+
readonly lastChild: ChildNode;
|
|
830
|
+
readonly nextSibling: ChildNode;
|
|
831
|
+
readonly nodeName: string;
|
|
832
|
+
readonly nodeType: number;
|
|
833
|
+
nodeValue: string;
|
|
834
|
+
readonly parentElement: HTMLElement;
|
|
835
|
+
readonly parentNode: ParentNode;
|
|
836
|
+
readonly previousSibling: ChildNode;
|
|
837
|
+
textContent: string;
|
|
838
|
+
appendChild: (<T_1_1 extends Node>(node: T_1_1) => T_1_1) & (<T extends Node>(node: T) => T);
|
|
839
|
+
cloneNode: ((deep?: boolean) => Node) & ((deep?: boolean) => Node);
|
|
840
|
+
compareDocumentPosition: ((other: Node) => number) & ((other: Node) => number);
|
|
841
|
+
contains: ((other: Node) => boolean) & ((other: Node) => boolean);
|
|
842
|
+
getRootNode: ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node);
|
|
843
|
+
hasChildNodes: (() => boolean) & (() => boolean);
|
|
844
|
+
insertBefore: (<T_2_1 extends Node>(node: T_2_1, child: Node) => T_2_1) & (<T_5 extends Node>(node: T_5, child: Node) => T_5);
|
|
845
|
+
isDefaultNamespace: ((namespace: string) => boolean) & ((namespace: string) => boolean);
|
|
846
|
+
isEqualNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
847
|
+
isSameNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
|
|
848
|
+
lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string);
|
|
849
|
+
lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string);
|
|
850
|
+
normalize: (() => void) & (() => void);
|
|
851
|
+
removeChild: (<T_3_1 extends Node>(child: T_3_1) => T_3_1) & (<T_6 extends Node>(child: T_6) => T_6);
|
|
852
|
+
replaceChild: (<T_4_1 extends Node>(node: Node, child: T_4_1) => T_4_1) & (<T_7 extends Node>(node: Node, child: T_7) => T_7);
|
|
853
|
+
readonly ELEMENT_NODE: 1;
|
|
854
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
855
|
+
readonly TEXT_NODE: 3;
|
|
856
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
857
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
858
|
+
readonly ENTITY_NODE: 6;
|
|
859
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
860
|
+
readonly COMMENT_NODE: 8;
|
|
861
|
+
readonly DOCUMENT_NODE: 9;
|
|
862
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
863
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
864
|
+
readonly NOTATION_NODE: 12;
|
|
865
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
866
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
867
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
868
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
869
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
870
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
871
|
+
dispatchEvent: ((event: Event) => boolean) & ((event: Event) => boolean);
|
|
872
|
+
ariaAtomic: string;
|
|
873
|
+
ariaAutoComplete: string;
|
|
874
|
+
ariaBusy: string;
|
|
875
|
+
ariaChecked: string;
|
|
876
|
+
ariaColCount: string;
|
|
877
|
+
ariaColIndex: string;
|
|
878
|
+
ariaColSpan: string;
|
|
879
|
+
ariaCurrent: string;
|
|
880
|
+
ariaDescription: string;
|
|
881
|
+
ariaDisabled: string;
|
|
882
|
+
ariaExpanded: string;
|
|
883
|
+
ariaHasPopup: string;
|
|
884
|
+
ariaHidden: string;
|
|
885
|
+
ariaInvalid: string;
|
|
886
|
+
ariaKeyShortcuts: string;
|
|
887
|
+
ariaLabel: string;
|
|
888
|
+
ariaLevel: string;
|
|
889
|
+
ariaLive: string;
|
|
890
|
+
ariaModal: string;
|
|
891
|
+
ariaMultiLine: string;
|
|
892
|
+
ariaMultiSelectable: string;
|
|
893
|
+
ariaOrientation: string;
|
|
894
|
+
ariaPlaceholder: string;
|
|
895
|
+
ariaPosInSet: string;
|
|
896
|
+
ariaPressed: string;
|
|
897
|
+
ariaReadOnly: string;
|
|
898
|
+
ariaRequired: string;
|
|
899
|
+
ariaRoleDescription: string;
|
|
900
|
+
ariaRowCount: string;
|
|
901
|
+
ariaRowIndex: string;
|
|
902
|
+
ariaRowSpan: string;
|
|
903
|
+
ariaSelected: string;
|
|
904
|
+
ariaSetSize: string;
|
|
905
|
+
ariaSort: string;
|
|
906
|
+
ariaValueMax: string;
|
|
907
|
+
ariaValueMin: string;
|
|
908
|
+
ariaValueNow: string;
|
|
909
|
+
ariaValueText: string;
|
|
910
|
+
role: string;
|
|
911
|
+
animate: ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: PropertyIndexedKeyframes | Keyframe[], options?: number | KeyframeAnimationOptions) => Animation);
|
|
912
|
+
getAnimations: ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]);
|
|
913
|
+
after: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
914
|
+
before: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
915
|
+
remove: (() => void) & (() => void);
|
|
916
|
+
replaceWith: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
917
|
+
innerHTML: string;
|
|
918
|
+
readonly nextElementSibling: Element;
|
|
919
|
+
readonly previousElementSibling: Element;
|
|
920
|
+
readonly childElementCount: number;
|
|
921
|
+
readonly children: HTMLCollection;
|
|
922
|
+
readonly firstElementChild: Element;
|
|
923
|
+
readonly lastElementChild: Element;
|
|
924
|
+
append: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
925
|
+
prepend: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
926
|
+
querySelector: {
|
|
927
|
+
<K_9_1 extends keyof HTMLElementTagNameMap>(selectors: K_9_1): HTMLElementTagNameMap[K_9_1];
|
|
928
|
+
<K_10_1 extends keyof SVGElementTagNameMap>(selectors: K_10_1): SVGElementTagNameMap[K_10_1];
|
|
929
|
+
<K_11_1 extends keyof MathMLElementTagNameMap>(selectors: K_11_1): MathMLElementTagNameMap[K_11_1];
|
|
930
|
+
<K_12_1 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_1): HTMLElementDeprecatedTagNameMap[K_12_1];
|
|
931
|
+
<E_1_1 extends Element = Element>(selectors: string): E_1_1;
|
|
932
|
+
} & {
|
|
933
|
+
<K_27 extends keyof HTMLElementTagNameMap>(selectors: K_27): HTMLElementTagNameMap[K_27];
|
|
934
|
+
<K_28 extends keyof SVGElementTagNameMap>(selectors: K_28): SVGElementTagNameMap[K_28];
|
|
935
|
+
<K_29 extends keyof MathMLElementTagNameMap>(selectors: K_29): MathMLElementTagNameMap[K_29];
|
|
936
|
+
<K_30 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_30): HTMLElementDeprecatedTagNameMap[K_30];
|
|
937
|
+
<E_5 extends Element = Element>(selectors: string): E_5;
|
|
938
|
+
};
|
|
939
|
+
querySelectorAll: {
|
|
940
|
+
<K_13_1 extends keyof HTMLElementTagNameMap>(selectors: K_13_1): NodeListOf<HTMLElementTagNameMap[K_13_1]>;
|
|
941
|
+
<K_14_1 extends keyof SVGElementTagNameMap>(selectors: K_14_1): NodeListOf<SVGElementTagNameMap[K_14_1]>;
|
|
942
|
+
<K_15_1 extends keyof MathMLElementTagNameMap>(selectors: K_15_1): NodeListOf<MathMLElementTagNameMap[K_15_1]>;
|
|
943
|
+
<K_16_1 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_1): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_1]>;
|
|
944
|
+
<E_2_1 extends Element = Element>(selectors: string): NodeListOf<E_2_1>;
|
|
945
|
+
} & {
|
|
946
|
+
<K_31 extends keyof HTMLElementTagNameMap>(selectors: K_31): NodeListOf<HTMLElementTagNameMap[K_31]>;
|
|
947
|
+
<K_32 extends keyof SVGElementTagNameMap>(selectors: K_32): NodeListOf<SVGElementTagNameMap[K_32]>;
|
|
948
|
+
<K_33 extends keyof MathMLElementTagNameMap>(selectors: K_33): NodeListOf<MathMLElementTagNameMap[K_33]>;
|
|
949
|
+
<K_34 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_34): NodeListOf<HTMLElementDeprecatedTagNameMap[K_34]>;
|
|
950
|
+
<E_6 extends Element = Element>(selectors: string): NodeListOf<E_6>;
|
|
951
|
+
};
|
|
952
|
+
replaceChildren: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
|
|
953
|
+
readonly assignedSlot: HTMLSlotElement;
|
|
954
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
955
|
+
readonly style: CSSStyleDeclaration;
|
|
956
|
+
contentEditable: string;
|
|
957
|
+
enterKeyHint: string;
|
|
958
|
+
inputMode: string;
|
|
959
|
+
readonly isContentEditable: boolean;
|
|
960
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
961
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
962
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
963
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
964
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) & ((this: GlobalEventHandlers, ev: AnimationEvent) => any);
|
|
965
|
+
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
966
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) & ((this: GlobalEventHandlers, ev: InputEvent) => any);
|
|
967
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
968
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
969
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
970
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
971
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
972
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
973
|
+
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
974
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
975
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
976
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
977
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
978
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
979
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
980
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
981
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
982
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
983
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
984
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
985
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
986
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) & ((this: GlobalEventHandlers, ev: DragEvent) => any);
|
|
987
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
988
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
989
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
990
|
+
onerror: OnErrorEventHandlerNonNull;
|
|
991
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) & ((this: GlobalEventHandlers, ev: FocusEvent) => any);
|
|
992
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) & ((this: GlobalEventHandlers, ev: FormDataEvent) => any);
|
|
993
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
994
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
995
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
996
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
997
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
998
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) & ((this: GlobalEventHandlers, ev: KeyboardEvent) => any);
|
|
999
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1000
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1001
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1002
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1003
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1004
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1005
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1006
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1007
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1008
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1009
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1010
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) & ((this: GlobalEventHandlers, ev: MouseEvent) => any);
|
|
1011
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) & ((this: GlobalEventHandlers, ev: ClipboardEvent) => any);
|
|
1012
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1013
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1014
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1015
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1016
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1017
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1018
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1019
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1020
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1021
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1022
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
|
|
1023
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
|
|
1024
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1025
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1026
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
|
|
1027
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1028
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1029
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) & ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any);
|
|
1030
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1031
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1032
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1033
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1034
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1035
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1036
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1037
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) & ((this: GlobalEventHandlers, ev: SubmitEvent) => any);
|
|
1038
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1039
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1040
|
+
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1041
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1042
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1043
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1044
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) & ((this: GlobalEventHandlers, ev: TouchEvent) => any);
|
|
1045
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1046
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1047
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1048
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) & ((this: GlobalEventHandlers, ev: TransitionEvent) => any);
|
|
1049
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1050
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1051
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1052
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1053
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1054
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
|
|
1055
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) & ((this: GlobalEventHandlers, ev: WheelEvent) => any);
|
|
1056
|
+
autofocus: boolean;
|
|
1057
|
+
readonly dataset: DOMStringMap;
|
|
1058
|
+
nonce?: string;
|
|
1059
|
+
tabIndex: number;
|
|
1060
|
+
blur: (() => void) & (() => void);
|
|
1061
|
+
focus: ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void);
|
|
1062
|
+
};
|
|
1063
|
+
} & {
|
|
616
1064
|
new (...params: any[]): {
|
|
617
1065
|
"__#7@#shouldMountInFormEle"(): boolean;
|
|
618
1066
|
"__#7@#handleOuterForm"(): void;
|
|
@@ -641,9 +1089,9 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
641
1089
|
hidePopover(): void;
|
|
642
1090
|
showPopover(): void;
|
|
643
1091
|
togglePopover(force?: boolean): boolean;
|
|
644
|
-
addEventListener<
|
|
1092
|
+
addEventListener<K_35 extends keyof HTMLElementEventMap>(type: K_35, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_35]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
645
1093
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
646
|
-
removeEventListener<
|
|
1094
|
+
removeEventListener<K_36 extends keyof HTMLElementEventMap>(type: K_36, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_36]) => any, options?: boolean | EventListenerOptions): void;
|
|
647
1095
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
648
1096
|
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
649
1097
|
readonly attributes: NamedNodeMap;
|
|
@@ -671,10 +1119,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
671
1119
|
readonly tagName: string;
|
|
672
1120
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
673
1121
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
674
|
-
closest<
|
|
675
|
-
closest<
|
|
676
|
-
closest<
|
|
677
|
-
closest<
|
|
1122
|
+
closest<K_37 extends keyof HTMLElementTagNameMap>(selector: K_37): HTMLElementTagNameMap[K_37];
|
|
1123
|
+
closest<K_38 extends keyof SVGElementTagNameMap>(selector: K_38): SVGElementTagNameMap[K_38];
|
|
1124
|
+
closest<K_39 extends keyof MathMLElementTagNameMap>(selector: K_39): MathMLElementTagNameMap[K_39];
|
|
1125
|
+
closest<E_7 extends Element = Element>(selectors: string): E_7;
|
|
678
1126
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
679
1127
|
getAttribute(qualifiedName: string): string;
|
|
680
1128
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -684,10 +1132,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
684
1132
|
getBoundingClientRect(): DOMRect;
|
|
685
1133
|
getClientRects(): DOMRectList;
|
|
686
1134
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
687
|
-
getElementsByTagName<
|
|
688
|
-
getElementsByTagName<
|
|
689
|
-
getElementsByTagName<
|
|
690
|
-
getElementsByTagName<
|
|
1135
|
+
getElementsByTagName<K_40 extends keyof HTMLElementTagNameMap>(qualifiedName: K_40): HTMLCollectionOf<HTMLElementTagNameMap[K_40]>;
|
|
1136
|
+
getElementsByTagName<K_41 extends keyof SVGElementTagNameMap>(qualifiedName: K_41): HTMLCollectionOf<SVGElementTagNameMap[K_41]>;
|
|
1137
|
+
getElementsByTagName<K_42 extends keyof MathMLElementTagNameMap>(qualifiedName: K_42): HTMLCollectionOf<MathMLElementTagNameMap[K_42]>;
|
|
1138
|
+
getElementsByTagName<K_43 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_43): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_43]>;
|
|
691
1139
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
692
1140
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
693
1141
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -740,7 +1188,7 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
740
1188
|
contains(other: Node): boolean;
|
|
741
1189
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
742
1190
|
hasChildNodes(): boolean;
|
|
743
|
-
insertBefore<
|
|
1191
|
+
insertBefore<T_8 extends Node>(node: T_8, child: Node): T_8;
|
|
744
1192
|
isDefaultNamespace(namespace: string): boolean;
|
|
745
1193
|
isEqualNode(otherNode: Node): boolean;
|
|
746
1194
|
isSameNode(otherNode: Node): boolean;
|
|
@@ -822,16 +1270,16 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
822
1270
|
readonly lastElementChild: Element;
|
|
823
1271
|
append(...nodes: (string | Node)[]): void;
|
|
824
1272
|
prepend(...nodes: (string | Node)[]): void;
|
|
825
|
-
querySelector<
|
|
826
|
-
querySelector<
|
|
827
|
-
querySelector<
|
|
828
|
-
querySelector<
|
|
829
|
-
querySelector<
|
|
830
|
-
querySelectorAll<
|
|
831
|
-
querySelectorAll<
|
|
832
|
-
querySelectorAll<
|
|
833
|
-
querySelectorAll<
|
|
834
|
-
querySelectorAll<
|
|
1273
|
+
querySelector<K_27 extends keyof HTMLElementTagNameMap>(selectors: K_27): HTMLElementTagNameMap[K_27];
|
|
1274
|
+
querySelector<K_28 extends keyof SVGElementTagNameMap>(selectors: K_28): SVGElementTagNameMap[K_28];
|
|
1275
|
+
querySelector<K_29 extends keyof MathMLElementTagNameMap>(selectors: K_29): MathMLElementTagNameMap[K_29];
|
|
1276
|
+
querySelector<K_30 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_30): HTMLElementDeprecatedTagNameMap[K_30];
|
|
1277
|
+
querySelector<E_5 extends Element = Element>(selectors: string): E_5;
|
|
1278
|
+
querySelectorAll<K_31 extends keyof HTMLElementTagNameMap>(selectors: K_31): NodeListOf<HTMLElementTagNameMap[K_31]>;
|
|
1279
|
+
querySelectorAll<K_32 extends keyof SVGElementTagNameMap>(selectors: K_32): NodeListOf<SVGElementTagNameMap[K_32]>;
|
|
1280
|
+
querySelectorAll<K_33 extends keyof MathMLElementTagNameMap>(selectors: K_33): NodeListOf<MathMLElementTagNameMap[K_33]>;
|
|
1281
|
+
querySelectorAll<K_34 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_34): NodeListOf<HTMLElementDeprecatedTagNameMap[K_34]>;
|
|
1282
|
+
querySelectorAll<E_6 extends Element = Element>(selectors: string): NodeListOf<E_6>;
|
|
835
1283
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
836
1284
|
readonly assignedSlot: HTMLSlotElement;
|
|
837
1285
|
readonly attributeStyleMap: StylePropertyMap;
|
|
@@ -985,9 +1433,9 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
985
1433
|
hidePopover(): void;
|
|
986
1434
|
showPopover(): void;
|
|
987
1435
|
togglePopover(force?: boolean): boolean;
|
|
988
|
-
addEventListener<
|
|
1436
|
+
addEventListener<K_44 extends keyof HTMLElementEventMap>(type: K_44, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_44]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
989
1437
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
990
|
-
removeEventListener<
|
|
1438
|
+
removeEventListener<K_1_2 extends keyof HTMLElementEventMap>(type: K_1_2, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_2]) => any, options?: boolean | EventListenerOptions): void;
|
|
991
1439
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
992
1440
|
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
993
1441
|
connectedCallback: (() => void) & (() => void) & (() => void);
|
|
@@ -1016,10 +1464,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1016
1464
|
readonly tagName: string;
|
|
1017
1465
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1018
1466
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1019
|
-
closest<
|
|
1020
|
-
closest<
|
|
1021
|
-
closest<
|
|
1022
|
-
closest<
|
|
1467
|
+
closest<K_2_2 extends keyof HTMLElementTagNameMap>(selector: K_2_2): HTMLElementTagNameMap[K_2_2];
|
|
1468
|
+
closest<K_3_2 extends keyof SVGElementTagNameMap>(selector: K_3_2): SVGElementTagNameMap[K_3_2];
|
|
1469
|
+
closest<K_4_2 extends keyof MathMLElementTagNameMap>(selector: K_4_2): MathMLElementTagNameMap[K_4_2];
|
|
1470
|
+
closest<E_8 extends Element = Element>(selectors: string): E_8;
|
|
1023
1471
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1024
1472
|
getAttribute(qualifiedName: string): string;
|
|
1025
1473
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -1029,10 +1477,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1029
1477
|
getBoundingClientRect(): DOMRect;
|
|
1030
1478
|
getClientRects(): DOMRectList;
|
|
1031
1479
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1032
|
-
getElementsByTagName<
|
|
1033
|
-
getElementsByTagName<
|
|
1034
|
-
getElementsByTagName<
|
|
1035
|
-
getElementsByTagName<
|
|
1480
|
+
getElementsByTagName<K_5_2 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_2): HTMLCollectionOf<HTMLElementTagNameMap[K_5_2]>;
|
|
1481
|
+
getElementsByTagName<K_6_2 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_2): HTMLCollectionOf<SVGElementTagNameMap[K_6_2]>;
|
|
1482
|
+
getElementsByTagName<K_7_2 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_2): HTMLCollectionOf<MathMLElementTagNameMap[K_7_2]>;
|
|
1483
|
+
getElementsByTagName<K_8_2 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_2): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_2]>;
|
|
1036
1484
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1037
1485
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1038
1486
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -1079,21 +1527,21 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1079
1527
|
readonly parentNode: ParentNode;
|
|
1080
1528
|
readonly previousSibling: ChildNode;
|
|
1081
1529
|
textContent: string;
|
|
1082
|
-
appendChild<
|
|
1530
|
+
appendChild<T_1_2 extends Node>(node: T_1_2): T_1_2;
|
|
1083
1531
|
cloneNode(deep?: boolean): Node;
|
|
1084
1532
|
compareDocumentPosition(other: Node): number;
|
|
1085
1533
|
contains(other: Node): boolean;
|
|
1086
1534
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
1087
1535
|
hasChildNodes(): boolean;
|
|
1088
|
-
insertBefore<
|
|
1536
|
+
insertBefore<T_2_2 extends Node>(node: T_2_2, child: Node): T_2_2;
|
|
1089
1537
|
isDefaultNamespace(namespace: string): boolean;
|
|
1090
1538
|
isEqualNode(otherNode: Node): boolean;
|
|
1091
1539
|
isSameNode(otherNode: Node): boolean;
|
|
1092
1540
|
lookupNamespaceURI(prefix: string): string;
|
|
1093
1541
|
lookupPrefix(namespace: string): string;
|
|
1094
1542
|
normalize(): void;
|
|
1095
|
-
removeChild<
|
|
1096
|
-
replaceChild<
|
|
1543
|
+
removeChild<T_3_2 extends Node>(child: T_3_2): T_3_2;
|
|
1544
|
+
replaceChild<T_4_2 extends Node>(node: Node, child: T_4_2): T_4_2;
|
|
1097
1545
|
readonly ELEMENT_NODE: 1;
|
|
1098
1546
|
readonly ATTRIBUTE_NODE: 2;
|
|
1099
1547
|
readonly TEXT_NODE: 3;
|
|
@@ -1167,16 +1615,16 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1167
1615
|
readonly lastElementChild: Element;
|
|
1168
1616
|
append(...nodes: (string | Node)[]): void;
|
|
1169
1617
|
prepend(...nodes: (string | Node)[]): void;
|
|
1170
|
-
querySelector<
|
|
1171
|
-
querySelector<
|
|
1172
|
-
querySelector<
|
|
1173
|
-
querySelector<
|
|
1174
|
-
querySelector<
|
|
1175
|
-
querySelectorAll<
|
|
1176
|
-
querySelectorAll<
|
|
1177
|
-
querySelectorAll<
|
|
1178
|
-
querySelectorAll<
|
|
1179
|
-
querySelectorAll<
|
|
1618
|
+
querySelector<K_9_2 extends keyof HTMLElementTagNameMap>(selectors: K_9_2): HTMLElementTagNameMap[K_9_2];
|
|
1619
|
+
querySelector<K_10_2 extends keyof SVGElementTagNameMap>(selectors: K_10_2): SVGElementTagNameMap[K_10_2];
|
|
1620
|
+
querySelector<K_11_2 extends keyof MathMLElementTagNameMap>(selectors: K_11_2): MathMLElementTagNameMap[K_11_2];
|
|
1621
|
+
querySelector<K_12_2 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_2): HTMLElementDeprecatedTagNameMap[K_12_2];
|
|
1622
|
+
querySelector<E_1_2 extends Element = Element>(selectors: string): E_1_2;
|
|
1623
|
+
querySelectorAll<K_13_2 extends keyof HTMLElementTagNameMap>(selectors: K_13_2): NodeListOf<HTMLElementTagNameMap[K_13_2]>;
|
|
1624
|
+
querySelectorAll<K_14_2 extends keyof SVGElementTagNameMap>(selectors: K_14_2): NodeListOf<SVGElementTagNameMap[K_14_2]>;
|
|
1625
|
+
querySelectorAll<K_15_2 extends keyof MathMLElementTagNameMap>(selectors: K_15_2): NodeListOf<MathMLElementTagNameMap[K_15_2]>;
|
|
1626
|
+
querySelectorAll<K_16_2 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_2): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_2]>;
|
|
1627
|
+
querySelectorAll<E_2_2 extends Element = Element>(selectors: string): NodeListOf<E_2_2>;
|
|
1180
1628
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1181
1629
|
readonly assignedSlot: HTMLSlotElement;
|
|
1182
1630
|
readonly attributeStyleMap: StylePropertyMap;
|
|
@@ -1372,9 +1820,9 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1372
1820
|
hidePopover(): void;
|
|
1373
1821
|
showPopover(): void;
|
|
1374
1822
|
togglePopover(force?: boolean): boolean;
|
|
1375
|
-
addEventListener<
|
|
1823
|
+
addEventListener<K_45 extends keyof HTMLElementEventMap>(type: K_45, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_45]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
1376
1824
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
1377
|
-
removeEventListener<
|
|
1825
|
+
removeEventListener<K_1_3 extends keyof HTMLElementEventMap>(type: K_1_3, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1_3]) => any, options?: boolean | EventListenerOptions): void;
|
|
1378
1826
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
1379
1827
|
attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void;
|
|
1380
1828
|
readonly attributes: NamedNodeMap;
|
|
@@ -1402,10 +1850,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1402
1850
|
readonly tagName: string;
|
|
1403
1851
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
1404
1852
|
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
1405
|
-
closest<
|
|
1406
|
-
closest<
|
|
1407
|
-
closest<
|
|
1408
|
-
closest<
|
|
1853
|
+
closest<K_2_3 extends keyof HTMLElementTagNameMap>(selector: K_2_3): HTMLElementTagNameMap[K_2_3];
|
|
1854
|
+
closest<K_3_3 extends keyof SVGElementTagNameMap>(selector: K_3_3): SVGElementTagNameMap[K_3_3];
|
|
1855
|
+
closest<K_4_3 extends keyof MathMLElementTagNameMap>(selector: K_4_3): MathMLElementTagNameMap[K_4_3];
|
|
1856
|
+
closest<E_9 extends Element = Element>(selectors: string): E_9;
|
|
1409
1857
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
1410
1858
|
getAttribute(qualifiedName: string): string;
|
|
1411
1859
|
getAttributeNS(namespace: string, localName: string): string;
|
|
@@ -1415,10 +1863,10 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1415
1863
|
getBoundingClientRect(): DOMRect;
|
|
1416
1864
|
getClientRects(): DOMRectList;
|
|
1417
1865
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
1418
|
-
getElementsByTagName<
|
|
1419
|
-
getElementsByTagName<
|
|
1420
|
-
getElementsByTagName<
|
|
1421
|
-
getElementsByTagName<
|
|
1866
|
+
getElementsByTagName<K_5_3 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5_3): HTMLCollectionOf<HTMLElementTagNameMap[K_5_3]>;
|
|
1867
|
+
getElementsByTagName<K_6_3 extends keyof SVGElementTagNameMap>(qualifiedName: K_6_3): HTMLCollectionOf<SVGElementTagNameMap[K_6_3]>;
|
|
1868
|
+
getElementsByTagName<K_7_3 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7_3): HTMLCollectionOf<MathMLElementTagNameMap[K_7_3]>;
|
|
1869
|
+
getElementsByTagName<K_8_3 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8_3): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8_3]>;
|
|
1422
1870
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
1423
1871
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
1424
1872
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -1465,21 +1913,21 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1465
1913
|
readonly parentNode: ParentNode;
|
|
1466
1914
|
readonly previousSibling: ChildNode;
|
|
1467
1915
|
textContent: string;
|
|
1468
|
-
appendChild<
|
|
1916
|
+
appendChild<T_1_3 extends Node>(node: T_1_3): T_1_3;
|
|
1469
1917
|
cloneNode(deep?: boolean): Node;
|
|
1470
1918
|
compareDocumentPosition(other: Node): number;
|
|
1471
1919
|
contains(other: Node): boolean;
|
|
1472
1920
|
getRootNode(options?: GetRootNodeOptions): Node;
|
|
1473
1921
|
hasChildNodes(): boolean;
|
|
1474
|
-
insertBefore<
|
|
1922
|
+
insertBefore<T_2_3 extends Node>(node: T_2_3, child: Node): T_2_3;
|
|
1475
1923
|
isDefaultNamespace(namespace: string): boolean;
|
|
1476
1924
|
isEqualNode(otherNode: Node): boolean;
|
|
1477
1925
|
isSameNode(otherNode: Node): boolean;
|
|
1478
1926
|
lookupNamespaceURI(prefix: string): string;
|
|
1479
1927
|
lookupPrefix(namespace: string): string;
|
|
1480
1928
|
normalize(): void;
|
|
1481
|
-
removeChild<
|
|
1482
|
-
replaceChild<
|
|
1929
|
+
removeChild<T_3_3 extends Node>(child: T_3_3): T_3_3;
|
|
1930
|
+
replaceChild<T_4_3 extends Node>(node: Node, child: T_4_3): T_4_3;
|
|
1483
1931
|
readonly ELEMENT_NODE: 1;
|
|
1484
1932
|
readonly ATTRIBUTE_NODE: 2;
|
|
1485
1933
|
readonly TEXT_NODE: 3;
|
|
@@ -1553,16 +2001,16 @@ declare const BaseClass: (new (...params: any[]) => {
|
|
|
1553
2001
|
readonly lastElementChild: Element;
|
|
1554
2002
|
append(...nodes: (string | Node)[]): void;
|
|
1555
2003
|
prepend(...nodes: (string | Node)[]): void;
|
|
1556
|
-
querySelector<
|
|
1557
|
-
querySelector<
|
|
1558
|
-
querySelector<
|
|
1559
|
-
querySelector<
|
|
1560
|
-
querySelector<
|
|
1561
|
-
querySelectorAll<
|
|
1562
|
-
querySelectorAll<
|
|
1563
|
-
querySelectorAll<
|
|
1564
|
-
querySelectorAll<
|
|
1565
|
-
querySelectorAll<
|
|
2004
|
+
querySelector<K_9_3 extends keyof HTMLElementTagNameMap>(selectors: K_9_3): HTMLElementTagNameMap[K_9_3];
|
|
2005
|
+
querySelector<K_10_3 extends keyof SVGElementTagNameMap>(selectors: K_10_3): SVGElementTagNameMap[K_10_3];
|
|
2006
|
+
querySelector<K_11_3 extends keyof MathMLElementTagNameMap>(selectors: K_11_3): MathMLElementTagNameMap[K_11_3];
|
|
2007
|
+
querySelector<K_12_3 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12_3): HTMLElementDeprecatedTagNameMap[K_12_3];
|
|
2008
|
+
querySelector<E_1_3 extends Element = Element>(selectors: string): E_1_3;
|
|
2009
|
+
querySelectorAll<K_13_3 extends keyof HTMLElementTagNameMap>(selectors: K_13_3): NodeListOf<HTMLElementTagNameMap[K_13_3]>;
|
|
2010
|
+
querySelectorAll<K_14_3 extends keyof SVGElementTagNameMap>(selectors: K_14_3): NodeListOf<SVGElementTagNameMap[K_14_3]>;
|
|
2011
|
+
querySelectorAll<K_15_3 extends keyof MathMLElementTagNameMap>(selectors: K_15_3): NodeListOf<MathMLElementTagNameMap[K_15_3]>;
|
|
2012
|
+
querySelectorAll<K_16_3 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16_3): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16_3]>;
|
|
2013
|
+
querySelectorAll<E_2_3 extends Element = Element>(selectors: string): NodeListOf<E_2_3>;
|
|
1566
2014
|
replaceChildren(...nodes: (string | Node)[]): void;
|
|
1567
2015
|
readonly assignedSlot: HTMLSlotElement;
|
|
1568
2016
|
readonly attributeStyleMap: StylePropertyMap;
|