@leavittsoftware/web 4.5.0 → 4.5.1
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 +50 -47
- package/leavitt/api-service/mapi-service.d.ts +50 -47
- package/leavitt/file-explorer/add-folder-modal.d.ts +50 -47
- package/leavitt/file-explorer/file-explorer.d.ts +50 -47
- package/leavitt/file-explorer/file-modal.d.ts +50 -47
- package/leavitt/file-explorer/folder-modal.d.ts +50 -47
- package/leavitt/user-feedback/provide-feedback-dialog.d.ts +50 -47
- package/leavitt/user-feedback/report-a-problem-dialog.d.ts +50 -47
- package/leavitt/user-feedback/user-feedback.d.ts +50 -47
- package/package.json +2 -2
- package/titanium/address-input/utils/place-result-to-address.d.ts +0 -1
- package/titanium/date-range-selector/date-range-selector.d.ts +1 -1
- package/titanium/date-range-selector/date-range-selector.js +16 -29
- package/titanium/date-range-selector/date-range-selector.js.map +1 -1
- package/titanium/date-range-selector/types/range-label.js +1 -1
- package/titanium/date-range-selector/types/range-label.js.map +1 -1
- package/titanium/helpers/load-while.d.ts +50 -47
- package/titanium/single-select-base/single-select-base.d.ts +50 -47
- package/titanium/smart-attachment-input/crop-and-save-image-dialog.d.ts +50 -47
|
@@ -44,14 +44,14 @@ declare const LeavittFileExplorer_base: {
|
|
|
44
44
|
hidePopover(): void;
|
|
45
45
|
showPopover(): void;
|
|
46
46
|
showPopover(): void;
|
|
47
|
-
togglePopover(force?: boolean
|
|
47
|
+
togglePopover(force?: boolean): boolean;
|
|
48
48
|
togglePopover(force: boolean): void;
|
|
49
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions
|
|
50
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
|
|
51
|
-
removeEventListener<
|
|
52
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions
|
|
53
|
-
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation
|
|
54
|
-
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation
|
|
49
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
50
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
51
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
52
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
53
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
54
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
55
55
|
readonly attributes: NamedNodeMap;
|
|
56
56
|
readonly classList: DOMTokenList;
|
|
57
57
|
className: string;
|
|
@@ -76,10 +76,10 @@ declare const LeavittFileExplorer_base: {
|
|
|
76
76
|
slot: string;
|
|
77
77
|
readonly tagName: string;
|
|
78
78
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
79
|
-
checkVisibility(options?: CheckVisibilityOptions
|
|
80
|
-
closest<
|
|
81
|
-
closest<
|
|
82
|
-
closest<
|
|
79
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
80
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
81
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
82
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
83
83
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
84
84
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
85
85
|
getAttribute(qualifiedName: string): string | null;
|
|
@@ -90,10 +90,10 @@ declare const LeavittFileExplorer_base: {
|
|
|
90
90
|
getBoundingClientRect(): DOMRect;
|
|
91
91
|
getClientRects(): DOMRectList;
|
|
92
92
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
93
|
-
getElementsByTagName<
|
|
94
|
-
getElementsByTagName<
|
|
95
|
-
getElementsByTagName<
|
|
96
|
-
getElementsByTagName<
|
|
93
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
94
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
95
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
96
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
97
97
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
98
98
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
99
99
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -111,21 +111,22 @@ declare const LeavittFileExplorer_base: {
|
|
|
111
111
|
removeAttribute(qualifiedName: string): void;
|
|
112
112
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
113
113
|
removeAttributeNode(attr: Attr): Attr;
|
|
114
|
-
requestFullscreen(options?: FullscreenOptions
|
|
114
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
115
115
|
requestPointerLock(): void;
|
|
116
|
-
scroll(options?: ScrollToOptions
|
|
116
|
+
scroll(options?: ScrollToOptions): void;
|
|
117
117
|
scroll(x: number, y: number): void;
|
|
118
|
-
scrollBy(options?: ScrollToOptions
|
|
118
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
119
119
|
scrollBy(x: number, y: number): void;
|
|
120
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions
|
|
121
|
-
scrollTo(options?: ScrollToOptions
|
|
120
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
121
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
122
122
|
scrollTo(x: number, y: number): void;
|
|
123
123
|
setAttribute(qualifiedName: string, value: string): void;
|
|
124
124
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
125
125
|
setAttributeNode(attr: Attr): Attr | null;
|
|
126
126
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
127
|
+
setHTMLUnsafe(html: string): void;
|
|
127
128
|
setPointerCapture(pointerId: number): void;
|
|
128
|
-
toggleAttribute(qualifiedName: string, force?: boolean
|
|
129
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
129
130
|
webkitMatchesSelector(selectors: string): boolean;
|
|
130
131
|
readonly baseURI: string;
|
|
131
132
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -141,20 +142,20 @@ declare const LeavittFileExplorer_base: {
|
|
|
141
142
|
readonly previousSibling: ChildNode | null;
|
|
142
143
|
textContent: string | null;
|
|
143
144
|
appendChild<T extends Node>(node: T): T;
|
|
144
|
-
cloneNode(deep?: boolean
|
|
145
|
+
cloneNode(deep?: boolean): Node;
|
|
145
146
|
compareDocumentPosition(other: Node): number;
|
|
146
147
|
contains(other: Node | null): boolean;
|
|
147
|
-
getRootNode(options?: GetRootNodeOptions
|
|
148
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
148
149
|
hasChildNodes(): boolean;
|
|
149
|
-
insertBefore<
|
|
150
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
150
151
|
isDefaultNamespace(namespace: string | null): boolean;
|
|
151
152
|
isEqualNode(otherNode: Node | null): boolean;
|
|
152
153
|
isSameNode(otherNode: Node | null): boolean;
|
|
153
154
|
lookupNamespaceURI(prefix: string | null): string | null;
|
|
154
155
|
lookupPrefix(namespace: string | null): string | null;
|
|
155
156
|
normalize(): void;
|
|
156
|
-
removeChild<
|
|
157
|
-
replaceChild<
|
|
157
|
+
removeChild<T extends Node>(child: T): T;
|
|
158
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
158
159
|
readonly ELEMENT_NODE: 1;
|
|
159
160
|
readonly ATTRIBUTE_NODE: 2;
|
|
160
161
|
readonly TEXT_NODE: 3;
|
|
@@ -176,6 +177,8 @@ declare const LeavittFileExplorer_base: {
|
|
|
176
177
|
dispatchEvent(event: Event): boolean;
|
|
177
178
|
ariaAtomic: string | null;
|
|
178
179
|
ariaAutoComplete: string | null;
|
|
180
|
+
ariaBrailleLabel: string | null;
|
|
181
|
+
ariaBrailleRoleDescription: string | null;
|
|
179
182
|
ariaBusy: string | null;
|
|
180
183
|
ariaChecked: string | null;
|
|
181
184
|
ariaColCount: string | null;
|
|
@@ -213,12 +216,12 @@ declare const LeavittFileExplorer_base: {
|
|
|
213
216
|
ariaValueNow: string | null;
|
|
214
217
|
ariaValueText: string | null;
|
|
215
218
|
role: string | null;
|
|
216
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions
|
|
217
|
-
getAnimations(options?: GetAnimationsOptions
|
|
218
|
-
after(...nodes: (
|
|
219
|
-
before(...nodes: (
|
|
219
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
220
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
221
|
+
after(...nodes: (Node | string)[]): void;
|
|
222
|
+
before(...nodes: (Node | string)[]): void;
|
|
220
223
|
remove(): void;
|
|
221
|
-
replaceWith(...nodes: (
|
|
224
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
222
225
|
innerHTML: string;
|
|
223
226
|
readonly nextElementSibling: Element | null;
|
|
224
227
|
readonly previousElementSibling: Element | null;
|
|
@@ -226,19 +229,19 @@ declare const LeavittFileExplorer_base: {
|
|
|
226
229
|
readonly children: HTMLCollection;
|
|
227
230
|
readonly firstElementChild: Element | null;
|
|
228
231
|
readonly lastElementChild: Element | null;
|
|
229
|
-
append(...nodes: (
|
|
230
|
-
prepend(...nodes: (
|
|
231
|
-
querySelector<
|
|
232
|
-
querySelector<
|
|
233
|
-
querySelector<
|
|
234
|
-
querySelector<
|
|
235
|
-
querySelector<
|
|
236
|
-
querySelectorAll<
|
|
237
|
-
querySelectorAll<
|
|
238
|
-
querySelectorAll<
|
|
239
|
-
querySelectorAll<
|
|
240
|
-
querySelectorAll<
|
|
241
|
-
replaceChildren(...nodes: (
|
|
232
|
+
append(...nodes: (Node | string)[]): void;
|
|
233
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
234
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
235
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
236
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
237
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
238
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
239
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
240
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
241
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
242
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
243
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
244
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
242
245
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
243
246
|
readonly attributeStyleMap: StylePropertyMap;
|
|
244
247
|
readonly style: CSSStyleDeclaration;
|
|
@@ -309,7 +312,7 @@ declare const LeavittFileExplorer_base: {
|
|
|
309
312
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
310
313
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
311
314
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
312
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent
|
|
315
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
313
316
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
314
317
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
315
318
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
@@ -344,10 +347,10 @@ declare const LeavittFileExplorer_base: {
|
|
|
344
347
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
345
348
|
autofocus: boolean;
|
|
346
349
|
readonly dataset: DOMStringMap;
|
|
347
|
-
nonce?: string
|
|
350
|
+
nonce?: string;
|
|
348
351
|
tabIndex: number;
|
|
349
352
|
blur(): void;
|
|
350
|
-
focus(options?: FocusOptions
|
|
353
|
+
focus(options?: FocusOptions): void;
|
|
351
354
|
};
|
|
352
355
|
readonly properties: {
|
|
353
356
|
isLoading: {
|
|
@@ -37,14 +37,14 @@ declare const FileModal_base: {
|
|
|
37
37
|
hidePopover(): void;
|
|
38
38
|
showPopover(): void;
|
|
39
39
|
showPopover(): void;
|
|
40
|
-
togglePopover(force?: boolean
|
|
40
|
+
togglePopover(force?: boolean): boolean;
|
|
41
41
|
togglePopover(force: boolean): void;
|
|
42
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions
|
|
43
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
|
|
44
|
-
removeEventListener<
|
|
45
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions
|
|
46
|
-
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation
|
|
47
|
-
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation
|
|
42
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
43
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
44
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
45
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
46
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
47
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
48
48
|
readonly attributes: NamedNodeMap;
|
|
49
49
|
readonly classList: DOMTokenList;
|
|
50
50
|
className: string;
|
|
@@ -69,10 +69,10 @@ declare const FileModal_base: {
|
|
|
69
69
|
slot: string;
|
|
70
70
|
readonly tagName: string;
|
|
71
71
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
72
|
-
checkVisibility(options?: CheckVisibilityOptions
|
|
73
|
-
closest<
|
|
74
|
-
closest<
|
|
75
|
-
closest<
|
|
72
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
73
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
74
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
75
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
76
76
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
77
77
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
78
78
|
getAttribute(qualifiedName: string): string | null;
|
|
@@ -83,10 +83,10 @@ declare const FileModal_base: {
|
|
|
83
83
|
getBoundingClientRect(): DOMRect;
|
|
84
84
|
getClientRects(): DOMRectList;
|
|
85
85
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
86
|
-
getElementsByTagName<
|
|
87
|
-
getElementsByTagName<
|
|
88
|
-
getElementsByTagName<
|
|
89
|
-
getElementsByTagName<
|
|
86
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
87
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
88
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
89
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
90
90
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
91
91
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
92
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -104,21 +104,22 @@ declare const FileModal_base: {
|
|
|
104
104
|
removeAttribute(qualifiedName: string): void;
|
|
105
105
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
106
106
|
removeAttributeNode(attr: Attr): Attr;
|
|
107
|
-
requestFullscreen(options?: FullscreenOptions
|
|
107
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
108
108
|
requestPointerLock(): void;
|
|
109
|
-
scroll(options?: ScrollToOptions
|
|
109
|
+
scroll(options?: ScrollToOptions): void;
|
|
110
110
|
scroll(x: number, y: number): void;
|
|
111
|
-
scrollBy(options?: ScrollToOptions
|
|
111
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
112
112
|
scrollBy(x: number, y: number): void;
|
|
113
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions
|
|
114
|
-
scrollTo(options?: ScrollToOptions
|
|
113
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
114
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
115
115
|
scrollTo(x: number, y: number): void;
|
|
116
116
|
setAttribute(qualifiedName: string, value: string): void;
|
|
117
117
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
118
118
|
setAttributeNode(attr: Attr): Attr | null;
|
|
119
119
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
120
|
+
setHTMLUnsafe(html: string): void;
|
|
120
121
|
setPointerCapture(pointerId: number): void;
|
|
121
|
-
toggleAttribute(qualifiedName: string, force?: boolean
|
|
122
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
122
123
|
webkitMatchesSelector(selectors: string): boolean;
|
|
123
124
|
readonly baseURI: string;
|
|
124
125
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -134,20 +135,20 @@ declare const FileModal_base: {
|
|
|
134
135
|
readonly previousSibling: ChildNode | null;
|
|
135
136
|
textContent: string | null;
|
|
136
137
|
appendChild<T extends Node>(node: T): T;
|
|
137
|
-
cloneNode(deep?: boolean
|
|
138
|
+
cloneNode(deep?: boolean): Node;
|
|
138
139
|
compareDocumentPosition(other: Node): number;
|
|
139
140
|
contains(other: Node | null): boolean;
|
|
140
|
-
getRootNode(options?: GetRootNodeOptions
|
|
141
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
141
142
|
hasChildNodes(): boolean;
|
|
142
|
-
insertBefore<
|
|
143
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
143
144
|
isDefaultNamespace(namespace: string | null): boolean;
|
|
144
145
|
isEqualNode(otherNode: Node | null): boolean;
|
|
145
146
|
isSameNode(otherNode: Node | null): boolean;
|
|
146
147
|
lookupNamespaceURI(prefix: string | null): string | null;
|
|
147
148
|
lookupPrefix(namespace: string | null): string | null;
|
|
148
149
|
normalize(): void;
|
|
149
|
-
removeChild<
|
|
150
|
-
replaceChild<
|
|
150
|
+
removeChild<T extends Node>(child: T): T;
|
|
151
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
151
152
|
readonly ELEMENT_NODE: 1;
|
|
152
153
|
readonly ATTRIBUTE_NODE: 2;
|
|
153
154
|
readonly TEXT_NODE: 3;
|
|
@@ -169,6 +170,8 @@ declare const FileModal_base: {
|
|
|
169
170
|
dispatchEvent(event: Event): boolean;
|
|
170
171
|
ariaAtomic: string | null;
|
|
171
172
|
ariaAutoComplete: string | null;
|
|
173
|
+
ariaBrailleLabel: string | null;
|
|
174
|
+
ariaBrailleRoleDescription: string | null;
|
|
172
175
|
ariaBusy: string | null;
|
|
173
176
|
ariaChecked: string | null;
|
|
174
177
|
ariaColCount: string | null;
|
|
@@ -206,12 +209,12 @@ declare const FileModal_base: {
|
|
|
206
209
|
ariaValueNow: string | null;
|
|
207
210
|
ariaValueText: string | null;
|
|
208
211
|
role: string | null;
|
|
209
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions
|
|
210
|
-
getAnimations(options?: GetAnimationsOptions
|
|
211
|
-
after(...nodes: (
|
|
212
|
-
before(...nodes: (
|
|
212
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
213
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
214
|
+
after(...nodes: (Node | string)[]): void;
|
|
215
|
+
before(...nodes: (Node | string)[]): void;
|
|
213
216
|
remove(): void;
|
|
214
|
-
replaceWith(...nodes: (
|
|
217
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
215
218
|
innerHTML: string;
|
|
216
219
|
readonly nextElementSibling: Element | null;
|
|
217
220
|
readonly previousElementSibling: Element | null;
|
|
@@ -219,19 +222,19 @@ declare const FileModal_base: {
|
|
|
219
222
|
readonly children: HTMLCollection;
|
|
220
223
|
readonly firstElementChild: Element | null;
|
|
221
224
|
readonly lastElementChild: Element | null;
|
|
222
|
-
append(...nodes: (
|
|
223
|
-
prepend(...nodes: (
|
|
224
|
-
querySelector<
|
|
225
|
-
querySelector<
|
|
226
|
-
querySelector<
|
|
227
|
-
querySelector<
|
|
228
|
-
querySelector<
|
|
229
|
-
querySelectorAll<
|
|
230
|
-
querySelectorAll<
|
|
231
|
-
querySelectorAll<
|
|
232
|
-
querySelectorAll<
|
|
233
|
-
querySelectorAll<
|
|
234
|
-
replaceChildren(...nodes: (
|
|
225
|
+
append(...nodes: (Node | string)[]): void;
|
|
226
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
227
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
228
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
229
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
230
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
231
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
232
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
233
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
234
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
235
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
236
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
237
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
235
238
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
236
239
|
readonly attributeStyleMap: StylePropertyMap;
|
|
237
240
|
readonly style: CSSStyleDeclaration;
|
|
@@ -302,7 +305,7 @@ declare const FileModal_base: {
|
|
|
302
305
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
303
306
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
304
307
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
305
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent
|
|
308
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
306
309
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
310
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
311
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
@@ -337,10 +340,10 @@ declare const FileModal_base: {
|
|
|
337
340
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
338
341
|
autofocus: boolean;
|
|
339
342
|
readonly dataset: DOMStringMap;
|
|
340
|
-
nonce?: string
|
|
343
|
+
nonce?: string;
|
|
341
344
|
tabIndex: number;
|
|
342
345
|
blur(): void;
|
|
343
|
-
focus(options?: FocusOptions
|
|
346
|
+
focus(options?: FocusOptions): void;
|
|
344
347
|
};
|
|
345
348
|
readonly properties: {
|
|
346
349
|
isLoading: {
|
|
@@ -37,14 +37,14 @@ declare const FolderModal_base: {
|
|
|
37
37
|
hidePopover(): void;
|
|
38
38
|
showPopover(): void;
|
|
39
39
|
showPopover(): void;
|
|
40
|
-
togglePopover(force?: boolean
|
|
40
|
+
togglePopover(force?: boolean): boolean;
|
|
41
41
|
togglePopover(force: boolean): void;
|
|
42
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions
|
|
43
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
|
|
44
|
-
removeEventListener<
|
|
45
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions
|
|
46
|
-
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation
|
|
47
|
-
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation
|
|
42
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
43
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
44
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
45
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
46
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
47
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
48
48
|
readonly attributes: NamedNodeMap;
|
|
49
49
|
readonly classList: DOMTokenList;
|
|
50
50
|
className: string;
|
|
@@ -69,10 +69,10 @@ declare const FolderModal_base: {
|
|
|
69
69
|
slot: string;
|
|
70
70
|
readonly tagName: string;
|
|
71
71
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
72
|
-
checkVisibility(options?: CheckVisibilityOptions
|
|
73
|
-
closest<
|
|
74
|
-
closest<
|
|
75
|
-
closest<
|
|
72
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
73
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
74
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
75
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
76
76
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
77
77
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
78
78
|
getAttribute(qualifiedName: string): string | null;
|
|
@@ -83,10 +83,10 @@ declare const FolderModal_base: {
|
|
|
83
83
|
getBoundingClientRect(): DOMRect;
|
|
84
84
|
getClientRects(): DOMRectList;
|
|
85
85
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
86
|
-
getElementsByTagName<
|
|
87
|
-
getElementsByTagName<
|
|
88
|
-
getElementsByTagName<
|
|
89
|
-
getElementsByTagName<
|
|
86
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
87
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
88
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
89
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
90
90
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
91
91
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
92
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -104,21 +104,22 @@ declare const FolderModal_base: {
|
|
|
104
104
|
removeAttribute(qualifiedName: string): void;
|
|
105
105
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
106
106
|
removeAttributeNode(attr: Attr): Attr;
|
|
107
|
-
requestFullscreen(options?: FullscreenOptions
|
|
107
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
108
108
|
requestPointerLock(): void;
|
|
109
|
-
scroll(options?: ScrollToOptions
|
|
109
|
+
scroll(options?: ScrollToOptions): void;
|
|
110
110
|
scroll(x: number, y: number): void;
|
|
111
|
-
scrollBy(options?: ScrollToOptions
|
|
111
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
112
112
|
scrollBy(x: number, y: number): void;
|
|
113
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions
|
|
114
|
-
scrollTo(options?: ScrollToOptions
|
|
113
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
114
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
115
115
|
scrollTo(x: number, y: number): void;
|
|
116
116
|
setAttribute(qualifiedName: string, value: string): void;
|
|
117
117
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
118
118
|
setAttributeNode(attr: Attr): Attr | null;
|
|
119
119
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
120
|
+
setHTMLUnsafe(html: string): void;
|
|
120
121
|
setPointerCapture(pointerId: number): void;
|
|
121
|
-
toggleAttribute(qualifiedName: string, force?: boolean
|
|
122
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
122
123
|
webkitMatchesSelector(selectors: string): boolean;
|
|
123
124
|
readonly baseURI: string;
|
|
124
125
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -134,20 +135,20 @@ declare const FolderModal_base: {
|
|
|
134
135
|
readonly previousSibling: ChildNode | null;
|
|
135
136
|
textContent: string | null;
|
|
136
137
|
appendChild<T extends Node>(node: T): T;
|
|
137
|
-
cloneNode(deep?: boolean
|
|
138
|
+
cloneNode(deep?: boolean): Node;
|
|
138
139
|
compareDocumentPosition(other: Node): number;
|
|
139
140
|
contains(other: Node | null): boolean;
|
|
140
|
-
getRootNode(options?: GetRootNodeOptions
|
|
141
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
141
142
|
hasChildNodes(): boolean;
|
|
142
|
-
insertBefore<
|
|
143
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
143
144
|
isDefaultNamespace(namespace: string | null): boolean;
|
|
144
145
|
isEqualNode(otherNode: Node | null): boolean;
|
|
145
146
|
isSameNode(otherNode: Node | null): boolean;
|
|
146
147
|
lookupNamespaceURI(prefix: string | null): string | null;
|
|
147
148
|
lookupPrefix(namespace: string | null): string | null;
|
|
148
149
|
normalize(): void;
|
|
149
|
-
removeChild<
|
|
150
|
-
replaceChild<
|
|
150
|
+
removeChild<T extends Node>(child: T): T;
|
|
151
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
151
152
|
readonly ELEMENT_NODE: 1;
|
|
152
153
|
readonly ATTRIBUTE_NODE: 2;
|
|
153
154
|
readonly TEXT_NODE: 3;
|
|
@@ -169,6 +170,8 @@ declare const FolderModal_base: {
|
|
|
169
170
|
dispatchEvent(event: Event): boolean;
|
|
170
171
|
ariaAtomic: string | null;
|
|
171
172
|
ariaAutoComplete: string | null;
|
|
173
|
+
ariaBrailleLabel: string | null;
|
|
174
|
+
ariaBrailleRoleDescription: string | null;
|
|
172
175
|
ariaBusy: string | null;
|
|
173
176
|
ariaChecked: string | null;
|
|
174
177
|
ariaColCount: string | null;
|
|
@@ -206,12 +209,12 @@ declare const FolderModal_base: {
|
|
|
206
209
|
ariaValueNow: string | null;
|
|
207
210
|
ariaValueText: string | null;
|
|
208
211
|
role: string | null;
|
|
209
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions
|
|
210
|
-
getAnimations(options?: GetAnimationsOptions
|
|
211
|
-
after(...nodes: (
|
|
212
|
-
before(...nodes: (
|
|
212
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
213
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
214
|
+
after(...nodes: (Node | string)[]): void;
|
|
215
|
+
before(...nodes: (Node | string)[]): void;
|
|
213
216
|
remove(): void;
|
|
214
|
-
replaceWith(...nodes: (
|
|
217
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
215
218
|
innerHTML: string;
|
|
216
219
|
readonly nextElementSibling: Element | null;
|
|
217
220
|
readonly previousElementSibling: Element | null;
|
|
@@ -219,19 +222,19 @@ declare const FolderModal_base: {
|
|
|
219
222
|
readonly children: HTMLCollection;
|
|
220
223
|
readonly firstElementChild: Element | null;
|
|
221
224
|
readonly lastElementChild: Element | null;
|
|
222
|
-
append(...nodes: (
|
|
223
|
-
prepend(...nodes: (
|
|
224
|
-
querySelector<
|
|
225
|
-
querySelector<
|
|
226
|
-
querySelector<
|
|
227
|
-
querySelector<
|
|
228
|
-
querySelector<
|
|
229
|
-
querySelectorAll<
|
|
230
|
-
querySelectorAll<
|
|
231
|
-
querySelectorAll<
|
|
232
|
-
querySelectorAll<
|
|
233
|
-
querySelectorAll<
|
|
234
|
-
replaceChildren(...nodes: (
|
|
225
|
+
append(...nodes: (Node | string)[]): void;
|
|
226
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
227
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
228
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
229
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
230
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
231
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
232
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
233
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
234
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
235
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
236
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
237
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
235
238
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
236
239
|
readonly attributeStyleMap: StylePropertyMap;
|
|
237
240
|
readonly style: CSSStyleDeclaration;
|
|
@@ -302,7 +305,7 @@ declare const FolderModal_base: {
|
|
|
302
305
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
303
306
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
304
307
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
305
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent
|
|
308
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
306
309
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
307
310
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
311
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
@@ -337,10 +340,10 @@ declare const FolderModal_base: {
|
|
|
337
340
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
338
341
|
autofocus: boolean;
|
|
339
342
|
readonly dataset: DOMStringMap;
|
|
340
|
-
nonce?: string
|
|
343
|
+
nonce?: string;
|
|
341
344
|
tabIndex: number;
|
|
342
345
|
blur(): void;
|
|
343
|
-
focus(options?: FocusOptions
|
|
346
|
+
focus(options?: FocusOptions): void;
|
|
344
347
|
};
|
|
345
348
|
readonly properties: {
|
|
346
349
|
isLoading: {
|