@leavittsoftware/web 4.4.1 → 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.
@@ -34,14 +34,14 @@ declare const AddFolderModal_base: {
34
34
  hidePopover(): void;
35
35
  showPopover(): void;
36
36
  showPopover(): void;
37
- togglePopover(force?: boolean | undefined): boolean;
37
+ togglePopover(force?: boolean): boolean;
38
38
  togglePopover(force: boolean): void;
39
- addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
40
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
41
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
42
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
43
- floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation | undefined;
44
- lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation | undefined;
39
+ addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
40
+ addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
41
+ removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
42
+ removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
43
+ floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
44
+ lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
45
45
  readonly attributes: NamedNodeMap;
46
46
  readonly classList: DOMTokenList;
47
47
  className: string;
@@ -66,10 +66,10 @@ declare const AddFolderModal_base: {
66
66
  slot: string;
67
67
  readonly tagName: string;
68
68
  attachShadow(init: ShadowRootInit): ShadowRoot;
69
- checkVisibility(options?: CheckVisibilityOptions | undefined): boolean;
70
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
71
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
72
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
69
+ checkVisibility(options?: CheckVisibilityOptions): boolean;
70
+ closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
71
+ closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
72
+ closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
73
73
  closest<E extends Element = Element>(selectors: string): E | null;
74
74
  computedStyleMap(): StylePropertyMapReadOnly;
75
75
  getAttribute(qualifiedName: string): string | null;
@@ -80,10 +80,10 @@ declare const AddFolderModal_base: {
80
80
  getBoundingClientRect(): DOMRect;
81
81
  getClientRects(): DOMRectList;
82
82
  getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
83
- getElementsByTagName<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
84
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
85
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
86
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
83
+ getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
84
+ getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
85
+ getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
86
+ getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
87
87
  getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
88
88
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
89
89
  getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -101,21 +101,22 @@ declare const AddFolderModal_base: {
101
101
  removeAttribute(qualifiedName: string): void;
102
102
  removeAttributeNS(namespace: string | null, localName: string): void;
103
103
  removeAttributeNode(attr: Attr): Attr;
104
- requestFullscreen(options?: FullscreenOptions | undefined): Promise<void>;
104
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
105
105
  requestPointerLock(): void;
106
- scroll(options?: ScrollToOptions | undefined): void;
106
+ scroll(options?: ScrollToOptions): void;
107
107
  scroll(x: number, y: number): void;
108
- scrollBy(options?: ScrollToOptions | undefined): void;
108
+ scrollBy(options?: ScrollToOptions): void;
109
109
  scrollBy(x: number, y: number): void;
110
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
111
- scrollTo(options?: ScrollToOptions | undefined): void;
110
+ scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
111
+ scrollTo(options?: ScrollToOptions): void;
112
112
  scrollTo(x: number, y: number): void;
113
113
  setAttribute(qualifiedName: string, value: string): void;
114
114
  setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
115
115
  setAttributeNode(attr: Attr): Attr | null;
116
116
  setAttributeNodeNS(attr: Attr): Attr | null;
117
+ setHTMLUnsafe(html: string): void;
117
118
  setPointerCapture(pointerId: number): void;
118
- toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean;
119
+ toggleAttribute(qualifiedName: string, force?: boolean): boolean;
119
120
  webkitMatchesSelector(selectors: string): boolean;
120
121
  readonly baseURI: string;
121
122
  readonly childNodes: NodeListOf<ChildNode>;
@@ -131,20 +132,20 @@ declare const AddFolderModal_base: {
131
132
  readonly previousSibling: ChildNode | null;
132
133
  textContent: string | null;
133
134
  appendChild<T extends Node>(node: T): T;
134
- cloneNode(deep?: boolean | undefined): Node;
135
+ cloneNode(deep?: boolean): Node;
135
136
  compareDocumentPosition(other: Node): number;
136
137
  contains(other: Node | null): boolean;
137
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
138
+ getRootNode(options?: GetRootNodeOptions): Node;
138
139
  hasChildNodes(): boolean;
139
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
140
+ insertBefore<T extends Node>(node: T, child: Node | null): T;
140
141
  isDefaultNamespace(namespace: string | null): boolean;
141
142
  isEqualNode(otherNode: Node | null): boolean;
142
143
  isSameNode(otherNode: Node | null): boolean;
143
144
  lookupNamespaceURI(prefix: string | null): string | null;
144
145
  lookupPrefix(namespace: string | null): string | null;
145
146
  normalize(): void;
146
- removeChild<T_2 extends Node>(child: T_2): T_2;
147
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
147
+ removeChild<T extends Node>(child: T): T;
148
+ replaceChild<T extends Node>(node: Node, child: T): T;
148
149
  readonly ELEMENT_NODE: 1;
149
150
  readonly ATTRIBUTE_NODE: 2;
150
151
  readonly TEXT_NODE: 3;
@@ -166,6 +167,8 @@ declare const AddFolderModal_base: {
166
167
  dispatchEvent(event: Event): boolean;
167
168
  ariaAtomic: string | null;
168
169
  ariaAutoComplete: string | null;
170
+ ariaBrailleLabel: string | null;
171
+ ariaBrailleRoleDescription: string | null;
169
172
  ariaBusy: string | null;
170
173
  ariaChecked: string | null;
171
174
  ariaColCount: string | null;
@@ -203,12 +206,12 @@ declare const AddFolderModal_base: {
203
206
  ariaValueNow: string | null;
204
207
  ariaValueText: string | null;
205
208
  role: string | null;
206
- animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions | undefined): Animation;
207
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
208
- after(...nodes: (string | Node)[]): void;
209
- before(...nodes: (string | Node)[]): void;
209
+ animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
210
+ getAnimations(options?: GetAnimationsOptions): Animation[];
211
+ after(...nodes: (Node | string)[]): void;
212
+ before(...nodes: (Node | string)[]): void;
210
213
  remove(): void;
211
- replaceWith(...nodes: (string | Node)[]): void;
214
+ replaceWith(...nodes: (Node | string)[]): void;
212
215
  innerHTML: string;
213
216
  readonly nextElementSibling: Element | null;
214
217
  readonly previousElementSibling: Element | null;
@@ -216,19 +219,19 @@ declare const AddFolderModal_base: {
216
219
  readonly children: HTMLCollection;
217
220
  readonly firstElementChild: Element | null;
218
221
  readonly lastElementChild: Element | null;
219
- append(...nodes: (string | Node)[]): void;
220
- prepend(...nodes: (string | Node)[]): void;
221
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
222
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
223
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
224
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
225
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
226
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
227
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
228
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
229
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
230
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
231
- replaceChildren(...nodes: (string | Node)[]): void;
222
+ append(...nodes: (Node | string)[]): void;
223
+ prepend(...nodes: (Node | string)[]): void;
224
+ querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
225
+ querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
226
+ querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
227
+ querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
228
+ querySelector<E extends Element = Element>(selectors: string): E | null;
229
+ querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
230
+ querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
231
+ querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
232
+ querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
233
+ querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
234
+ replaceChildren(...nodes: (Node | string)[]): void;
232
235
  readonly assignedSlot: HTMLSlotElement | null;
233
236
  readonly attributeStyleMap: StylePropertyMap;
234
237
  readonly style: CSSStyleDeclaration;
@@ -299,7 +302,7 @@ declare const AddFolderModal_base: {
299
302
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
300
303
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
301
304
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
302
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) | null;
305
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
303
306
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
304
307
  onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
305
308
  onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
@@ -334,10 +337,10 @@ declare const AddFolderModal_base: {
334
337
  onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
335
338
  autofocus: boolean;
336
339
  readonly dataset: DOMStringMap;
337
- nonce?: string | undefined;
340
+ nonce?: string;
338
341
  tabIndex: number;
339
342
  blur(): void;
340
- focus(options?: FocusOptions | undefined): void;
343
+ focus(options?: FocusOptions): void;
341
344
  };
342
345
  readonly properties: {
343
346
  isLoading: {
@@ -44,14 +44,14 @@ declare const LeavittFileExplorer_base: {
44
44
  hidePopover(): void;
45
45
  showPopover(): void;
46
46
  showPopover(): void;
47
- togglePopover(force?: boolean | undefined): 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 | undefined): void;
50
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
51
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
52
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
53
- floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation | undefined;
54
- lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation | undefined;
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 | undefined): boolean;
80
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
81
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
82
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
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<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
94
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
95
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
96
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
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 | undefined): Promise<void>;
114
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
115
115
  requestPointerLock(): void;
116
- scroll(options?: ScrollToOptions | undefined): void;
116
+ scroll(options?: ScrollToOptions): void;
117
117
  scroll(x: number, y: number): void;
118
- scrollBy(options?: ScrollToOptions | undefined): void;
118
+ scrollBy(options?: ScrollToOptions): void;
119
119
  scrollBy(x: number, y: number): void;
120
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
121
- scrollTo(options?: ScrollToOptions | undefined): void;
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 | undefined): 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 | undefined): Node;
145
+ cloneNode(deep?: boolean): Node;
145
146
  compareDocumentPosition(other: Node): number;
146
147
  contains(other: Node | null): boolean;
147
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
148
+ getRootNode(options?: GetRootNodeOptions): Node;
148
149
  hasChildNodes(): boolean;
149
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
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<T_2 extends Node>(child: T_2): T_2;
157
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
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 | undefined): Animation;
217
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
218
- after(...nodes: (string | Node)[]): void;
219
- before(...nodes: (string | Node)[]): void;
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: (string | Node)[]): void;
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: (string | Node)[]): void;
230
- prepend(...nodes: (string | Node)[]): void;
231
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
232
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
233
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
234
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
235
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
236
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
237
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
238
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
239
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
240
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
241
- replaceChildren(...nodes: (string | Node)[]): void;
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<EventTarget>) => any) | null;
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 | undefined;
350
+ nonce?: string;
348
351
  tabIndex: number;
