@leavittsoftware/web 4.5.0 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/leavitt/api-service/api2-service.d.ts +50 -47
  2. package/leavitt/api-service/mapi-service.d.ts +50 -47
  3. package/leavitt/file-explorer/add-folder-modal.d.ts +50 -47
  4. package/leavitt/file-explorer/file-explorer.d.ts +50 -47
  5. package/leavitt/file-explorer/file-modal.d.ts +50 -47
  6. package/leavitt/file-explorer/folder-modal.d.ts +50 -47
  7. package/leavitt/user-feedback/provide-feedback-dialog.d.ts +50 -47
  8. package/leavitt/user-feedback/report-a-problem-dialog.d.ts +50 -47
  9. package/leavitt/user-feedback/user-feedback.d.ts +50 -47
  10. package/package.json +2 -2
  11. package/titanium/address-input/address-input.js +6 -1
  12. package/titanium/address-input/address-input.js.map +1 -1
  13. package/titanium/address-input/google-address-input.d.ts +1 -0
  14. package/titanium/address-input/google-address-input.js +7 -1
  15. package/titanium/address-input/google-address-input.js.map +1 -1
  16. package/titanium/address-input/manual-address-dialog.d.ts +2 -0
  17. package/titanium/address-input/manual-address-dialog.js +58 -64
  18. package/titanium/address-input/manual-address-dialog.js.map +1 -1
  19. package/titanium/address-input/utils/address-to-string.js +1 -1
  20. package/titanium/address-input/utils/address-to-string.js.map +1 -1
  21. package/titanium/address-input/utils/country-abbr-to-titlecase.d.ts +5 -0
  22. package/titanium/address-input/utils/country-abbr-to-titlecase.js +5 -0
  23. package/titanium/address-input/utils/country-abbr-to-titlecase.js.map +1 -0
  24. package/titanium/address-input/utils/place-result-to-address.d.ts +0 -1
  25. package/titanium/address-input/utils/states-abbr-to-titlecase.d.ts +9 -0
  26. package/titanium/address-input/utils/states-abbr-to-titlecase.js +117 -0
  27. package/titanium/address-input/utils/states-abbr-to-titlecase.js.map +1 -0
  28. package/titanium/date-range-selector/date-range-selector.d.ts +1 -1
  29. package/titanium/date-range-selector/date-range-selector.js +16 -29
  30. package/titanium/date-range-selector/date-range-selector.js.map +1 -1
  31. package/titanium/date-range-selector/types/range-label.js +1 -1
  32. package/titanium/date-range-selector/types/range-label.js.map +1 -1
  33. package/titanium/helpers/load-while.d.ts +50 -47
  34. package/titanium/single-select-base/single-select-base.d.ts +50 -47
  35. 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 | 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: {
@@ -37,14 +37,14 @@ declare const FolderModal_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 FolderModal_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 FolderModal_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 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 | 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 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 | 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 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 | 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 FolderModal_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 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<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 FolderModal_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: {