@evercam/ui 0.0.45-beta.0 → 0.0.45-beta.3
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 +76 -37
- package/dist/index.mjs +673 -560
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +6 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +26 -8
- package/dist/src/index.d.ts +26 -8
- package/dist/style.css +1 -1
- package/dist/tags.json +9 -1
- package/dist/web-types.json +76 -1
- package/package.json +3 -3
|
@@ -46,7 +46,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
46
46
|
zoomBehavior: d3.ZoomBehavior<SVGSVGElement, unknown>;
|
|
47
47
|
isMouseDown: boolean;
|
|
48
48
|
axisHeight: number;
|
|
49
|
-
barChartHeight: number;
|
|
50
49
|
eventGroupPadding: number;
|
|
51
50
|
isHoveringEvent: boolean;
|
|
52
51
|
hoveredEvent: TimelineEvent;
|
|
@@ -63,7 +62,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
63
62
|
translation: number;
|
|
64
63
|
scale: number;
|
|
65
64
|
};
|
|
66
|
-
defaultLineGraphChartHeight: number;
|
|
67
65
|
yScale: d3.ScaleLinear<any, any, never>;
|
|
68
66
|
hoveredCounts: {
|
|
69
67
|
count: number;
|
|
@@ -73,6 +71,11 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
73
71
|
dotsByTimestamp: Record<string, d3.Selection<SVGCircleElement, any, any, any>[]>;
|
|
74
72
|
visibleFrom: Date;
|
|
75
73
|
visibleTo: Date;
|
|
74
|
+
curtainHandleWidth: number;
|
|
75
|
+
leftCurtainWidth: number;
|
|
76
|
+
rightCurtainWidth: number;
|
|
77
|
+
isHoveringCurtain: boolean;
|
|
78
|
+
isDraggingCurtain: boolean;
|
|
76
79
|
}, {
|
|
77
80
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
78
81
|
initRefs(): void;
|
|
@@ -109,6 +112,16 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
109
112
|
handleLabelMouseOver(groupType: string): void;
|
|
110
113
|
handleLabelMouseLeave(groupType: string): void;
|
|
111
114
|
handleZoom(event: D3ZoomEvent<SVGSVGElement, any>): void;
|
|
115
|
+
emitCurtainChange(): void;
|
|
116
|
+
calculateDateRangeFromCurtains(): {
|
|
117
|
+
startDate: Date;
|
|
118
|
+
endDate: Date;
|
|
119
|
+
};
|
|
120
|
+
updateCurtainsOnResize(timelineWidth: number): void;
|
|
121
|
+
handleDragStart(): void;
|
|
122
|
+
handleDragEnd(): void;
|
|
123
|
+
handleLeftDrag(event: d3.D3DragEvent<SVGRectElement, any, any>): void;
|
|
124
|
+
handleRightDrag(event: d3.D3DragEvent<SVGRectElement, any, any>): void;
|
|
112
125
|
zoomToStartAndEndDates(): void;
|
|
113
126
|
rescaleAxis(axisName: string, newScale: d3.ScaleTime<any, any, unknown>): void;
|
|
114
127
|
translateTicksText(axisName: string): void;
|
|
@@ -117,6 +130,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
117
130
|
updateLineGraphHoverZones(): void;
|
|
118
131
|
getEventRectX(d: TimelineEvent): any;
|
|
119
132
|
getEventRectWidth(d: TimelineEvent): number;
|
|
133
|
+
initCurtains(): void;
|
|
120
134
|
drawEventsGroups(): void;
|
|
121
135
|
drawLineGraphEventsGroups(): void;
|
|
122
136
|
drawLineGraph({ events, gElement, color, type, }: {
|
|
@@ -168,12 +182,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
168
182
|
fillTimeGaps(events: TimelineEvent[]): TimelineEvent[];
|
|
169
183
|
getNormalizedEvents(events: TimelineEvent[]): TimelineEvent[];
|
|
170
184
|
}, {
|
|
171
|
-
classes:
|
|
172
|
-
wrapper: string;
|
|
173
|
-
background: string;
|
|
174
|
-
tooltipSlot: string;
|
|
175
|
-
eventTooltipSlot: string;
|
|
176
|
-
};
|
|
185
|
+
classes: Record<string, string | Record<string, boolean>>;
|
|
177
186
|
lineGraphGroups: TimelineEventsByType;
|
|
178
187
|
lineGraphChartHeight: number;
|
|
179
188
|
barGroups: TimelineEventsByType;
|
|
@@ -188,6 +197,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
188
197
|
allLineChartTimestamps: string[];
|
|
189
198
|
placeholderLineChartGroup: TimelineEvent[];
|
|
190
199
|
normalizedLineGraphGroups: TimelineEventsByType;
|
|
200
|
+
isInteractingWithCurtain: boolean;
|
|
191
201
|
}, {
|
|
192
202
|
eventsGroups: {};
|
|
193
203
|
xAxesConfig: TimelineAxesConfig;
|
|
@@ -199,5 +209,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
199
209
|
disableZoom: boolean;
|
|
200
210
|
normalizeEvents: boolean;
|
|
201
211
|
flattenLineGraphEnds: boolean;
|
|
212
|
+
curtains: boolean;
|
|
213
|
+
showLabels: boolean;
|
|
214
|
+
rectMinWidth: number;
|
|
215
|
+
barChartHeight: number;
|
|
216
|
+
lineGraphMinHeight: number;
|
|
217
|
+
minZoom: number;
|
|
218
|
+
maxZoom: number;
|
|
219
|
+
cursorTimestamp: string | undefined;
|
|
202
220
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
203
221
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -184,7 +184,6 @@ export declare const components: {
|
|
|
184
184
|
zoomBehavior: import("d3-zoom").ZoomBehavior<SVGSVGElement, unknown>;
|
|
185
185
|
isMouseDown: boolean;
|
|
186
186
|
axisHeight: number;
|
|
187
|
-
barChartHeight: number;
|
|
188
187
|
eventGroupPadding: number;
|
|
189
188
|
isHoveringEvent: boolean;
|
|
190
189
|
hoveredEvent: import('./components/ETimeline.vue').TimelineEvent;
|
|
@@ -201,7 +200,6 @@ export declare const components: {
|
|
|
201
200
|
translation: number;
|
|
202
201
|
scale: number;
|
|
203
202
|
};
|
|
204
|
-
defaultLineGraphChartHeight: number;
|
|
205
203
|
yScale: import("d3-scale").ScaleLinear<any, any, never>;
|
|
206
204
|
hoveredCounts: {
|
|
207
205
|
count: number;
|
|
@@ -211,6 +209,11 @@ export declare const components: {
|
|
|
211
209
|
dotsByTimestamp: Record<string, import("d3-selection").Selection<SVGCircleElement, any, any, any>[]>;
|
|
212
210
|
visibleFrom: Date;
|
|
213
211
|
visibleTo: Date;
|
|
212
|
+
curtainHandleWidth: number;
|
|
213
|
+
leftCurtainWidth: number;
|
|
214
|
+
rightCurtainWidth: number;
|
|
215
|
+
isHoveringCurtain: boolean;
|
|
216
|
+
isDraggingCurtain: boolean;
|
|
214
217
|
}, {
|
|
215
218
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
216
219
|
initRefs(): void;
|
|
@@ -247,6 +250,16 @@ export declare const components: {
|
|
|
247
250
|
handleLabelMouseOver(groupType: string): void;
|
|
248
251
|
handleLabelMouseLeave(groupType: string): void;
|
|
249
252
|
handleZoom(event: import("d3-zoom").D3ZoomEvent<SVGSVGElement, any>): void;
|
|
253
|
+
emitCurtainChange(): void;
|
|
254
|
+
calculateDateRangeFromCurtains(): {
|
|
255
|
+
startDate: Date;
|
|
256
|
+
endDate: Date;
|
|
257
|
+
};
|
|
258
|
+
updateCurtainsOnResize(timelineWidth: number): void;
|
|
259
|
+
handleDragStart(): void;
|
|
260
|
+
handleDragEnd(): void;
|
|
261
|
+
handleLeftDrag(event: import("d3-drag").D3DragEvent<SVGRectElement, any, any>): void;
|
|
262
|
+
handleRightDrag(event: import("d3-drag").D3DragEvent<SVGRectElement, any, any>): void;
|
|
250
263
|
zoomToStartAndEndDates(): void;
|
|
251
264
|
rescaleAxis(axisName: string, newScale: import("d3-scale").ScaleTime<any, any, unknown>): void;
|
|
252
265
|
translateTicksText(axisName: string): void;
|
|
@@ -255,6 +268,7 @@ export declare const components: {
|
|
|
255
268
|
updateLineGraphHoverZones(): void;
|
|
256
269
|
getEventRectX(d: import('./components/ETimeline.vue').TimelineEvent): any;
|
|
257
270
|
getEventRectWidth(d: import('./components/ETimeline.vue').TimelineEvent): number;
|
|
271
|
+
initCurtains(): void;
|
|
258
272
|
drawEventsGroups(): void;
|
|
259
273
|
drawLineGraphEventsGroups(): void;
|
|
260
274
|
drawLineGraph({ events, gElement, color, type, }: {
|
|
@@ -306,12 +320,7 @@ export declare const components: {
|
|
|
306
320
|
fillTimeGaps(events: import('./components/ETimeline.vue').TimelineEvent[]): import('./components/ETimeline.vue').TimelineEvent[];
|
|
307
321
|
getNormalizedEvents(events: import('./components/ETimeline.vue').TimelineEvent[]): import('./components/ETimeline.vue').TimelineEvent[];
|
|
308
322
|
}, {
|
|
309
|
-
classes:
|
|
310
|
-
wrapper: string;
|
|
311
|
-
background: string;
|
|
312
|
-
tooltipSlot: string;
|
|
313
|
-
eventTooltipSlot: string;
|
|
314
|
-
};
|
|
323
|
+
classes: Record<string, string | Record<string, boolean>>;
|
|
315
324
|
lineGraphGroups: import('./components/ETimeline.vue').TimelineEventsByType;
|
|
316
325
|
lineGraphChartHeight: number;
|
|
317
326
|
barGroups: import('./components/ETimeline.vue').TimelineEventsByType;
|
|
@@ -326,6 +335,7 @@ export declare const components: {
|
|
|
326
335
|
allLineChartTimestamps: string[];
|
|
327
336
|
placeholderLineChartGroup: import('./components/ETimeline.vue').TimelineEvent[];
|
|
328
337
|
normalizedLineGraphGroups: import('./components/ETimeline.vue').TimelineEventsByType;
|
|
338
|
+
isInteractingWithCurtain: boolean;
|
|
329
339
|
}, {
|
|
330
340
|
eventsGroups: {};
|
|
331
341
|
xAxesConfig: import('./types').TimelineAxesConfig;
|
|
@@ -337,6 +347,14 @@ export declare const components: {
|
|
|
337
347
|
disableZoom: boolean;
|
|
338
348
|
normalizeEvents: boolean;
|
|
339
349
|
flattenLineGraphEnds: boolean;
|
|
350
|
+
curtains: boolean;
|
|
351
|
+
showLabels: boolean;
|
|
352
|
+
rectMinWidth: number;
|
|
353
|
+
barChartHeight: number;
|
|
354
|
+
lineGraphMinHeight: number;
|
|
355
|
+
minZoom: number;
|
|
356
|
+
maxZoom: number;
|
|
357
|
+
cursorTimestamp: string | undefined;
|
|
340
358
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
341
359
|
};
|
|
342
360
|
declare const _default: {
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.spinner-container[data-v-
|
|
1
|
+
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.spinner-container[data-v-dd8ff405]{position:absolute;background:linear-gradient(to top,rgba(0,0,0,.65),transparent);inset:0;display:flex;justify-content:center;align-items:center;vertical-align:middle}.video-container[data-v-dd8ff405]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-dd8ff405]{max-width:initial;width:100%;max-height:100vh}video[data-v-dd8ff405]{width:100%;height:inherit}.video-controls-container[data-v-dd8ff405]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-dd8ff405]{display:none}.video-controls-container[data-v-dd8ff405]:before{content:"";position:absolute;bottom:0;background:linear-gradient(to top,rgba(0,0,0,.75),transparent);width:100%;aspect-ratio:6 / 1;z-index:-1;pointer-events:none}.video-container:hover .video-controls-container[data-v-dd8ff405],.video-container:focus-within .video-controls-container[data-v-dd8ff405],.video-container.paused .video-controls-container[data-v-dd8ff405]{opacity:1}.video-controls-container .controls[data-v-dd8ff405]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-dd8ff405]{background:none;border:none;color:inherit;padding:0;height:32px;width:32px;font-size:1.35rem;cursor:pointer;opacity:.85;transition:opacity .15s ease-in-out}.video-controls-container .controls button[data-v-dd8ff405]:hover{opacity:1}.duration-container[data-v-dd8ff405]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-dd8ff405]{border-bottom:3px solid red}.video-controls-container .controls button.wide-btn[data-v-dd8ff405]{width:50px}.timeline-container[data-v-dd8ff405]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-dd8ff405]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-dd8ff405]:before{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--preview-position) * 100%);background-color:#969696;display:none}.timeline[data-v-dd8ff405]:after{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--progress-position) * 100%);background-color:red}.timeline .thumb-indicator[data-v-dd8ff405]{--scale: 0;position:absolute;transform:translate(-50%) scale(var(--scale));height:200%;top:-50%;left:calc(var(--progress-position) * 100%);background-color:red;border-radius:50%;transition:transform .15s ease-in-out;aspect-ratio:1 / 1}.video-container.scrubbing .thumbnail-img[data-v-dd8ff405]{display:block}.video-container.scrubbing .timeline[data-v-dd8ff405]:before,.timeline-container:hover .timeline[data-v-dd8ff405]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-dd8ff405],.timeline-container:hover .thumb-indicator[data-v-dd8ff405]{--scale: 1}.video-container.scrubbing .timeline[data-v-dd8ff405],.timeline-container:hover .timeline[data-v-dd8ff405]{height:100%}.e-timeline svg{display:block}.e-timeline .x-axis-overview .domain,.e-timeline .x-axis-detailed .domain,.e-timeline .x-axis-overviewBackground .domain,.e-timeline .x-axis-detailedBackground .domain{display:none}.e-timeline .x-axis-detailedBackground .domain,.e-timeline .x-axis-detailedBackground text{display:none}.e-timeline .x-axis-overview>g.tick>line{opacity:.1;stroke-width:3;stroke-linecap:round}.e-timeline .x-axis-detailed>g.tick>line{opacity:.1;stroke-linecap:round}.e-timeline .x-axis-detailedBackground>g.tick>line{opacity:.075;stroke-linecap:round}.e-timeline--dark .tick line{stroke:#fff}.e-timeline--dark .tick text{fill:#fff}@keyframes moveGradient{0%{transform:translate(-50%)}to{transform:translate(100%)}}@keyframes pulse-rect{0%{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}50%{filter:saturate(.5) drop-shadow(0 0 0 #0000)}to{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}}@keyframes pulse-circle{0%{r:4px}50%{r:1px}to{r:4px}}.loading-indicator{animation:moveGradient 1.5s ease-in infinite}.line-graph-dot--active{animation:pulse-circle 1s ease-in-out infinite}.event-rect--hovered{animation:pulse-rect 1s ease-in-out infinite}@keyframes dash{0%{filter:saturate(1) drop-shadow(0 0 0 #0000)}50%{stroke-width:2px;filter:saturate(2.5) drop-shadow(0 0 0 #0006)}to{filter:saturate(1) drop-shadow(0 0 0 #0000)}}.line-graph-group--highlighted path{animation:dash 1s ease-in-out infinite}.e-timeline--dragging{cursor:ew-resize}.curtain{cursor:ew-resize;fill:#3332;stroke-width:1px;stroke:#3338;transition:stroke-width .2s}.e-timeline--dragging .curtain{stroke-width:3px}.e-timeline--dark .curtain{fill:#fff3;stroke:#fff7}
|
package/dist/tags.json
CHANGED
|
@@ -87,7 +87,15 @@
|
|
|
87
87
|
"show-event-tooltip",
|
|
88
88
|
"disable-zoom",
|
|
89
89
|
"normalize-events",
|
|
90
|
-
"flatten-line-graph-ends"
|
|
90
|
+
"flatten-line-graph-ends",
|
|
91
|
+
"curtains",
|
|
92
|
+
"show-labels",
|
|
93
|
+
"rect-min-width",
|
|
94
|
+
"bar-chart-height",
|
|
95
|
+
"line-graph-min-height",
|
|
96
|
+
"min-zoom",
|
|
97
|
+
"max-zoom",
|
|
98
|
+
"cursor-timestamp"
|
|
91
99
|
],
|
|
92
100
|
"description": ""
|
|
93
101
|
}
|
package/dist/web-types.json
CHANGED
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
{
|
|
536
536
|
"name": "x-axes-config",
|
|
537
537
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
538
|
-
"default": "() =>
|
|
538
|
+
"default": "() => It",
|
|
539
539
|
"value": {
|
|
540
540
|
"kind": "expression",
|
|
541
541
|
"type": "object"
|
|
@@ -612,6 +612,81 @@
|
|
|
612
612
|
"kind": "expression",
|
|
613
613
|
"type": "boolean"
|
|
614
614
|
}
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
"name": "curtains",
|
|
618
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
619
|
+
"default": "false",
|
|
620
|
+
"value": {
|
|
621
|
+
"kind": "expression",
|
|
622
|
+
"type": "boolean"
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"name": "show-labels",
|
|
627
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
628
|
+
"default": "true",
|
|
629
|
+
"value": {
|
|
630
|
+
"kind": "expression",
|
|
631
|
+
"type": "boolean"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"name": "rect-min-width",
|
|
636
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
637
|
+
"default": "1",
|
|
638
|
+
"value": {
|
|
639
|
+
"kind": "expression",
|
|
640
|
+
"type": "number"
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "bar-chart-height",
|
|
645
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
646
|
+
"default": "18",
|
|
647
|
+
"value": {
|
|
648
|
+
"kind": "expression",
|
|
649
|
+
"type": "number"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "line-graph-min-height",
|
|
654
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
655
|
+
"default": "60",
|
|
656
|
+
"value": {
|
|
657
|
+
"kind": "expression",
|
|
658
|
+
"type": "number"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"name": "min-zoom",
|
|
663
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
664
|
+
"default": "0.0001",
|
|
665
|
+
"value": {
|
|
666
|
+
"kind": "expression",
|
|
667
|
+
"type": "number"
|
|
668
|
+
}
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "max-zoom",
|
|
672
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
673
|
+
"default": "850000",
|
|
674
|
+
"value": {
|
|
675
|
+
"kind": "expression",
|
|
676
|
+
"type": "number"
|
|
677
|
+
}
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"name": "cursor-timestamp",
|
|
681
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
682
|
+
"default": "undefined",
|
|
683
|
+
"value": {
|
|
684
|
+
"kind": "expression",
|
|
685
|
+
"type": [
|
|
686
|
+
"string",
|
|
687
|
+
"any"
|
|
688
|
+
]
|
|
689
|
+
}
|
|
615
690
|
}
|
|
616
691
|
]
|
|
617
692
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evercam/ui",
|
|
3
|
-
"version": "0.0.45-beta.
|
|
3
|
+
"version": "0.0.45-beta.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Evercam - Constuction Cameras.",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@fontsource-variable/inter": "^5.0.8",
|
|
66
66
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
67
67
|
"d3": "^7.8.5",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
68
|
+
"moment-timezone": "^0.5.43",
|
|
69
|
+
"vue": "^2.7.14"
|
|
70
70
|
},
|
|
71
71
|
"vetur": {
|
|
72
72
|
"tags": "dist/tags.json",
|