@evercam/ui 1.0.0-preview-fix-timeline-labels-b5096fc7b → 1.0.0-preview-addingGateReportAutomation-d665a8473
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 +3 -2
- package/dist/components/ELazy.vue.d.ts +23 -0
- package/dist/index.mjs +420 -289
- 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/web-types.json +3 -3
- package/package.json +1 -1
- package/CHANGELOG.md +0 -40
package/dist/attributes.json
CHANGED
|
@@ -1024,7 +1024,8 @@
|
|
|
1024
1024
|
},
|
|
1025
1025
|
"ETooltip/text": {
|
|
1026
1026
|
"type": "string",
|
|
1027
|
-
"description": ""
|
|
1027
|
+
"description": "",
|
|
1028
|
+
"default": ""
|
|
1028
1029
|
},
|
|
1029
1030
|
"ETooltip/position": {
|
|
1030
1031
|
"type": "string",
|
|
@@ -1299,7 +1300,7 @@
|
|
|
1299
1300
|
"ESelect/label": {
|
|
1300
1301
|
"type": "string",
|
|
1301
1302
|
"description": "",
|
|
1302
|
-
"default":
|
|
1303
|
+
"default": null
|
|
1303
1304
|
},
|
|
1304
1305
|
"ESelect/disabled": {
|
|
1305
1306
|
"type": "boolean",
|
|
@@ -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;
|