@leavittsoftware/web 6.18.1 → 6.18.2
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/leavitt/api-service/api2-service.d.ts +2 -0
- package/leavitt/api-service/mapi-service.d.ts +2 -0
- package/leavitt/email-history-viewer/email-history-view-list-filter-dialog.d.ts +2 -0
- package/leavitt/email-history-viewer/email-history-viewer-filled-filter-dialog.d.ts +2 -0
- package/leavitt/email-history-viewer/email-history-viewer-filled.d.ts +2 -0
- package/leavitt/email-history-viewer/email-history-viewer.d.ts +2 -0
- package/leavitt/email-history-viewer/view-email-template-info-dialog.d.ts +2 -0
- package/leavitt/email-history-viewer/view-sent-email-dialog.d.ts +2 -0
- package/leavitt/file-explorer/add-folder-modal.d.ts +2 -0
- package/leavitt/file-explorer/file-explorer.d.ts +2 -0
- package/leavitt/file-explorer/file-modal.d.ts +2 -0
- package/leavitt/file-explorer/folder-modal.d.ts +2 -0
- package/leavitt/user-feedback/provide-feedback-dialog.d.ts +2 -0
- package/leavitt/user-feedback/report-a-problem-dialog.d.ts +2 -0
- package/leavitt/user-feedback/user-feedback.d.ts +2 -0
- package/package.json +2 -2
- package/titanium/data-table/data-table-core-reorder-dialog.d.ts +2 -0
- package/titanium/data-table/data-table-core.d.ts +2 -0
- package/titanium/helpers/load-while.d.ts +2 -0
- package/titanium/helpers/pending-state-catcher.d.ts +413 -7
- package/titanium/helpers/pending-state-catcher.js +1 -1
- package/titanium/helpers/pending-state-catcher.js.map +1 -1
- package/titanium/single-select-base/single-select-base.d.ts +2 -0
- package/titanium/smart-attachment-input/crop-and-save-image-dialog.d.ts +2 -0
|
@@ -43,6 +43,8 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
43
43
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
44
44
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
45
45
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
46
|
+
connectedCallback(): void;
|
|
47
|
+
disconnectedCallback(): void;
|
|
46
48
|
readonly attributes: NamedNodeMap;
|
|
47
49
|
get classList(): DOMTokenList;
|
|
48
50
|
set classList(value: string);
|
|
@@ -43,6 +43,8 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
43
43
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
44
44
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
45
45
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
46
|
+
connectedCallback(): void;
|
|
47
|
+
disconnectedCallback(): void;
|
|
46
48
|
readonly attributes: NamedNodeMap;
|
|
47
49
|
get classList(): DOMTokenList;
|
|
48
50
|
set classList(value: string);
|
|
@@ -46,6 +46,8 @@ declare const LeavittEmailHistoryViewListFilterDialog_base: {
|
|
|
46
46
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
47
47
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
48
48
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
49
|
+
connectedCallback(): void;
|
|
50
|
+
disconnectedCallback(): void;
|
|
49
51
|
readonly attributes: NamedNodeMap;
|
|
50
52
|
get classList(): DOMTokenList;
|
|
51
53
|
set classList(value: string);
|
|
@@ -49,6 +49,8 @@ declare const LeavittEmailHistoryViewerFilledFilterDialog_base: {
|
|
|
49
49
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
50
50
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
51
51
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
52
|
+
connectedCallback(): void;
|
|
53
|
+
disconnectedCallback(): void;
|
|
52
54
|
readonly attributes: NamedNodeMap;
|
|
53
55
|
get classList(): DOMTokenList;
|
|
54
56
|
set classList(value: string);
|
|
@@ -53,6 +53,8 @@ declare const LeavittEmailHistoryViewerFilled_base: {
|
|
|
53
53
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
54
54
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
55
55
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
56
|
+
connectedCallback(): void;
|
|
57
|
+
disconnectedCallback(): void;
|
|
56
58
|
readonly attributes: NamedNodeMap;
|
|
57
59
|
get classList(): DOMTokenList;
|
|
58
60
|
set classList(value: string);
|
|
@@ -51,6 +51,8 @@ declare const LeavittEmailHistoryViewer_base: {
|
|
|
51
51
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
52
52
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
53
53
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
54
|
+
connectedCallback(): void;
|
|
55
|
+
disconnectedCallback(): void;
|
|
54
56
|
readonly attributes: NamedNodeMap;
|
|
55
57
|
get classList(): DOMTokenList;
|
|
56
58
|
set classList(value: string);
|
|
@@ -45,6 +45,8 @@ declare const LeavittViewEmailTemplateInfoDialog_base: {
|
|
|
45
45
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
46
46
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
47
47
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
48
|
+
connectedCallback(): void;
|
|
49
|
+
disconnectedCallback(): void;
|
|
48
50
|
readonly attributes: NamedNodeMap;
|
|
49
51
|
get classList(): DOMTokenList;
|
|
50
52
|
set classList(value: string);
|
|
@@ -46,6 +46,8 @@ declare const LeavittViewSentEmailDialog_base: {
|
|
|
46
46
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
47
47
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
48
48
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
49
|
+
connectedCallback(): void;
|
|
50
|
+
disconnectedCallback(): void;
|
|
49
51
|
readonly attributes: NamedNodeMap;
|
|
50
52
|
get classList(): DOMTokenList;
|
|
51
53
|
set classList(value: string);
|
|
@@ -44,6 +44,8 @@ declare const AddFolderModal_base: {
|
|
|
44
44
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
45
45
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
46
46
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
47
|
+
connectedCallback(): void;
|
|
48
|
+
disconnectedCallback(): void;
|
|
47
49
|
readonly attributes: NamedNodeMap;
|
|
48
50
|
get classList(): DOMTokenList;
|
|
49
51
|
set classList(value: string);
|
|
@@ -54,6 +54,8 @@ declare const LeavittFileExplorer_base: {
|
|
|
54
54
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
55
55
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
56
56
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
57
|
+
connectedCallback(): void;
|
|
58
|
+
disconnectedCallback(): void;
|
|
57
59
|
readonly attributes: NamedNodeMap;
|
|
58
60
|
get classList(): DOMTokenList;
|
|
59
61
|
set classList(value: string);
|
|
@@ -47,6 +47,8 @@ declare const FileModal_base: {
|
|
|
47
47
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
48
48
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
49
49
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
50
|
+
connectedCallback(): void;
|
|
51
|
+
disconnectedCallback(): void;
|
|
50
52
|
readonly attributes: NamedNodeMap;
|
|
51
53
|
get classList(): DOMTokenList;
|
|
52
54
|
set classList(value: string);
|
|
@@ -47,6 +47,8 @@ declare const FolderModal_base: {
|
|
|
47
47
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
48
48
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
49
49
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
50
|
+
connectedCallback(): void;
|
|
51
|
+
disconnectedCallback(): void;
|
|
50
52
|
readonly attributes: NamedNodeMap;
|
|
51
53
|
get classList(): DOMTokenList;
|
|
52
54
|
set classList(value: string);
|
|
@@ -43,6 +43,8 @@ declare const ProvideFeedbackDialog_base: {
|
|
|
43
43
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
44
44
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
45
45
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
46
|
+
connectedCallback(): void;
|
|
47
|
+
disconnectedCallback(): void;
|
|
46
48
|
readonly attributes: NamedNodeMap;
|
|
47
49
|
get classList(): DOMTokenList;
|
|
48
50
|
set classList(value: string);
|
|
@@ -44,6 +44,8 @@ declare const ReportAProblemDialog_base: {
|
|
|
44
44
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
45
45
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
46
46
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
47
|
+
connectedCallback(): void;
|
|
48
|
+
disconnectedCallback(): void;
|
|
47
49
|
readonly attributes: NamedNodeMap;
|
|
48
50
|
get classList(): DOMTokenList;
|
|
49
51
|
set classList(value: string);
|
|
@@ -46,6 +46,8 @@ declare const LeavittUserFeedback_base: {
|
|
|
46
46
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
47
47
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
48
48
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
49
|
+
connectedCallback(): void;
|
|
50
|
+
disconnectedCallback(): void;
|
|
49
51
|
readonly attributes: NamedNodeMap;
|
|
50
52
|
get classList(): DOMTokenList;
|
|
51
53
|
set classList(value: string);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/web",
|
|
3
|
-
"version": "6.18.
|
|
3
|
+
"version": "6.18.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"url": "https://github.com/LeavittSoftware/titanium-elements/issues"
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://github.com/LeavittSoftware/titanium-elements/#readme",
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "f0964c13e069361e4195016212b0a83a70d6c817"
|
|
48
48
|
}
|
|
@@ -48,6 +48,8 @@ declare const TitaniumDataTableCoreReorderDialog_base: {
|
|
|
48
48
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
49
49
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
50
50
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
51
|
+
connectedCallback(): void;
|
|
52
|
+
disconnectedCallback(): void;
|
|
51
53
|
readonly attributes: NamedNodeMap;
|
|
52
54
|
get classList(): DOMTokenList;
|
|
53
55
|
set classList(value: string);
|
|
@@ -84,6 +84,8 @@ declare const TitaniumDataTableCore_base: {
|
|
|
84
84
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
85
85
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
86
86
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
87
|
+
connectedCallback(): void;
|
|
88
|
+
disconnectedCallback(): void;
|
|
87
89
|
readonly attributes: NamedNodeMap;
|
|
88
90
|
get classList(): DOMTokenList;
|
|
89
91
|
set classList(value: string);
|
|
@@ -44,6 +44,8 @@ export declare const LoadWhile: <C extends Constructor<HTMLElement>>(base: C) =>
|
|
|
44
44
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
45
45
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
46
46
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
47
|
+
connectedCallback(): void;
|
|
48
|
+
disconnectedCallback(): void;
|
|
47
49
|
readonly attributes: NamedNodeMap;
|
|
48
50
|
get classList(): DOMTokenList;
|
|
49
51
|
set classList(value: string);
|
|
@@ -1,12 +1,418 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PendingStateEvent } from '../types/pending-state-event';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElement {
|
|
4
|
+
connectedCallback(): void;
|
|
5
|
+
disconnectedCallback(): void;
|
|
6
|
+
}
|
|
7
7
|
}
|
|
8
8
|
export type Constructor<T> = {
|
|
9
9
|
new (...args: any[]): T;
|
|
10
10
|
};
|
|
11
|
-
export declare const PendingStateCatcher: <C extends Constructor<
|
|
11
|
+
export declare const PendingStateCatcher: <C extends Constructor<HTMLElement>>(base: C) => {
|
|
12
|
+
new (...args: any[]): {
|
|
13
|
+
/**
|
|
14
|
+
* !! Handled by the pending state catcher !!
|
|
15
|
+
*/
|
|
16
|
+
get stateIsPending(): boolean;
|
|
17
|
+
set stateIsPending(arg: boolean);
|
|
18
|
+
/**
|
|
19
|
+
* Promises faster than this do not cause stateIsPending to be set to true at all
|
|
20
|
+
* Prevents flicker for fast promises
|
|
21
|
+
*/
|
|
22
|
+
get pendingStateCatcherLoadingStartDelay(): number;
|
|
23
|
+
set pendingStateCatcherLoadingStartDelay(arg: number);
|
|
24
|
+
/**
|
|
25
|
+
* min time stateIsPending must remain true
|
|
26
|
+
*/
|
|
27
|
+
get pendingStateCatcherMinTimeOpen(): number;
|
|
28
|
+
set pendingStateCatcherMinTimeOpen(arg: number);
|
|
29
|
+
/**
|
|
30
|
+
* async reference to the element that will be used to listen for pending state events
|
|
31
|
+
* defaults to window
|
|
32
|
+
*/
|
|
33
|
+
get pendingStateCatcherTarget(): Promise<HTMLElement> | null;
|
|
34
|
+
set pendingStateCatcherTarget(arg: Promise<HTMLElement> | null);
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
"__#private@#loadingDelayTimer": number;
|
|
39
|
+
"__#private@#closeDelayTimer": number;
|
|
40
|
+
"__#private@#openCount": number;
|
|
41
|
+
"__#private@#timeStampOfLoadingStart": number;
|
|
42
|
+
connectedCallback(): Promise<void>;
|
|
43
|
+
disconnectedCallback(): void;
|
|
44
|
+
"__#private@#handlePendingStateEvent"(e: PendingStateEvent): Promise<void>;
|
|
45
|
+
"__#private@#loadingStarted"(): void;
|
|
46
|
+
"__#private@#loadingStopped"(): void;
|
|
47
|
+
accessKey: string;
|
|
48
|
+
readonly accessKeyLabel: string;
|
|
49
|
+
autocapitalize: string;
|
|
50
|
+
autocorrect: boolean;
|
|
51
|
+
dir: string;
|
|
52
|
+
draggable: boolean;
|
|
53
|
+
hidden: boolean;
|
|
54
|
+
inert: boolean;
|
|
55
|
+
innerText: string;
|
|
56
|
+
lang: string;
|
|
57
|
+
readonly offsetHeight: number;
|
|
58
|
+
readonly offsetLeft: number;
|
|
59
|
+
readonly offsetParent: Element | null;
|
|
60
|
+
readonly offsetTop: number;
|
|
61
|
+
readonly offsetWidth: number;
|
|
62
|
+
outerText: string;
|
|
63
|
+
popover: string | null;
|
|
64
|
+
spellcheck: boolean;
|
|
65
|
+
title: string;
|
|
66
|
+
translate: boolean;
|
|
67
|
+
writingSuggestions: string;
|
|
68
|
+
attachInternals(): ElementInternals;
|
|
69
|
+
click(): void;
|
|
70
|
+
hidePopover(): void;
|
|
71
|
+
hidePopover(): void;
|
|
72
|
+
showPopover(): void;
|
|
73
|
+
showPopover(): void;
|
|
74
|
+
togglePopover(options?: boolean): boolean;
|
|
75
|
+
togglePopover(force: boolean): void;
|
|
76
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
77
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
78
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
79
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
80
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
81
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
82
|
+
readonly attributes: NamedNodeMap;
|
|
83
|
+
get classList(): DOMTokenList;
|
|
84
|
+
set classList(value: string);
|
|
85
|
+
className: string;
|
|
86
|
+
readonly clientHeight: number;
|
|
87
|
+
readonly clientLeft: number;
|
|
88
|
+
readonly clientTop: number;
|
|
89
|
+
readonly clientWidth: number;
|
|
90
|
+
readonly currentCSSZoom: number;
|
|
91
|
+
id: string;
|
|
92
|
+
innerHTML: string;
|
|
93
|
+
readonly localName: string;
|
|
94
|
+
readonly namespaceURI: string | null;
|
|
95
|
+
onfullscreenchange: ((this: Element, ev: Event) => any) | null;
|
|
96
|
+
onfullscreenerror: ((this: Element, ev: Event) => any) | null;
|
|
97
|
+
outerHTML: string;
|
|
98
|
+
readonly ownerDocument: Document;
|
|
99
|
+
get part(): DOMTokenList;
|
|
100
|
+
set part(value: string);
|
|
101
|
+
readonly prefix: string | null;
|
|
102
|
+
readonly scrollHeight: number;
|
|
103
|
+
scrollLeft: number;
|
|
104
|
+
scrollTop: number;
|
|
105
|
+
readonly scrollWidth: number;
|
|
106
|
+
readonly shadowRoot: ShadowRoot | null;
|
|
107
|
+
slot: string;
|
|
108
|
+
readonly tagName: string;
|
|
109
|
+
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
110
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
111
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
112
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
113
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
114
|
+
closest<E extends Element = Element>(selectors: string): E | null;
|
|
115
|
+
computedStyleMap(): StylePropertyMapReadOnly;
|
|
116
|
+
getAttribute(qualifiedName: string): string | null;
|
|
117
|
+
getAttributeNS(namespace: string | null, localName: string): string | null;
|
|
118
|
+
getAttributeNames(): string[];
|
|
119
|
+
getAttributeNode(qualifiedName: string): Attr | null;
|
|
120
|
+
getAttributeNodeNS(namespace: string | null, localName: string): Attr | null;
|
|
121
|
+
getBoundingClientRect(): DOMRect;
|
|
122
|
+
getClientRects(): DOMRectList;
|
|
123
|
+
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
124
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
125
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
126
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
127
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
128
|
+
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
129
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
130
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
131
|
+
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
|
|
132
|
+
getElementsByTagNameNS(namespace: string | null, localName: string): HTMLCollectionOf<Element>;
|
|
133
|
+
getHTML(options?: GetHTMLOptions): string;
|
|
134
|
+
hasAttribute(qualifiedName: string): boolean;
|
|
135
|
+
hasAttributeNS(namespace: string | null, localName: string): boolean;
|
|
136
|
+
hasAttributes(): boolean;
|
|
137
|
+
hasPointerCapture(pointerId: number): boolean;
|
|
138
|
+
insertAdjacentElement(where: InsertPosition, element: Element): Element | null;
|
|
139
|
+
insertAdjacentHTML(position: InsertPosition, string: string): void;
|
|
140
|
+
insertAdjacentText(where: InsertPosition, data: string): void;
|
|
141
|
+
matches(selectors: string): boolean;
|
|
142
|
+
releasePointerCapture(pointerId: number): void;
|
|
143
|
+
removeAttribute(qualifiedName: string): void;
|
|
144
|
+
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
145
|
+
removeAttributeNode(attr: Attr): Attr;
|
|
146
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
147
|
+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
|
|
148
|
+
scroll(options?: ScrollToOptions): void;
|
|
149
|
+
scroll(x: number, y: number): void;
|
|
150
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
151
|
+
scrollBy(x: number, y: number): void;
|
|
152
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
153
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
154
|
+
scrollTo(x: number, y: number): void;
|
|
155
|
+
setAttribute(qualifiedName: string, value: string): void;
|
|
156
|
+
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
157
|
+
setAttributeNode(attr: Attr): Attr | null;
|
|
158
|
+
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
159
|
+
setHTMLUnsafe(html: string): void;
|
|
160
|
+
setPointerCapture(pointerId: number): void;
|
|
161
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
162
|
+
webkitMatchesSelector(selectors: string): boolean;
|
|
163
|
+
get textContent(): string;
|
|
164
|
+
set textContent(value: string | null);
|
|
165
|
+
readonly baseURI: string;
|
|
166
|
+
readonly childNodes: NodeListOf<ChildNode>;
|
|
167
|
+
readonly firstChild: ChildNode | null;
|
|
168
|
+
readonly isConnected: boolean;
|
|
169
|
+
readonly lastChild: ChildNode | null;
|
|
170
|
+
readonly nextSibling: ChildNode | null;
|
|
171
|
+
readonly nodeName: string;
|
|
172
|
+
readonly nodeType: number;
|
|
173
|
+
nodeValue: string | null;
|
|
174
|
+
readonly parentElement: HTMLElement | null;
|
|
175
|
+
readonly parentNode: ParentNode | null;
|
|
176
|
+
readonly previousSibling: ChildNode | null;
|
|
177
|
+
appendChild<T extends Node>(node: T): T;
|
|
178
|
+
cloneNode(subtree?: boolean): Node;
|
|
179
|
+
compareDocumentPosition(other: Node): number;
|
|
180
|
+
contains(other: Node | null): boolean;
|
|
181
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
182
|
+
hasChildNodes(): boolean;
|
|
183
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
184
|
+
isDefaultNamespace(namespace: string | null): boolean;
|
|
185
|
+
isEqualNode(otherNode: Node | null): boolean;
|
|
186
|
+
isSameNode(otherNode: Node | null): boolean;
|
|
187
|
+
lookupNamespaceURI(prefix: string | null): string | null;
|
|
188
|
+
lookupPrefix(namespace: string | null): string | null;
|
|
189
|
+
normalize(): void;
|
|
190
|
+
removeChild<T extends Node>(child: T): T;
|
|
191
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
192
|
+
readonly ELEMENT_NODE: 1;
|
|
193
|
+
readonly ATTRIBUTE_NODE: 2;
|
|
194
|
+
readonly TEXT_NODE: 3;
|
|
195
|
+
readonly CDATA_SECTION_NODE: 4;
|
|
196
|
+
readonly ENTITY_REFERENCE_NODE: 5;
|
|
197
|
+
readonly ENTITY_NODE: 6;
|
|
198
|
+
readonly PROCESSING_INSTRUCTION_NODE: 7;
|
|
199
|
+
readonly COMMENT_NODE: 8;
|
|
200
|
+
readonly DOCUMENT_NODE: 9;
|
|
201
|
+
readonly DOCUMENT_TYPE_NODE: 10;
|
|
202
|
+
readonly DOCUMENT_FRAGMENT_NODE: 11;
|
|
203
|
+
readonly NOTATION_NODE: 12;
|
|
204
|
+
readonly DOCUMENT_POSITION_DISCONNECTED: 1;
|
|
205
|
+
readonly DOCUMENT_POSITION_PRECEDING: 2;
|
|
206
|
+
readonly DOCUMENT_POSITION_FOLLOWING: 4;
|
|
207
|
+
readonly DOCUMENT_POSITION_CONTAINS: 8;
|
|
208
|
+
readonly DOCUMENT_POSITION_CONTAINED_BY: 16;
|
|
209
|
+
readonly DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32;
|
|
210
|
+
dispatchEvent(event: Event): boolean;
|
|
211
|
+
ariaActiveDescendantElement: Element | null;
|
|
212
|
+
ariaAtomic: string | null;
|
|
213
|
+
ariaAutoComplete: string | null;
|
|
214
|
+
ariaBrailleLabel: string | null;
|
|
215
|
+
ariaBrailleRoleDescription: string | null;
|
|
216
|
+
ariaBusy: string | null;
|
|
217
|
+
ariaChecked: string | null;
|
|
218
|
+
ariaColCount: string | null;
|
|
219
|
+
ariaColIndex: string | null;
|
|
220
|
+
ariaColIndexText: string | null;
|
|
221
|
+
ariaColSpan: string | null;
|
|
222
|
+
ariaControlsElements: ReadonlyArray<Element> | null;
|
|
223
|
+
ariaCurrent: string | null;
|
|
224
|
+
ariaDescribedByElements: ReadonlyArray<Element> | null;
|
|
225
|
+
ariaDescription: string | null;
|
|
226
|
+
ariaDetailsElements: ReadonlyArray<Element> | null;
|
|
227
|
+
ariaDisabled: string | null;
|
|
228
|
+
ariaErrorMessageElements: ReadonlyArray<Element> | null;
|
|
229
|
+
ariaExpanded: string | null;
|
|
230
|
+
ariaFlowToElements: ReadonlyArray<Element> | null;
|
|
231
|
+
ariaHasPopup: string | null;
|
|
232
|
+
ariaHidden: string | null;
|
|
233
|
+
ariaInvalid: string | null;
|
|
234
|
+
ariaKeyShortcuts: string | null;
|
|
235
|
+
ariaLabel: string | null;
|
|
236
|
+
ariaLabelledByElements: ReadonlyArray<Element> | null;
|
|
237
|
+
ariaLevel: string | null;
|
|
238
|
+
ariaLive: string | null;
|
|
239
|
+
ariaModal: string | null;
|
|
240
|
+
ariaMultiLine: string | null;
|
|
241
|
+
ariaMultiSelectable: string | null;
|
|
242
|
+
ariaOrientation: string | null;
|
|
243
|
+
ariaOwnsElements: ReadonlyArray<Element> | null;
|
|
244
|
+
ariaPlaceholder: string | null;
|
|
245
|
+
ariaPosInSet: string | null;
|
|
246
|
+
ariaPressed: string | null;
|
|
247
|
+
ariaReadOnly: string | null;
|
|
248
|
+
ariaRelevant: string | null;
|
|
249
|
+
ariaRequired: string | null;
|
|
250
|
+
ariaRoleDescription: string | null;
|
|
251
|
+
ariaRowCount: string | null;
|
|
252
|
+
ariaRowIndex: string | null;
|
|
253
|
+
ariaRowIndexText: string | null;
|
|
254
|
+
ariaRowSpan: string | null;
|
|
255
|
+
ariaSelected: string | null;
|
|
256
|
+
ariaSetSize: string | null;
|
|
257
|
+
ariaSort: string | null;
|
|
258
|
+
ariaValueMax: string | null;
|
|
259
|
+
ariaValueMin: string | null;
|
|
260
|
+
ariaValueNow: string | null;
|
|
261
|
+
ariaValueText: string | null;
|
|
262
|
+
role: string | null;
|
|
263
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
264
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
265
|
+
after(...nodes: (Node | string)[]): void;
|
|
266
|
+
before(...nodes: (Node | string)[]): void;
|
|
267
|
+
remove(): void;
|
|
268
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
269
|
+
readonly nextElementSibling: Element | null;
|
|
270
|
+
readonly previousElementSibling: Element | null;
|
|
271
|
+
readonly childElementCount: number;
|
|
272
|
+
readonly children: HTMLCollection;
|
|
273
|
+
readonly firstElementChild: Element | null;
|
|
274
|
+
readonly lastElementChild: Element | null;
|
|
275
|
+
append(...nodes: (Node | string)[]): void;
|
|
276
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
277
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
278
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
279
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
280
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
281
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
282
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
283
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
284
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
285
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
286
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
287
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
288
|
+
readonly assignedSlot: HTMLSlotElement | null;
|
|
289
|
+
readonly attributeStyleMap: StylePropertyMap;
|
|
290
|
+
get style(): CSSStyleDeclaration;
|
|
291
|
+
set style(cssText: string);
|
|
292
|
+
contentEditable: string;
|
|
293
|
+
enterKeyHint: string;
|
|
294
|
+
inputMode: string;
|
|
295
|
+
readonly isContentEditable: boolean;
|
|
296
|
+
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
297
|
+
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
298
|
+
onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
299
|
+
onanimationiteration: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
300
|
+
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null;
|
|
301
|
+
onauxclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
302
|
+
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
|
|
303
|
+
onbeforematch: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
304
|
+
onbeforetoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
305
|
+
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
306
|
+
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
|
+
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
|
+
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
309
|
+
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
310
|
+
onclick: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
311
|
+
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
312
|
+
oncontextlost: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
313
|
+
oncontextmenu: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
314
|
+
oncontextrestored: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
315
|
+
oncopy: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
316
|
+
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
317
|
+
oncut: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
318
|
+
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
319
|
+
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
320
|
+
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
321
|
+
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
322
|
+
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
323
|
+
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
324
|
+
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
325
|
+
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null;
|
|
326
|
+
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
327
|
+
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
328
|
+
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
329
|
+
onerror: OnErrorEventHandler;
|
|
330
|
+
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null;
|
|
331
|
+
onformdata: ((this: GlobalEventHandlers, ev: FormDataEvent) => any) | null;
|
|
332
|
+
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
333
|
+
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
334
|
+
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
335
|
+
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
336
|
+
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
337
|
+
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null;
|
|
338
|
+
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
339
|
+
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
340
|
+
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
341
|
+
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
342
|
+
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
343
|
+
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
344
|
+
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
345
|
+
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
346
|
+
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
347
|
+
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
348
|
+
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
349
|
+
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
|
|
350
|
+
onpaste: ((this: GlobalEventHandlers, ev: ClipboardEvent) => any) | null;
|
|
351
|
+
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
352
|
+
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
353
|
+
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
354
|
+
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
355
|
+
onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
356
|
+
onpointerenter: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
357
|
+
onpointerleave: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
358
|
+
onpointermove: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
359
|
+
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
360
|
+
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
361
|
+
onpointerrawupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
362
|
+
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
363
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
364
|
+
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
365
|
+
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
366
|
+
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
367
|
+
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
368
|
+
onscrollend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
369
|
+
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
|
|
370
|
+
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
371
|
+
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
372
|
+
onselect: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
373
|
+
onselectionchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
374
|
+
onselectstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
375
|
+
onslotchange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
376
|
+
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
377
|
+
onsubmit: ((this: GlobalEventHandlers, ev: SubmitEvent) => any) | null;
|
|
378
|
+
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
379
|
+
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
380
|
+
ontoggle: ((this: GlobalEventHandlers, ev: ToggleEvent) => any) | null;
|
|
381
|
+
ontouchcancel?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
382
|
+
ontouchend?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
383
|
+
ontouchmove?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
384
|
+
ontouchstart?: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null | undefined;
|
|
385
|
+
ontransitioncancel: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
386
|
+
ontransitionend: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
387
|
+
ontransitionrun: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
388
|
+
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null;
|
|
389
|
+
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
390
|
+
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
391
|
+
onwebkitanimationend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
392
|
+
onwebkitanimationiteration: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
393
|
+
onwebkitanimationstart: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
394
|
+
onwebkittransitionend: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
395
|
+
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
396
|
+
autofocus: boolean;
|
|
397
|
+
readonly dataset: DOMStringMap;
|
|
398
|
+
nonce?: string;
|
|
399
|
+
tabIndex: number;
|
|
400
|
+
blur(): void;
|
|
401
|
+
focus(options?: FocusOptions): void;
|
|
402
|
+
};
|
|
403
|
+
get properties(): {
|
|
404
|
+
stateIsPending: {
|
|
405
|
+
type: BooleanConstructor;
|
|
406
|
+
};
|
|
407
|
+
pendingStateCatcherTarget: {
|
|
408
|
+
type: ObjectConstructor;
|
|
409
|
+
};
|
|
410
|
+
pendingStateCatcherLoadingStartDelay: {
|
|
411
|
+
type: NumberConstructor;
|
|
412
|
+
};
|
|
413
|
+
pendingStateCatcherMinTimeOpen: {
|
|
414
|
+
type: NumberConstructor;
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
} & C;
|
|
12
418
|
//# sourceMappingURL=pending-state-catcher.d.ts.map
|
|
@@ -3,7 +3,7 @@ export const PendingStateCatcher = (base) => class extends base {
|
|
|
3
3
|
static get properties() {
|
|
4
4
|
return {
|
|
5
5
|
stateIsPending: { type: Boolean },
|
|
6
|
-
pendingStateCatcherTarget: { type:
|
|
6
|
+
pendingStateCatcherTarget: { type: Object },
|
|
7
7
|
pendingStateCatcherLoadingStartDelay: { type: Number },
|
|
8
8
|
pendingStateCatcherMinTimeOpen: { type: Number },
|
|
9
9
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pending-state-catcher.js","sourceRoot":"","sources":["pending-state-catcher.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;
|
|
1
|
+
{"version":3,"file":"pending-state-catcher.js","sourceRoot":"","sources":["pending-state-catcher.ts"],"names":[],"mappings":"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"}
|
|
@@ -50,6 +50,8 @@ declare const TitaniumSingleSelectBase_base: import("../../leavitt/theme/theme-p
|
|
|
50
50
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
51
51
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
52
52
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
53
|
+
connectedCallback(): void;
|
|
54
|
+
disconnectedCallback(): void;
|
|
53
55
|
readonly attributes: NamedNodeMap;
|
|
54
56
|
get classList(): DOMTokenList;
|
|
55
57
|
set classList(value: string);
|
|
@@ -63,6 +63,8 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
63
63
|
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
64
64
|
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
65
65
|
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
66
|
+
connectedCallback(): void;
|
|
67
|
+
disconnectedCallback(): void;
|
|
66
68
|
readonly attributes: NamedNodeMap;
|
|
67
69
|
get classList(): DOMTokenList;
|
|
68
70
|
set classList(value: string);
|