@leavittsoftware/web 1.17.3 → 1.17.4
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 +0 -3
- package/leavitt/api-service/mapi-service.d.ts +0 -3
- package/leavitt/user-feedback/user-feedback.d.ts +0 -3
- package/package.json +3 -3
- package/titanium/helpers/load-while.d.ts +0 -3
- package/titanium/single-select-base/single-select-base.d.ts +0 -3
- package/titanium/smart-attachment-input/crop-and-save-image-dialog.d.ts +0 -3
|
@@ -30,11 +30,8 @@ declare const Api2ServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
30
30
|
attachInternals(): ElementInternals;
|
|
31
31
|
click(): void;
|
|
32
32
|
hidePopover(): void;
|
|
33
|
-
hidePopover(): void;
|
|
34
|
-
showPopover(): void;
|
|
35
33
|
showPopover(): void;
|
|
36
34
|
togglePopover(force?: boolean | undefined): void;
|
|
37
|
-
togglePopover(force: boolean): void;
|
|
38
35
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
39
36
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
40
37
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -30,11 +30,8 @@ declare const MapiServiceMixin: <C extends Constructor<HTMLElement>>(base: C, op
|
|
|
30
30
|
attachInternals(): ElementInternals;
|
|
31
31
|
click(): void;
|
|
32
32
|
hidePopover(): void;
|
|
33
|
-
hidePopover(): void;
|
|
34
|
-
showPopover(): void;
|
|
35
33
|
showPopover(): void;
|
|
36
34
|
togglePopover(force?: boolean | undefined): void;
|
|
37
|
-
togglePopover(force: boolean): void;
|
|
38
35
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
39
36
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
40
37
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -33,11 +33,8 @@ declare const LeavittUserFeedback_base: {
|
|
|
33
33
|
attachInternals(): ElementInternals;
|
|
34
34
|
click(): void;
|
|
35
35
|
hidePopover(): void;
|
|
36
|
-
hidePopover(): void;
|
|
37
|
-
showPopover(): void;
|
|
38
36
|
showPopover(): void;
|
|
39
37
|
togglePopover(force?: boolean | undefined): void;
|
|
40
|
-
togglePopover(force: boolean): void;
|
|
41
38
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
42
39
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
43
40
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/web",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.4",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@googlemaps/js-api-loader": "*",
|
|
19
19
|
"@leavittsoftware/lg-core-typescript": "*",
|
|
20
|
-
"@material/web": "
|
|
20
|
+
"@material/web": "*",
|
|
21
21
|
"@types/google.maps": "*",
|
|
22
22
|
"bowser": "^2.11.0",
|
|
23
23
|
"countup.js": "^2.8.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"url": "https://github.com/LeavittSoftware/titanium-elements/issues"
|
|
40
40
|
},
|
|
41
41
|
"homepage": "https://github.com/LeavittSoftware/titanium-elements/#readme",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "f0106365955562e6378cbe24911a9f554b78ee9c"
|
|
43
43
|
}
|
|
@@ -31,11 +31,8 @@ export declare const LoadWhile: <C extends Constructor<HTMLElement>>(base: C) =>
|
|
|
31
31
|
attachInternals(): ElementInternals;
|
|
32
32
|
click(): void;
|
|
33
33
|
hidePopover(): void;
|
|
34
|
-
hidePopover(): void;
|
|
35
|
-
showPopover(): void;
|
|
36
34
|
showPopover(): void;
|
|
37
35
|
togglePopover(force?: boolean | undefined): void;
|
|
38
|
-
togglePopover(force: boolean): void;
|
|
39
36
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
40
37
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
41
38
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -34,11 +34,8 @@ declare const TitaniumSingleSelectBase_base: {
|
|
|
34
34
|
attachInternals(): ElementInternals;
|
|
35
35
|
click(): void;
|
|
36
36
|
hidePopover(): void;
|
|
37
|
-
hidePopover(): void;
|
|
38
|
-
showPopover(): void;
|
|
39
37
|
showPopover(): void;
|
|
40
38
|
togglePopover(force?: boolean | undefined): void;
|
|
41
|
-
togglePopover(force: boolean): void;
|
|
42
39
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
43
40
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
44
41
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|
|
@@ -35,11 +35,8 @@ declare const CropAndSaveImageDialog_base: {
|
|
|
35
35
|
attachInternals(): ElementInternals;
|
|
36
36
|
click(): void;
|
|
37
37
|
hidePopover(): void;
|
|
38
|
-
hidePopover(): void;
|
|
39
|
-
showPopover(): void;
|
|
40
38
|
showPopover(): void;
|
|
41
39
|
togglePopover(force?: boolean | undefined): void;
|
|
42
|
-
togglePopover(force: boolean): void;
|
|
43
40
|
addEventListener<K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
44
41
|
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void;
|
|
45
42
|
removeEventListener<K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions | undefined): void;
|