@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.
- 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/address-input.js +6 -1
- package/titanium/address-input/address-input.js.map +1 -1
- package/titanium/address-input/google-address-input.d.ts +1 -0
- package/titanium/address-input/google-address-input.js +7 -1
- package/titanium/address-input/google-address-input.js.map +1 -1
- package/titanium/address-input/manual-address-dialog.d.ts +2 -0
- package/titanium/address-input/manual-address-dialog.js +58 -64
- package/titanium/address-input/manual-address-dialog.js.map +1 -1
- package/titanium/address-input/utils/address-to-string.js +1 -1
- package/titanium/address-input/utils/address-to-string.js.map +1 -1
- package/titanium/address-input/utils/country-abbr-to-titlecase.d.ts +5 -0
- package/titanium/address-input/utils/country-abbr-to-titlecase.js +5 -0
- package/titanium/address-input/utils/country-abbr-to-titlecase.js.map +1 -0
- package/titanium/address-input/utils/place-result-to-address.d.ts +0 -1
- package/titanium/address-input/utils/states-abbr-to-titlecase.d.ts +9 -0
- package/titanium/address-input/utils/states-abbr-to-titlecase.js +117 -0
- package/titanium/address-input/utils/states-abbr-to-titlecase.js.map +1 -0
- 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
|
@@ -38,14 +38,14 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
38
38
|
hidePopover(): void;
|
|
39
39
|
showPopover(): void;
|
|
40
40
|
showPopover(): void;
|
|
41
|
-
togglePopover(force?: boolean
|
|
41
|
+
togglePopover(force?: boolean): boolean;
|
|
42
42
|
togglePopover(force: boolean): void;
|
|
43
|
-
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions
|
|
44
|
-
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
|
|
45
|
-
removeEventListener<
|
|
46
|
-
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions
|
|
47
|
-
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation
|
|
48
|
-
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation
|
|
43
|
+
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
|
|
44
|
+
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions): void;
|
|
45
|
+
removeEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
|
|
46
|
+
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
|
|
47
|
+
floatingLabelFoundation?: import("@material/floating-label/foundation").MDCFloatingLabelFoundation;
|
|
48
|
+
lineRippleFoundation?: import("@material/line-ripple/foundation").MDCLineRippleFoundation;
|
|
49
49
|
readonly attributes: NamedNodeMap;
|
|
50
50
|
readonly classList: DOMTokenList;
|
|
51
51
|
className: string;
|
|
@@ -70,10 +70,10 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
70
70
|
slot: string;
|
|
71
71
|
readonly tagName: string;
|
|
72
72
|
attachShadow(init: ShadowRootInit): ShadowRoot;
|
|
73
|
-
checkVisibility(options?: CheckVisibilityOptions
|
|
74
|
-
closest<
|
|
75
|
-
closest<
|
|
76
|
-
closest<
|
|
73
|
+
checkVisibility(options?: CheckVisibilityOptions): boolean;
|
|
74
|
+
closest<K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K] | null;
|
|
75
|
+
closest<K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K] | null;
|
|
76
|
+
closest<K extends keyof MathMLElementTagNameMap>(selector: K): MathMLElementTagNameMap[K] | null;
|
|
77
77
|
closest<E extends Element = Element>(selectors: string): E | null;
|
|
78
78
|
computedStyleMap(): StylePropertyMapReadOnly;
|
|
79
79
|
getAttribute(qualifiedName: string): string | null;
|
|
@@ -84,10 +84,10 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
84
84
|
getBoundingClientRect(): DOMRect;
|
|
85
85
|
getClientRects(): DOMRectList;
|
|
86
86
|
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>;
|
|
87
|
-
getElementsByTagName<
|
|
88
|
-
getElementsByTagName<
|
|
89
|
-
getElementsByTagName<
|
|
90
|
-
getElementsByTagName<
|
|
87
|
+
getElementsByTagName<K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
|
|
88
|
+
getElementsByTagName<K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
|
|
89
|
+
getElementsByTagName<K extends keyof MathMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<MathMLElementTagNameMap[K]>;
|
|
90
|
+
getElementsByTagName<K extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
91
91
|
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>;
|
|
92
92
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
|
|
93
93
|
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
|
|
@@ -105,21 +105,22 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
105
105
|
removeAttribute(qualifiedName: string): void;
|
|
106
106
|
removeAttributeNS(namespace: string | null, localName: string): void;
|
|
107
107
|
removeAttributeNode(attr: Attr): Attr;
|
|
108
|
-
requestFullscreen(options?: FullscreenOptions
|
|
108
|
+
requestFullscreen(options?: FullscreenOptions): Promise<void>;
|
|
109
109
|
requestPointerLock(): void;
|
|
110
|
-
scroll(options?: ScrollToOptions
|
|
110
|
+
scroll(options?: ScrollToOptions): void;
|
|
111
111
|
scroll(x: number, y: number): void;
|
|
112
|
-
scrollBy(options?: ScrollToOptions
|
|
112
|
+
scrollBy(options?: ScrollToOptions): void;
|
|
113
113
|
scrollBy(x: number, y: number): void;
|
|
114
|
-
scrollIntoView(arg?: boolean | ScrollIntoViewOptions
|
|
115
|
-
scrollTo(options?: ScrollToOptions
|
|
114
|
+
scrollIntoView(arg?: boolean | ScrollIntoViewOptions): void;
|
|
115
|
+
scrollTo(options?: ScrollToOptions): void;
|
|
116
116
|
scrollTo(x: number, y: number): void;
|
|
117
117
|
setAttribute(qualifiedName: string, value: string): void;
|
|
118
118
|
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void;
|
|
119
119
|
setAttributeNode(attr: Attr): Attr | null;
|
|
120
120
|
setAttributeNodeNS(attr: Attr): Attr | null;
|
|
121
|
+
setHTMLUnsafe(html: string): void;
|
|
121
122
|
setPointerCapture(pointerId: number): void;
|
|
122
|
-
toggleAttribute(qualifiedName: string, force?: boolean
|
|
123
|
+
toggleAttribute(qualifiedName: string, force?: boolean): boolean;
|
|
123
124
|
webkitMatchesSelector(selectors: string): boolean;
|
|
124
125
|
readonly baseURI: string;
|
|
125
126
|
readonly childNodes: NodeListOf<ChildNode>;
|
|
@@ -135,20 +136,20 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
135
136
|
readonly previousSibling: ChildNode | null;
|
|
136
137
|
textContent: string | null;
|
|
137
138
|
appendChild<T extends Node>(node: T): T;
|
|
138
|
-
cloneNode(deep?: boolean
|
|
139
|
+
cloneNode(deep?: boolean): Node;
|
|
139
140
|
compareDocumentPosition(other: Node): number;
|
|
140
141
|
contains(other: Node | null): boolean;
|
|
141
|
-
getRootNode(options?: GetRootNodeOptions
|
|
142
|
+
getRootNode(options?: GetRootNodeOptions): Node;
|
|
142
143
|
hasChildNodes(): boolean;
|
|
143
|
-
insertBefore<
|
|
144
|
+
insertBefore<T extends Node>(node: T, child: Node | null): T;
|
|
144
145
|
isDefaultNamespace(namespace: string | null): boolean;
|
|
145
146
|
isEqualNode(otherNode: Node | null): boolean;
|
|
146
147
|
isSameNode(otherNode: Node | null): boolean;
|
|
147
148
|
lookupNamespaceURI(prefix: string | null): string | null;
|
|
148
149
|
lookupPrefix(namespace: string | null): string | null;
|
|
149
150
|
normalize(): void;
|
|
150
|
-
removeChild<
|
|
151
|
-
replaceChild<
|
|
151
|
+
removeChild<T extends Node>(child: T): T;
|
|
152
|
+
replaceChild<T extends Node>(node: Node, child: T): T;
|
|
152
153
|
readonly ELEMENT_NODE: 1;
|
|
153
154
|
readonly ATTRIBUTE_NODE: 2;
|
|
154
155
|
readonly TEXT_NODE: 3;
|
|
@@ -170,6 +171,8 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
170
171
|
dispatchEvent(event: Event): boolean;
|
|
171
172
|
ariaAtomic: string | null;
|
|
172
173
|
ariaAutoComplete: string | null;
|
|
174
|
+
ariaBrailleLabel: string | null;
|
|
175
|
+
ariaBrailleRoleDescription: string | null;
|
|
173
176
|
ariaBusy: string | null;
|
|
174
177
|
ariaChecked: string | null;
|
|
175
178
|
ariaColCount: string | null;
|
|
@@ -207,12 +210,12 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
207
210
|
ariaValueNow: string | null;
|
|
208
211
|
ariaValueText: string | null;
|
|
209
212
|
role: string | null;
|
|
210
|
-
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions
|
|
211
|
-
getAnimations(options?: GetAnimationsOptions
|
|
212
|
-
after(...nodes: (
|
|
213
|
-
before(...nodes: (
|
|
213
|
+
animate(keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions): Animation;
|
|
214
|
+
getAnimations(options?: GetAnimationsOptions): Animation[];
|
|
215
|
+
after(...nodes: (Node | string)[]): void;
|
|
216
|
+
before(...nodes: (Node | string)[]): void;
|
|
214
217
|
remove(): void;
|
|
215
|
-
replaceWith(...nodes: (
|
|
218
|
+
replaceWith(...nodes: (Node | string)[]): void;
|
|
216
219
|
innerHTML: string;
|
|
217
220
|
readonly nextElementSibling: Element | null;
|
|
218
221
|
readonly previousElementSibling: Element | null;
|
|
@@ -220,19 +223,19 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
220
223
|
readonly children: HTMLCollection;
|
|
221
224
|
readonly firstElementChild: Element | null;
|
|
222
225
|
readonly lastElementChild: Element | null;
|
|
223
|
-
append(...nodes: (
|
|
224
|
-
prepend(...nodes: (
|
|
225
|
-
querySelector<
|
|
226
|
-
querySelector<
|
|
227
|
-
querySelector<
|
|
228
|
-
querySelector<
|
|
229
|
-
querySelector<
|
|
230
|
-
querySelectorAll<
|
|
231
|
-
querySelectorAll<
|
|
232
|
-
querySelectorAll<
|
|
233
|
-
querySelectorAll<
|
|
234
|
-
querySelectorAll<
|
|
235
|
-
replaceChildren(...nodes: (
|
|
226
|
+
append(...nodes: (Node | string)[]): void;
|
|
227
|
+
prepend(...nodes: (Node | string)[]): void;
|
|
228
|
+
querySelector<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
|
|
229
|
+
querySelector<K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
|
|
230
|
+
querySelector<K extends keyof MathMLElementTagNameMap>(selectors: K): MathMLElementTagNameMap[K] | null;
|
|
231
|
+
querySelector<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): HTMLElementDeprecatedTagNameMap[K] | null;
|
|
232
|
+
querySelector<E extends Element = Element>(selectors: string): E | null;
|
|
233
|
+
querySelectorAll<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
|
|
234
|
+
querySelectorAll<K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
|
|
235
|
+
querySelectorAll<K extends keyof MathMLElementTagNameMap>(selectors: K): NodeListOf<MathMLElementTagNameMap[K]>;
|
|
236
|
+
querySelectorAll<K extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K): NodeListOf<HTMLElementDeprecatedTagNameMap[K]>;
|
|
237
|
+
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>;
|
|
238
|
+
replaceChildren(...nodes: (Node | string)[]): void;
|
|
236
239
|
readonly assignedSlot: HTMLSlotElement | null;
|
|
237
240
|
readonly attributeStyleMap: StylePropertyMap;
|
|
238
241
|
readonly style: CSSStyleDeclaration;
|
|
@@ -303,7 +306,7 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
303
306
|
onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
304
307
|
onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
305
308
|
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null;
|
|
306
|
-
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent
|
|
309
|
+
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null;
|
|
307
310
|
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
308
311
|
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null;
|
|
309
312
|
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null;
|
|
@@ -338,10 +341,10 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
338
341
|
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null;
|
|
339
342
|
autofocus: boolean;
|
|
340
343
|
readonly dataset: DOMStringMap;
|
|
341
|
-
nonce?: string
|
|
344
|
+
nonce?: string;
|
|
342
345
|
tabIndex: number;
|
|
343
346
|
blur(): void;
|
|
344
|
-
focus(options?: FocusOptions
|
|
347
|
+
focus(options?: FocusOptions): void;
|
|
345
348
|
};
|
|
346
349
|
readonly properties: {
|
|
347
350
|
isLoading: {
|