@evercam/ui 0.0.52-beta.15 → 0.0.52-beta.16
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 +5 -0
- package/dist/index.mjs +7 -0
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/tags.json +1 -0
- package/dist/web-types.json +10 -1
- package/package.json +1 -1
package/dist/attributes.json
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -5108,6 +5108,10 @@ const qt = {
|
|
|
5108
5108
|
type: Number,
|
|
5109
5109
|
default: 500
|
|
5110
5110
|
},
|
|
5111
|
+
selectedDate: {
|
|
5112
|
+
type: String,
|
|
5113
|
+
default: ""
|
|
5114
|
+
},
|
|
5111
5115
|
autoResize: {
|
|
5112
5116
|
type: Boolean,
|
|
5113
5117
|
default: !0
|
|
@@ -5299,6 +5303,9 @@ const qt = {
|
|
|
5299
5303
|
this.cursor.style.left = t + "px", this.isHoveringTimeline = !0;
|
|
5300
5304
|
} else
|
|
5301
5305
|
this.isHoveringTimeline = !1;
|
|
5306
|
+
},
|
|
5307
|
+
selectedDate(e) {
|
|
5308
|
+
e && this.panToTimestamp(e);
|
|
5302
5309
|
}
|
|
5303
5310
|
},
|
|
5304
5311
|
created() {
|