349
352
  blur(): void;
350
- focus(options?: FocusOptions | undefined): void;
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 | undefined): 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 | undefined): void;
43
- addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
44
- removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
45
- removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void;
46
- floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation | undefined;
47
- lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation | undefined;
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 | undefined): boolean;
73
- closest<K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2] | null;
74
- closest<K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3] | null;
75
- closest<K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4] | null;
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<K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
87
- getElementsByTagName<K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
88
- getElementsByTagName<K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
89
- getElementsByTagName<K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
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 | undefined): Promise<void>;
107
+ requestFullscreen(options?: FullscreenOptions): Promise<void>;
108
108
  requestPointerLock(): void;
109
- scroll(options?: ScrollToOptions | undefined): void;
109
+ scroll(options?: ScrollToOptions): void;
110
110
  scroll(x: number, y: number): void;
111
- scrollBy(options?: ScrollToOptions | undefined): void;
111
+ scrollBy(options?: ScrollToOptions): void;
112
112
  scrollBy(x: number, y: number): void;
113
- scrollIntoView(arg?: boolean | ScrollIntoViewOptions | undefined): void;
114
- scrollTo(options?: ScrollToOptions | undefined): void;
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 | undefined): 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 | undefined): Node;
138
+ cloneNode(deep?: boolean): Node;
138
139
  compareDocumentPosition(other: Node): number;
