@evercam/ui 0.0.52-beta.15 → 0.0.52-beta.17
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 +8 -1
- 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() {
|
|
@@ -5318,7 +5325,7 @@ const qt = {
|
|
|
5318
5325
|
);
|
|
5319
5326
|
return;
|
|
5320
5327
|
}
|
|
5321
|
-
this.initSvg(), this.initDefs(), this.initUtcOffset(), this.initTimeScale(e, t), this.initXAxes(), this.initYScale(), this.initZoomBehavior(), this.drawEventsGroups(), this.curtains && (this.initCurtains(), this.emitCurtainChange()), this.initSelectedTimestampCursor(), this.registerEventsListeners(), this.emitVisibleInterval(re.initial);
|
|
5328
|
+
this.initSvg(), this.initDefs(), this.initUtcOffset(), this.initTimeScale(e, t), this.initXAxes(), this.initYScale(), this.initZoomBehavior(), this.drawEventsGroups(), this.curtains && (this.initCurtains(), this.emitCurtainChange()), this.initSelectedTimestampCursor(), this.registerEventsListeners(), this.emitVisibleInterval(re.initial), this.selectedDate && this.panOnDateClick && this.panToTimestamp(this.selectedDate);
|
|
5322
5329
|
},
|
|
5323
5330
|
initRefs() {
|
|
5324
5331
|
this.tooltip = this.$refs.tooltip, this.cursor = this.$refs.cursor, this.timeline = this.$refs.timelineContainer, this.selectedTimestampCursor = this.$refs.selectedTimestamp;
|