@evercam/ui 1.0.0-cb42ba2ff → 1.0.0-e84bebf49
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/dist/attributes.json +12 -1
- package/dist/components/ELazy.vue.d.ts +23 -0
- package/dist/components/EVideoPlayer.vue.d.ts +1 -0
- package/dist/components/EZoomable.vue.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +672 -525
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +16 -16
- package/dist/index.umd.js.map +1 -1
- package/dist/mixins/inactivity-listener.d.ts +1 -1
- package/dist/mixins/timeouts.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tags.json +2 -0
- package/dist/web-types.json +20 -2
- package/package.json +1 -1
- package/CHANGELOG.md +0 -40
package/dist/attributes.json
CHANGED
|
@@ -179,6 +179,11 @@
|
|
|
179
179
|
"type": "boolean|string|number",
|
|
180
180
|
"description": ""
|
|
181
181
|
},
|
|
182
|
+
"EVideoPlayer/with-zoom-buttons": {
|
|
183
|
+
"type": "boolean",
|
|
184
|
+
"description": "",
|
|
185
|
+
"default": false
|
|
186
|
+
},
|
|
182
187
|
"EVideoPlayer/target-timestamp": {
|
|
183
188
|
"type": "string|date",
|
|
184
189
|
"description": ""
|
|
@@ -704,6 +709,11 @@
|
|
|
704
709
|
"description": "",
|
|
705
710
|
"default": false
|
|
706
711
|
},
|
|
712
|
+
"EZoomable/with-zoom-buttons": {
|
|
713
|
+
"type": "boolean",
|
|
714
|
+
"description": "",
|
|
715
|
+
"default": false
|
|
716
|
+
},
|
|
707
717
|
"EZoomable/with-overlay": {
|
|
708
718
|
"type": "boolean",
|
|
709
719
|
"description": "",
|
|
@@ -1024,7 +1034,8 @@
|
|
|
1024
1034
|
},
|
|
1025
1035
|
"ETooltip/text": {
|
|
1026
1036
|
"type": "string",
|
|
1027
|
-
"description": ""
|
|
1037
|
+
"description": "",
|
|
1038
|
+
"default": ""
|
|
1028
1039
|
},
|
|
1029
1040
|
"ETooltip/position": {
|
|
1030
1041
|
"type": "string",
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
3
|
+
isVisible: boolean;
|
|
4
|
+
observer: IntersectionObserver | null;
|
|
5
|
+
loadTimer: number | null;
|
|
6
|
+
}, {
|
|
7
|
+
setupIntersectionObserver(): void;
|
|
8
|
+
handleIntersecting(): void;
|
|
9
|
+
handleExiting(): void;
|
|
10
|
+
load(): void;
|
|
11
|
+
cleanup(): void;
|
|
12
|
+
}, {
|
|
13
|
+
containerStyle: Record<string, string>;
|
|
14
|
+
placeholderStyle: Record<string, string>;
|
|
15
|
+
}, {
|
|
16
|
+
height: string | number;
|
|
17
|
+
rootMargin: string;
|
|
18
|
+
threshold: number;
|
|
19
|
+
unloadOnExit: boolean;
|
|
20
|
+
minLoadTime: number;
|
|
21
|
+
root: Element | null;
|
|
22
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
23
|
+
export default _default;
|
|
@@ -41,6 +41,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
41
41
|
isZoomed: boolean;
|
|
42
42
|
}, {
|
|
43
43
|
ignorePointerEvents: boolean;
|
|
44
|
+
withZoomButtons: boolean;
|
|
44
45
|
withOverlay: boolean;
|
|
45
46
|
disabled: boolean;
|
|
46
47
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
package/dist/index.d.ts
CHANGED
|
@@ -210,6 +210,7 @@ export declare const components: {
|
|
|
210
210
|
withControls: "" | "hide";
|
|
211
211
|
streamingToken: string;
|
|
212
212
|
}, {
|
|
213
|
+
withZoomButtons: boolean;
|
|
213
214
|
targetTimestamp: string;
|
|
214
215
|
sources: string | import('./components/EVideoPlayer.vue').VideoSource[];
|
|
215
216
|
videoListeners: {};
|
|
@@ -532,6 +533,7 @@ export declare const components: {
|
|
|
532
533
|
isZoomed: boolean;
|
|
533
534
|
}, {
|
|
534
535
|
ignorePointerEvents: boolean;
|
|
536
|
+
withZoomButtons: boolean;
|
|
535
537
|
withOverlay: boolean;
|
|
536
538
|
disabled: boolean;
|
|
537
539
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|