139
140
  contains(other: Node | null): boolean;
140
- getRootNode(options?: GetRootNodeOptions | undefined): Node;
141
+ getRootNode(options?: GetRootNodeOptions): Node;
141
142
  hasChildNodes(): boolean;
142
- insertBefore<T_1 extends Node>(node: T_1, child: Node | null): T_1;
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<T_2 extends Node>(child: T_2): T_2;
150
- replaceChild<T_3 extends Node>(node: Node, child: T_3): T_3;
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 | undefined): Animation;
210
- getAnimations(options?: GetAnimationsOptions | undefined): Animation[];
211
- after(...nodes: (string | Node)[]): void;
212
- before(...nodes: (string | Node)[]): void;
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: (string | Node)[]): void;
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: (string | Node)[]): void;
223
- prepend(...nodes: (string | Node)[]): void;
224
- querySelector<K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9] | null;
225
- querySelector<K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10] | null;
226
- querySelector<K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11] | null;
227
- querySelector<K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12] | null;
228
- querySelector<E_1 extends Element = Element>(selectors: string): E_1 | null;
229
- querySelectorAll<K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
230
- querySelectorAll<K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
231
- querySelectorAll<K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
232
- querySelectorAll<K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
233
- querySelectorAll<E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
234
- replaceChildren(...nodes: (string | Node)[]): void;
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<EventTarget>) => any) | null;
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 | undefined;
343
+ nonce?: string;
341
344
  tabIndex: number;
342
345
  blur(): void;
343
- focus(options?: FocusOptions | undefined): void;
346
+ focus(options?: FocusOptions): void;
344
347
  };
345
348
  readonly properties: {
346
349
  isLoading: {